1 | /*
|
---|
2 | -----------------------------------------------------------------------------
|
---|
3 | This source file is part of OGRE
|
---|
4 | (Object-oriented Graphics Rendering Engine)
|
---|
5 | For the latest info, see http://www.ogre3d.org/
|
---|
6 |
|
---|
7 | Copyright (c) 2000-2005 The OGRE Team
|
---|
8 | Also see acknowledgements in Readme.html
|
---|
9 |
|
---|
10 | This program is free software; you can redistribute it and/or modify it under
|
---|
11 | the terms of the GNU Lesser General Public License as published by the Free Software
|
---|
12 | Foundation; either version 2 of the License, or (at your option) any later
|
---|
13 | version.
|
---|
14 |
|
---|
15 | This program is distributed in the hope that it will be useful, but WITHOUT
|
---|
16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
17 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU Lesser General Public License along with
|
---|
20 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
---|
21 | Place - Suite 330, Boston, MA 02111-1307, USA, or go to
|
---|
22 | http://www.gnu.org/copyleft/lesser.txt.
|
---|
23 | -----------------------------------------------------------------------------
|
---|
24 | */
|
---|
25 | // Original free version by:
|
---|
26 | // Magic Software, Inc.
|
---|
27 | // http://www.magic-software.com
|
---|
28 | // Copyright (c) 2000, All Rights Reserved
|
---|
29 |
|
---|
30 | #ifndef __MovablePlane_H__
|
---|
31 | #define __MovablePlane_H__
|
---|
32 |
|
---|
33 | #include "OgrePrerequisites.h"
|
---|
34 |
|
---|
35 | #include "OgrePlane.h"
|
---|
36 | #include "OgreMovableObject.h"
|
---|
37 |
|
---|
38 | namespace Ogre {
|
---|
39 |
|
---|
40 |
|
---|
41 | /** Definition of a Plane that may be attached to a node, and the derived
|
---|
42 | details of it retrieved simply.
|
---|
43 | @remarks
|
---|
44 | This plane is not here for rendering purposes, it's to allow you to attach
|
---|
45 | planes to the scene in order to have them move and follow nodes on their
|
---|
46 | own, which is useful if you're using the plane for some kind of calculation,
|
---|
47 | e.g. reflection.
|
---|
48 | */
|
---|
49 | class _OgreExport MovablePlane : public Plane, public MovableObject
|
---|
50 | {
|
---|
51 | protected:
|
---|
52 | String mName;
|
---|
53 | mutable Plane mDerivedPlane;
|
---|
54 | mutable Vector3 mLastTranslate;
|
---|
55 | mutable Quaternion mLastRotate;
|
---|
56 | AxisAlignedBox mNullBB;
|
---|
57 | mutable bool mDirty;
|
---|
58 | static String msMovableType;
|
---|
59 | public:
|
---|
60 |
|
---|
61 | MovablePlane(const String& name);
|
---|
62 | MovablePlane (const Plane& rhs);
|
---|
63 | /** Construct a plane through a normal, and a distance to move the plane along the normal.*/
|
---|
64 | MovablePlane (const Vector3& rkNormal, Real fConstant);
|
---|
65 | MovablePlane (const Vector3& rkNormal, const Vector3& rkPoint);
|
---|
66 | MovablePlane (const Vector3& rkPoint0, const Vector3& rkPoint1,
|
---|
67 | const Vector3& rkPoint2);
|
---|
68 | ~MovablePlane() {}
|
---|
69 | /// Overridden from MovableObject
|
---|
70 | void _notifyCurrentCamera(Camera* cam) { /* don't care */ }
|
---|
71 | /// Overridden from MovableObject
|
---|
72 | const AxisAlignedBox& getBoundingBox(void) const { return mNullBB; }
|
---|
73 | /// Overridden from MovableObject
|
---|
74 | Real getBoundingRadius(void) const { return Math::POS_INFINITY; }
|
---|
75 | /// Overridden from MovableObject
|
---|
76 | void _updateRenderQueue(RenderQueue* queue) { /* do nothing */}
|
---|
77 | /// Overridden from MovableObject
|
---|
78 | const String& getName(void) const;
|
---|
79 | /// Overridden from MovableObject
|
---|
80 | const String& getMovableType(void) const;
|
---|
81 | /// Get the derived plane as transformed by its parent node.
|
---|
82 | const Plane& _getDerivedPlane(void) const;
|
---|
83 |
|
---|
84 | };
|
---|
85 | }
|
---|
86 | #endif
|
---|