]> icculus.org git repositories - divverent/netradiant.git/blob - plugins/mapq3/parse.cpp
initial
[divverent/netradiant.git] / plugins / mapq3 / parse.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 "parse.h"
23
24 #include <list>
25
26 #include "ientity.h"
27 #include "ibrush.h"
28 #include "ipatch.h"
29 #include "ieclass.h"
30 #include "iscriplib.h"
31 #include "scenelib.h"
32 #include "string/string.h"
33 #include "stringio.h"
34 #include "eclasslib.h"
35
36 inline MapImporter* Node_getMapImporter(scene::Node& node)
37 {
38   return NodeTypeCast<MapImporter>::cast(node);
39 }
40
41
42 typedef std::list< std::pair<CopiedString, CopiedString> > KeyValues;
43
44 NodeSmartReference g_nullNode(NewNullNode());
45
46
47 NodeSmartReference Entity_create(EntityCreator& entityTable, EntityClass* entityClass, const KeyValues& keyValues)
48 {
49   scene::Node& entity(entityTable.createEntity(entityClass));
50   for(KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i)
51   {
52     Node_getEntity(entity)->setKeyValue((*i).first.c_str(), (*i).second.c_str());
53   }
54   return NodeSmartReference(entity);
55 }
56
57 NodeSmartReference Entity_parseTokens(Tokeniser& tokeniser, EntityCreator& entityTable, const PrimitiveParser& parser, int index)
58 {
59   NodeSmartReference entity(g_nullNode);
60   KeyValues keyValues;
61   const char* classname = "";
62
63   int count_primitives = 0;
64   while(1)
65   {
66     tokeniser.nextLine();
67     const char* token = tokeniser.getToken();
68     if(token == 0)
69     {
70       Tokeniser_unexpectedError(tokeniser, token, "#entity-token");
71       return g_nullNode;
72     }
73     if (!strcmp(token, "}")) // end entity
74     {
75       if(entity == g_nullNode)
76       {
77         // entity does not have brushes
78         entity = Entity_create(entityTable, GlobalEntityClassManager().findOrInsert(classname, false), keyValues);
79       }
80       return entity;
81     }
82     else if(!strcmp(token, "{")) // begin primitive
83     {
84       if(entity == g_nullNode)
85       {
86         // entity has brushes
87         entity = Entity_create(entityTable, GlobalEntityClassManager().findOrInsert(classname, true), keyValues);
88       }
89
90       tokeniser.nextLine();
91
92       NodeSmartReference primitive(parser.parsePrimitive(tokeniser));
93       if(primitive == g_nullNode || !Node_getMapImporter(primitive)->importTokens(tokeniser))
94       {
95         globalErrorStream() << "brush " << count_primitives << ": parse error\n";
96         return g_nullNode;
97       }
98
99       scene::Traversable* traversable = Node_getTraversable(entity);
100       if(Node_getEntity(entity)->isContainer() && traversable != 0)
101       {
102         traversable->insert(primitive);
103       }
104       else
105       {
106         globalErrorStream() << "entity " << index << ": type " << classname << ": discarding brush " << count_primitives << "\n";
107       }
108       ++count_primitives;
109     }
110     else // epair
111     {
112       CopiedString key(token);
113       token = tokeniser.getToken();
114       if(token == 0)
115       {
116         Tokeniser_unexpectedError(tokeniser, token, "#epair-value");
117         return g_nullNode;
118       }
119       keyValues.push_back(KeyValues::value_type(key, token));
120       if(string_equal(key.c_str(), "classname"))
121       {
122         classname = keyValues.back().second.c_str();
123       }
124     }
125   }
126   // unreachable code
127   return g_nullNode;
128 }
129
130 void Map_Read(scene::Node& root, Tokeniser& tokeniser, EntityCreator& entityTable, const PrimitiveParser& parser)
131 {
132   int count_entities = 0;
133   for(;;)
134   {
135     tokeniser.nextLine();
136     if (!tokeniser.getToken()) // { or 0
137                   break;
138
139     NodeSmartReference entity(Entity_parseTokens(tokeniser, entityTable, parser, count_entities));
140
141     if(entity == g_nullNode)
142     {
143       globalErrorStream() << "entity " << count_entities << ": parse error\n";
144       return;
145     }
146
147     Node_getTraversable(root)->insert(entity);
148
149     ++count_entities;
150   }
151 }