]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/SGModelBin.hxx
Revert "Use simgear internal stuff for the singleton class."
[simgear.git] / simgear / scene / tgdb / SGModelBin.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2007 Stuart Buchanan
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_MAT_MODEL_BIN_HXX
23 #define SG_MAT_MODEL_BIN_HXX
24
25 #include <math.h>
26
27 class SGMatModelBin {
28 public:
29   struct MatModel {
30     MatModel(const SGVec3f& p, SGMatModel *m, int l, float rot) :
31       position(p), model(m), lod(l), rotation(rot)
32     { }
33     SGVec3f position;
34     SGMatModel *model;
35     int lod;
36     float rotation;
37   };
38   typedef std::vector<MatModel> MatModelList;
39
40   void insert(const MatModel& model)
41   { 
42     _models.push_back(model);   
43   }
44   
45   void insert(const SGVec3f& p, SGMatModel *m, int l, float rot)
46   { insert(MatModel(p, m, l, rot)); }
47
48   unsigned getNumModels() const
49   { return _models.size(); }
50   const MatModel& getMatModel(unsigned i) const
51   { return _models[i]; }
52   
53 private:
54   MatModelList _models;
55 };
56
57 #endif