Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/world_entities/spawning_point.cc @ 9452

Last change on this file since 9452 was 9452, checked in by patrick, 18 years ago

switched another interface funciton

File size: 6.3 KB
Line 
1
2/*
3   orxonox - the future of 3D-vertical-scrollers
4
5   Copyright (C) 2004 orx
6
7   This program 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, or (at your option)
10   any later version.
11
12### File Specific:
13   main-programmer: Patrick Boenzli
14   co-programmer:
15*/
16
17#include "spawning_point.h"
18
19#include "util/loading/load_param.h"
20#include "util/loading/factory.h"
21
22#include "world_entity.h"
23
24#include "class_list.h"
25
26#include "compiler.h"
27
28#include "state.h"
29#include "game_rules.h"
30
31#include "shared_network_data.h"
32
33
34/// TODO REMOVE converter.h
35#include "converter.h"
36
37CREATE_FACTORY( SpawningPoint, CL_SPAWNING_POINT );
38
39/**
40 *  constructor
41 */
42SpawningPoint::SpawningPoint( const TiXmlElement * root )
43{
44  this->setAbsCoor( 0, 0, 0 );
45
46  this->init();
47
48  if (root != NULL)
49    this->loadParams(root);
50}
51
52void SpawningPoint::init()
53{
54  this->setClassID(CL_SPAWNING_POINT, "SpawningPoint");
55  PRINTF(0)("Created SpawningPoint\n");
56
57  this->teamId = -1;
58  this->localTimer = 0.0f;
59
60  this->toList( OM_DEAD_TICK );
61
62  MessageManager::getInstance()->registerMessageHandler( MSGID_RESPAWN, respawnMessageHandler, NULL );
63
64  this->setSynchronized( true );
65}
66
67
68/**
69 *  deconstructor
70 */
71SpawningPoint::~SpawningPoint ()
72{}
73
74
75/**
76 * loads the WorldEntity Specific Parameters.
77 * @param root: the XML-Element to load the Data From
78 */
79void SpawningPoint::loadParams(const TiXmlElement* root)
80{
81  /* let the world entity its stuff first */
82  WorldEntity::loadParams(root);
83
84  /* load teamId */
85  LoadParam(root, "teamId", this, SpawningPoint, setTeamId)
86      .describe("sets teamId");
87}
88
89
90
91/**
92 * pushes a world entity to the spawning queue
93 *  @param entity WorldEntity to be added
94 */
95void SpawningPoint::pushEntity(Playable* entity, float delay)
96{
97  QueueEntry qe;
98  qe.entity = entity;
99  qe.respawnTime = this->localTimer + delay;
100
101  queue.push_back( qe );
102}
103
104
105/**
106 *  spawn the entity
107 */
108void SpawningPoint::spawn(Playable* entity)
109{
110  const std::list<BaseObject*> * list = ClassList::getList( CL_PLAYABLE );
111
112  bool found = false;
113
114  if ( !list )
115    return;
116
117  for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ )
118  {
119    if ( *it == entity )
120    {
121      found = true;
122      break;
123    }
124  }
125
126  if ( !found )
127    return;
128
129  PRINTF(0)("Spawningpoint spawns Entity (%s)\n", entity->getClassCName());
130
131
132  entity->setAbsCoor( this->getAbsCoor() );
133  entity->setAbsDir( this->getAbsDir() );
134
135  //TODO set camera (not smooth)
136
137  if ( State::getGameRules() )
138  {
139    (State::getGameRules())->registerSpawn( entity );
140  }
141
142  entity->respawn();
143}
144
145
146/**
147 *  this method is called every frame
148 * @param time: the time in seconds that has passed since the last tick
149 *
150 * Handle all stuff that should update with time inside this method (movement, animation, etc.)
151 */
152void SpawningPoint::tick(float dt)
153{
154  this->localTimer += dt;
155  std::list<QueueEntry>::iterator it = this->queue.begin();
156  for( ; it != this->queue.end(); )
157  {
158    //PRINTF(0)("%f <= %f\n", it->respawnTime, this->localTimer);
159    if( it->respawnTime <= this->localTimer)
160    {
161      //spawn the player
162      this->spawn(it->entity);
163
164      const std::list<BaseObject*> * list = ClassList::getList( CL_PLAYABLE );
165
166      bool found = false;
167
168      if ( !list )
169        return;
170
171      for ( std::list<BaseObject*>::const_iterator it2 = list->begin(); it2 != list->end(); it2++ )
172      {
173        if ( *it2 == it->entity )
174        {
175          found = true;
176          break;
177        }
178      }
179
180      if ( found && SharedNetworkData::getInstance()->isMasterServer() || SharedNetworkData::getInstance()->isProxyServerActive())
181        this->sendRespawnMessage( it->entity->getUniqueID() );
182
183      std::list<QueueEntry>::iterator delit = it;
184      it++;
185
186      queue.erase( delit );
187
188      continue;
189    }
190
191    it++;
192  }
193
194}
195
196
197/**
198 *  the entity is drawn onto the screen with this function
199 *
200 * This is a central function of an entity: call it to let the entity painted to the screen.
201 * Just override this function with whatever you want to be drawn.
202 */
203void SpawningPoint::draw()
204{
205}
206
207void SpawningPoint::sendRespawnMessage( int uniqueId )
208{
209#warning this byte array is not being deleted according to valginrd
210  byte * buf = new byte[2*INTSIZE];
211
212  assert( Converter::intToByteArray( this->getUniqueID(), buf, INTSIZE ) == INTSIZE );
213  assert( Converter::intToByteArray( uniqueId, buf + INTSIZE, INTSIZE ) == INTSIZE );
214
215  MessageManager::getInstance()->sendMessage( MSGID_RESPAWN, buf, 2*INTSIZE, RT_ALL_NOT_ME, 0, MP_HIGHBANDWIDTH );
216}
217
218bool SpawningPoint::respawnMessageHandler( MessageId messageId, byte * data, int dataLength, void * someData, int userId )
219{
220  if ( SharedNetworkData::getInstance()->isMasterServer() || SharedNetworkData::getInstance()->isProxyServerActive())
221  {
222    PRINTF(2)("server received spawn message!\n");
223    return true;
224  }
225
226  int spUniqueId;
227  int uniqueId;
228
229  if ( dataLength != 2*INTSIZE )
230  {
231    PRINTF(2)("spawn message has wrong size: %d\n", dataLength );
232    return true;
233  }
234
235  assert( Converter::byteArrayToInt( data, &spUniqueId ) == INTSIZE );
236  assert( Converter::byteArrayToInt( data+INTSIZE, &uniqueId ) == INTSIZE );
237
238  PRINTF(0)("SPAWNMESSAGE %d\n", uniqueId);
239
240  SpawningPoint * sp = NULL;
241  Playable      * playable = NULL;
242
243  const std::list<BaseObject*> * list = ClassList::getList( CL_SPAWNING_POINT );
244
245  if ( list )
246  {
247    for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ )
248    {
249      PRINTF(0)("%d:%d\n", dynamic_cast<SpawningPoint*>(*it)->getUniqueID(), spUniqueId);
250      if ( dynamic_cast<SpawningPoint*>(*it)->getUniqueID() == spUniqueId )
251      {
252        sp = dynamic_cast<SpawningPoint*>(*it);
253        break;
254      }
255    }
256  }
257
258  if ( !sp )
259  {
260    PRINTF(0)("could not find spawning point\n");
261    return false;
262  }
263
264  list = ClassList::getList( CL_PLAYABLE );
265
266  if ( list )
267  {
268    for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ )
269    {
270      if ( dynamic_cast<Playable*>(*it)->getUniqueID() == uniqueId )
271      {
272        playable = dynamic_cast<Playable*>(*it);
273        break;
274      }
275    }
276  }
277
278  if ( !playable )
279  {
280    PRINTF(0)("could not find playable\n");
281    return false;
282  }
283
284  sp->spawn( playable );
285
286  return true;
287}
288
Note: See TracBrowser for help on using the repository browser.