office-gobmx/drawinglayer/source/primitive3d/sdrcubeprimitive3d.cxx

223 lines
10 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2006-05-12 05:54:47 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2006-05-12 05:54:47 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2006-05-12 05:54:47 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2006-05-12 05:54:47 -05:00
*
* This file is part of OpenOffice.org.
2006-05-12 05:54:47 -05: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.
2006-05-12 05:54:47 -05: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).
2006-05-12 05:54:47 -05: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.
2006-05-12 05:54:47 -05:00
*
************************************************************************/
#include <drawinglayer/primitive3d/sdrcubeprimitive3d.hxx>
2006-10-19 04:40:02 -05:00
#include <basegfx/polygon/b3dpolypolygontools.hxx>
#include <basegfx/polygon/b3dpolygon.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx>
2006-05-12 05:54:47 -05:00
#include <drawinglayer/primitive3d/sdrdecompositiontools3d.hxx>
2006-10-19 04:40:02 -05:00
#include <basegfx/tools/canvastools.hxx>
2007-03-06 05:36:13 -06:00
#include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
#include <drawinglayer/attribute/sdrfillattribute.hxx>
#include <drawinglayer/attribute/sdrlineattribute.hxx>
#include <drawinglayer/attribute/sdrshadowattribute.hxx>
2007-03-06 05:36:13 -06:00
2006-10-19 04:40:02 -05:00
//////////////////////////////////////////////////////////////////////////////
2006-05-12 05:54:47 -05:00
2006-10-19 04:40:02 -05:00
using namespace com::sun::star;
2006-05-12 05:54:47 -05:00
//////////////////////////////////////////////////////////////////////////////
namespace drawinglayer
{
2006-08-09 10:51:16 -05:00
namespace primitive3d
2006-05-12 05:54:47 -05:00
{
Primitive3DSequence SdrCubePrimitive3D::create3DDecomposition(const geometry::ViewInformation3D& /*rViewInformation*/) const
2006-05-12 05:54:47 -05:00
{
2006-08-09 10:51:16 -05:00
const basegfx::B3DRange aUnitRange(0.0, 0.0, 0.0, 1.0, 1.0, 1.0);
2006-10-19 04:40:02 -05:00
Primitive3DSequence aRetval;
2008-10-17 03:40:10 -05:00
basegfx::B3DPolyPolygon aFill(basegfx::tools::createCubeFillPolyPolygonFromB3DRange(aUnitRange));
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
// normal creation
if(!getSdrLFSAttribute().getFill().isDefault())
2006-05-12 05:54:47 -05:00
{
2008-10-17 03:40:10 -05:00
if(::com::sun::star::drawing::NormalsKind_SPECIFIC == getSdr3DObjectAttribute().getNormalsKind()
|| ::com::sun::star::drawing::NormalsKind_SPHERE == getSdr3DObjectAttribute().getNormalsKind())
2006-05-12 05:54:47 -05:00
{
2008-10-17 03:40:10 -05:00
// create sphere normals
const basegfx::B3DPoint aCenter(basegfx::tools::getRange(aFill).getCenter());
aFill = basegfx::tools::applyDefaultNormalsSphere(aFill, aCenter);
2006-05-12 05:54:47 -05:00
}
2008-10-17 03:40:10 -05:00
if(getSdr3DObjectAttribute().getNormalsInvert())
2006-05-12 05:54:47 -05:00
{
2008-10-17 03:40:10 -05:00
// invert normals
aFill = basegfx::tools::invertNormals(aFill);
}
}
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
// texture coordinates
if(!getSdrLFSAttribute().getFill().isDefault())
2008-10-17 03:40:10 -05:00
{
// handle texture coordinates X
const bool bParallelX(::com::sun::star::drawing::TextureProjectionMode_PARALLEL == getSdr3DObjectAttribute().getTextureProjectionX());
const bool bObjectSpecificX(::com::sun::star::drawing::TextureProjectionMode_OBJECTSPECIFIC == getSdr3DObjectAttribute().getTextureProjectionX());
const bool bSphereX(!bParallelX && (::com::sun::star::drawing::TextureProjectionMode_SPHERE == getSdr3DObjectAttribute().getTextureProjectionX()));
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
// handle texture coordinates Y
const bool bParallelY(::com::sun::star::drawing::TextureProjectionMode_PARALLEL == getSdr3DObjectAttribute().getTextureProjectionY());
const bool bObjectSpecificY(::com::sun::star::drawing::TextureProjectionMode_OBJECTSPECIFIC == getSdr3DObjectAttribute().getTextureProjectionY());
const bool bSphereY(!bParallelY && (::com::sun::star::drawing::TextureProjectionMode_SPHERE == getSdr3DObjectAttribute().getTextureProjectionY()));
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
if(bParallelX || bParallelY)
{
// apply parallel texture coordinates in X and/or Y
const basegfx::B3DRange aRange(basegfx::tools::getRange(aFill));
aFill = basegfx::tools::applyDefaultTextureCoordinatesParallel(aFill, aRange, bParallelX, bParallelY);
}
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
if(bSphereX || bSphereY)
{
// apply spherical texture coordinates in X and/or Y
const basegfx::B3DRange aRange(basegfx::tools::getRange(aFill));
const basegfx::B3DPoint aCenter(aRange.getCenter());
aFill = basegfx::tools::applyDefaultTextureCoordinatesSphere(aFill, aCenter, bSphereX, bSphereY);
}
if(bObjectSpecificX || bObjectSpecificY)
{
// object-specific
for(sal_uInt32 a(0L); a < aFill.count(); a++)
2006-05-12 05:54:47 -05:00
{
2008-10-17 03:40:10 -05:00
basegfx::B3DPolygon aTmpPoly(aFill.getB3DPolygon(a));
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
if(aTmpPoly.count() >= 4L)
{
for(sal_uInt32 b(0L); b < 4L; b++)
2006-05-12 05:54:47 -05:00
{
2008-10-17 03:40:10 -05:00
basegfx::B2DPoint aPoint(aTmpPoly.getTextureCoordinate(b));
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
if(bObjectSpecificX)
{
aPoint.setX((1L == b || 2L == b) ? 1.0 : 0.0);
}
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
if(bObjectSpecificY)
{
aPoint.setY((2L == b || 3L == b) ? 1.0 : 0.0);
2006-05-12 05:54:47 -05:00
}
2008-10-17 03:40:10 -05:00
aTmpPoly.setTextureCoordinate(b, aPoint);
2006-05-12 05:54:47 -05:00
}
2008-10-17 03:40:10 -05:00
aFill.setB3DPolygon(a, aTmpPoly);
2006-05-12 05:54:47 -05:00
}
}
}
2008-10-17 03:40:10 -05:00
// transform texture coordinates to texture size
basegfx::B2DHomMatrix aTexMatrix;
aTexMatrix.scale(getTextureSize().getX(), getTextureSize().getY());
aFill.transformTextureCoordiantes(aTexMatrix);
}
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
// build vector of PolyPolygons
::std::vector< basegfx::B3DPolyPolygon > a3DPolyPolygonVector;
2006-05-12 05:54:47 -05:00
2008-10-17 03:40:10 -05:00
for(sal_uInt32 a(0L); a < aFill.count(); a++)
{
a3DPolyPolygonVector.push_back(basegfx::B3DPolyPolygon(aFill.getB3DPolygon(a)));
}
if(!getSdrLFSAttribute().getFill().isDefault())
2008-10-17 03:40:10 -05:00
{
// add fill
2006-10-19 04:40:02 -05:00
aRetval = create3DPolyPolygonFillPrimitives(
2008-10-17 03:40:10 -05:00
a3DPolyPolygonVector,
getTransform(),
getTextureSize(),
getSdr3DObjectAttribute(),
getSdrLFSAttribute().getFill(),
2006-05-12 05:54:47 -05:00
getSdrLFSAttribute().getFillFloatTransGradient());
}
2008-10-17 03:40:10 -05:00
else
{
// create simplified 3d hit test geometry
aRetval = createHiddenGeometryPrimitives3D(
2008-10-17 03:40:10 -05:00
a3DPolyPolygonVector,
getTransform(),
getTextureSize(),
getSdr3DObjectAttribute());
2008-10-17 03:40:10 -05:00
}
2006-05-12 05:54:47 -05:00
// add line
if(!getSdrLFSAttribute().getLine().isDefault())
2006-05-12 05:54:47 -05:00
{
2006-08-09 10:51:16 -05:00
basegfx::B3DPolyPolygon aLine(basegfx::tools::createCubePolyPolygonFromB3DRange(aUnitRange));
const Primitive3DSequence aLines(create3DPolyPolygonLinePrimitives(
aLine, getTransform(), getSdrLFSAttribute().getLine()));
2006-10-19 04:40:02 -05:00
appendPrimitive3DSequenceToPrimitive3DSequence(aRetval, aLines);
2006-05-12 05:54:47 -05:00
}
// add shadow
if(!getSdrLFSAttribute().getShadow().isDefault() && aRetval.hasElements())
2006-05-12 05:54:47 -05:00
{
const Primitive3DSequence aShadow(createShadowPrimitive3D(
aRetval, getSdrLFSAttribute().getShadow(), getSdr3DObjectAttribute().getShadow3D()));
2006-10-19 04:40:02 -05:00
appendPrimitive3DSequenceToPrimitive3DSequence(aRetval, aShadow);
2006-05-12 05:54:47 -05:00
}
2006-10-19 04:40:02 -05:00
return aRetval;
2006-05-12 05:54:47 -05:00
}
2006-10-19 04:40:02 -05:00
SdrCubePrimitive3D::SdrCubePrimitive3D(
2006-08-09 10:51:16 -05:00
const basegfx::B3DHomMatrix& rTransform,
const basegfx::B2DVector& rTextureSize,
const attribute::SdrLineFillShadowAttribute3D& rSdrLFSAttribute,
2006-10-19 04:40:02 -05:00
const attribute::Sdr3DObjectAttribute& rSdr3DObjectAttribute)
: SdrPrimitive3D(rTransform, rTextureSize, rSdrLFSAttribute, rSdr3DObjectAttribute)
2006-05-12 05:54:47 -05:00
{
}
2006-10-19 04:40:02 -05:00
bool SdrCubePrimitive3D::operator==(const BasePrimitive3D& rPrimitive) const
2006-05-12 05:54:47 -05:00
{
2006-10-19 04:40:02 -05:00
return SdrPrimitive3D::operator==(rPrimitive);
2006-05-12 05:54:47 -05:00
}
basegfx::B3DRange SdrCubePrimitive3D::getB3DRange(const geometry::ViewInformation3D& /*rViewInformation*/) const
2006-05-12 05:54:47 -05:00
{
2006-05-19 03:34:56 -05:00
// use defaut from sdrPrimitive3D which uses transformation expanded by line width/2.
// The parent implementation which uses the ranges of the decomposition would be more
2006-05-19 03:34:56 -05:00
// corrcet, but for historical reasons it is necessary to do the old method: To get
// the range of the non-transformed geometry and transform it then. This leads to different
// ranges where the new method is more correct, but the need to keep the old behaviour
// has priority here.
2006-08-09 10:51:16 -05:00
return getStandard3DRange();
2006-05-12 05:54:47 -05:00
}
2006-10-19 04:40:02 -05:00
// provide unique ID
2007-03-06 05:36:13 -06:00
ImplPrimitrive3DIDBlock(SdrCubePrimitive3D, PRIMITIVE3D_ID_SDRCUBEPRIMITIVE3D)
2006-08-09 10:51:16 -05:00
} // end of namespace primitive3d
2006-05-12 05:54:47 -05:00
} // end of namespace drawinglayer
//////////////////////////////////////////////////////////////////////////////
// eof
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */