1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | ### File Specific: |
---|
12 | main-programmer: Patrick Boenzli |
---|
13 | */ |
---|
14 | |
---|
15 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD |
---|
16 | |
---|
17 | |
---|
18 | #include "multi_player_world_data.h" |
---|
19 | |
---|
20 | #include "util/loading/resource_manager.h" |
---|
21 | #include "state.h" |
---|
22 | #include "class_list.h" |
---|
23 | #include "substring.h" |
---|
24 | |
---|
25 | #include "util/loading/game_loader.h" |
---|
26 | #include "cd_engine.h" |
---|
27 | |
---|
28 | #include "p_node.h" |
---|
29 | #include "world_entity.h" |
---|
30 | #include "player.h" |
---|
31 | #include "camera.h" |
---|
32 | #include "environment.h" |
---|
33 | #include "terrain_entity.h" |
---|
34 | #include "test_entity.h" |
---|
35 | #include "md2/md2Model.h" |
---|
36 | #include "world_entities/projectiles/projectile.h" |
---|
37 | #include "npcs/npc_test1.h" |
---|
38 | #include "playable.h" |
---|
39 | |
---|
40 | #include "util/loading/factory.h" |
---|
41 | #include "fast_factory.h" |
---|
42 | #include "util/loading/load_param.h" |
---|
43 | |
---|
44 | #include "network_manager.h" |
---|
45 | #include "network_game_manager.h" |
---|
46 | #include "player_stats.h" |
---|
47 | |
---|
48 | |
---|
49 | #include "glmenu_imagescreen.h" |
---|
50 | |
---|
51 | |
---|
52 | |
---|
53 | using namespace std; |
---|
54 | |
---|
55 | |
---|
56 | /** |
---|
57 | * constructor of the GameWorldDataData |
---|
58 | */ |
---|
59 | MultiPlayerWorldData::MultiPlayerWorldData() |
---|
60 | : GameWorldData() |
---|
61 | { |
---|
62 | this->toggle = false; |
---|
63 | } |
---|
64 | |
---|
65 | |
---|
66 | /** |
---|
67 | * destructor for the GameWorldDataData |
---|
68 | */ |
---|
69 | MultiPlayerWorldData::~MultiPlayerWorldData() |
---|
70 | {} |
---|
71 | |
---|
72 | |
---|
73 | /** |
---|
74 | * initialize the GameWorldDataData |
---|
75 | */ |
---|
76 | ErrorMessage MultiPlayerWorldData::init() |
---|
77 | { |
---|
78 | /* call underlying function */ |
---|
79 | return GameWorldData::init(); |
---|
80 | } |
---|
81 | |
---|
82 | |
---|
83 | /** |
---|
84 | * loads the GUI data |
---|
85 | * @param root reference to the xml root element |
---|
86 | */ |
---|
87 | ErrorMessage MultiPlayerWorldData::loadGUI(const TiXmlElement* root) |
---|
88 | { |
---|
89 | /* call underlying function */ |
---|
90 | return GameWorldData::loadGUI(root); |
---|
91 | } |
---|
92 | |
---|
93 | |
---|
94 | /** |
---|
95 | * unloads the GUI data |
---|
96 | */ |
---|
97 | ErrorMessage MultiPlayerWorldData::unloadGUI() |
---|
98 | { |
---|
99 | /* call underlying function */ |
---|
100 | return GameWorldData::unloadGUI(); |
---|
101 | } |
---|
102 | |
---|
103 | |
---|
104 | /** |
---|
105 | * overloads the GameWorld::loadWorldEntities(...) class since the network WorldEntity loading is different |
---|
106 | * @param root reference to the xml root parameter |
---|
107 | */ |
---|
108 | ErrorMessage MultiPlayerWorldData::loadWorldEntities(const TiXmlElement* root) |
---|
109 | { |
---|
110 | /* load the spawning points */ |
---|
111 | const TiXmlElement* element = root->FirstChildElement("SpawningPoints"); |
---|
112 | if( element == NULL) |
---|
113 | { |
---|
114 | PRINTF(1)("NetworkWorld is missing 'SpawningPoints'\n"); |
---|
115 | } |
---|
116 | else |
---|
117 | { |
---|
118 | element = element->FirstChildElement(); |
---|
119 | // load Players/Objects/Whatever |
---|
120 | PRINTF(4)("Loading Spawning Points\n"); |
---|
121 | while( element != NULL) |
---|
122 | { |
---|
123 | BaseObject* created = Factory::fabricate(element); |
---|
124 | if( created != NULL ) |
---|
125 | printf("Created a Spawning Point %s: %s\n", created->getClassName(), created->getName()); |
---|
126 | |
---|
127 | element = element->NextSiblingElement(); |
---|
128 | glmis->step(); |
---|
129 | } |
---|
130 | PRINTF(4)("Done loading Spawning Points\n"); |
---|
131 | } |
---|
132 | |
---|
133 | /* load the WorldEntities */ |
---|
134 | element = root->FirstChildElement("WorldEntities"); |
---|
135 | if( element == NULL) |
---|
136 | { |
---|
137 | PRINTF(1)("NetworkWorld is missing 'WorldEntities'\n"); |
---|
138 | } |
---|
139 | else |
---|
140 | { |
---|
141 | element = element->FirstChildElement(); |
---|
142 | |
---|
143 | if( NetworkManager::getInstance()->isGameServer() ) |
---|
144 | { |
---|
145 | while( element != NULL) |
---|
146 | { |
---|
147 | /* pass the entity to the NetworkGameManager to be created */ |
---|
148 | BaseObject* created = Factory::fabricate(element); |
---|
149 | if( created != NULL ) |
---|
150 | PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassName(), created->getName(), created->getLeafClassID(), element->Value()); |
---|
151 | else |
---|
152 | PRINTF(1)("NetworkWorld: could not create this entity\n"); |
---|
153 | |
---|
154 | if( element->Value() != NULL && !strcmp( element->Value(), "SkyBox")) |
---|
155 | this->sky = dynamic_cast<WorldEntity*>(created); |
---|
156 | if( element->Value() != NULL && !strcmp( element->Value(), "Terrain")) |
---|
157 | { |
---|
158 | this->terrain = dynamic_cast<TerrainEntity*>(created); |
---|
159 | CDEngine::getInstance()->setTerrain(terrain); |
---|
160 | } |
---|
161 | |
---|
162 | element = element->NextSiblingElement(); |
---|
163 | |
---|
164 | |
---|
165 | glmis->step(); |
---|
166 | PRINTF(4)("Done loading NetworkWorldEntities\n"); |
---|
167 | } |
---|
168 | } |
---|
169 | else |
---|
170 | { |
---|
171 | while( element != NULL) |
---|
172 | { |
---|
173 | PRINTF(0)("load: %s\n", element->Value()); |
---|
174 | if( !strcmp(element->Value(), "Terrain") || !strcmp(element->Value(), "Building") ) |
---|
175 | { |
---|
176 | |
---|
177 | /* pass the entity to the NetworkGameManager to be created */ |
---|
178 | BaseObject* created = Factory::fabricate(element); |
---|
179 | |
---|
180 | if( created != NULL ) |
---|
181 | PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassName(), created->getName(), created->getLeafClassID(), element->Value()); |
---|
182 | else |
---|
183 | PRINTF(1)("NetworkWorld: could not create this entity\n"); |
---|
184 | |
---|
185 | if( element->Value() != NULL && !strcmp( element->Value(), "SkyBox")) |
---|
186 | this->sky = dynamic_cast<WorldEntity*>(created); |
---|
187 | if( element->Value() != NULL && !strcmp( element->Value(), "Terrain")) |
---|
188 | { |
---|
189 | this->terrain = dynamic_cast<TerrainEntity*>(created); |
---|
190 | CDEngine::getInstance()->setTerrain(terrain); |
---|
191 | } |
---|
192 | |
---|
193 | glmis->step(); |
---|
194 | PRINTF(4)("Done loading NetworkWorldEntities\n"); |
---|
195 | } |
---|
196 | element = element->NextSiblingElement(); |
---|
197 | } |
---|
198 | } |
---|
199 | |
---|
200 | |
---|
201 | if( NetworkManager::getInstance()->isGameServer()) |
---|
202 | { |
---|
203 | this->localPlayer = new Player(); |
---|
204 | |
---|
205 | #if 0 |
---|
206 | Playable* playable; |
---|
207 | const std::list<BaseObject*>* playableList = ClassList::getList(CL_PLAYABLE); |
---|
208 | assert( playableList != NULL); |
---|
209 | |
---|
210 | if (playableList != NULL) |
---|
211 | { |
---|
212 | playable = dynamic_cast<Playable*>(playableList->front()); |
---|
213 | this->localPlayer->setPlayable(playable); |
---|
214 | playable->toList(OM_GROUP_00); |
---|
215 | playable->setAbsCoor(213.37, 57.71, -47.98); |
---|
216 | playable->setPlayDirection(Quaternion(M_PI, Vector(0.0, 1.0, 0.0))); |
---|
217 | } |
---|
218 | #endif |
---|
219 | } |
---|
220 | else |
---|
221 | { |
---|
222 | /* create a Player */ |
---|
223 | this->localPlayer = new Player(); |
---|
224 | } |
---|
225 | |
---|
226 | |
---|
227 | /* init the pnode tree */ |
---|
228 | PNode::getNullParent()->init(); |
---|
229 | } |
---|
230 | // Fill the EntityLists. Tick then Draw: |
---|
231 | this->tickLists.push_back(OM_DEAD_TICK); |
---|
232 | this->tickLists.push_back(OM_ENVIRON); |
---|
233 | this->tickLists.push_back(OM_COMMON); |
---|
234 | this->tickLists.push_back(OM_PLAYERS); |
---|
235 | this->tickLists.push_back(OM_PLAYERS_PROJ); |
---|
236 | this->tickLists.push_back(OM_GROUP_00); |
---|
237 | this->tickLists.push_back(OM_GROUP_00_PROJ); |
---|
238 | this->tickLists.push_back(OM_GROUP_01); |
---|
239 | this->tickLists.push_back(OM_GROUP_01_PROJ); |
---|
240 | |
---|
241 | this->drawLists.push_back(OM_ENVIRON_NOTICK); |
---|
242 | this->drawLists.push_back(OM_ENVIRON); |
---|
243 | this->drawLists.push_back(OM_COMMON); |
---|
244 | this->drawLists.push_back(OM_PLAYERS); |
---|
245 | this->drawLists.push_back(OM_PLAYERS_PROJ); |
---|
246 | this->drawLists.push_back(OM_GROUP_00); |
---|
247 | this->drawLists.push_back(OM_GROUP_00_PROJ); |
---|
248 | this->drawLists.push_back(OM_GROUP_01); |
---|
249 | this->drawLists.push_back(OM_GROUP_01_PROJ); |
---|
250 | |
---|
251 | State::setPlayer(this->localPlayer); |
---|
252 | |
---|
253 | return ErrorMessage(); |
---|
254 | } |
---|
255 | |
---|
256 | |
---|
257 | /** |
---|
258 | * unloads the world entities from the xml file |
---|
259 | */ |
---|
260 | ErrorMessage MultiPlayerWorldData::unloadWorldEntities() |
---|
261 | { |
---|
262 | /* call underlying function */ |
---|
263 | return GameWorldData::unloadWorldEntities(); |
---|
264 | } |
---|
265 | |
---|
266 | |
---|
267 | /** |
---|
268 | * loads the scene data |
---|
269 | * @param root reference to the xml root element |
---|
270 | */ |
---|
271 | ErrorMessage MultiPlayerWorldData::loadScene(const TiXmlElement* root) |
---|
272 | { |
---|
273 | /* call underlying function */ |
---|
274 | GameWorldData::loadScene(root); |
---|
275 | |
---|
276 | // create server playable |
---|
277 | if ( NetworkManager::getInstance()->isGameServer() ) |
---|
278 | { |
---|
279 | NetworkGameManager::getInstance()->signalNewPlayer( 0 ); |
---|
280 | State::getPlayer()->setPlayable( PlayerStats::getStats( 0 )->getPlayable() ); |
---|
281 | } |
---|
282 | |
---|
283 | return ErrorMessage(); |
---|
284 | } |
---|
285 | |
---|
286 | |
---|
287 | /** |
---|
288 | * unloads the scene data |
---|
289 | */ |
---|
290 | ErrorMessage MultiPlayerWorldData::unloadScene() |
---|
291 | { |
---|
292 | /* call underlying function */ |
---|
293 | return GameWorldData::unloadScene(); |
---|
294 | } |
---|
295 | |
---|
296 | |
---|
297 | /** |
---|
298 | * some debug output |
---|
299 | */ |
---|
300 | void MultiPlayerWorldData::debug() |
---|
301 | { |
---|
302 | PRINT(0)("==================================================\n"); |
---|
303 | Playable* playable; |
---|
304 | const std::list<BaseObject*>* playableList = ClassList::getList(CL_PLAYABLE); |
---|
305 | assert(playableList != NULL); |
---|
306 | std::list<BaseObject*>::const_iterator entity; |
---|
307 | |
---|
308 | |
---|
309 | |
---|
310 | for (entity = playableList->begin(); entity != playableList->end(); entity++) |
---|
311 | { |
---|
312 | Playable* p = dynamic_cast<Playable*>(*entity); |
---|
313 | PRINTF(0)("Got a playable, class: %s, name: %s, uid: %i\n", (*entity)->getClassName(), (*entity)->getName(), p->getUniqueID()); |
---|
314 | } |
---|
315 | |
---|
316 | |
---|
317 | if( this->toggle) |
---|
318 | { |
---|
319 | playable = dynamic_cast<Playable*>(playableList->front()); |
---|
320 | this->localPlayer->setPlayable(playable); |
---|
321 | this->toggle = !this->toggle; |
---|
322 | } |
---|
323 | else |
---|
324 | { |
---|
325 | playable = dynamic_cast<Playable*>(playableList->back()); |
---|
326 | this->localPlayer->setPlayable(playable); |
---|
327 | this->toggle = !this->toggle; |
---|
328 | } |
---|
329 | |
---|
330 | |
---|
331 | Playable* pl = this->localPlayer->getPlayable(); |
---|
332 | PRINTF(0)("The current regisered playable is hid: %i\n", pl->getUniqueID()); |
---|
333 | |
---|
334 | |
---|
335 | PNode* cam = State::getCameraTargetNode(); |
---|
336 | PRINT(0)("Camera has target - class: %s, name: %s, uid: %i\n", cam->getClassName(), cam->getName(), cam->getUniqueID()); |
---|
337 | |
---|
338 | PRINT(0)("==================================================\n"); |
---|
339 | |
---|
340 | } |
---|
341 | |
---|
342 | |
---|
343 | |
---|
344 | |
---|
345 | |
---|
346 | |
---|
347 | |
---|
348 | |
---|
349 | |
---|
350 | |
---|
351 | |
---|
352 | |
---|
353 | |
---|
354 | |
---|
355 | |
---|
356 | |
---|
357 | |
---|
358 | |
---|