]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGClipGroup.hxx
Add preliminary spot light animation
[simgear.git] / simgear / scene / model / SGClipGroup.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2006-2007 Mathias Froehlich 
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef SG_CLIP_GROUP_HXX
23 #define SG_CLIP_GROUP_HXX
24
25 #include <vector>
26 #include <osg/ref_ptr>
27 #include <osg/ClipPlane>
28 #include <osg/Group>
29 #include <osgUtil/RenderBin>
30
31 #include <simgear/math/SGMath.hxx>
32
33 class SGClipGroup : public osg::Group {
34 public:
35   SGClipGroup();
36   SGClipGroup(const SGClipGroup&,
37               const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
38   META_Node(simgear, SGClipGroup);
39
40   virtual osg::BoundingSphere computeBound() const;
41
42   void addClipPlane(unsigned num, const SGVec2d& p0, const SGVec2d& p1);
43   void setDrawArea(const SGVec2d& lowerLeft, const SGVec2d& upperRight);
44   void setDrawArea(const SGVec2d& bottomLeft,
45                    const SGVec2d& topLeft,
46                    const SGVec2d& bottomRight,
47                    const SGVec2d& topRight);
48
49 protected:
50   class CullCallback;
51   class ClipRenderBin;
52   struct ClipBinRegistrar;
53   std::vector<osg::ref_ptr<osg::ClipPlane> > mClipPlanes;
54 };
55
56 #endif