]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/model/cpicomodel.h
propagate from internal tree
[xonotic/netradiant.git] / plugins / model / cpicomodel.h
1 /*
2 Copyright (C) 1999-2007 id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5 This file is part of GtkRadiant.
6
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 #ifndef _CPICOMODEL_H_
23 #define _CPICOMODEL_H_
24
25 #include "plugin.h"
26 #include "picomodel.h"
27
28 #include "gtkr_vector.h"
29
30 class CPicoParent
31 {
32 public:
33   virtual void UpdateShaders( void ) = 0;
34 };
35
36 class CModelManager;  // forward declaration
37
38 //typedef std::pair<Str, int> PicoModelKey;
39 typedef pair<Str, int> PicoModelKey;
40
41 class CPicoModel : public IRender, public ISelect
42 {
43   friend class CModelManager;
44 public:
45   CPicoModel(const PicoModelKey& key);
46   CPicoModel(const Str& name);
47   CPicoModel(const Str& name, const int frame);
48         CPicoModel(const char *name, const int frame);
49         ~CPicoModel(); 
50   void CPicoModel::load(const char *name, const int frame);
51         
52   void IncRef()
53   {
54     ++m_refcount;
55   }
56   void DecRef()
57   {
58     if(--m_refcount == 0)
59       delete this;
60   }
61
62   void AddParent( CPicoParent *parent );
63   void RemoveParent( CPicoParent *parent );
64
65   void Reload( void );
66
67   void Draw(int state, vector<IShader*> shaders, int rflags) const;
68   //IRender
69   virtual void Draw( int state, int rflags ) const;
70   virtual const aabb_t *GetAABB() const { return &m_BBox; }
71
72   //ISelect
73   virtual bool TestRay( const ray_t *ray, vec_t *dist ) const;
74
75   int GetNumSurfaces( void );
76   char *GetShaderNameForSurface( const unsigned int surf );
77
78 private:
79         void AccumulateBBox();
80
81   char *m_name;
82   int m_frame;
83   picoModel_t *m_pModel;
84   unsigned int m_refcount;
85         aabb_t m_BBox;
86   GPtrArray *m_children; // array of CPicoSurface
87   GPtrArray *m_parents; // array of CPicoParent
88
89   GPtrArray* m_shaders;
90
91   bool m_bReloaded; // managed by CModelManager
92 };
93
94 #endif // _CPICOMODEL_H_