Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6469 in orxonox.OLD for branches/network/src/lib/coord/p_node.cc


Ignore:
Timestamp:
Jan 11, 2006, 12:20:56 PM (18 years ago)
Author:
rennerc
Message:

space_ship: tried to implement control synchronization
entities will not be spawned at (0,0,0) anymore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/coord/p_node.cc

    r6424 r6469  
    10391039  SYNCHELP_READ_FKT( BaseObject::writeState );
    10401040
    1041   PRINTF(0)("name = %s\n", this->getName());
     1041  //PRINTF(0)("name = %s\n", this->getName());
    10421042
    10431043  char * parentName = NULL;
     
    10921092  {
    10931093    SYNCHELP_READ_STRINGM( childName );
    1094     PRINTF(0)("childname = %s\n", childName);
     1094    //PRINTF(0)("childname = %s\n", childName);
    10951095    addChild( childName );
    10961096    delete childName;
     
    11131113  SYNCHELP_WRITE_FKT( BaseObject::readState );
    11141114
    1115   PRINTF(0)("name = %s\n", this->getName());
     1115  //PRINTF(0)("name = %s\n", this->getName());
    11161116
    11171117  if ( this->parent )
     
    11301130  SYNCHELP_WRITE_FLOAT( this->relCoordinate.z );
    11311131
    1132   PRINTF(0)("%s, %f, %f, %f\n", getClassName(), relCoordinate.x, relCoordinate.y, relCoordinate.z);
     1132  //PRINTF(0)("%s, %f, %f, %f\n", getClassName(), relCoordinate.x, relCoordinate.y, relCoordinate.z);
    11331133
    11341134  SYNCHELP_WRITE_FLOAT( this->absCoordinate.x );
     
    11361136  SYNCHELP_WRITE_FLOAT( this->absCoordinate.z );
    11371137
    1138   PRINTF(0)("%s, %f, %f, %f\n", getClassName(), absCoordinate.x, absCoordinate.y, absCoordinate.z);
     1138  //PRINTF(0)("%s, %f, %f, %f\n", getClassName(), absCoordinate.x, absCoordinate.y, absCoordinate.z);
    11391139
    11401140  SYNCHELP_WRITE_FLOAT( this->relDirection.w );
     
    11531153  for (std::list<PNode*>::const_iterator it = children.begin(); it!=children.end(); it++)
    11541154  {
    1155     PRINTF(0)("childname = %s\n", (*it)->getName() );
    11561155    SYNCHELP_WRITE_STRING( (*it)->getName() );
    11571156  }
Note: See TracChangeset for help on using the changeset viewer.