]> icculus.org git repositories - divverent/netradiant.git/blob - plugins/mapq3/plugin.cpp
detect the wrong type Q3 format by a different error message when loading
[divverent/netradiant.git] / plugins / mapq3 / 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 "iscriplib.h"
25 #include "ibrush.h"
26 #include "ipatch.h"
27 #include "ifiletypes.h"
28 #include "ieclass.h"
29 #include "qerplugin.h"
30
31 #include "scenelib.h"
32 #include "string/string.h"
33 #include "stringio.h"
34 #include "generic/constant.h"
35
36 #include "modulesystem/singletonmodule.h"
37
38 #include "parse.h"
39 #include "write.h"
40
41
42 class MapDoom3Dependencies :
43   public GlobalRadiantModuleRef,
44   public GlobalFiletypesModuleRef,
45   public GlobalScripLibModuleRef,
46   public GlobalEntityClassManagerModuleRef,
47   public GlobalSceneGraphModuleRef,
48   public GlobalBrushModuleRef
49 {
50   PatchModuleRef m_patchDef2Doom3Module;
51   PatchModuleRef m_patchDoom3Module;
52 public:
53   MapDoom3Dependencies() :
54     GlobalEntityClassManagerModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("entityclass")),
55     GlobalBrushModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("brushtypes")),
56     m_patchDef2Doom3Module("def2doom3"),
57     m_patchDoom3Module("doom3")
58   {
59   }
60   BrushCreator& getBrushDoom3()
61   {
62     return GlobalBrushModule::getTable();
63   }
64   PatchCreator& getPatchDoom3()
65   {
66     return *m_patchDoom3Module.getTable();
67   }
68   PatchCreator& getPatchDef2Doom3()
69   {
70     return *m_patchDef2Doom3Module.getTable();
71   }
72 };
73
74 class MapDoom3API : public TypeSystemRef, public MapFormat, public PrimitiveParser
75 {
76   MapDoom3Dependencies& m_dependencies;
77 public:
78   typedef MapFormat Type;
79   STRING_CONSTANT(Name, "mapdoom3");
80   INTEGER_CONSTANT(MapVersion, 2);
81
82   MapDoom3API(MapDoom3Dependencies& dependencies) : m_dependencies(dependencies)
83   {
84     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("doom3 maps", "*.map"));
85     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("doom3 region", "*.reg"));
86   }
87   MapFormat* getTable()
88   {
89     return this;
90   }
91
92   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
93   {
94     const char* primitive = tokeniser.getToken();
95     if(primitive != 0)
96     {
97       if(string_equal(primitive, "patchDef3"))
98       {
99         return m_dependencies.getPatchDoom3().createPatch();
100       }
101       else if(string_equal(primitive, "patchDef2"))
102       {
103         return m_dependencies.getPatchDef2Doom3().createPatch();
104       }
105       else if(string_equal(primitive, "brushDef3"))
106       {
107         return m_dependencies.getBrushDoom3().createBrush();
108       }
109     }
110
111     Tokeniser_unexpectedError(tokeniser, primitive, "#doom3-primitive");
112     return g_nullNode;
113   }
114   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
115   {
116     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
117     tokeniser.nextLine();
118     if(!Tokeniser_parseToken(tokeniser, "Version"))
119     {
120       return;
121     }
122     std::size_t version;
123     if(!Tokeniser_getSize(tokeniser, version))
124     {
125       return;
126     }
127     if(version != MapVersion())
128     {
129       globalErrorStream() << "Doom 3 map version " << MapVersion() << " supported, version is " << Unsigned(version) << "\n";
130       return;
131     }
132     tokeniser.nextLine();
133     Map_Read(root, tokeniser, entityTable, *this);
134     tokeniser.release();
135   }
136   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
137   {
138     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
139     writer.writeToken("Version");
140     writer.writeInteger(MapVersion());
141     writer.nextLine();
142     Map_Write(root, traverse, writer, false);
143     writer.release();
144   }
145 };
146
147 typedef SingletonModule<
148   MapDoom3API,
149   MapDoom3Dependencies,
150   DependenciesAPIConstructor<MapDoom3API, MapDoom3Dependencies>
151 >
152 MapDoom3Module;
153
154 MapDoom3Module g_MapDoom3Module;
155
156
157 class MapQuake4API : public TypeSystemRef, public MapFormat, public PrimitiveParser
158 {
159   MapDoom3Dependencies& m_dependencies;
160 public:
161   typedef MapFormat Type;
162   STRING_CONSTANT(Name, "mapquake4");
163   INTEGER_CONSTANT(MapVersion, 3);
164
165   MapQuake4API(MapDoom3Dependencies& dependencies) : m_dependencies(dependencies)
166   {
167     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake4 maps", "*.map"));
168     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake4 region", "*.reg"));
169   }
170   MapFormat* getTable()
171   {
172     return this;
173   }
174
175   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
176   {
177     const char* primitive = tokeniser.getToken();
178     if(primitive != 0)
179     {
180       if(string_equal(primitive, "patchDef3"))
181       {
182         return m_dependencies.getPatchDoom3().createPatch();
183       }
184       else if(string_equal(primitive, "patchDef2"))
185       {
186         return m_dependencies.getPatchDef2Doom3().createPatch();
187       }
188       else if(string_equal(primitive, "brushDef3"))
189       {
190         return m_dependencies.getBrushDoom3().createBrush();
191       }
192     }
193
194     Tokeniser_unexpectedError(tokeniser, primitive, "#quake4-primitive");
195     return g_nullNode;
196   }
197   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
198   {
199     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
200     tokeniser.nextLine();
201     if(!Tokeniser_parseToken(tokeniser, "Version"))
202     {
203       return;
204     }
205     std::size_t version;
206     if(!Tokeniser_getSize(tokeniser, version))
207     {
208       return;
209     }
210     if(version != MapVersion())
211     {
212       globalErrorStream() << "Quake 4 map version " << MapVersion() << " supported, version is " << Unsigned(version) << "\n";
213       return;
214     }
215     tokeniser.nextLine();
216     Map_Read(root, tokeniser, entityTable, *this);
217     tokeniser.release();
218   }
219   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
220   {
221     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
222     writer.writeToken("Version");
223     writer.writeInteger(MapVersion());
224     writer.nextLine();
225     Map_Write(root, traverse, writer, false);
226     writer.release();
227   }
228 };
229
230 typedef SingletonModule<
231   MapQuake4API,
232   MapDoom3Dependencies,
233   DependenciesAPIConstructor<MapQuake4API, MapDoom3Dependencies>
234 >
235 MapQuake4Module;
236
237 MapQuake4Module g_MapQuake4Module;
238
239
240 class MapDependencies : 
241   public GlobalRadiantModuleRef,
242   public GlobalBrushModuleRef,
243   public GlobalPatchModuleRef,
244   public GlobalFiletypesModuleRef,
245   public GlobalScripLibModuleRef,
246   public GlobalEntityClassManagerModuleRef,
247   public GlobalSceneGraphModuleRef
248 {
249 public:
250   MapDependencies() :
251     GlobalBrushModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("brushtypes")),
252     GlobalPatchModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("patchtypes")),
253     GlobalEntityClassManagerModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("entityclass"))
254   {
255   }
256 };
257
258 class MapQ3API : public TypeSystemRef, public MapFormat, public PrimitiveParser
259 {
260   mutable bool detectedFormat;
261 public:
262   typedef MapFormat Type;
263   STRING_CONSTANT(Name, "mapq3");
264
265   MapQ3API()
266   {
267     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake3 maps", "*.map"));
268     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake3 region", "*.reg"));
269   }
270   MapFormat* getTable()
271   {
272     return this;
273   }
274
275   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
276   {
277     const char* primitive = tokeniser.getToken();
278     if(primitive != 0)
279     {
280       if(string_equal(primitive, "patchDef2"))
281       {
282         return GlobalPatchModule::getTable().createPatch();
283       }
284       if(GlobalBrushModule::getTable().useAlternativeTextureProjection())
285       {
286         if(string_equal(primitive, "brushDef"))
287         {
288           detectedFormat = true;
289           return GlobalBrushModule::getTable().createBrush();
290         }
291         else if(!detectedFormat && string_equal(primitive, "("))
292         {
293           detectedFormat = true;
294           Tokeniser_unexpectedError(tokeniser, primitive, "#quake3-switch-to-texdef");
295           return g_nullNode;
296         }
297       }
298       else
299       {
300         if(string_equal(primitive, "("))
301         {
302           detectedFormat = true;
303           tokeniser.ungetToken(); // (
304           return GlobalBrushModule::getTable().createBrush();
305         }
306         else if(!detectedFormat && string_equal(primitive, "("))
307         {
308           detectedFormat = true;
309           Tokeniser_unexpectedError(tokeniser, primitive, "#quake3-switch-to-brush-primitives");
310           return g_nullNode;
311         }
312       }
313     }
314
315     Tokeniser_unexpectedError(tokeniser, primitive, "#quake3-primitive");
316     return g_nullNode;
317   }
318
319   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
320   {
321     detectedFormat = false;
322     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
323     Map_Read(root, tokeniser, entityTable, *this);
324     tokeniser.release();
325   }
326   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
327   {
328     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
329     Map_Write(root, traverse, writer, false);
330     writer.release();
331   }
332 };
333
334 typedef SingletonModule<MapQ3API, MapDependencies> MapQ3Module;
335
336 MapQ3Module g_MapQ3Module;
337
338
339 class MapQ1API : public TypeSystemRef, public MapFormat, public PrimitiveParser
340 {
341 public:
342   typedef MapFormat Type;
343   STRING_CONSTANT(Name, "mapq1");
344
345   MapQ1API()
346   {
347     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake maps", "*.map"));
348     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake region", "*.reg"));
349   }
350   MapFormat* getTable()
351   {
352     return this;
353   }
354
355   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
356   {
357     const char* primitive = tokeniser.getToken();
358     if(primitive != 0)
359     {
360       if(string_equal(primitive, "("))
361       {
362         tokeniser.ungetToken(); // (
363         return GlobalBrushModule::getTable().createBrush();
364       }
365     }
366
367     Tokeniser_unexpectedError(tokeniser, primitive, "#quake-primitive");
368     return g_nullNode;
369   }
370   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
371   {
372     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
373     Map_Read(root, tokeniser, entityTable, *this);
374     tokeniser.release();
375   }
376   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
377   {
378     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
379     Map_Write(root, traverse, writer, true);
380     writer.release();
381   }
382 };
383
384 typedef SingletonModule<MapQ1API, MapDependencies> MapQ1Module;
385
386 MapQ1Module g_MapQ1Module;
387
388
389 class MapHalfLifeAPI : public TypeSystemRef, public MapFormat, public PrimitiveParser
390 {
391 public:
392   typedef MapFormat Type;
393   STRING_CONSTANT(Name, "maphl");
394
395   MapHalfLifeAPI()
396   {
397     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("half-life maps", "*.map"));
398     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("half-life region", "*.reg"));
399   }
400   MapFormat* getTable()
401   {
402     return this;
403   }
404
405   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
406   {
407     const char* primitive = tokeniser.getToken();
408     if(primitive != 0)
409     {
410       if(string_equal(primitive, "("))
411       {
412         tokeniser.ungetToken(); // (
413         return GlobalBrushModule::getTable().createBrush();
414       }
415     }
416
417     Tokeniser_unexpectedError(tokeniser, primitive, "#halflife-primitive");
418     return g_nullNode;
419   }
420   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
421   {
422     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
423     Map_Read(root, tokeniser, entityTable, *this);
424     tokeniser.release();
425   }
426   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
427   {
428     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
429     Map_Write(root, traverse, writer, true);
430     writer.release();
431   }
432 };
433
434 typedef SingletonModule<MapHalfLifeAPI, MapDependencies> MapHalfLifeModule;
435
436 MapHalfLifeModule g_MapHalfLifeModule;
437
438
439 class MapQ2API : public TypeSystemRef, public MapFormat, public PrimitiveParser
440 {
441 public:
442   typedef MapFormat Type;
443   STRING_CONSTANT(Name, "mapq2");
444
445   MapQ2API()
446   {
447     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake2 maps", "*.map"));
448     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("quake2 region", "*.reg"));
449   }
450   MapFormat* getTable()
451   {
452     return this;
453   }
454   scene::Node& parsePrimitive(Tokeniser& tokeniser) const
455   {
456     const char* primitive = tokeniser.getToken();
457     if(primitive != 0)
458     {
459       if(string_equal(primitive, "("))
460       {
461         tokeniser.ungetToken(); // (
462         return GlobalBrushModule::getTable().createBrush();
463       }
464     }
465
466     Tokeniser_unexpectedError(tokeniser, primitive, "#quake2-primitive");
467     return g_nullNode;
468   }
469   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
470   {
471     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
472     Map_Read(root, tokeniser, entityTable, *this);
473     tokeniser.release();
474   }
475   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
476   {
477     TokenWriter& writer = GlobalScripLibModule::getTable().m_pfnNewSimpleTokenWriter(outputStream);
478     Map_Write(root, traverse, writer, true);
479     writer.release();
480   }
481 };
482
483 typedef SingletonModule<MapQ2API, MapDependencies> MapQ2Module;
484
485 MapQ2Module g_MapQ2Module;
486
487
488
489 #define PARSE_ERROR "error parsing VMF"
490
491 inline void parseToken(Tokeniser& tokeniser, const char* token)
492 {
493   ASSERT_MESSAGE(Tokeniser_parseToken(tokeniser, token), "error parsing vmf: token not found: " << makeQuoted(token));
494 }
495
496 #include "generic/arrayrange.h"
497
498 class VMFBlock;
499 typedef ArrayConstRange<VMFBlock> VMFBlockArrayRange;
500
501
502 class VMFBlock
503 {
504 public:
505   const char* m_name;
506   VMFBlockArrayRange m_children;
507   typedef const VMFBlock Value;
508
509   VMFBlock(const char* name, VMFBlockArrayRange children = VMFBlockArrayRange(0, 0)) : m_name(name), m_children(children)
510   {
511   }
512   const char* name() const
513   {
514     return m_name;
515   }
516   typedef Value* const_iterator;
517   const_iterator begin() const
518   {
519     return m_children.first;
520   }
521   const_iterator end() const
522   {
523     return m_children.last;
524   }
525 };
526
527 const VMFBlock c_vmfNormals("normals");
528 const VMFBlock c_vmfDistances("distances");
529 const VMFBlock c_vmfOffsets("offsets");
530 const VMFBlock c_vmfOffsetNormals("offset_normals");
531 const VMFBlock c_vmfAlphas("alphas");
532 const VMFBlock c_vmfTriangleTags("triangle_tags");
533 const VMFBlock c_vmfAllowedVerts("allowed_verts");
534 const VMFBlock c_vmfDispInfoChildren[] = { c_vmfNormals, c_vmfDistances, c_vmfOffsets, c_vmfOffsetNormals, c_vmfAlphas, c_vmfTriangleTags, c_vmfAllowedVerts };
535 const VMFBlock c_vmfDispInfo("dispinfo", ARRAY_RANGE(c_vmfDispInfoChildren));
536 const VMFBlock c_vmfSideChildren[] = { c_vmfDispInfo };
537 const VMFBlock c_vmfSide("side", ARRAY_RANGE(c_vmfSideChildren));
538 const VMFBlock c_vmfEditor("editor");
539 const VMFBlock c_vmfVersionInfo("versioninfo");
540 const VMFBlock c_vmfViewSettings("viewsettings");
541 const VMFBlock c_vmfCordon("cordon");
542 const VMFBlock c_vmfGroupChildren[] = { c_vmfEditor };
543 const VMFBlock c_vmfGroup("group", ARRAY_RANGE(c_vmfGroupChildren));
544 const VMFBlock c_vmfCamera("camera");
545 const VMFBlock c_vmfCamerasChildren[] = { c_vmfCamera };
546 const VMFBlock c_vmfCameras("cameras", ARRAY_RANGE(c_vmfCamerasChildren));
547 VMFBlock c_vmfVisGroup("visgroup");
548 VMFBlock c_vmfVisGroups("visgroups", VMFBlockArrayRange(&c_vmfVisGroup, &c_vmfVisGroup+1));
549 const VMFBlock c_vmfSolidChildren[] = { c_vmfSide, c_vmfEditor };
550 const VMFBlock c_vmfSolid("solid", ARRAY_RANGE(c_vmfSolidChildren));
551 const VMFBlock c_vmfConnections("connections");
552 const VMFBlock c_vmfEntityChildren[] = { c_vmfEditor, c_vmfSolid, c_vmfGroup, c_vmfConnections };
553 const VMFBlock c_vmfEntity("entity", ARRAY_RANGE(c_vmfEntityChildren));
554 const VMFBlock c_vmfWorldChildren[] = { c_vmfEditor, c_vmfSolid, c_vmfGroup };
555 const VMFBlock c_vmfWorld("world", ARRAY_RANGE(c_vmfWorldChildren));
556 const VMFBlock c_vmfRootChildren[] = { c_vmfVersionInfo, c_vmfViewSettings, c_vmfVisGroups, c_vmfWorld, c_vmfEntity, c_vmfCameras, c_vmfCordon };
557 const VMFBlock c_vmfRoot("", ARRAY_RANGE(c_vmfRootChildren));
558
559 class VMFInit
560 {
561 public:
562   VMFInit()
563   {
564     c_vmfVisGroup.m_children = VMFBlockArrayRange(&c_vmfVisGroup, &c_vmfVisGroup+1);
565   }
566 };
567
568 VMFInit g_VMFInit;
569
570 int g_vmf_entities;
571 int g_vmf_brushes;
572
573 inline VMFBlock::const_iterator VMFBlock_find(const VMFBlock& block, const char* name)
574 {
575   for(VMFBlock::const_iterator i = block.begin(); i != block.end(); ++i)
576   {
577     if(string_equal(name, (*i).name()))
578     {
579       return i;
580     }
581   }
582   return block.end();
583 }
584
585 void VMF_parseBlock(Tokeniser& tokeniser, const VMFBlock& block)
586 {
587   for(;;)
588   {
589     const char* key = tokeniser.getToken();
590     if(key == 0 || string_equal(key, "}"))
591     {
592       tokeniser.ungetToken();
593       break;
594     }
595     CopiedString tmp(key);
596     tokeniser.nextLine();
597     const char* value = tokeniser.getToken();
598     tokeniser.nextLine();
599     if(string_equal(value, "{"))
600     {
601       VMFBlock::const_iterator i = VMFBlock_find(block, tmp.c_str());
602       ASSERT_MESSAGE(i != block.end(), "error parsing vmf block " << makeQuoted(block.name()) << ": unknown block: " << makeQuoted(tmp.c_str()));
603       if(string_equal(tmp.c_str(), "solid"))
604       {
605         ++g_vmf_brushes;
606       }
607       else if(string_equal(tmp.c_str(), "entity") || string_equal(tmp.c_str(), "world"))
608       {
609         ++g_vmf_entities;
610       }
611       VMF_parseBlock(tokeniser, *i);
612       parseToken(tokeniser, "}");
613       tokeniser.nextLine();
614     }
615     else
616     {
617       // was a pair
618     }
619   }
620 }
621
622 void VMF_Read(scene::Node& root, Tokeniser& tokeniser, EntityCreator& entityTable)
623 {
624   g_vmf_entities = g_vmf_brushes = 0;
625   VMF_parseBlock(tokeniser, c_vmfRoot);
626   globalOutputStream() << g_vmf_entities << " entities\n";
627   globalOutputStream() << g_vmf_brushes << " brushes\n";
628 }
629
630 class MapVMFAPI : public TypeSystemRef, public MapFormat
631 {
632 public:
633   typedef MapFormat Type;
634   STRING_CONSTANT(Name, "mapvmf");
635
636   MapVMFAPI()
637   {
638     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("vmf maps", "*.vmf"));
639     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("vmf region", "*.reg"));
640   }
641   MapFormat* getTable()
642   {
643     return this;
644   }
645
646   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
647   {
648     Tokeniser& tokeniser = GlobalScripLibModule::getTable().m_pfnNewSimpleTokeniser(inputStream);
649     VMF_Read(root, tokeniser, entityTable);
650     tokeniser.release();
651   }
652   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
653   {
654   }
655 };
656
657 typedef SingletonModule<MapVMFAPI, MapDependencies> MapVMFModule;
658
659 MapVMFModule g_MapVMFModule;
660
661
662
663 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
664 {
665   initialiseModule(server);
666
667   g_MapDoom3Module.selfRegister();
668   g_MapQuake4Module.selfRegister();
669   g_MapQ3Module.selfRegister();
670   g_MapQ1Module.selfRegister();
671   g_MapQ2Module.selfRegister();
672   g_MapHalfLifeModule.selfRegister();
673   g_MapVMFModule.selfRegister();
674 }