2008-01-30 05:26:48 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2008-01-30 05:26:48 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2008-03-05 02:18:45 -06:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_drawinglayer.hxx"
|
|
|
|
|
2008-01-30 05:26:48 -06:00
|
|
|
#include <drawinglayer/processor3d/geometry2dextractor.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/transformprimitive3d.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/modifiedcolorprimitive3d.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/polygonprimitive3d.hxx>
|
|
|
|
#include <basegfx/polygon/b2dpolygontools.hxx>
|
|
|
|
#include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/polypolygonprimitive3d.hxx>
|
|
|
|
#include <basegfx/polygon/b2dpolypolygontools.hxx>
|
|
|
|
#include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx>
|
|
|
|
#include <drawinglayer/primitive3d/textureprimitive3d.hxx>
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
using namespace com::sun::star;
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace drawinglayer
|
|
|
|
{
|
|
|
|
namespace processor3d
|
|
|
|
{
|
2008-06-24 09:31:09 -05:00
|
|
|
// as tooling, the process() implementation takes over API handling and calls this
|
|
|
|
// virtual render method when the primitive implementation is BasePrimitive3D-based.
|
|
|
|
void Geometry2DExtractingProcessor::processBasePrimitive3D(const primitive3d::BasePrimitive3D& rCandidate)
|
2008-01-30 05:26:48 -06:00
|
|
|
{
|
2009-09-15 09:06:13 -05:00
|
|
|
// it is a BasePrimitive3D implementation, use getPrimitive3DID() call for switch
|
|
|
|
switch(rCandidate.getPrimitive3DID())
|
2008-01-30 05:26:48 -06:00
|
|
|
{
|
2008-06-24 09:31:09 -05:00
|
|
|
case PRIMITIVE3D_ID_TRANSFORMPRIMITIVE3D :
|
2008-01-30 05:26:48 -06:00
|
|
|
{
|
2008-06-24 09:31:09 -05:00
|
|
|
// transform group. Remember current transformations
|
|
|
|
const primitive3d::TransformPrimitive3D& rPrimitive = static_cast< const primitive3d::TransformPrimitive3D& >(rCandidate);
|
|
|
|
const geometry::ViewInformation3D aLastViewInformation3D(getViewInformation3D());
|
|
|
|
|
|
|
|
// create new transformation; add new object transform from right side
|
|
|
|
const geometry::ViewInformation3D aNewViewInformation3D(
|
|
|
|
aLastViewInformation3D.getObjectTransformation() * rPrimitive.getTransformation(),
|
|
|
|
aLastViewInformation3D.getOrientation(),
|
|
|
|
aLastViewInformation3D.getProjection(),
|
|
|
|
aLastViewInformation3D.getDeviceToView(),
|
|
|
|
aLastViewInformation3D.getViewTime(),
|
|
|
|
aLastViewInformation3D.getExtendedInformationSequence());
|
|
|
|
updateViewInformation(aNewViewInformation3D);
|
|
|
|
|
|
|
|
// let break down recursively
|
|
|
|
process(rPrimitive.getChildren());
|
|
|
|
|
|
|
|
// restore transformations
|
|
|
|
updateViewInformation(aLastViewInformation3D);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PRIMITIVE3D_ID_MODIFIEDCOLORPRIMITIVE3D :
|
|
|
|
{
|
|
|
|
// ModifiedColorPrimitive3D; push, process and pop
|
|
|
|
const primitive3d::ModifiedColorPrimitive3D& rModifiedCandidate = static_cast< const primitive3d::ModifiedColorPrimitive3D& >(rCandidate);
|
|
|
|
const primitive3d::Primitive3DSequence& rSubSequence = rModifiedCandidate.getChildren();
|
2008-01-30 05:26:48 -06:00
|
|
|
|
2008-06-24 09:31:09 -05:00
|
|
|
if(rSubSequence.hasElements())
|
2008-01-30 05:26:48 -06:00
|
|
|
{
|
2008-06-24 09:31:09 -05:00
|
|
|
maBColorModifierStack.push(rModifiedCandidate.getColorModifier());
|
|
|
|
process(rModifiedCandidate.getChildren());
|
|
|
|
maBColorModifierStack.pop();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PRIMITIVE3D_ID_POLYGONHAIRLINEPRIMITIVE3D :
|
|
|
|
{
|
|
|
|
// PolygonHairlinePrimitive3D
|
|
|
|
const primitive3d::PolygonHairlinePrimitive3D& rPrimitive = static_cast< const primitive3d::PolygonHairlinePrimitive3D& >(rCandidate);
|
|
|
|
basegfx::B2DPolygon a2DHairline(basegfx::tools::createB2DPolygonFromB3DPolygon(rPrimitive.getB3DPolygon(), getViewInformation3D().getObjectToView()));
|
2008-01-30 05:26:48 -06:00
|
|
|
|
2008-06-24 09:31:09 -05:00
|
|
|
if(a2DHairline.count())
|
|
|
|
{
|
|
|
|
a2DHairline.transform(getObjectTransformation());
|
|
|
|
const basegfx::BColor aModifiedColor(maBColorModifierStack.getModifiedColor(rPrimitive.getBColor()));
|
|
|
|
const primitive2d::Primitive2DReference xRef(new primitive2d::PolygonHairlinePrimitive2D(a2DHairline, aModifiedColor));
|
|
|
|
primitive2d::appendPrimitive2DReferenceToPrimitive2DSequence(maPrimitive2DSequence, xRef);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PRIMITIVE3D_ID_POLYPOLYGONMATERIALPRIMITIVE3D :
|
|
|
|
{
|
|
|
|
// PolyPolygonMaterialPrimitive3D
|
|
|
|
const primitive3d::PolyPolygonMaterialPrimitive3D& rPrimitive = static_cast< const primitive3d::PolyPolygonMaterialPrimitive3D& >(rCandidate);
|
|
|
|
basegfx::B2DPolyPolygon a2DFill(basegfx::tools::createB2DPolyPolygonFromB3DPolyPolygon(rPrimitive.getB3DPolyPolygon(), getViewInformation3D().getObjectToView()));
|
2008-01-30 05:26:48 -06:00
|
|
|
|
2008-06-24 09:31:09 -05:00
|
|
|
if(a2DFill.count())
|
|
|
|
{
|
|
|
|
a2DFill.transform(getObjectTransformation());
|
|
|
|
const basegfx::BColor aModifiedColor(maBColorModifierStack.getModifiedColor(rPrimitive.getMaterial().getColor()));
|
|
|
|
const primitive2d::Primitive2DReference xRef(new primitive2d::PolyPolygonColorPrimitive2D(a2DFill, aModifiedColor));
|
|
|
|
primitive2d::appendPrimitive2DReferenceToPrimitive2DSequence(maPrimitive2DSequence, xRef);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PRIMITIVE3D_ID_GRADIENTTEXTUREPRIMITIVE3D :
|
|
|
|
case PRIMITIVE3D_ID_HATCHTEXTUREPRIMITIVE3D :
|
|
|
|
case PRIMITIVE3D_ID_BITMAPTEXTUREPRIMITIVE3D :
|
2010-01-27 04:51:56 -06:00
|
|
|
case PRIMITIVE3D_ID_TRANSPARENCETEXTUREPRIMITIVE3D :
|
|
|
|
case PRIMITIVE3D_ID_UNIFIEDTRANSPARENCETEXTUREPRIMITIVE3D :
|
2008-06-24 09:31:09 -05:00
|
|
|
{
|
|
|
|
// TexturePrimitive3D: Process children, do not try to decompose
|
|
|
|
const primitive3d::TexturePrimitive3D& rTexturePrimitive = static_cast< const primitive3d::TexturePrimitive3D& >(rCandidate);
|
|
|
|
const primitive3d::Primitive3DSequence aChildren(rTexturePrimitive.getChildren());
|
2008-01-30 05:26:48 -06:00
|
|
|
|
2008-06-24 09:31:09 -05:00
|
|
|
if(aChildren.hasElements())
|
|
|
|
{
|
|
|
|
process(aChildren);
|
2008-01-30 05:26:48 -06:00
|
|
|
}
|
2008-06-24 09:31:09 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PRIMITIVE3D_ID_SHADOWPRIMITIVE3D :
|
|
|
|
{
|
|
|
|
// accept but ignore labels and shadow; these should be extracted seperately
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default :
|
|
|
|
{
|
|
|
|
// process recursively
|
|
|
|
process(rCandidate.get3DDecomposition(getViewInformation3D()));
|
|
|
|
break;
|
2008-01-30 05:26:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-06-24 09:31:09 -05:00
|
|
|
|
|
|
|
Geometry2DExtractingProcessor::Geometry2DExtractingProcessor(
|
|
|
|
const geometry::ViewInformation3D& rViewInformation,
|
|
|
|
const basegfx::B2DHomMatrix& rObjectTransformation)
|
|
|
|
: BaseProcessor3D(rViewInformation),
|
|
|
|
maPrimitive2DSequence(),
|
|
|
|
maObjectTransformation(rObjectTransformation),
|
|
|
|
maBColorModifierStack()
|
|
|
|
{
|
|
|
|
}
|
2008-01-30 05:26:48 -06:00
|
|
|
} // end of namespace processor3d
|
|
|
|
} // end of namespace drawinglayer
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// eof
|