Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jan 18, 2006, 3:37:31 PM (18 years ago)
Author:
rennerc
Message:
 
File:
1 edited

Legend:

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

    r6569 r6573  
    10791079
    10801080  SYNCHELP_READ_INT( n );
     1081  PRINTF(0)("read %s:n=%d", this->getName(), n);
    10811082
    10821083  for (int i = 0; i<n; i++)
    10831084  {
    10841085    SYNCHELP_READ_STRINGM( childName );
    1085     //PRINTF(0)("childname = %s\n", childName);
     1086    PRINTF(0)("RCVD CHILD = %s\n", childName);
    10861087    addChild( childName );
    10871088    delete childName;
     
    11321133      n--;
    11331134  }
     1135  PRINTF(0)("write %s:n=%d", this->getName(), n);
    11341136  SYNCHELP_WRITE_INT( n );
    11351137
     
    11381140    //dont add camera because there is only one camera attached to local player
    11391141    if ( !(*it)->isA(CL_CAMERA) )
     1142    {
     1143      PRINTF(0)("SENDING CHILD: %s\n", (*it)->getName());
    11401144      SYNCHELP_WRITE_STRING( (*it)->getName() );
     1145    }
    11411146  }
    11421147
Note: See TracChangeset for help on using the changeset viewer.