]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/SGLightBin.hxx
Replace SG_USE_STD() by using std::
[simgear.git] / simgear / scene / tgdb / SGLightBin.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_LIGHT_BIN_HXX
23 #define SG_LIGHT_BIN_HXX
24
25 class SGLightBin {
26 public:
27   struct Light {
28     Light(const SGVec3f& p, const SGVec4f& c) :
29       position(p), color(c)
30     { }
31     SGVec3f position;
32     SGVec4f color;
33   };
34   typedef std::vector<Light> LightList;
35
36   void insert(const Light& light)
37   { _lights.push_back(light); }
38   void insert(const SGVec3f& p, const SGVec4f& c)
39   { insert(Light(p, c)); }
40
41   unsigned getNumLights() const
42   { return _lights.size(); }
43   const Light& getLight(unsigned i) const
44   { return _lights[i]; }
45
46 private:
47   LightList _lights;
48 };
49
50 #endif