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 | |
---|
12 | ### File Specific: |
---|
13 | main-programmer: Silvan Nellen |
---|
14 | co-programmer: Benjamin Wuest |
---|
15 | */ |
---|
16 | |
---|
17 | #define DEBUG_MODULE_NETWORK |
---|
18 | |
---|
19 | #include "shared_network_data.h" |
---|
20 | #include "network_stream.h" |
---|
21 | #include "netdefs.h" |
---|
22 | #include "network_log.h" |
---|
23 | #include "network_game_manager.h" |
---|
24 | |
---|
25 | #include "state.h" |
---|
26 | |
---|
27 | #include <cassert> |
---|
28 | |
---|
29 | #include "synchronizeable.h" |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | /** |
---|
34 | * default constructor |
---|
35 | */ |
---|
36 | Synchronizeable::Synchronizeable() |
---|
37 | { |
---|
38 | this->setClassID(CL_SYNCHRONIZEABLE, "Synchronizeable"); |
---|
39 | this->owner = 0; |
---|
40 | this->setIsServer(SharedNetworkData::getInstance()->getHostID() == 0); |
---|
41 | this->uniqueID = NET_UID_UNASSIGNED; |
---|
42 | this->networkStream = NULL; |
---|
43 | this->bSynchronize = false; |
---|
44 | |
---|
45 | if( State::isOnline()) |
---|
46 | { |
---|
47 | NetworkStream* nd = SharedNetworkData::getInstance()->getDefaultSyncStream(); |
---|
48 | assert(nd != NULL); |
---|
49 | nd->connectSynchronizeable(*this); |
---|
50 | this->setUniqueID(SharedNetworkData::getInstance()->getNewUniqueID()); |
---|
51 | } |
---|
52 | |
---|
53 | /* make sure loadClassId is first synced var because this is read by networkStream */ |
---|
54 | assert( syncVarList.size() == 0 ); |
---|
55 | mLeafClassId = this->registerVarId( new SynchronizeableInt( (int*)&this->getLeafClassID(), (int*)&this->getLeafClassID(), "leafClassId" ) ); |
---|
56 | |
---|
57 | this->registerVar( new SynchronizeableInt( &this->owner, &this->owner, "owner" ) ); |
---|
58 | this->registerVar( new SynchronizeableString( &this->objectName, &this->objectName, "objectName" ) ); |
---|
59 | } |
---|
60 | |
---|
61 | |
---|
62 | |
---|
63 | /** |
---|
64 | * default destructor deletes all unneded stuff |
---|
65 | */ |
---|
66 | Synchronizeable::~Synchronizeable() |
---|
67 | { |
---|
68 | if ( this->networkStream ) |
---|
69 | this->networkStream->disconnectSynchronizeable(*this); |
---|
70 | |
---|
71 | if ( this->isServer() && this->beSynchronized() && this->getUniqueID() > 0 && !this->isA( CL_MESSAGE_MANAGER ) ) |
---|
72 | NetworkGameManager::getInstance()->removeSynchronizeable( this->getUniqueID() ); |
---|
73 | |
---|
74 | for ( SyncVarList::iterator it = syncVarList.begin(); it != syncVarList.end(); it++ ) |
---|
75 | { |
---|
76 | delete *it; |
---|
77 | } |
---|
78 | syncVarList.clear(); |
---|
79 | |
---|
80 | for ( UserStateHistory::iterator it = recvStates.begin(); it != recvStates.end(); it++ ) |
---|
81 | { |
---|
82 | for ( StateHistory::iterator it2 = it->begin(); it2 != it->end(); it2++ ) |
---|
83 | { |
---|
84 | if ( (*it2)->data ) |
---|
85 | { |
---|
86 | delete [] (*it2)->data; |
---|
87 | (*it2)->data = NULL; |
---|
88 | } |
---|
89 | delete *it2; |
---|
90 | } |
---|
91 | |
---|
92 | } |
---|
93 | |
---|
94 | for ( UserStateHistory::iterator it = sentStates.begin(); it != sentStates.end(); it++ ) |
---|
95 | { |
---|
96 | for ( StateHistory::iterator it2 = it->begin(); it2 != it->end(); it2++ ) |
---|
97 | { |
---|
98 | if ( (*it2)->data ) |
---|
99 | { |
---|
100 | delete [] (*it2)->data; |
---|
101 | (*it2)->data = NULL; |
---|
102 | } |
---|
103 | delete *it2; |
---|
104 | } |
---|
105 | |
---|
106 | } |
---|
107 | } |
---|
108 | |
---|
109 | /** |
---|
110 | * Sets the server flag to a given value |
---|
111 | * @param isServer: the boolean value which the server flag is to set to |
---|
112 | */ |
---|
113 | void Synchronizeable::setIsServer(bool isServer) |
---|
114 | { |
---|
115 | if( isServer ) |
---|
116 | this->state = this->state | STATE_SERVER; |
---|
117 | else |
---|
118 | this->state = this->state & (~STATE_SERVER); |
---|
119 | } |
---|
120 | |
---|
121 | |
---|
122 | /** |
---|
123 | * Determines if the server flag is set |
---|
124 | * @return true, if the server flag is true, false else |
---|
125 | */ |
---|
126 | bool Synchronizeable::isServer() |
---|
127 | { |
---|
128 | return (this->state & STATE_SERVER) >0; |
---|
129 | } |
---|
130 | |
---|
131 | |
---|
132 | |
---|
133 | int Synchronizeable::getStateDiff( int userId, byte* data, int maxLength, int stateId, int fromStateId, int priorityTH ) |
---|
134 | { |
---|
135 | //make sure this user has his history |
---|
136 | if ( sentStates.size() <= userId ) |
---|
137 | sentStates.resize( userId+1 ); |
---|
138 | |
---|
139 | //calculate needed memory |
---|
140 | int neededSize = 0; |
---|
141 | |
---|
142 | for ( SyncVarList::iterator it = syncVarList.begin(); it != syncVarList.end(); it++ ) |
---|
143 | { |
---|
144 | //PRINTF(0)("SIZE = %d %s\n", (*it)->getSize(), (*it)->getName().c_str()); |
---|
145 | neededSize += (*it)->getSize(); |
---|
146 | } |
---|
147 | |
---|
148 | if ( !( neededSize <= maxLength ) ) |
---|
149 | { |
---|
150 | PRINTF(0)( "%d > %d\n", neededSize, maxLength ); |
---|
151 | assert(false); |
---|
152 | } |
---|
153 | |
---|
154 | //remove older states from history than fromStateId |
---|
155 | StateHistory::iterator it = sentStates[userId].begin(); |
---|
156 | |
---|
157 | while ( it != sentStates[userId].end() && (*it)->stateId < fromStateId ) |
---|
158 | it++; |
---|
159 | |
---|
160 | if ( it != sentStates[userId].begin() ) |
---|
161 | { |
---|
162 | for ( StateHistory::iterator it2 = sentStates[userId].begin(); it2 != it; it2++ ) |
---|
163 | { |
---|
164 | if ( (*it2)->data != NULL ) |
---|
165 | { |
---|
166 | delete [] (*it2)->data; |
---|
167 | (*it2)->data = NULL; |
---|
168 | } |
---|
169 | |
---|
170 | delete *it2; |
---|
171 | } |
---|
172 | sentStates[userId].erase( sentStates[userId].begin(), it ); |
---|
173 | } |
---|
174 | |
---|
175 | //find state to create diff from |
---|
176 | StateHistoryEntry * stateFrom = NULL; |
---|
177 | |
---|
178 | it = sentStates[userId].begin(); |
---|
179 | while ( it != sentStates[userId].end() && (*it)->stateId != fromStateId ) |
---|
180 | it++; |
---|
181 | |
---|
182 | // if ( getLeafClassID() == CL_SPACE_SHIP ) |
---|
183 | // { |
---|
184 | // PRINTF(0)("getStateDiff:SpaceShip from: %d stateId: %d\n", (it == sentStates[userId].end())?-1:fromStateId, stateId); |
---|
185 | // } |
---|
186 | |
---|
187 | if ( it == sentStates[userId].end() ) |
---|
188 | { |
---|
189 | StateHistoryEntry * initialEntry = new StateHistoryEntry(); |
---|
190 | |
---|
191 | initialEntry->stateId = fromStateId; |
---|
192 | initialEntry->dataLength = 0; |
---|
193 | initialEntry->data = NULL; |
---|
194 | |
---|
195 | stateFrom = initialEntry; |
---|
196 | |
---|
197 | sentStates[userId].push_back( stateFrom ); |
---|
198 | } |
---|
199 | else |
---|
200 | stateFrom = (*it); |
---|
201 | |
---|
202 | StateHistoryEntry * stateTo = new StateHistoryEntry; |
---|
203 | |
---|
204 | sentStates[userId].push_back( stateTo ); |
---|
205 | |
---|
206 | stateTo->stateId = stateId; |
---|
207 | stateTo->dataLength = neededSize; |
---|
208 | stateTo->data = new byte[ neededSize ]; |
---|
209 | |
---|
210 | std::list<int>::iterator sizeIter = stateFrom->sizeList.begin(); |
---|
211 | |
---|
212 | int i = 0; |
---|
213 | int n; |
---|
214 | |
---|
215 | bool hasPermission; |
---|
216 | bool sizeChanged = false; |
---|
217 | |
---|
218 | // now do the actual synchronization: kick all variables to write into a common buffer |
---|
219 | for ( SyncVarList::iterator it = syncVarList.begin(); it != syncVarList.end(); it++ ) |
---|
220 | { |
---|
221 | hasPermission = ( |
---|
222 | this->isServer() && (*it)->checkPermission( PERMISSION_SERVER ) || |
---|
223 | this->owner == SharedNetworkData::getInstance()->getHostID() && (*it)->checkPermission( PERMISSION_OWNER ) || |
---|
224 | this->isServer() && this->owner != userId && (*it)->checkPermission( PERMISSION_OWNER ) || |
---|
225 | (*it)->checkPermission( PERMISSION_ALL ) |
---|
226 | ); |
---|
227 | |
---|
228 | if ( sizeIter == stateFrom->sizeList.end() || *sizeIter != (*it)->getSize() ) |
---|
229 | sizeChanged = true; |
---|
230 | |
---|
231 | if ( ( hasPermission && (*it)->getPriority() >= priorityTH ) || sizeChanged ) |
---|
232 | { |
---|
233 | n = (*it)->writeToBuf( stateTo->data+i, stateTo->dataLength - i ); |
---|
234 | //NETPRINTF(0)("getvar %s %d\n", (*it)->getName().c_str(), n); |
---|
235 | stateTo->sizeList.push_back( n ); |
---|
236 | //(*it)->debug(); |
---|
237 | i += n; |
---|
238 | } |
---|
239 | else |
---|
240 | { |
---|
241 | for ( int j = 0; j<(*sizeIter); j++ ) |
---|
242 | { |
---|
243 | assert( i < stateFrom->dataLength ); |
---|
244 | stateTo->data[i] = stateFrom->data[i]; |
---|
245 | i++; |
---|
246 | } |
---|
247 | //NETPRINTF(0)("getvar %s %d\n", (*it)->getName().c_str(), *sizeIter); |
---|
248 | stateTo->sizeList.push_back( (*sizeIter) ); |
---|
249 | } |
---|
250 | |
---|
251 | if ( sizeIter != stateFrom->sizeList.end() ) |
---|
252 | sizeIter++; |
---|
253 | } |
---|
254 | |
---|
255 | if ( i != neededSize ) |
---|
256 | { |
---|
257 | PRINTF(0)("strange error: (%s) %d != %d\n", this->getClassName(), i, neededSize); |
---|
258 | assert(false); |
---|
259 | } |
---|
260 | |
---|
261 | //write diff to data |
---|
262 | for ( i = 0; i<neededSize; i++ ) |
---|
263 | { |
---|
264 | if ( i < stateFrom->dataLength ) |
---|
265 | data[i] = stateTo->data[i] - stateFrom->data[i]; |
---|
266 | else |
---|
267 | data[i] = stateTo->data[i]; |
---|
268 | } |
---|
269 | |
---|
270 | return neededSize; |
---|
271 | } |
---|
272 | |
---|
273 | /** |
---|
274 | * sets a new state out of a diff created on another host |
---|
275 | * @param userId hostId of user who send me that diff |
---|
276 | * @param data pointer to diff |
---|
277 | * @param length length of diff |
---|
278 | * @param stateId id of current state |
---|
279 | * @param fromStateId id of the base state id |
---|
280 | * @return number bytes read |
---|
281 | * @todo check for permissions |
---|
282 | */ |
---|
283 | int Synchronizeable::setStateDiff( int userId, byte* data, int length, int stateId, int fromStateId ) |
---|
284 | { |
---|
285 | //make sure this user has his history |
---|
286 | if ( recvStates.size() <= userId ) |
---|
287 | recvStates.resize( userId+1 ); |
---|
288 | |
---|
289 | //create new state |
---|
290 | StateHistoryEntry * stateTo = new StateHistoryEntry(); |
---|
291 | stateTo->stateId = stateId; |
---|
292 | stateTo->dataLength = length; |
---|
293 | stateTo->data = new byte[ length ]; |
---|
294 | |
---|
295 | |
---|
296 | //find state to apply diff to |
---|
297 | StateHistoryEntry * stateFrom = NULL; |
---|
298 | |
---|
299 | StateHistory::iterator it = recvStates[userId].begin(); |
---|
300 | while ( it != recvStates[userId].end() && (*it)->stateId != fromStateId ) |
---|
301 | it++; |
---|
302 | |
---|
303 | |
---|
304 | // if ( getLeafClassID() == CL_SPACE_SHIP ) |
---|
305 | // { |
---|
306 | // PRINTF(0)("setStateDiff:SpaceShip from: %d stateId: %d\n", (it == recvStates[userId].end())?-1:fromStateId, stateId); |
---|
307 | // } |
---|
308 | |
---|
309 | if ( it == recvStates[userId].end() ) |
---|
310 | { |
---|
311 | StateHistoryEntry * initialEntry = new StateHistoryEntry(); |
---|
312 | |
---|
313 | initialEntry->stateId = fromStateId; |
---|
314 | initialEntry->dataLength = 0; |
---|
315 | initialEntry->data = NULL; |
---|
316 | |
---|
317 | stateFrom = initialEntry; |
---|
318 | |
---|
319 | recvStates[userId].push_back( stateFrom ); |
---|
320 | } |
---|
321 | else |
---|
322 | stateFrom = (*it); |
---|
323 | |
---|
324 | //apply diff |
---|
325 | for ( int i = 0; i<length; i++ ) |
---|
326 | { |
---|
327 | if ( i < stateFrom->dataLength ) |
---|
328 | stateTo->data[i] = stateFrom->data[i] + data[i]; |
---|
329 | else |
---|
330 | stateTo->data[i] = data[i]; |
---|
331 | |
---|
332 | } |
---|
333 | |
---|
334 | //add state to state history |
---|
335 | recvStates[userId].push_back( stateTo ); |
---|
336 | |
---|
337 | int i = 0; |
---|
338 | int n = 0; |
---|
339 | std::list<int> changes; |
---|
340 | |
---|
341 | for ( SyncVarList::iterator it = syncVarList.begin(); it != syncVarList.end(); it++ ) |
---|
342 | { |
---|
343 | if ( |
---|
344 | (*it)->checkPermission( PERMISSION_SERVER ) && networkStream->isUserServer( userId ) || |
---|
345 | (*it)->checkPermission( PERMISSION_OWNER ) && this->owner == userId || |
---|
346 | networkStream->isUserServer( userId ) && this->owner != SharedNetworkData::getInstance()->getHostID() && (*it)->checkPermission( PERMISSION_OWNER ) || |
---|
347 | (*it)->checkPermission( PERMISSION_ALL ) |
---|
348 | ) |
---|
349 | { |
---|
350 | n = (*it)->readFromBuf( stateTo->data + i, stateTo->dataLength - i ); |
---|
351 | i += n; |
---|
352 | //NETPRINTF(0)("%s::setvar %s %d\n", getClassName(), (*it)->getName().c_str(), n); |
---|
353 | //(*it)->debug(); |
---|
354 | if ( (*it)->getHasChanged() ) |
---|
355 | { |
---|
356 | changes.push_back( (*it)->getVarId() ); |
---|
357 | } |
---|
358 | } |
---|
359 | else |
---|
360 | { |
---|
361 | // PRINTF(0)("DONT SET VAR BECAUSE OF PERMISSION: %s %d %d %d %d %d %d\n", (*it)->getName().c_str(), (*it)->checkPermission( PERMISSION_SERVER ), (*it)->checkPermission( PERMISSION_OWNER ), (*it)->checkPermission( PERMISSION_ALL ), networkStream->isUserServer( userId ), this->owner, userId ); |
---|
362 | n = (*it)->getSizeFromBuf( stateTo->data + i, stateTo->dataLength - i ); |
---|
363 | //NETPRINTF(0)("%s::setvar %s %d\n", getClassName(), (*it)->getName().c_str(), n); |
---|
364 | //(*it)->debug(); |
---|
365 | i += n; |
---|
366 | } |
---|
367 | } |
---|
368 | |
---|
369 | this->varChangeHandler( changes ); |
---|
370 | |
---|
371 | return i; |
---|
372 | } |
---|
373 | |
---|
374 | /** |
---|
375 | * override this function to be notified on change |
---|
376 | * of your registred variables. |
---|
377 | * @param id id's which have changed |
---|
378 | */ |
---|
379 | void Synchronizeable::varChangeHandler( std::list<int> & id ) |
---|
380 | { |
---|
381 | } |
---|
382 | |
---|
383 | /** |
---|
384 | * registers a varable to be synchronized over network |
---|
385 | * @param var see src/lib/network/synchronizeable_var/ for available classes |
---|
386 | */ |
---|
387 | void Synchronizeable::registerVar( SynchronizeableVar * var ) |
---|
388 | { |
---|
389 | //PRINTF(0)("ADDING VAR: %s\n", var->getName().c_str()); |
---|
390 | syncVarList.push_back( var ); |
---|
391 | } |
---|
392 | |
---|
393 | /** |
---|
394 | * registers a varable to be synchronized over network |
---|
395 | * return value is passed to varChangeHandler on change |
---|
396 | * @param var see src/lib/network/synchronizeable_var/ for available classes |
---|
397 | * @return handle passed to varChangeHandler on changes |
---|
398 | */ |
---|
399 | int Synchronizeable::registerVarId( SynchronizeableVar * var ) |
---|
400 | { |
---|
401 | //PRINTF(0)("ADDING VAR: %s\n", var->getName().c_str()); |
---|
402 | syncVarList.push_back( var ); |
---|
403 | var->setWatched( true ); |
---|
404 | var->setVarId( syncVarList.size()-1 ); |
---|
405 | return syncVarList.size()-1; |
---|
406 | } |
---|
407 | |
---|
408 | /** |
---|
409 | * removed user's states from memory |
---|
410 | * @param userId user to clean |
---|
411 | */ |
---|
412 | void Synchronizeable::cleanUpUser( int userId ) |
---|
413 | { |
---|
414 | if ( recvStates.size() > userId ) |
---|
415 | { |
---|
416 | for ( std::list<StateHistoryEntry*>::iterator it = recvStates[userId].begin(); it != recvStates[userId].end(); it++ ) |
---|
417 | { |
---|
418 | if ( (*it)->data ) |
---|
419 | { |
---|
420 | delete [] (*it)->data; |
---|
421 | (*it)->data = NULL; |
---|
422 | } |
---|
423 | |
---|
424 | delete *it; |
---|
425 | } |
---|
426 | recvStates[userId].clear(); |
---|
427 | } |
---|
428 | |
---|
429 | if ( sentStates.size() > userId ) |
---|
430 | { |
---|
431 | |
---|
432 | for ( std::list<StateHistoryEntry*>::iterator it = sentStates[userId].begin(); it != sentStates[userId].end(); it++ ) |
---|
433 | { |
---|
434 | if ( (*it)->data ) |
---|
435 | { |
---|
436 | delete [] (*it)->data; |
---|
437 | (*it)->data = NULL; |
---|
438 | } |
---|
439 | |
---|
440 | delete *it; |
---|
441 | } |
---|
442 | sentStates[userId].clear(); |
---|
443 | } |
---|
444 | } |
---|
445 | |
---|
446 | /** |
---|
447 | * this function is called after recieving a state. |
---|
448 | * @param userId |
---|
449 | * @param stateId |
---|
450 | * @param fromStateId |
---|
451 | */ |
---|
452 | void Synchronizeable::handleRecvState( int userId, int stateId, int fromStateId ) |
---|
453 | { |
---|
454 | //make sure this user has his history |
---|
455 | if ( recvStates.size() <= userId ) |
---|
456 | recvStates.resize( userId+1 ); |
---|
457 | |
---|
458 | //remove old states |
---|
459 | StateHistory::iterator it = recvStates[userId].begin(); |
---|
460 | |
---|
461 | #if 0 |
---|
462 | while ( it != recvStates[userId].end() && (*it)->stateId < fromStateId ) |
---|
463 | it++; |
---|
464 | |
---|
465 | if ( it != recvStates[userId].begin() ) |
---|
466 | { |
---|
467 | for ( StateHistory::iterator it2 = recvStates[userId].begin(); it2 != it; it2++ ) |
---|
468 | { |
---|
469 | if ( (*it2)->data != NULL ) |
---|
470 | { |
---|
471 | delete [] (*it2)->data; |
---|
472 | (*it2)->data = NULL; |
---|
473 | } |
---|
474 | } |
---|
475 | recvStates[userId].erase( recvStates[userId].begin(), it ); |
---|
476 | } |
---|
477 | #endif |
---|
478 | |
---|
479 | for ( it = recvStates[userId].begin(); it != recvStates[userId].end(); ) |
---|
480 | { |
---|
481 | if ( (*it)->stateId < fromStateId ) |
---|
482 | { |
---|
483 | StateHistory::iterator delIt = it; |
---|
484 | it ++; |
---|
485 | |
---|
486 | if ( (*delIt)->data ) |
---|
487 | { |
---|
488 | delete [] (*delIt)->data; |
---|
489 | (*delIt)->data = NULL; |
---|
490 | } |
---|
491 | delete *delIt; |
---|
492 | recvStates[userId].erase( delIt ); |
---|
493 | |
---|
494 | continue; |
---|
495 | } |
---|
496 | it++; |
---|
497 | } |
---|
498 | |
---|
499 | StateHistory::iterator fromState = recvStates[userId].end(); |
---|
500 | StateHistory::iterator toState = recvStates[userId].end(); |
---|
501 | |
---|
502 | for ( it = recvStates[userId].begin(); it != recvStates[userId].end(); it++ ) |
---|
503 | { |
---|
504 | if ( (*it)->stateId == stateId ) |
---|
505 | toState = it; |
---|
506 | if ( (*it)->stateId == fromStateId ) |
---|
507 | fromState = it; |
---|
508 | |
---|
509 | if ( fromState != recvStates[userId].end() && toState != recvStates[userId].end() ) |
---|
510 | break; |
---|
511 | } |
---|
512 | |
---|
513 | // setStateDiff was not called and i know fromStateId |
---|
514 | if ( fromState != recvStates[userId].end() && toState == recvStates[userId].end() ) |
---|
515 | { |
---|
516 | StateHistoryEntry * entry = new StateHistoryEntry; |
---|
517 | |
---|
518 | entry->dataLength = (*fromState)->dataLength; |
---|
519 | if ( entry->dataLength > 0 ) |
---|
520 | { |
---|
521 | entry->data = new byte[entry->dataLength]; |
---|
522 | |
---|
523 | assert( (*fromState)->data ); |
---|
524 | memcpy( entry->data, (*fromState)->data, entry->dataLength ); |
---|
525 | } |
---|
526 | else |
---|
527 | entry->data = NULL; |
---|
528 | |
---|
529 | entry->sizeList = (*fromState)->sizeList; |
---|
530 | entry->stateId = stateId; |
---|
531 | |
---|
532 | recvStates[userId].push_back(entry); |
---|
533 | } |
---|
534 | } |
---|
535 | |
---|
536 | /** |
---|
537 | * this function is called after sending a state |
---|
538 | * @param userId |
---|
539 | * @param stateId |
---|
540 | * @param fromStateId |
---|
541 | */ |
---|
542 | void Synchronizeable::handleSentState( int userId, int stateId, int fromStateId ) |
---|
543 | { |
---|
544 | //make sure this user has his history |
---|
545 | if ( sentStates.size() <= userId ) |
---|
546 | sentStates.resize( userId+1 ); |
---|
547 | |
---|
548 | //remove old states |
---|
549 | StateHistory::iterator it = sentStates[userId].begin(); |
---|
550 | |
---|
551 | for ( it = sentStates[userId].begin(); it != sentStates[userId].end(); ) |
---|
552 | { |
---|
553 | if ( (*it)->stateId < fromStateId ) |
---|
554 | { |
---|
555 | StateHistory::iterator delIt = it; |
---|
556 | it ++; |
---|
557 | |
---|
558 | if ( (*delIt)->data ) |
---|
559 | { |
---|
560 | delete [] (*delIt)->data; |
---|
561 | (*delIt)->data = NULL; |
---|
562 | } |
---|
563 | delete *delIt; |
---|
564 | sentStates[userId].erase( delIt ); |
---|
565 | |
---|
566 | continue; |
---|
567 | } |
---|
568 | it++; |
---|
569 | } |
---|
570 | |
---|
571 | |
---|
572 | StateHistory::iterator fromState = sentStates[userId].end(); |
---|
573 | StateHistory::iterator toState = sentStates[userId].end(); |
---|
574 | |
---|
575 | for ( it = sentStates[userId].begin(); it != sentStates[userId].end(); it++ ) |
---|
576 | { |
---|
577 | if ( (*it)->stateId == stateId ) |
---|
578 | toState = it; |
---|
579 | if ( (*it)->stateId == fromStateId ) |
---|
580 | fromState = it; |
---|
581 | |
---|
582 | if ( fromState != sentStates[userId].end() && toState != sentStates[userId].end() ) |
---|
583 | break; |
---|
584 | } |
---|
585 | |
---|
586 | |
---|
587 | // getStateDiff was not called and i know fromStateId |
---|
588 | if ( fromState != sentStates[userId].end() && toState == sentStates[userId].end() ) |
---|
589 | { |
---|
590 | StateHistoryEntry * entry = new StateHistoryEntry; |
---|
591 | |
---|
592 | entry->dataLength = (*fromState)->dataLength; |
---|
593 | if ( entry->dataLength > 0 ) |
---|
594 | { |
---|
595 | entry->data = new byte[entry->dataLength]; |
---|
596 | |
---|
597 | assert( (*fromState)->data ); |
---|
598 | memcpy( entry->data, (*fromState)->data, entry->dataLength ); |
---|
599 | } |
---|
600 | else |
---|
601 | entry->data = NULL; |
---|
602 | |
---|
603 | entry->sizeList = (*fromState)->sizeList; |
---|
604 | entry->stateId = stateId; |
---|
605 | |
---|
606 | sentStates[userId].push_back(entry); |
---|
607 | } |
---|
608 | |
---|
609 | } |
---|
610 | |
---|
611 | |
---|
612 | |
---|