/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Oliver Scheuss, (C) 2008 * Co-authors: * ... * */ #include "Gamestate.h" #include "network/ClientInformation.h" #include "network/GamestateHandler.h" #include "core/CoreIncludes.h" #include "core/Iterator.h" #include #include namespace network { namespace packet { #define GAMESTATE_START(data) (data + sizeof(GamestateHeader)) #define GAMESTATE_HEADER(data) ((GamestateHeader *)data) #define HEADER GAMESTATE_HEADER(data_) Gamestate::Gamestate() { } Gamestate::Gamestate(unsigned char *data, int clientID): Packet(data, clientID) { } Gamestate::Gamestate(unsigned char *data) { data_=data; } Gamestate::~Gamestate() { } bool Gamestate::collectData(int id, int mode) { int tempsize=0, currentsize=0; assert(data_==0); int size = calcGamestateSize(id, mode); COUT(4) << "G.ST.Man: producing gamestate with id: " << id << std::endl; if(size==0) return false; data_ = new unsigned char[size + sizeof(GamestateHeader)]; if(!data_){ COUT(2) << "GameStateManager: could not allocate memory" << std::endl; return false; } #ifndef NDEBUG std::list slist; std::list::iterator iit; #endif //start collect data synchronisable by synchronisable unsigned char *mem=data_; mem+=sizeof(GamestateHeader); orxonox::ObjectList::iterator it; for(it = orxonox::ObjectList::begin(); it; ++it){ tempsize=it->getSize(id, mode); if(currentsize+tempsize > size){ // start allocate additional memory COUT(3) << "G.St.Man: need additional memory" << std::endl; orxonox::ObjectList::iterator temp = it; int addsize=tempsize; while(++temp) addsize+=temp->getSize(id, mode); data_ = (unsigned char *)realloc(data_, sizeof(GamestateHeader) + currentsize + addsize); if(!data_) return false; size = currentsize+addsize; }// stop allocate additional memory #ifndef NDEBUG for(iit=slist.begin(); iit!=slist.end(); iit++) assert((*iit)!=*it); slist.push_back(*it); #endif //if(it->doSelection(id)) dataMap_[mem-data_]=(*it); // save the mem location of the synchronisable data if(!it->getData(mem, id, mode)) return false; // mem pointer gets automatically increased because of call by reference // increase size counter by size of current synchronisable currentsize+=tempsize; } //start write gamestate header HEADER->packetType = ENUM::Gamestate; assert( *(ENUM::Type *)(data_) == ENUM::Gamestate); HEADER->datasize = currentsize; HEADER->id = id; HEADER->diffed = false; HEADER->complete = true; HEADER->compressed = false; //stop write gamestate header COUT(5) << "G.ST.Man: Gamestate size: " << currentsize << std::endl; COUT(5) << "G.ST.Man: 'estimated' (and corrected) Gamestate size: " << size << std::endl; return true; } bool Gamestate::spreadData(int mode) { assert(data_); assert(!HEADER->compressed); assert(!HEADER->diffed); unsigned char *mem=data_+sizeof(GamestateHeader); // get the start of the Synchronisable list //orxonox::ObjectList::iterator it=orxonox::ObjectList::begin(); Synchronisable *s; // update the data of the objects we received while(mem < data_+sizeof(GamestateHeader)+HEADER->datasize){ synchronisableHeader *objectheader = (synchronisableHeader*)mem; s = Synchronisable::getSynchronisable( objectheader->objectID ); if(!s) { s = Synchronisable::fabricate(mem, mode); assert(s); // if(!s) // return false; } else { assert(s->updateData(mem, mode)); //if(!s->updateData(mem, mode)) //return false; } } return true; } int Gamestate::getID(){ return HEADER->id; } unsigned int Gamestate::getSize() const { assert(data_); if(HEADER->compressed) return HEADER->compsize+sizeof(GamestateHeader); else { return HEADER->datasize+sizeof(GamestateHeader); } } bool Gamestate::operator==(packet::Gamestate gs){ unsigned char *d1 = data_+sizeof(GamestateHeader); unsigned char *d2 = gs.data_+sizeof(GamestateHeader); assert(!isCompressed()); assert(!gs.isCompressed()); while(d1datasize) { if(*d1!=*d2) return false; d1++; d2++; } return true; } bool Gamestate::process() { return GamestateHandler::addGamestate(this, getClientID()); } bool Gamestate::compressData() { assert(HEADER); assert(!HEADER->compressed); uLongf buffer = (uLongf)(((HEADER->datasize + 12)*1.01)+1); if(buffer==0) return false; unsigned char *ndata = new unsigned char[buffer+sizeof(GamestateHeader)]; unsigned char *dest = GAMESTATE_START(ndata); //unsigned char *dest = new unsigned char[buffer]; unsigned char *source = GAMESTATE_START(data_); int retval; retval = compress( dest, &buffer, source, (uLong)(HEADER->datasize) ); switch ( retval ) { case Z_OK: COUT(5) << "G.St.Man: compress: successfully compressed" << std::endl; break; case Z_MEM_ERROR: COUT(1) << "G.St.Man: compress: not enough memory available in gamestate.compress" << std::endl; return false; case Z_BUF_ERROR: COUT(2) << "G.St.Man: compress: not enough memory available in the buffer in gamestate.compress" << std::endl; return false; case Z_DATA_ERROR: COUT(2) << "G.St.Man: compress: data corrupted in gamestate.compress" << std::endl; return false; } #ifndef NDEBUG //decompress and compare the start and the decompressed data unsigned char *rdata = new unsigned char[HEADER->datasize+sizeof(GamestateHeader)]; unsigned char *d2 = GAMESTATE_START(rdata); uLongf length2 = HEADER->datasize; uncompress(d2, &length2, dest, buffer); for(unsigned int i=0; idatasize; i++){ assert(*(source+i)==*(d2+i)); } delete[] rdata; #endif //copy and modify header #ifndef NDEBUG HEADER->crc32 = calcCRC(data_+sizeof(GamestateHeader), HEADER->datasize); #endif *GAMESTATE_HEADER(ndata) = *HEADER; //delete old data delete[] data_; //save new data data_ = ndata; HEADER->compsize = buffer; HEADER->compressed = true; assert(HEADER->compressed); COUT(3) << "gamestate compress datasize: " << HEADER->datasize << " compsize: " << HEADER->compsize << std::endl; return true; } bool Gamestate::decompressData() { assert(HEADER); assert(HEADER->compressed); COUT(3) << "GameStateClient: uncompressing gamestate. id: " << HEADER->id << ", baseid: " << HEADER->base_id << ", datasize: " << HEADER->datasize << ", compsize: " << HEADER->compsize << std::endl; unsigned int datasize = HEADER->datasize; unsigned int compsize = HEADER->compsize; unsigned int bufsize; assert(compsize<=datasize); bufsize = datasize; assert(bufsize!=0); unsigned char *ndata = new unsigned char[bufsize + sizeof(GamestateHeader)]; unsigned char *dest = ndata + sizeof(GamestateHeader); unsigned char *source = data_ + sizeof(GamestateHeader); int retval; uLongf length=bufsize; retval = uncompress( dest, &length, source, (uLong)compsize ); switch ( retval ) { case Z_OK: COUT(5) << "successfully decompressed" << std::endl; break; case Z_MEM_ERROR: COUT(1) << "not enough memory available" << std::endl; return false; case Z_BUF_ERROR: COUT(2) << "not enough memory available in the buffer" << std::endl; return false; case Z_DATA_ERROR: COUT(2) << "data corrupted (zlib)" << std::endl; return false; } #ifndef NDEBUG assert(HEADER->crc32==calcCRC(ndata+sizeof(GamestateHeader), HEADER->datasize)); #endif //copy over the header *GAMESTATE_HEADER(ndata) = *HEADER; //delete old (compressed data) delete[] data_; //set new pointers data_ = ndata; HEADER->compressed = false; assert(HEADER->datasize==datasize); assert(HEADER->compsize==compsize); return true; } Gamestate *Gamestate::diff(Gamestate *base) { assert(HEADER); assert(!HEADER->compressed); assert(!HEADER->diffed); //unsigned char *basep = base->getGs()/*, *gs = getGs()*/; unsigned char *basep = GAMESTATE_START(base->data_), *gs = GAMESTATE_START(this->data_); unsigned int of=0; // pointers offset unsigned int dest_length=0; dest_length=HEADER->datasize; if(dest_length==0) return NULL; unsigned char *ndata = new unsigned char[dest_length*sizeof(unsigned char)+sizeof(GamestateHeader)]; unsigned char *dest = ndata + sizeof(GamestateHeader); while(of < GAMESTATE_HEADER(base->data_)->datasize && of < HEADER->datasize){ *(dest+of)=*(basep+of)^*(gs+of); // do the xor ++of; } if(GAMESTATE_HEADER(base->data_)->datasize!=HEADER->datasize){ unsigned char n=0; if(GAMESTATE_HEADER(base->data_)->datasize < HEADER->datasize){ while(ofdiffed = true; GAMESTATE_HEADER(ndata)->base_id = base->getID(); Gamestate *g = new Gamestate(ndata, getClientID()); g->flags_=flags_; g->packetDirection_ = packetDirection_; return g; } Gamestate* Gamestate::doSelection(unsigned int clientID){ assert(data_); std::map::iterator it; Gamestate *gs = new Gamestate(*this); unsigned char *ndata = gs->data_ + sizeof(GamestateHeader); synchronisableHeader *objectheader; unsigned int objectOffset; //copy in the zeros for(it=dataMap_.begin(); it!=dataMap_.end(); it++){ objectheader = (synchronisableHeader*)ndata; unsigned int objectsize = objectheader->size; assert(it->second->objectID==objectheader->objectID); objectOffset=sizeof(unsigned int)+sizeof(bool); //skip the size and the availableDate variables in the objectheader if(!it->second->doSelection(HEADER->id)){ while(objectOffsetdataAvailable=false; *(ndata+objectOffset)=0; // set to 0 objectOffset++; } assert(objectOffset==objectsize); } ndata+=objectsize; } return gs; } Gamestate* Gamestate::intelligentDiff(Gamestate *base, unsigned int clientID){ // asserts assert(data_); assert(base->data_); assert(!GAMESTATE_HEADER(base->data_)->diffed); assert(!GAMESTATE_HEADER(base->data_)->compressed); assert(!HEADER->compressed); assert(!HEADER->diffed); //preparations std::map::iterator it; unsigned char *origdata, *basedata, *destdata, *ndata; unsigned int objectOffset, streamOffset=0; //data offset unsigned int minsize = (HEADER->datasize < GAMESTATE_HEADER(base->data_)->datasize) ? HEADER->datasize : GAMESTATE_HEADER(base->data_)->datasize; synchronisableHeader *origheader; synchronisableHeader *destheader; origdata = GAMESTATE_START(this->data_); basedata = GAMESTATE_START(base->data_); ndata = new unsigned char[HEADER->datasize + sizeof(GamestateHeader)]; destdata = ndata + sizeof(GamestateHeader); // do the diff for(it=dataMap_.begin(); it!=dataMap_.end(); it++){ assert(streamOffsetdatasize); bool sendData = it->second->doSelection(HEADER->id); origheader = (synchronisableHeader *)(origdata+streamOffset); destheader = (synchronisableHeader *)(destdata+streamOffset); //copy and partially diff the object header assert(sizeof(synchronisableHeader)==3*sizeof(unsigned int)+sizeof(bool)); *(unsigned int*)destdata = *(unsigned int*)origdata; //size (do not diff) *(bool*)(destdata+sizeof(unsigned int)) = sendData; if(sendData){ *(unsigned int*)(destdata+sizeof(unsigned int)+sizeof(bool)) = *(unsigned int*)(basedata+sizeof(unsigned int)+sizeof(bool)) ^ *(unsigned int*)(origdata+sizeof(unsigned int)+sizeof(bool)); //objectid (diff it) *(unsigned int*)(destdata+2*sizeof(unsigned int)+sizeof(bool)) = *(unsigned int*)(basedata+2*sizeof(unsigned int)+sizeof(bool)) ^ *(unsigned int*)(origdata+2*sizeof(unsigned int)+sizeof(bool)); //classid (diff it) }else{ *(unsigned int*)(destdata+sizeof(unsigned int)+sizeof(bool)) = 0; *(unsigned int*)(destdata+2*sizeof(unsigned int)+sizeof(bool)) = 0; } objectOffset=sizeof(synchronisableHeader); streamOffset+=sizeof(synchronisableHeader); //now handle the object data or fill with zeros while(objectOffsetsize ){ if(sendData && streamOffsetdiffed=true; return gs; } Gamestate* Gamestate::intelligentUnDiff(Gamestate *base){ // asserts assert(data_); assert(base->data_); assert(!GAMESTATE_HEADER(base->data_)->diffed); assert(!GAMESTATE_HEADER(base->data_)->compressed); assert(!HEADER->compressed); assert(HEADER->diffed); //preparations std::map::iterator it; unsigned char *origdata, *basedata, *destdata, *ndata; unsigned int objectOffset, streamOffset=0; //data offset unsigned int minsize = (HEADER->datasize < GAMESTATE_HEADER(base->data_)->datasize) ? HEADER->datasize : GAMESTATE_HEADER(base->data_)->datasize; synchronisableHeader *origheader; synchronisableHeader *destheader; origdata = GAMESTATE_START(this->data_); basedata = GAMESTATE_START(base->data_); ndata = new unsigned char[HEADER->datasize + sizeof(GamestateHeader)]; destdata = ndata + sizeof(GamestateHeader); // do the undiff for(it=dataMap_.begin(); it!=dataMap_.end(); it++){ assert(streamOffsetdatasize); origheader = (synchronisableHeader *)(origdata+streamOffset); destheader = (synchronisableHeader *)(destdata+streamOffset); bool sendData; //copy and partially diff the object header assert(sizeof(synchronisableHeader)==3*sizeof(unsigned int)+sizeof(bool)); *(unsigned int*)destdata = *(unsigned int*)origdata; //size (do not diff) *(bool*)(destdata+sizeof(unsigned int)) = *(bool*)(origdata+sizeof(unsigned int)); sendData = *(bool*)(origdata+sizeof(unsigned int)); if(sendData){ *(unsigned int*)(destdata+sizeof(unsigned int)+sizeof(bool)) = *(unsigned int*)(basedata+sizeof(unsigned int)+sizeof(bool)) ^ *(unsigned int*)(origdata+sizeof(unsigned int)+sizeof(bool)); //objectid (diff it) *(unsigned int*)(destdata+2*sizeof(unsigned int)+sizeof(bool)) = *(unsigned int*)(basedata+2*sizeof(unsigned int)+sizeof(bool)) ^ *(unsigned int*)(origdata+2*sizeof(unsigned int)+sizeof(bool)); //classid (diff it) }else{ *(unsigned int*)(destdata+sizeof(unsigned int)+sizeof(bool)) = 0; *(unsigned int*)(destdata+2*sizeof(unsigned int)+sizeof(bool)) = 0; } objectOffset=sizeof(synchronisableHeader); streamOffset+=sizeof(synchronisableHeader); //now handle the object data or fill with zeros while(objectOffsetsize ){ if(sendData && streamOffsetdiffed=false; return gs; } Gamestate *Gamestate::undiff(Gamestate *base) { assert(this && base);assert(HEADER); assert(HEADER->diffed); assert(!HEADER->compressed && !GAMESTATE_HEADER(base->data_)->compressed); //unsigned char *basep = base->getGs()/*, *gs = getGs()*/; unsigned char *basep = GAMESTATE_START(base->data_); unsigned char *gs = GAMESTATE_START(this->data_); unsigned int of=0; // pointers offset unsigned int dest_length=0; dest_length=HEADER->datasize; if(dest_length==0) return NULL; unsigned char *ndata = new unsigned char[dest_length*sizeof(unsigned char)+sizeof(GamestateHeader)]; unsigned char *dest = ndata + sizeof(GamestateHeader); while(of < GAMESTATE_HEADER(base->data_)->datasize && of < HEADER->datasize){ *(dest+of)=*(basep+of)^*(gs+of); // do the xor ++of; } if(GAMESTATE_HEADER(base->data_)->datasize!=HEADER->datasize){ unsigned char n=0; if(GAMESTATE_HEADER(base->data_)->datasize < HEADER->datasize){ while(of < dest_length){ *(dest+of)=n^*(gs+of); of++; } } } *GAMESTATE_HEADER(ndata) = *HEADER; GAMESTATE_HEADER(ndata)->diffed = false; Gamestate *g = new Gamestate(ndata, getClientID()); g->flags_=flags_; g->packetDirection_ = packetDirection_; assert(!g->isDiffed()); assert(!g->isCompressed()); return g; } unsigned int Gamestate::calcGamestateSize(unsigned int id, int mode) { int size=0; // get the start of the Synchronisable list orxonox::ObjectList::iterator it; // get total size of gamestate for(it = orxonox::ObjectList::begin(); it; ++it) size+=it->getSize(id, mode); // size of the actual data of the synchronisable // size+=sizeof(GamestateHeader); return size; } /** * This function removes a Synchronisable out of the universe * @param it iterator of the list pointing to the object * @return iterator pointing to the next object in the list */ void Gamestate::removeObject(orxonox::ObjectList::iterator &it) { orxonox::ObjectList::iterator temp=it; ++it; delete *temp; } bool Gamestate::isDiffed(){ return HEADER->diffed; } bool Gamestate::isCompressed(){ return HEADER->compressed; } int Gamestate::getBaseID(){ return HEADER->base_id; } } }