]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/mapxml/plugin.cpp
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / plugins / mapxml / 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 "ibrush.h"
23 #include "ipatch.h"
24 #include "ifiletypes.h"
25 #include "ieclass.h"
26 #include "qerplugin.h"
27
28 #include "modulesystem/singletonmodule.h"
29 #include "typesystem.h"
30
31 #include "xmlparse.h"
32 #include "xmlwrite.h"
33
34
35 class MapXMLDependencies :
36         public GlobalRadiantModuleRef,
37         public GlobalBrushModuleRef,
38         public GlobalFiletypesModuleRef,
39         public GlobalEntityClassManagerModuleRef,
40         public GlobalSceneGraphModuleRef
41 {
42 PatchModuleRef m_patchDef2Doom3Module;
43 PatchModuleRef m_patchDoom3Module;
44 public:
45 MapXMLDependencies() :
46         GlobalBrushModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "brushtypes" ) ),
47         GlobalEntityClassManagerModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "entityclass" ) ),
48         m_patchDef2Doom3Module( "def2doom3" ),
49         m_patchDoom3Module( "doom3" ){
50 }
51
52 BrushCreator& getBrushDoom3(){
53         return GlobalBrushModule::getTable();
54 }
55
56 PatchCreator& getPatchDoom3(){
57         return *m_patchDoom3Module.getTable();
58 }
59
60 PatchCreator& getPatchDef2Doom3(){
61         return *m_patchDef2Doom3Module.getTable();
62 }
63 };
64
65 class MapXMLAPI : public TypeSystemRef, public MapFormat
66 {
67 public:
68 typedef MapFormat Type;
69
70 STRING_CONSTANT( Name, "xmldoom3" );
71
72 MapXMLAPI(){
73         GlobalFiletypesModule::getTable().addType( Type::Name(), Name(), filetype_t( "xml doom3 maps", "*.xmap" ) );
74 }
75
76 MapFormat* getTable(){
77         return this;
78 }
79
80 void readGraph( scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable ) const {
81         Map_Read( root, inputStream, entityTable );
82 }
83
84 void writeGraph( scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream, bool writeComments ) const {
85         Map_Write( root, traverse, outputStream );
86 }
87 };
88
89 typedef SingletonModule<MapXMLAPI, MapXMLDependencies> MapXMLModule;
90
91 MapXMLModule g_MapXMLModule;
92
93
94 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
95         GlobalErrorStream::instance().setOutputStream( server.getErrorStream() );
96         GlobalOutputStream::instance().setOutputStream( server.getOutputStream() );
97         GlobalDebugMessageHandler::instance().setHandler( server.getDebugMessageHandler() );
98         GlobalModuleServer::instance().set( server );
99
100         g_MapXMLModule.selfRegister();
101 }