Changeset 2540
- Timestamp:
- Dec 28, 2008, 7:42:30 PM (16 years ago)
- Location:
- code/branches/presentation/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/network/synchronisable/Synchronisable.cc
r2485 r2540 121 121 122 122 //HACK HACK HACK HACK HACK HACK 123 // this hack ensures that child sof this object also get destroyed123 // this hack ensures that children of this object also get destroyed 124 124 // ObjectList<Synchronisable>::iterator it2, it3; 125 125 // // get total size of gamestate -
code/branches/presentation/src/orxonox/objects/worldentities/WorldEntity.cc
r2535 r2540 52 52 const Vector3 WorldEntity::UP = Vector3::UNIT_Y; 53 53 54 /** 55 @brief 56 Creates a new WorldEntity that may immediately be used. 57 All the default values are being set here. 58 */ 54 59 WorldEntity::WorldEntity(BaseObject* creator) : BaseObject(creator), Synchronisable(creator), collisionShape_(0) 55 56 60 { 57 61 RegisterObject(WorldEntity); … … 92 96 } 93 97 98 /** 99 @brief 100 Destroys the WorldEntity AND ALL its children with it. 101 */ 94 102 WorldEntity::~WorldEntity() 95 103 { … … 172 180 } 173 181 182 /** 183 @brief 184 Network function that object this instance to its correct parent. 185 */ 174 186 void WorldEntity::parentChanged() 175 187 { … … 182 194 } 183 195 196 /** 197 @brief 198 Attaches this object to a parent SceneNode. 199 @Remarks 200 Only use this method if you know exactly what you're doing! 201 Normally, attaching works internally by attaching WE's. 202 */ 184 203 void WorldEntity::attachToNode(Ogre::SceneNode* node) 185 204 { … … 190 209 } 191 210 211 /** 212 @brief 213 Detaches this object from a parent SceneNode. 214 @Remarks 215 Only use this method if you know exactly what you're doing! 216 Normally, attaching works internally by attaching WE's. 217 */ 192 218 void WorldEntity::detachFromNode(Ogre::SceneNode* node) 193 219 { … … 196 222 } 197 223 224 /** 225 @brief 226 Network callback for the collision type. Only change the type if it was valid. 227 */ 198 228 void WorldEntity::collisionTypeChanged() 199 229 { … … 214 244 } 215 245 246 //! Network callback for this->bPhysicsActive_ 216 247 void WorldEntity::physicsActivityChanged() 217 248 { … … 222 253 } 223 254 255 //! Function is called to set the right flags in Bullet (if there is physics at all) 224 256 void WorldEntity::collisionCallbackActivityChanged() 225 257 { … … 235 267 } 236 268 269 /** 270 @brief 271 Attaches a child WorldEntity to this object. This calls notifyBeingAttached() 272 of the child WE. 273 @Note 274 The collision shape of the child object gets attached nevertheless. That also means 275 that you can change the collision shape of the child and it correctly cascadeds the changes to this instance. 276 Be aware of this implication: When implementing attaching of kinematic objects to others, you have to change 277 this behaviour because you then might not want to merge the collision shapes. 278 */ 237 279 void WorldEntity::attach(WorldEntity* object) 238 280 { … … 255 297 } 256 298 299 /** 300 @brief 301 Function gets called when this object is being attached to a new parent. 302 303 This operation is only allowed if the collision types "like" each other. 304 - You cannot a attach a non physical object to a physical one. 305 - Dynamic object can NOT be attached at all. 306 - It is also not possible to attach a kinematic to a dynamic one. 307 - Attaching of kinematic objects otherwise is not yet supported. 308 */ 257 309 bool WorldEntity::notifyBeingAttached(WorldEntity* newParent) 258 310 { … … 300 352 } 301 353 354 /** 355 @brief 356 Detaches a child WorldEntity from this instance. 357 */ 302 358 void WorldEntity::detach(WorldEntity* object) 303 359 { … … 324 380 } 325 381 382 /** 383 @brief 384 Function gets called when the object has been detached from its parent. 385 */ 326 386 void WorldEntity::notifyDetached() 327 387 { … … 341 401 } 342 402 403 //! Returns an attached object (merely for XMLPort). 343 404 WorldEntity* WorldEntity::getAttachedObject(unsigned int index) 344 405 { … … 353 414 } 354 415 416 //! Attaches an Ogre::SceneNode to this WorldEntity. 355 417 void WorldEntity::attachNode(Ogre::SceneNode* node) 356 418 { … … 361 423 } 362 424 425 //! Detaches an Ogre::SceneNode from this WorldEntity. 363 426 void WorldEntity::detachNode(Ogre::SceneNode* node) 364 427 { … … 367 430 } 368 431 432 //! Attaches an Ogre::MovableObject to this WorldEntity. 369 433 void WorldEntity::attachOgreObject(Ogre::MovableObject* object) 370 434 { … … 372 436 } 373 437 438 //! Detaches an Ogre::MovableObject from this WorldEntity. 374 439 void WorldEntity::detachOgreObject(Ogre::MovableObject* object) 375 440 { … … 377 442 } 378 443 444 //! Detaches an Ogre::MovableObject (by string) from this WorldEntity. 379 445 Ogre::MovableObject* WorldEntity::detachOgreObject(const Ogre::String& name) 380 446 { … … 382 448 } 383 449 450 //! Attaches a collision Shape to this object (delegated to the internal CompoundCollisionShape) 384 451 void WorldEntity::attachCollisionShape(CollisionShape* shape) 385 452 { … … 388 455 } 389 456 457 //! Detaches a collision Shape from this object (delegated to the internal CompoundCollisionShape) 390 458 void WorldEntity::detachCollisionShape(CollisionShape* shape) 391 459 { … … 394 462 } 395 463 396 CollisionShape* WorldEntity::getAttachedCollisionShape(unsigned int index) const 464 //! Returns an attached collision Shape of this object (delegated to the internal CompoundCollisionShape) 465 CollisionShape* WorldEntity::getAttachedCollisionShape(unsigned int index) 397 466 { 398 467 return this->collisionShape_.getAttachedShape(index); … … 417 486 #endif 418 487 488 //! Returns the position relative to the root space 419 489 const Vector3& WorldEntity::getWorldPosition() const 420 490 { … … 422 492 } 423 493 494 //! Returns the orientation relative to the root space 424 495 const Quaternion& WorldEntity::getWorldOrientation() const 425 496 { … … 427 498 } 428 499 500 //! Returns the scaling applied relative to the root space in 3 coordinates 429 501 const Vector3& WorldEntity::getWorldScale3D() const 430 502 { … … 432 504 } 433 505 506 /** 507 @brief 508 Returns the scaling applied relative to the root space in 3 coordinates 509 @return 510 Returns the scaling if it is uniform, 1.0f otherwise. 511 */ 434 512 float WorldEntity::getWorldScale() const 435 513 { … … 438 516 } 439 517 518 /** 519 @brief 520 Sets the three dimensional scaling of this object. 521 @Note 522 Scaling physical objects has not yet been implemented and is therefore forbidden. 523 */ 440 524 void WorldEntity::setScale3D(const Vector3& scale) 441 525 { … … 454 538 } 455 539 540 /** 541 @brief 542 Translates this WorldEntity by a vector. 543 @param relativeTo 544 @see TransformSpace::Enum 545 */ 456 546 void WorldEntity::translate(const Vector3& distance, TransformSpace::Enum relativeTo) 457 547 { … … 476 566 } 477 567 478 void WorldEntity::rotate(const Quaternion& rotation, TransformSpace::Space relativeTo) 568 /** 569 @brief 570 Rotates this WorldEntity by a quaternion. 571 @param relativeTo 572 @see TransformSpace::Enum 573 */ 479 574 void WorldEntity::rotate(const Quaternion& rotation, TransformSpace::Enum relativeTo) 480 575 { … … 496 591 } 497 592 498 void WorldEntity::lookAt(const Vector3& target, TransformSpace::Space relativeTo, const Vector3& localDirectionVector) 593 /** 594 @brief 595 Makes this WorldEntity look a specific target location. 596 @param relativeTo 597 @see TransformSpace::Enum 598 @param localDirectionVector 599 The vector which normally describes the natural direction of the object, usually -Z. 600 */ 499 601 void WorldEntity::lookAt(const Vector3& target, TransformSpace::Enum relativeTo, const Vector3& localDirectionVector) 500 602 { … … 515 617 } 516 618 517 void WorldEntity::setDirection(const Vector3& direction, TransformSpace::Space relativeTo, const Vector3& localDirectionVector) 619 /** 620 @brief 621 Makes this WorldEntity look in specific direction. 622 @param relativeTo 623 @see TransformSpace::Enum 624 @param localDirectionVector 625 The vector which normally describes the natural direction of the object, usually -Z. 626 */ 518 627 void WorldEntity::setDirection(const Vector3& direction, TransformSpace::Enum relativeTo, const Vector3& localDirectionVector) 519 628 { … … 535 644 } 536 645 646 //! Activates physics if the CollisionType is not None. 537 647 void WorldEntity::activatePhysics() 538 648 { … … 544 654 } 545 655 656 //! Deactivates physics but the CollisionType does not change. 546 657 void WorldEntity::deactivatePhysics() 547 658 { … … 553 664 } 554 665 666 //! Tells whether the object has already been added to the Bullet physics World. 555 667 bool WorldEntity::addedToPhysicalWorld() const 556 668 { … … 558 670 } 559 671 672 /** 673 @brief 674 Sets the CollisionType. This alters the object significantly! @see CollisionType. 675 @Note 676 Operation does not work on attached WorldEntities. 677 */ 560 678 void WorldEntity::setCollisionType(CollisionType type) 561 679 { … … 647 765 } 648 766 767 //! Sets the CollisionType by string (used for the XMLPort) 649 768 void WorldEntity::setCollisionTypeStr(const std::string& typeStr) 650 769 { … … 664 783 } 665 784 785 //! Gets the CollisionType by string (used for the XMLPort) 666 786 std::string WorldEntity::getCollisionTypeStr() const 667 787 { … … 695 815 } 696 816 817 /** 818 @brief 819 Recalculates the accumulated child mass and calls recalculateMassProps() 820 and notifies the parent of the change. 821 @Note 822 Called by a child WE 823 */ 697 824 void WorldEntity::notifyChildMassChanged() 698 825 { … … 708 835 } 709 836 837 /** 838 @brief 839 Undertakes the necessary steps to change the collision shape in Bullet, even at runtime. 840 @Note 841 - called by this->collisionShape_ 842 - May have a REALLY big overhead when called continuously at runtime, because then we need 843 to remove the physical body from Bullet and add it again. 844 */ 710 845 void WorldEntity::notifyCollisionShapeChanged() 711 846 { … … 725 860 } 726 861 862 //! Updates all mass dependent parameters (mass, inertia tensor and child mass) 727 863 void WorldEntity::recalculateMassProps() 728 864 { … … 740 876 { 741 877 // Use default values to avoid very large or very small values 742 CCOUT(4) << "Warning: Setting the internal physical mass to 1.0 because mass_ is 0.0 ." << std::endl;878 CCOUT(4) << "Warning: Setting the internal physical mass to 1.0 because mass_ is 0.0" << std::endl; 743 879 btVector3 inertia(0, 0, 0); 744 880 this->collisionShape_.calculateLocalInertia(1.0f, inertia); … … 752 888 } 753 889 890 //! Copies our own parameters for restitution, angular factor, dampings and friction to the bullet rigid body. 754 891 void WorldEntity::internalSetPhysicsProps() 755 892 { -
code/branches/presentation/src/orxonox/objects/worldentities/WorldEntity.h
r2535 r2540 47 47 namespace orxonox 48 48 { 49 /** 50 @brief 51 The WorldEntity represents everything that can be put in a Scene at a certain location. 52 53 It is supposed to be the base class of everything you would call an 'object' in a Scene. 54 The class itself is abstract which means you cannot use it directly. You may use StaticEntity 55 as the simplest derivative or (derived from MobileEntity) MovableEntity and ControllableEntity 56 as more advanced ones. 57 58 The basic task of the WorldEntity is provide a location, a direction and a scaling and the possibility 59 to create an entire hierarchy of derivated objects. 60 It is also the basis for the physics interface to the Bullet physics engine. 61 Every WorldEntity can have a specific collision type: @see CollisionType 62 This would then imply that every scene object could have any collision type. To limit this, you can always 63 override this->isCollisionTypeLegal(CollisionType). Return false if the collision type is not supported 64 for a specific object. 65 There is also support for attaching WorldEntities with physics to each other. Currently, the collision shape 66 of both objects simply get merged into one larger shape (for static collision type). 67 The phyiscal body that is internally stored and administrated has the following supported properties: 68 - Restitution, angular factor, linear damping, angular damping, fricition, mass and collision shape. 69 You can get more information at the corresponding set function. 70 71 Collision shapes: These are controlled by the internal CompoundCollisionShape. @see CompoundCollisionShape. 72 */ 49 73 class _OrxonoxExport WorldEntity : public BaseObject, public Synchronisable, public btMotionState 50 74 { … … 182 206 183 207 public: 208 /** 209 @brief 210 Denotes the possible types of physical objects in a Scene. 211 212 Dynamic: The object is influenced by its physical environment, like for instance little ball. 213 Kinematic: The object can only influence other dynamic objects. It's movement is coordinated by your own saying. 214 Static: Like kinematic but the object is not allowed to move during the simulation. 215 None: The object has no physics at all. 216 */ 184 217 enum CollisionType 185 218 { … … 190 223 }; 191 224 225 //! Tells whether the object has any connection to the Bullet physics engine. If hasPhysics() is false, the object may still have a velocity. 192 226 bool hasPhysics() const { return getCollisionType() != None ; } 227 //! @see CollisionType 193 228 bool isStatic() const { return getCollisionType() == Static ; } 229 //! @see CollisionType 194 230 bool isKinematic() const { return getCollisionType() == Kinematic; } 231 //! @see CollisionType 195 232 bool isDynamic() const { return getCollisionType() == Dynamic ; } 233 //! Tells whether physics has been activated (you can temporarily deactivate it) 196 234 bool isPhysicsActive() const { return this->bPhysicsActive_; } 197 235 bool addedToPhysicalWorld() const; … … 200 238 void deactivatePhysics(); 201 239 240 //! Returns the CollisionType. @see CollisionType. 202 241 inline CollisionType getCollisionType() const 203 242 { return this->collisionType_; } … … 207 246 std::string getCollisionTypeStr() const; 208 247 248 //! Sets the mass of this object. Note that the total mass may be influenced by attached objects! 209 249 inline void setMass(float mass) 210 250 { this->mass_ = mass; recalculateMassProps(); } 251 //! Returns the mass of this object without its children. 211 252 inline float getMass() const 212 253 { return this->mass_; } 213 254 255 //! Returns the total mass of this object with all its attached children. 214 256 inline float getTotalMass() const 215 257 { return this->mass_ + this->childrenMass_; } 216 258 259 /** 260 @brief 261 Returns the diagonal elements of the inertia tensor when calculated in local coordinates. 262 @Note 263 The local inertia tensor cannot be set, but is calculated by Bullet according to the collisionShape. 264 With compound collision shapes, an approximation is used. 265 */ 217 266 inline const btVector3& getLocalInertia() const 218 267 { return this->localInertia_; } 219 268 269 /** 270 @brief 271 Sets how much reaction is applied in a collision. 272 273 Consider two equal spheres colliding with equal velocities: 274 Restitution 1 means that both spheres simply reverse their velocity (no loss of energy) 275 Restitution 0 means that both spheres will immediately stop moving 276 (maximum loss of energy without violating of the preservation of momentum) 277 */ 220 278 inline void setRestitution(float restitution) 221 279 { this->restitution_ = restitution; internalSetPhysicsProps(); } 280 //! Returns the restitution parameter. @see setRestitution. 222 281 inline float getRestitution() const 223 282 { return this->restitution_; } 224 283 284 /** 285 @brief 286 Sets an artificial parameter that tells how much torque is applied when you apply a non-central force. 287 288 Normally the angular factor is 1, which means it's physically 'correct'. Howerver if you have a player 289 character that should not rotate when hit sideways, you can set the angular factor to 0. 290 */ 225 291 inline void setAngularFactor(float angularFactor) 226 292 { this->angularFactor_ = angularFactor; internalSetPhysicsProps(); } 293 //! Returns the angular factor. @see setAngularFactor. 227 294 inline float getAngularFactor() const 228 295 { return this->angularFactor_; } 229 296 297 //! Applies a mass independent damping. Velocities will simply diminish exponentially. 230 298 inline void setLinearDamping(float linearDamping) 231 299 { this->linearDamping_ = linearDamping; internalSetPhysicsProps(); } 300 //! Returns the linear damping. @see setLinearDamping. 232 301 inline float getLinearDamping() const 233 302 { return this->linearDamping_; } 234 303 304 //! Applies a tensor independent rotation damping. Angular velocities will simply diminish exponentially. 235 305 inline void setAngularDamping(float angularDamping) 236 306 { this->angularDamping_ = angularDamping; internalSetPhysicsProps(); } 307 //! Returns the angular damping. @see setAngularDamping. 237 308 inline float getAngularDamping() const 238 309 { return this->angularDamping_; } 239 310 311 //! Applies friction to the object. Friction occurs when two objects collide. 240 312 inline void setFriction(float friction) 241 313 { this->friction_ = friction; internalSetPhysicsProps(); } 314 //! Returns the amount of friction applied to the object. 242 315 inline float getFriction() const 243 316 { return this->friction_; } … … 250 323 void notifyChildMassChanged(); 251 324 325 /** 326 @brief 327 Virtual function that gets called when this object collides with another. 328 @param otherObject 329 The object this one has collided into. 330 @pram contactPoint 331 Contact point provided by Bullet. Holds more information and can me modified. See return value. 332 @Return 333 Returning false means that no modification to the contactPoint has been made. Return true otherwise! 334 @Note 335 Condition is that enableCollisionCallback() was called. 336 */ 252 337 virtual inline bool collidesAgainst(WorldEntity* otherObject, btManifoldPoint& contactPoint) 253 338 { return false; } /* With false, Bullet assumes no modification to the collision objects. */ 254 339 340 //! Enables the collidesAgainst(.) function. The object doesn't respond to collision otherwise! 255 341 inline void enableCollisionCallback() 256 342 { this->bCollisionCallbackActive_ = true; this->collisionCallbackActivityChanged(); } 343 //! Disables the collidesAgainst(.) function. @see enableCollisionCallback() 257 344 inline void disableCollisionCallback() 258 345 { this->bCollisionCallbackActive_ = false; this->collisionCallbackActivityChanged(); } 346 //! Tells whether there could be a collision response via collidesAgainst(.) 259 347 inline bool isCollisionCallbackActive() const 260 348 { return this->bCollisionCallbackActive_; } 261 349 262 350 protected: 351 /** 352 @brief 353 Function checks whether the requested collision type is legal to this object. 354 355 You can override this function in a derived class to constrain the collision to e.g. None or Dynamic. 356 A projectile may not prove very useful if there is no physical body. Simply set the CollisionType 357 in its constructor and override this method. But be careful that a derived classe's virtual functions 358 don't yet exist in the constructor if a base class. 359 */ 263 360 virtual bool isCollisionTypeLegal(CollisionType type) const = 0; 264 361 265 btRigidBody* physicalBody_;362 btRigidBody* physicalBody_; //!< Bullet rigid body. Everything physical is applied to this instance. 266 363 267 364 private: … … 277 374 void physicsActivityChanged(); 278 375 void collisionCallbackActivityChanged(); 376 //! Network callback workaround to call a function when the value changes. 279 377 inline void massChanged() 280 378 { this->setMass(this->mass_); } 379 //! Network callback workaround to call a function when the value changes. 281 380 inline void restitutionChanged() 282 381 { this->setRestitution(this->restitution_); } 382 //! Network callback workaround to call a function when the value changes. 283 383 inline void angularFactorChanged() 284 384 { this->setAngularFactor(this->angularFactor_); } 385 //! Network callback workaround to call a function when the value changes. 285 386 inline void linearDampingChanged() 286 387 { this->setLinearDamping(this->linearDamping_); } 388 //! Network callback workaround to call a function when the value changes. 287 389 inline void angularDampingChanged() 288 390 { this->setAngularDamping(this->angularDamping_); } 391 //! Network callback workaround to call a function when the value changes. 289 392 inline void frictionChanged() 290 393 { this->setFriction(this->friction_); } 291 394 292 CollisionType collisionType_; 293 CollisionType collisionTypeSynchronised_; 294 bool bPhysicsActive_; 295 bool bPhysicsActiveSynchronised_; 395 CollisionType collisionType_; //!< @see setCollisionType 396 CollisionType collisionTypeSynchronised_; //!< Network synchronised variable for collisionType_ 397 bool bPhysicsActive_; //!< @see isPhysicsActive 398 bool bPhysicsActiveSynchronised_; //!< Network synchronised variable for bPhysicsActive_ 399 //! When attaching objects hierarchically this variable tells this object (as child) whether physics was activated before attaching (because the deactivate physics while being attached). 296 400 bool bPhysicsActiveBeforeAttaching_; 297 CompoundCollisionShape collisionShape_; 298 btScalar mass_; 299 btVector3 localInertia_; 300 btScalar restitution_; 301 btScalar angularFactor_; 302 btScalar linearDamping_; 303 btScalar angularDamping_; 304 btScalar friction_; 305 btScalar childrenMass_; 306 bool bCollisionCallbackActive_; 401 CompoundCollisionShape collisionShape_; //!< Attached collision shapes go here 402 btScalar mass_; //!< @see setMass 403 btVector3 localInertia_; //!< @see getLocalInertia 404 btScalar restitution_; //!< @see setRestitution 405 btScalar angularFactor_; //!< @see setAngularFactor 406 btScalar linearDamping_; //!< @see setLinearDamping 407 btScalar angularDamping_; //!< @see setAngularDamping 408 btScalar friction_; //!< @see setFriction 409 btScalar childrenMass_; //!< Sum of all the children's masses 410 bool bCollisionCallbackActive_; //!< @see enableCollisionCallback 307 411 }; 308 412 -
code/branches/presentation/src/orxonox/overlays/OverlayGroup.h
r2485 r2540 90 90 private: 91 91 std::map<std::string, OrxonoxOverlay*> hudElements_; //!< Contains all the OrxonoxOverlays of the this group. 92 Vector2 scale_; //!< Current scale (independ ant of the elements).92 Vector2 scale_; //!< Current scale (independent of the elements). 93 93 Vector2 scroll_; //!< Current scrolling offset. 94 94 ControllableEntity* owner_; //!< The owner of this OverlayGroup
Note: See TracChangeset
for help on using the changeset viewer.