- Timestamp:
- Dec 17, 2008, 8:00:43 AM (16 years ago)
- Location:
- code/branches/presentation
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation
- Property svn:mergeinfo changed
/code/branches/pickups2 (added) merged: 2110,2136,2202,2227,2289-2290,2293-2294,2324,2342,2389,2397
- Property svn:mergeinfo changed
-
code/branches/presentation/src/orxonox/objects/worldentities/Backlight.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Backlight.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Camera.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Camera.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/ControllableEntity.h
r2493 r2500 88 88 virtual void greet() {} 89 89 virtual void use() {} 90 virtual void dropItems() {} 90 91 virtual void switchCamera(); 91 92 virtual void mouseLook(); -
code/branches/presentation/src/orxonox/objects/worldentities/ParticleSpawner.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/ParticleSpawner.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/pawns/Pawn.cc
r2493 r2500 49 49 50 50 PawnManager::touch(); 51 51 this->getPickUp().setPlayer(this); 52 52 this->bAlive_ = true; 53 53 this->fire_ = 0x0; … … 235 235 } 236 236 237 void Pawn::dropItems() 238 { 239 pickUp.eraseAll(); 240 } 241 237 242 void Pawn::setWeaponSlot(WeaponSlot * wSlot) 238 243 { -
code/branches/presentation/src/orxonox/objects/worldentities/pawns/Pawn.h
r2493 r2500 31 31 32 32 #include "OrxonoxPrereqs.h" 33 33 #include "objects/pickup/ShipEquipment.h" 34 34 #include "objects/worldentities/ControllableEntity.h" 35 35 #include "objects/RadarViewable.h" … … 77 77 78 78 virtual void fire(WeaponMode::Enum fireMode); 79 80 79 virtual void postSpawn(); 81 80 … … 105 104 { return this->numexplosionchunks_; } 106 105 106 inline ShipEquipment& getPickUp() 107 {return this->pickUp;} 108 109 virtual void dropItems(); 110 107 111 protected: 108 112 virtual void death(); … … 110 114 virtual void spawneffect(); 111 115 116 ShipEquipment pickUp; 112 117 bool bAlive_; 118 113 119 114 120 float health_; -
code/branches/presentation/src/orxonox/objects/worldentities/pawns/SpaceShip.cc
r2489 r2500 56 56 this->localAngularAcceleration_.setValue(0, 0, 0); 57 57 this->bBoost_ = false; 58 this->bPermanentBoost_ = false; 58 59 this->steering_ = Vector3::ZERO; 59 60 this->engine_ = 0; -
code/branches/presentation/src/orxonox/objects/worldentities/pawns/SpaceShip.h
r2485 r2500 79 79 { return this->enginetemplate_; } 80 80 81 inline void setPermanentBoost(bool bPermanent) 82 { this->bPermanentBoost_ = bPermanent; } 83 inline bool getPermanentBoost() const 84 { return this->bPermanentBoost_; } 85 81 86 protected: 82 87 bool bInvertYAxis_; 83 88 84 89 bool bBoost_; 90 bool bPermanentBoost_; 85 91 Vector3 steering_; 86 92 float primaryThrust_; 87 93 float auxilaryThrust_; 88 94 float rotationThrust_; 89 90 95 btVector3 localLinearAcceleration_; 91 96 btVector3 localAngularAcceleration_; -
code/branches/presentation/src/orxonox/objects/worldentities/triggers/DistanceTrigger.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/DistanceTrigger.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/Trigger.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/Trigger.h
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.