LCOV - code coverage report
Current view: top level - xmloff/source/draw - ximp3dobject.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 207 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 60 0.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             : #include <comphelper/extract.hxx>
      21             : #include "ximp3dobject.hxx"
      22             : #include <xmloff/XMLShapeStyleContext.hxx>
      23             : #include <xmloff/xmluconv.hxx>
      24             : #include <com/sun/star/beans/XPropertySet.hpp>
      25             : #include <com/sun/star/drawing/PointSequenceSequence.hpp>
      26             : #include <com/sun/star/drawing/PointSequence.hpp>
      27             : #include "xexptran.hxx"
      28             : #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
      29             : #include <xmloff/families.hxx>
      30             : #include "ximpstyl.hxx"
      31             : #include <xmloff/xmltoken.hxx>
      32             : #include <com/sun/star/drawing/PolyPolygonShape3D.hpp>
      33             : #include <com/sun/star/drawing/DoubleSequence.hpp>
      34             : #include <osl/diagnose.h>
      35             : #include <basegfx/polygon/b2dpolypolygon.hxx>
      36             : #include <basegfx/polygon/b2dpolypolygontools.hxx>
      37             : #include <basegfx/polygon/b3dpolypolygontools.hxx>
      38             : 
      39             : using namespace ::com::sun::star;
      40             : 
      41           0 : TYPEINIT1( SdXML3DObjectContext, SdXMLShapeContext );
      42             : 
      43           0 : SdXML3DObjectContext::SdXML3DObjectContext(
      44             :     SvXMLImport& rImport,
      45             :     sal_uInt16 nPrfx,
      46             :     const OUString& rLocalName,
      47             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
      48             :     uno::Reference< drawing::XShapes >& rShapes,
      49             :     bool bTemporaryShape)
      50             : :   SdXMLShapeContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape ),
      51           0 :     mbSetTransform( false )
      52             : {
      53           0 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
      54           0 :     for(sal_Int16 i=0; i < nAttrCount; i++)
      55             :     {
      56           0 :         OUString sAttrName = xAttrList->getNameByIndex( i );
      57           0 :         OUString aLocalName;
      58           0 :         sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
      59           0 :         OUString sValue = xAttrList->getValueByIndex( i );
      60           0 :         const SvXMLTokenMap& rAttrTokenMap = GetImport().GetShapeImport()->Get3DObjectAttrTokenMap();
      61             : 
      62           0 :         switch(rAttrTokenMap.Get(nPrefix, aLocalName))
      63             :         {
      64             :             case XML_TOK_3DOBJECT_DRAWSTYLE_NAME:
      65             :             {
      66           0 :                 maDrawStyleName = sValue;
      67           0 :                 break;
      68             :             }
      69             :             case XML_TOK_3DOBJECT_TRANSFORM:
      70             :             {
      71           0 :                 SdXMLImExTransform3D aTransform(sValue, GetImport().GetMM100UnitConverter());
      72           0 :                 if(aTransform.NeedsAction())
      73           0 :                     mbSetTransform = aTransform.GetFullHomogenTransform(mxHomMat);
      74           0 :                 break;
      75             :             }
      76             :         }
      77           0 :     }
      78           0 : }
      79             : 
      80           0 : SdXML3DObjectContext::~SdXML3DObjectContext()
      81             : {
      82           0 : }
      83             : 
      84           0 : void SdXML3DObjectContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
      85             : {
      86           0 :     uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY);
      87           0 :     if(xPropSet.is())
      88             :     {
      89             :         // set parameters
      90           0 :         if(mbSetTransform)
      91             :         {
      92           0 :             uno::Any aAny;
      93           0 :             aAny <<= mxHomMat;
      94           0 :             xPropSet->setPropertyValue("D3DTransformMatrix", aAny);
      95             :         }
      96             : 
      97             :         // call parent
      98           0 :         SdXMLShapeContext::StartElement(xAttrList);
      99           0 :     }
     100           0 : }
     101             : 
     102           0 : void SdXML3DObjectContext::EndElement()
     103             : {
     104             :     // call parent
     105           0 :     SdXMLShapeContext::EndElement();
     106           0 : }
     107             : 
     108           0 : TYPEINIT1( SdXML3DCubeObjectShapeContext, SdXML3DObjectContext);
     109             : 
     110           0 : SdXML3DCubeObjectShapeContext::SdXML3DCubeObjectShapeContext(
     111             :     SvXMLImport& rImport,
     112             :     sal_uInt16 nPrfx,
     113             :     const OUString& rLocalName,
     114             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
     115             :     uno::Reference< drawing::XShapes >& rShapes,
     116             :     bool bTemporaryShape)
     117             : :   SdXML3DObjectContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape ),
     118             :     maMinEdge(-2500.0, -2500.0, -2500.0),
     119             :     maMaxEdge(2500.0, 2500.0, 2500.0),
     120             :     mbMinEdgeUsed(false),
     121           0 :     mbMaxEdgeUsed(false)
     122             : {
     123           0 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
     124           0 :     for(sal_Int16 i=0; i < nAttrCount; i++)
     125             :     {
     126           0 :         OUString sAttrName = xAttrList->getNameByIndex( i );
     127           0 :         OUString aLocalName;
     128           0 :         sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
     129           0 :         OUString sValue = xAttrList->getValueByIndex( i );
     130           0 :         const SvXMLTokenMap& rAttrTokenMap = GetImport().GetShapeImport()->Get3DCubeObjectAttrTokenMap();
     131             : 
     132           0 :         switch(rAttrTokenMap.Get(nPrefix, aLocalName))
     133             :         {
     134             :             case XML_TOK_3DCUBEOBJ_MINEDGE:
     135             :             {
     136           0 :                 ::basegfx::B3DVector aNewVec;
     137           0 :                 SvXMLUnitConverter::convertB3DVector(aNewVec, sValue);
     138             : 
     139           0 :                 if(aNewVec != maMinEdge)
     140             :                 {
     141           0 :                     maMinEdge = aNewVec;
     142           0 :                     mbMinEdgeUsed = true;
     143             :                 }
     144           0 :                 break;
     145             :             }
     146             :             case XML_TOK_3DCUBEOBJ_MAXEDGE:
     147             :             {
     148           0 :                 ::basegfx::B3DVector aNewVec;
     149           0 :                 SvXMLUnitConverter::convertB3DVector(aNewVec, sValue);
     150             : 
     151           0 :                 if(aNewVec != maMaxEdge)
     152             :                 {
     153           0 :                     maMaxEdge = aNewVec;
     154           0 :                     mbMaxEdgeUsed = true;
     155             :                 }
     156           0 :                 break;
     157             :             }
     158             :         }
     159           0 :     }
     160           0 : }
     161             : 
     162           0 : SdXML3DCubeObjectShapeContext::~SdXML3DCubeObjectShapeContext()
     163             : {
     164           0 : }
     165             : 
     166           0 : void SdXML3DCubeObjectShapeContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
     167             : {
     168             :     // create shape
     169           0 :     AddShape( "com.sun.star.drawing.Shape3DCubeObject" );
     170           0 :     if(mxShape.is())
     171             :     {
     172             :         // add, set style and properties from base shape
     173           0 :         SetStyle();
     174           0 :         SdXML3DObjectContext::StartElement(xAttrList);
     175             : 
     176             :         // set local parameters on shape
     177           0 :         uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY);
     178           0 :         if(xPropSet.is())
     179             :         {
     180             :             // set parameters
     181           0 :             drawing::Position3D aPosition3D;
     182           0 :             drawing::Direction3D aDirection3D;
     183             : 
     184             :             // convert from min, max to size to be set
     185           0 :             maMaxEdge = maMaxEdge - maMinEdge;
     186             : 
     187           0 :             aPosition3D.PositionX = maMinEdge.getX();
     188           0 :             aPosition3D.PositionY = maMinEdge.getY();
     189           0 :             aPosition3D.PositionZ = maMinEdge.getZ();
     190             : 
     191           0 :             aDirection3D.DirectionX = maMaxEdge.getX();
     192           0 :             aDirection3D.DirectionY = maMaxEdge.getY();
     193           0 :             aDirection3D.DirectionZ = maMaxEdge.getZ();
     194             : 
     195           0 :             uno::Any aAny;
     196           0 :             aAny <<= aPosition3D;
     197           0 :             xPropSet->setPropertyValue("D3DPosition", aAny);
     198           0 :             aAny <<= aDirection3D;
     199           0 :             xPropSet->setPropertyValue("D3DSize", aAny);
     200           0 :         }
     201             :     }
     202           0 : }
     203             : 
     204           0 : void SdXML3DCubeObjectShapeContext::EndElement()
     205             : {
     206             :     // call parent
     207           0 :     SdXML3DObjectContext::EndElement();
     208           0 : }
     209             : 
     210           0 : TYPEINIT1( SdXML3DSphereObjectShapeContext, SdXML3DObjectContext);
     211             : 
     212           0 : SdXML3DSphereObjectShapeContext::SdXML3DSphereObjectShapeContext(
     213             :     SvXMLImport& rImport,
     214             :     sal_uInt16 nPrfx,
     215             :     const OUString& rLocalName,
     216             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
     217             :     uno::Reference< drawing::XShapes >& rShapes,
     218             :     bool bTemporaryShape)
     219             : :   SdXML3DObjectContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape ),
     220             :     maCenter(0.0, 0.0, 0.0),
     221             :     maSize(5000.0, 5000.0, 5000.0),
     222             :     mbCenterUsed(false),
     223           0 :     mbSizeUsed(false)
     224             : {
     225           0 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
     226           0 :     for(sal_Int16 i=0; i < nAttrCount; i++)
     227             :     {
     228           0 :         OUString sAttrName = xAttrList->getNameByIndex( i );
     229           0 :         OUString aLocalName;
     230           0 :         sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
     231           0 :         OUString sValue = xAttrList->getValueByIndex( i );
     232           0 :         const SvXMLTokenMap& rAttrTokenMap = GetImport().GetShapeImport()->Get3DSphereObjectAttrTokenMap();
     233             : 
     234           0 :         switch(rAttrTokenMap.Get(nPrefix, aLocalName))
     235             :         {
     236             :             case XML_TOK_3DSPHEREOBJ_CENTER:
     237             :             {
     238           0 :                 ::basegfx::B3DVector aNewVec;
     239           0 :                 SvXMLUnitConverter::convertB3DVector(aNewVec, sValue);
     240             : 
     241           0 :                 if(aNewVec != maCenter)
     242             :                 {
     243           0 :                     maCenter = aNewVec;
     244           0 :                     mbCenterUsed = true;
     245             :                 }
     246           0 :                 break;
     247             :             }
     248             :             case XML_TOK_3DSPHEREOBJ_SIZE:
     249             :             {
     250           0 :                 ::basegfx::B3DVector aNewVec;
     251           0 :                 SvXMLUnitConverter::convertB3DVector(aNewVec, sValue);
     252             : 
     253           0 :                 if(aNewVec != maSize)
     254             :                 {
     255           0 :                     maSize = aNewVec;
     256           0 :                     mbSizeUsed = true;
     257             :                 }
     258           0 :                 break;
     259             :             }
     260             :         }
     261           0 :     }
     262           0 : }
     263             : 
     264           0 : SdXML3DSphereObjectShapeContext::~SdXML3DSphereObjectShapeContext()
     265             : {
     266           0 : }
     267             : 
     268           0 : void SdXML3DSphereObjectShapeContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
     269             : {
     270             :     // create shape
     271           0 :     AddShape( "com.sun.star.drawing.Shape3DSphereObject" );
     272           0 :     if(mxShape.is())
     273             :     {
     274             :         // add, set style and properties from base shape
     275           0 :         SetStyle();
     276           0 :         SdXML3DObjectContext::StartElement(xAttrList);
     277             : 
     278             :         // set local parameters on shape
     279           0 :         uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY);
     280           0 :         if(xPropSet.is())
     281             :         {
     282             :             // set parameters
     283           0 :             drawing::Position3D aPosition3D;
     284           0 :             drawing::Direction3D aDirection3D;
     285             : 
     286           0 :             aPosition3D.PositionX = maCenter.getX();
     287           0 :             aPosition3D.PositionY = maCenter.getY();
     288           0 :             aPosition3D.PositionZ = maCenter.getZ();
     289             : 
     290           0 :             aDirection3D.DirectionX = maSize.getX();
     291           0 :             aDirection3D.DirectionY = maSize.getY();
     292           0 :             aDirection3D.DirectionZ = maSize.getZ();
     293             : 
     294           0 :             uno::Any aAny;
     295           0 :             aAny <<= aPosition3D;
     296           0 :             xPropSet->setPropertyValue("D3DPosition", aAny);
     297           0 :             aAny <<= aDirection3D;
     298           0 :             xPropSet->setPropertyValue("D3DSize", aAny);
     299           0 :         }
     300             :     }
     301           0 : }
     302             : 
     303           0 : void SdXML3DSphereObjectShapeContext::EndElement()
     304             : {
     305             :     // call parent
     306           0 :     SdXML3DObjectContext::EndElement();
     307           0 : }
     308             : 
     309           0 : TYPEINIT1( SdXML3DPolygonBasedShapeContext, SdXML3DObjectContext );
     310             : 
     311           0 : SdXML3DPolygonBasedShapeContext::SdXML3DPolygonBasedShapeContext(
     312             :     SvXMLImport& rImport,
     313             :     sal_uInt16 nPrfx,
     314             :     const OUString& rLocalName,
     315             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
     316             :     uno::Reference< drawing::XShapes >& rShapes,
     317             :     bool bTemporaryShape)
     318           0 : :   SdXML3DObjectContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape )
     319             : {
     320           0 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
     321           0 :     for(sal_Int16 i=0; i < nAttrCount; i++)
     322             :     {
     323           0 :         OUString sAttrName = xAttrList->getNameByIndex( i );
     324           0 :         OUString aLocalName;
     325           0 :         sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
     326           0 :         OUString sValue = xAttrList->getValueByIndex( i );
     327           0 :         const SvXMLTokenMap& rAttrTokenMap = GetImport().GetShapeImport()->Get3DPolygonBasedAttrTokenMap();
     328             : 
     329           0 :         switch(rAttrTokenMap.Get(nPrefix, aLocalName))
     330             :         {
     331             :             case XML_TOK_3DPOLYGONBASED_VIEWBOX:
     332             :             {
     333           0 :                 maViewBox = sValue;
     334           0 :                 break;
     335             :             }
     336             :             case XML_TOK_3DPOLYGONBASED_D:
     337             :             {
     338           0 :                 maPoints = sValue;
     339           0 :                 break;
     340             :             }
     341             :         }
     342           0 :     }
     343           0 : }
     344             : 
     345           0 : SdXML3DPolygonBasedShapeContext::~SdXML3DPolygonBasedShapeContext()
     346             : {
     347           0 : }
     348             : 
     349           0 : void SdXML3DPolygonBasedShapeContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
     350             : {
     351           0 :     uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY);
     352             : 
     353           0 :     if(xPropSet.is())
     354             :     {
     355             :         // set parameters
     356           0 :         if(!maPoints.isEmpty() && !maViewBox.isEmpty())
     357             :         {
     358             :             // import 2d tools::PolyPolygon from svg:d
     359           0 :             basegfx::B2DPolyPolygon aPolyPolygon;
     360             : 
     361           0 :             if(basegfx::tools::importFromSvgD(aPolyPolygon, maPoints, GetImport().needFixPositionAfterZ(), 0))
     362             :             {
     363             :                 // convert to 3D PolyPolygon
     364             :                 const basegfx::B3DPolyPolygon aB3DPolyPolygon(
     365             :                     basegfx::tools::createB3DPolyPolygonFromB2DPolyPolygon(
     366           0 :                         aPolyPolygon));
     367             : 
     368             :                 // convert to UNO API class PolyPolygonShape3D
     369           0 :                 drawing::PolyPolygonShape3D xPolyPolygon3D;
     370             :                 basegfx::tools::B3DPolyPolygonToUnoPolyPolygonShape3D(
     371             :                     aB3DPolyPolygon,
     372           0 :                     xPolyPolygon3D);
     373             : 
     374             :                 // set polygon data
     375           0 :                 uno::Any aAny;
     376           0 :                 aAny <<= xPolyPolygon3D;
     377           0 :                 xPropSet->setPropertyValue(OUString("D3DPolyPolygon3D"), aAny);
     378             :             }
     379             :             else
     380             :             {
     381             :                 OSL_ENSURE(false, "Error on importing svg:d for 3D tools::PolyPolygon (!)");
     382           0 :             }
     383             :         }
     384             : 
     385             :         // call parent
     386           0 :         SdXML3DObjectContext::StartElement(xAttrList);
     387           0 :     }
     388           0 : }
     389             : 
     390           0 : void SdXML3DPolygonBasedShapeContext::EndElement()
     391             : {
     392             :     // call parent
     393           0 :     SdXML3DObjectContext::EndElement();
     394           0 : }
     395             : 
     396           0 : TYPEINIT1( SdXML3DLatheObjectShapeContext, SdXML3DPolygonBasedShapeContext);
     397             : 
     398           0 : SdXML3DLatheObjectShapeContext::SdXML3DLatheObjectShapeContext(
     399             :     SvXMLImport& rImport,
     400             :     sal_uInt16 nPrfx,
     401             :     const OUString& rLocalName,
     402             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
     403             :     uno::Reference< drawing::XShapes >& rShapes,
     404             :     bool bTemporaryShape)
     405           0 : :   SdXML3DPolygonBasedShapeContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape )
     406             : {
     407           0 : }
     408             : 
     409           0 : SdXML3DLatheObjectShapeContext::~SdXML3DLatheObjectShapeContext()
     410             : {
     411           0 : }
     412             : 
     413           0 : void SdXML3DLatheObjectShapeContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
     414             : {
     415             :     // create shape
     416           0 :     AddShape( "com.sun.star.drawing.Shape3DLatheObject" );
     417           0 :     if(mxShape.is())
     418             :     {
     419             :         // add, set style and properties from base shape
     420           0 :         SetStyle();
     421           0 :         SdXML3DPolygonBasedShapeContext::StartElement(xAttrList);
     422             :     }
     423           0 : }
     424             : 
     425           0 : void SdXML3DLatheObjectShapeContext::EndElement()
     426             : {
     427             :     // call parent
     428           0 :     SdXML3DPolygonBasedShapeContext::EndElement();
     429           0 : }
     430             : 
     431           0 : TYPEINIT1( SdXML3DExtrudeObjectShapeContext, SdXML3DPolygonBasedShapeContext);
     432             : 
     433           0 : SdXML3DExtrudeObjectShapeContext::SdXML3DExtrudeObjectShapeContext(
     434             :     SvXMLImport& rImport,
     435             :     sal_uInt16 nPrfx,
     436             :     const OUString& rLocalName,
     437             :     const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
     438             :     uno::Reference< drawing::XShapes >& rShapes,
     439             :     bool bTemporaryShape)
     440           0 : :   SdXML3DPolygonBasedShapeContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape )
     441             : {
     442           0 : }
     443             : 
     444           0 : SdXML3DExtrudeObjectShapeContext::~SdXML3DExtrudeObjectShapeContext()
     445             : {
     446           0 : }
     447             : 
     448           0 : void SdXML3DExtrudeObjectShapeContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttrList)
     449             : {
     450           0 :     AddShape( "com.sun.star.drawing.Shape3DExtrudeObject" );
     451           0 :     if(mxShape.is())
     452             :     {
     453             :         // add, set style and properties from base shape
     454           0 :         SetStyle();
     455           0 :         SdXML3DPolygonBasedShapeContext::StartElement(xAttrList);
     456             :     }
     457           0 : }
     458             : 
     459           0 : void SdXML3DExtrudeObjectShapeContext::EndElement()
     460             : {
     461             :     // call parent
     462           0 :     SdXML3DPolygonBasedShapeContext::EndElement();
     463           0 : }
     464             : 
     465             : // EOF
     466             : 
     467             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11