LCOV - code coverage report
Current view: top level - svx/source/sdr/contact - viewcontactofe3dpolygon.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 58 64 90.6 %
Date: 2014-11-03 Functions: 6 6 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <sdr/contact/viewcontactofe3dpolygon.hxx>
      22             : #include <svx/polygn3d.hxx>
      23             : #include <drawinglayer/primitive3d/sdrpolypolygonprimitive3d.hxx>
      24             : #include <svx/sdr/primitive2d/sdrattributecreator.hxx>
      25             : #include <sdr/primitive3d/sdrattributecreator3d.hxx>
      26             : #include <basegfx/polygon/b3dpolygon.hxx>
      27             : #include <basegfx/polygon/b3dpolypolygontools.hxx>
      28             : #include <boost/scoped_ptr.hpp>
      29             : 
      30             : 
      31             : namespace sdr
      32             : {
      33             :     namespace contact
      34             :     {
      35         745 :         ViewContactOfE3dPolygon::ViewContactOfE3dPolygon(E3dPolygonObj& rPolygon)
      36         745 :         :   ViewContactOfE3d(rPolygon)
      37             :         {
      38         745 :         }
      39             : 
      40        1490 :         ViewContactOfE3dPolygon::~ViewContactOfE3dPolygon()
      41             :         {
      42        1490 :         }
      43             : 
      44        3564 :         drawinglayer::primitive3d::Primitive3DSequence ViewContactOfE3dPolygon::createViewIndependentPrimitive3DSequence() const
      45             :         {
      46        3564 :             drawinglayer::primitive3d::Primitive3DSequence xRetval;
      47        3564 :             const SfxItemSet& rItemSet = GetE3dPolygonObj().GetMergedItemSet();
      48        3564 :             const bool bSuppressFill(GetE3dPolygonObj().GetLineOnly());
      49             :             const drawinglayer::attribute::SdrLineFillShadowAttribute3D aAttribute(
      50        7128 :                 drawinglayer::primitive2d::createNewSdrLineFillShadowAttribute(rItemSet, bSuppressFill));
      51             : 
      52             :             // get extrude geometry
      53        7128 :             basegfx::B3DPolyPolygon aPolyPolygon3D(GetE3dPolygonObj().GetPolyPolygon3D());
      54        7128 :             const basegfx::B3DPolyPolygon aPolyNormals3D(GetE3dPolygonObj().GetPolyNormals3D());
      55        7128 :             const basegfx::B2DPolyPolygon aPolyTexture2D(GetE3dPolygonObj().GetPolyTexture2D());
      56        3564 :             const bool bNormals(aPolyNormals3D.count() && aPolyNormals3D.count() == aPolyPolygon3D.count());
      57        3564 :             const bool bTexture(aPolyTexture2D.count() && aPolyTexture2D.count() == aPolyPolygon3D.count());
      58             : 
      59        3564 :             if(bNormals || bTexture)
      60             :             {
      61        6542 :                 for(sal_uInt32 a(0L); a < aPolyPolygon3D.count(); a++)
      62             :                 {
      63        3271 :                     basegfx::B3DPolygon aCandidate3D(aPolyPolygon3D.getB3DPolygon(a));
      64        6542 :                     basegfx::B3DPolygon aNormals3D;
      65        6542 :                     basegfx::B2DPolygon aTexture2D;
      66             : 
      67        3271 :                     if(bNormals)
      68             :                     {
      69        3271 :                         aNormals3D = aPolyNormals3D.getB3DPolygon(a);
      70             :                     }
      71             : 
      72        3271 :                     if(bTexture)
      73             :                     {
      74        3271 :                         aTexture2D = aPolyTexture2D.getB2DPolygon(a);
      75             :                     }
      76             : 
      77       16355 :                     for(sal_uInt32 b(0L); b < aCandidate3D.count(); b++)
      78             :                     {
      79       13084 :                         if(bNormals)
      80             :                         {
      81       13084 :                             sal_uInt32 nNormalCount = aNormals3D.count();
      82       13084 :                             if( b < nNormalCount )
      83       13084 :                                 aCandidate3D.setNormal(b, aNormals3D.getB3DPoint(b));
      84           0 :                             else if( nNormalCount > 0 )
      85           0 :                                 aCandidate3D.setNormal(b, aNormals3D.getB3DPoint(0));
      86             :                         }
      87       13084 :                         if(bTexture)
      88             :                         {
      89       13084 :                             sal_uInt32 nTextureCount = aTexture2D.count();
      90       13084 :                             if( b < nTextureCount )
      91       13084 :                                 aCandidate3D.setTextureCoordinate(b, aTexture2D.getB2DPoint(b));
      92           0 :                             else if( nTextureCount > 0 )
      93           0 :                                 aCandidate3D.setTextureCoordinate(b, aTexture2D.getB2DPoint(0));
      94             :                         }
      95             :                     }
      96             : 
      97        3271 :                     aPolyPolygon3D.setB3DPolygon(a, aCandidate3D);
      98        3271 :                 }
      99             :             }
     100             : 
     101             :             // get 3D Object Attributes
     102        7128 :             boost::scoped_ptr<drawinglayer::attribute::Sdr3DObjectAttribute> pSdr3DObjectAttribute(drawinglayer::primitive2d::createNewSdr3DObjectAttribute(rItemSet));
     103             : 
     104             :             // calculate texture size
     105        7128 :             basegfx::B2DVector aTextureSize(1.0, 1.0);
     106             : 
     107        3564 :             if(bTexture)
     108             :             {
     109             :                 // #i98314#
     110             :                 // create texture size from object's size
     111        3271 :                 const basegfx::B3DRange aObjectRange(basegfx::tools::getRange(aPolyPolygon3D));
     112             : 
     113        3271 :                 double fWidth(0.0);
     114        3271 :                 double fHeight(0.0);
     115             : 
     116             :                 // this is a polygon object, so Width/Height and/or Depth may be zero (e.g. left
     117             :                 // wall of chart). Take this into account
     118        3271 :                 if(basegfx::fTools::equalZero(aObjectRange.getWidth()))
     119             :                 {
     120             :                     // width is zero, use height and depth
     121         695 :                     fWidth = aObjectRange.getHeight();
     122         695 :                     fHeight = aObjectRange.getDepth();
     123             :                 }
     124        2576 :                 else if(basegfx::fTools::equalZero(aObjectRange.getHeight()))
     125             :                 {
     126             :                     // height is zero, use width and depth
     127         621 :                     fWidth = aObjectRange.getWidth();
     128         621 :                     fHeight = aObjectRange.getDepth();
     129             :                 }
     130             :                 else
     131             :                 {
     132             :                     // use width and height
     133        1955 :                     fWidth = aObjectRange.getWidth();
     134        1955 :                     fHeight = aObjectRange.getHeight();
     135             :                 }
     136             : 
     137        3271 :                 if(basegfx::fTools::lessOrEqual(fWidth, 0.0) ||basegfx::fTools::lessOrEqual(fHeight, 0.0))
     138             :                 {
     139             :                     // no texture; fallback to very small size
     140           0 :                     aTextureSize.setX(0.01);
     141           0 :                     aTextureSize.setY(0.01);
     142             :                 }
     143             :                 else
     144             :                 {
     145        3271 :                     aTextureSize.setX(fWidth);
     146        3271 :                     aTextureSize.setY(fHeight);
     147             :                 }
     148             :             }
     149             : 
     150             :             // #i98295#
     151             :             // unfortunately, this SdrObject type which allows a free 3d geometry definition was defined
     152             :             // wrong topologically in relation to it's plane normal and 3D visibility when it was invented
     153             :             // a long time ago. Since the API allows creation of this SDrObject type, it is not possible to
     154             :             // simply change this definition. Only the chart should use it, and at least this object type
     155             :             // only exists at Runtime (is not saved and/or loaded in any FileFormat). Still someone external
     156             :             // may have used it in it's API. To not risk wrong 3D lightings, i have to switch the orientation
     157             :             // of the polygon here
     158        3564 :             aPolyPolygon3D.flip();
     159             : 
     160             :             // create primitive and add
     161        7128 :             const basegfx::B3DHomMatrix aWorldTransform;
     162             :             const drawinglayer::primitive3d::Primitive3DReference xReference(
     163             :                 new drawinglayer::primitive3d::SdrPolyPolygonPrimitive3D(
     164        7128 :                     aPolyPolygon3D, aWorldTransform, aTextureSize, aAttribute, *pSdr3DObjectAttribute));
     165        3564 :             xRetval = drawinglayer::primitive3d::Primitive3DSequence(&xReference, 1);
     166             : 
     167        7128 :             return xRetval;
     168             :         }
     169             :     } // end of namespace contact
     170         651 : } // end of namespace sdr
     171             : 
     172             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10