]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/mapxml/plugin.cpp
- Updated UFA:Plugin (mattn2)
[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 "plugin.h"
23
24 #include "ibrush.h"
25 #include "ipatch.h"
26 #include "ifiletypes.h"
27 #include "ieclass.h"
28 #include "qerplugin.h"
29
30 #include "modulesystem/singletonmodule.h"
31 #include "typesystem.h"
32
33 #include "xmlparse.h"
34 #include "xmlwrite.h"
35
36
37 class MapXMLDependencies :
38   public GlobalRadiantModuleRef,
39   public GlobalBrushModuleRef,
40   public GlobalPatchModuleRef,
41   public GlobalFiletypesModuleRef,
42   public GlobalEntityClassManagerModuleRef,
43   public GlobalSceneGraphModuleRef
44 {
45 public:
46   MapXMLDependencies() :
47     GlobalBrushModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("brushtypes")),
48     GlobalPatchModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("patchtypes")),
49     GlobalEntityClassManagerModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("entityclass"))
50   {
51   }
52 };
53
54 class MapXMLAPI : public TypeSystemRef, public MapFormat
55 {
56 public:
57   typedef MapFormat Type;
58   STRING_CONSTANT(Name, "xmlq3");
59
60   MapXMLAPI()
61   {
62     GlobalFiletypesModule::getTable().addType(Type::Name(), Name(), filetype_t("xml quake3 maps", "*.xmap"));
63   }
64   MapFormat* getTable()
65   {
66     return this;
67   }
68
69   void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const
70   {
71     Map_Read(root, inputStream, entityTable);
72   }
73   void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const
74   {
75     Map_Write(root, traverse, outputStream);
76   }
77 };
78
79 typedef SingletonModule<MapXMLAPI, MapXMLDependencies> MapXMLModule;
80
81 MapXMLModule g_MapXMLModule;
82
83
84
85 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
86 {
87   initialiseModule(server);
88
89   g_MapXMLModule.selfRegister();
90 }