]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/model/plugin.cpp
my own uncrustify run
[xonotic/netradiant.git] / plugins / model / plugin.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
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 #include "plugin.h"
23
24 #include <stdio.h>
25 #include "picomodel.h"
26 typedef unsigned char byte;
27 #include <stdlib.h>
28 #include <algorithm>
29 #include <list>
30
31 #include "iscenegraph.h"
32 #include "irender.h"
33 #include "iselection.h"
34 #include "iimage.h"
35 #include "imodel.h"
36 #include "igl.h"
37 #include "ifilesystem.h"
38 #include "iundo.h"
39 #include "ifiletypes.h"
40
41 #include "modulesystem/singletonmodule.h"
42 #include "stream/textstream.h"
43 #include "string/string.h"
44 #include "stream/stringstream.h"
45 #include "typesystem.h"
46
47 #include "model.h"
48
49 void PicoPrintFunc( int level, const char *str ){
50         if ( str == 0 ) {
51                 return;
52         }
53         switch ( level )
54         {
55         case PICO_NORMAL:
56                 globalOutputStream() << str << "\n";
57                 break;
58
59         case PICO_VERBOSE:
60                 //globalOutputStream() << "PICO_VERBOSE: " << str << "\n";
61                 break;
62
63         case PICO_WARNING:
64                 globalErrorStream() << "PICO_WARNING: " << str << "\n";
65                 break;
66
67         case PICO_ERROR:
68                 globalErrorStream() << "PICO_ERROR: " << str << "\n";
69                 break;
70
71         case PICO_FATAL:
72                 globalErrorStream() << "PICO_FATAL: " << str << "\n";
73                 break;
74         }
75 }
76
77 void PicoLoadFileFunc( const char *name, byte **buffer, int *bufSize ){
78         *bufSize = vfsLoadFile( name, (void**) buffer );
79 }
80
81 void PicoFreeFileFunc( void* file ){
82         vfsFreeFile( file );
83 }
84
85 void pico_initialise(){
86         PicoInit();
87         PicoSetMallocFunc( malloc );
88         PicoSetFreeFunc( free );
89         PicoSetPrintFunc( PicoPrintFunc );
90         PicoSetLoadFileFunc( PicoLoadFileFunc );
91         PicoSetFreeFileFunc( PicoFreeFileFunc );
92 }
93
94
95 class PicoModelLoader : public ModelLoader
96 {
97 const picoModule_t* m_module;
98 public:
99 PicoModelLoader( const picoModule_t* module ) : m_module( module ){
100 }
101 scene::Node& loadModel( ArchiveFile& file ){
102         return loadPicoModel( m_module, file );
103 }
104 };
105
106 class ModelPicoDependencies :
107         public GlobalFileSystemModuleRef,
108         public GlobalOpenGLModuleRef,
109         public GlobalUndoModuleRef,
110         public GlobalSceneGraphModuleRef,
111         public GlobalShaderCacheModuleRef,
112         public GlobalSelectionModuleRef,
113         public GlobalFiletypesModuleRef
114 {
115 };
116
117 class ModelPicoAPI : public TypeSystemRef
118 {
119 PicoModelLoader m_modelLoader;
120 public:
121 typedef ModelLoader Type;
122
123 ModelPicoAPI( const char* extension, const picoModule_t* module ) :
124         m_modelLoader( module ){
125         StringOutputStream filter( 128 );
126         filter << "*." << extension;
127         GlobalFiletypesModule::getTable().addType( Type::Name(), extension, filetype_t( module->displayName, filter.c_str() ) );
128 }
129 ModelLoader* getTable(){
130         return &m_modelLoader;
131 }
132 };
133
134 class PicoModelAPIConstructor
135 {
136 CopiedString m_extension;
137 const picoModule_t* m_module;
138 public:
139 PicoModelAPIConstructor( const char* extension, const picoModule_t* module ) :
140         m_extension( extension ), m_module( module ){
141 }
142 const char* getName(){
143         return m_extension.c_str();
144 }
145 ModelPicoAPI* constructAPI( ModelPicoDependencies& dependencies ){
146         return new ModelPicoAPI( m_extension.c_str(), m_module );
147 }
148 void destroyAPI( ModelPicoAPI* api ){
149         delete api;
150 }
151 };
152
153
154 typedef SingletonModule<ModelPicoAPI, ModelPicoDependencies, PicoModelAPIConstructor> PicoModelModule;
155 typedef std::list<PicoModelModule> PicoModelModules;
156 PicoModelModules g_PicoModelModules;
157
158
159 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
160         initialiseModule( server );
161
162         pico_initialise();
163
164         const picoModule_t** modules = PicoModuleList( 0 );
165         while ( *modules != 0 )
166         {
167                 const picoModule_t* module = *modules++;
168                 if ( module->canload && module->load ) {
169                         for ( char*const* ext = module->defaultExts; *ext != 0; ++ext )
170                         {
171                                 g_PicoModelModules.push_back( PicoModelModule( PicoModelAPIConstructor( *ext, module ) ) );
172                                 g_PicoModelModules.back().selfRegister();
173                         }
174                 }
175         }
176 }