Changeset 1106210 in network-game for common


Ignore:
Timestamp:
Dec 30, 2012, 6:33:03 PM (12 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
3535088
Parents:
092817a
Message:

Changed the player serialization code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/Player.cpp

    r092817a r1106210  
    5353   ostringstream oss;
    5454
     55   cout << "Player name: " << this->name << endl;
     56
     57   /*
    5558   oss.write((char*)&(this->id), sizeof(int));
    5659   oss << this->name;
     60   cout << "first oss str: " << oss.str() << endl;
    5761   oss.write("\0", 1);
     62   cout << "second oss str: " << oss.str() << endl;
    5863   oss.write((char*)&(this->pos.x), sizeof(int));
     64   cout << "third oss str: " << oss.str() << endl;
    5965   oss.write((char*)&(this->pos.y), sizeof(int));
     66   */
    6067
    61    memcpy(buffer, oss.str().c_str(), this->name.length()+1+2*sizeof(int));
     68   oss << this->id;
     69   oss << this->name;
     70   css << this->pos.x;
     71   css << this->pos.y;
     72
     73   memcpy(buffer, oss.str().c_str(), oss.str().length);
    6274}
    6375
     
    6779   iss.str(buffer);
    6880
     81   /*
    6982   iss.read((char*)&(this->id), sizeof(int));
    7083   iss >> this->name;
    7184   iss.read((char*)&(this->pos.x), sizeof(int));
    7285   iss.read((char*)&(this->pos.y), sizeof(int));
     86   */
     87
     88   iss >> this.id;
     89   iss >> this->name;
     90   iss >> this->pos.x;
     91   iss >> this->pos.y;
    7392}
    7493
Note: See TracChangeset for help on using the changeset viewer.