]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/model/cpicomodel.h
error check and bail if permission denied during gamepack install
[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         ++m_refcount;
54 }
55 void DecRef(){
56         if ( --m_refcount == 0 ) {
57                 delete this;
58         }
59 }
60
61 void AddParent( CPicoParent *parent );
62 void RemoveParent( CPicoParent *parent );
63
64 void Reload( void );
65
66 void Draw( int state, vector<IShader*> shaders, int rflags ) const;
67 //IRender
68 virtual void Draw( int state, int rflags ) const;
69 virtual const aabb_t *GetAABB() const { return &m_BBox; }
70
71 //ISelect
72 virtual bool TestRay( const ray_t *ray, vec_t *dist ) const;
73
74 int GetNumSurfaces( void );
75 char *GetShaderNameForSurface( const unsigned int surf );
76
77 private:
78 void AccumulateBBox();
79
80 char *m_name;
81 int m_frame;
82 picoModel_t *m_pModel;
83 unsigned int m_refcount;
84 aabb_t m_BBox;
85 GPtrArray *m_children;   // array of CPicoSurface
86 GPtrArray *m_parents;   // array of CPicoParent
87
88 GPtrArray* m_shaders;
89
90 bool m_bReloaded;   // managed by CModelManager
91 };
92
93 #endif // _CPICOMODEL_H_