Changeset 6892 in orxonox.OLD for branches/network/src/world_entities/space_ships
- Timestamp:
- Jan 31, 2006, 2:28:45 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/space_ships/space_ship.cc
r6868 r6892 651 651 } 652 652 653 *reciever = -this->getOwner(); 653 *reciever = 0 - this->getOwner(); 654 //TODO: implement with SYNCHELP_WRITE_SENT() 654 655 bool sentSomething = false; 655 656 656 if ( ( this->getHostID()==0 || this->getOwner() == this->getHostID() ) && PNode::needsReadSync() ) 657 { 657 if ( PNode::needsReadSync() && ( this->getHostID()==0 || this->getOwner() == this->getHostID() ) ) 658 { 659 PRINTF(0)("sending PNode::readSync\n"); 658 660 SYNCHELP_WRITE_BYTE( DATA_sync, NWT_SS_B ); 659 661 SYNCHELP_WRITE_FKT( PNode::readSync, NWT_SS_PN_SYNC ); 662 sentSomething = true; 660 663 } 661 664 … … 683 686 { 684 687 oldMask = mask; 688 PRINTF(0)("sending mask\n"); 685 689 sentSomething = true; 686 690 SYNCHELP_WRITE_BYTE( DATA_flags, NWT_SS_B ); … … 710 714 { 711 715 oldVelocity = velocity; 712 //PRINTF(0)("SENDING velocity\n");716 PRINTF(0)("SENDING velocity\n"); 713 717 //SYNCHELP_WRITE_BYTE( DATA_velocity, NWT_SS_B ); 714 718 //SYNCHELP_WRITE_FLOAT( velocity.x, NWT_SS_VELX ); … … 720 724 { 721 725 sentSomething = true; 726 PRINTF(0)("SYNCHELP_WRITE_FKT( Playable::readSync, NWT_SS_PL_SYNC )\n"); 722 727 SYNCHELP_WRITE_BYTE( DATA_playables, NWT_SS_B ); 723 728 SYNCHELP_WRITE_FKT( Playable::readSync, NWT_SS_PL_SYNC ); … … 727 732 728 733 if ( !sentSomething ) 729 reciever = 0;734 *reciever = 0; 730 735 731 736 return SYNCHELP_WRITE_N;
Note: See TracChangeset
for help on using the changeset viewer.