Changeset 1443 for code/branches
- Timestamp:
- May 27, 2008, 10:44:39 PM (16 years ago)
- Location:
- code/branches/network/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/network/ClientConnection.h
r1409 r1443 54 54 #define NETWORK_PORT 55556 55 55 #define NETWORK_CLIENT_MAX_CONNECTIONS 5 56 #define NETWORK_CLIENT_TIMEOUT 1000 056 #define NETWORK_CLIENT_TIMEOUT 1000 57 57 #define NETWORK_SEND_WAIT 500 58 58 #define NETWORK_CLIENT_CHANNELS 2 -
code/branches/network/src/orxonox/Orxonox.cc
r1432 r1443 404 404 client_g = network::Client::createSingleton(serverIp_, serverPort_); 405 405 406 client_g->establishConnection(); 406 if(!client_g->establishConnection()) 407 return false; 407 408 client_g->tick(0); 408 409 -
code/branches/network/src/orxonox/objects/SpaceShip.cc
r1431 r1443 484 484 SpaceShip* this_ = getLocalShip(); 485 485 this_->momentum_ = Radian(-this_->rotationAccelerationRadian_ * val); 486 COUT(3) << "rotating val: " << val << " acceleration: " << this_->rotationAccelerationRadian_.valueDegrees() << std::endl; 486 487 } 487 488 -
code/branches/network/src/orxonox/objects/WorldEntity.cc
r1425 r1443 85 85 this->rotationRate_ += (dt * this->momentum_); 86 86 this->rotate(this->rotationAxis_, dt * this->rotationRate_); 87 COUT(3) << "rotationrate: " << this->rotationRate_.valueDegrees() << " momentum: " << this->momentum_.valueDegrees() << std::endl; 87 88 } 88 89 } … … 138 139 registerVar( (void*) &(this->getOrientation().z), sizeof(this->getOrientation().z), network::DATA, 0x3); 139 140 // register velocity_ 140 registerVar( (void*) &(this->getVelocity().x), sizeof(this->getVelocity().x), network::DATA, 0x3);141 /*registerVar( (void*) &(this->getVelocity().x), sizeof(this->getVelocity().x), network::DATA, 0x3); 141 142 registerVar( (void*) &(this->getVelocity().y), sizeof(this->getVelocity().y), network::DATA, 0x3); 142 143 registerVar( (void*) &(this->getVelocity().z), sizeof(this->getVelocity().z), network::DATA, 0x3); … … 145 146 registerVar( (void*) &(this->getRotationAxis().x), sizeof(this->getRotationAxis().x), network::DATA, 0x3); 146 147 registerVar( (void*) &(this->getRotationAxis().y), sizeof(this->getRotationAxis().y), network::DATA, 0x3); 147 registerVar( (void*) &(this->getRotationAxis().z), sizeof(this->getRotationAxis().z), network::DATA, 0x3); 148 registerVar( (void*) &(this->getRotationAxis().z), sizeof(this->getRotationAxis().z), network::DATA, 0x3);*/ 148 149 // register scale of node 149 150 registerVar( (void*) &(this->getScale().x), sizeof(this->getScale().x), network::DATA, 0x3);
Note: See TracChangeset
for help on using the changeset viewer.