- Timestamp:
- Jan 28, 2007, 3:06:13 PM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r10430 r10443 250 250 if ( this->dataTank->localPlayer != NULL) 251 251 this->dataTank->localPlayer->hud().notifyUser(text); 252 PRINTF(0)("===============\n==========\n========\n");253 252 } 254 253 -
trunk/src/world_entities/npcs/npc.cc
r10440 r10443 185 185 if( obj != NULL && obj->isA( Weapon::staticClassID())) 186 186 { 187 Weapon* w = dynamic_cast<Weapon*>(obj); 187 188 PRINTF(0)("created a weapon\n"); 189 int preferedSlot = w->getPreferedSlot(); 190 int preferedSide = w->getPreferedSide(); 191 192 this->addWeapon( w, preferedSide, preferedSlot); 188 193 } 189 194 } … … 210 215 { 211 216 if (weapon != NULL) 212 PRINTF( 2)("Unable to add Weapon (%s::%s) to %s::%s\n",217 PRINTF(1)("Unable to add Weapon (%s::%s) to %s::%s\n", 213 218 weapon->getClassCName(), weapon->getCName(), this->getClassCName(), this->getCName()); 214 219 else 215 PRINTF( 2)("No weapon defined\n");220 PRINTF(1)("No weapon defined\n"); 216 221 return false; 217 222 -
trunk/src/world_entities/weapons/weapon.cc
r10368 r10443 124 124 this->segs = 1; 125 125 126 this->preferedSide = -1; 127 this->preferedSlot = -1; 128 126 129 this->shootAnim = new Animation3D**[this->getBarrels()]; 127 130 for (int i = 0; i < this->getBarrels(); i++) … … 159 162 * needed, if there are more than one barrel or segments 160 163 */ 161 void Weapon::init2() 164 void Weapon::init2() 162 165 { 163 166 if (this->barrels == 1 && this->segs == 1) … … 206 209 LoadParam(root, "projectile", this, Weapon, setProjectileTypeC) 207 210 .describe("Sets the name of the Projectile to load onto the Entity"); 211 212 LoadParam(root, "energy", this, Weapon, setEnergyMax) 213 .describe("number of shoots/ energy whatever"); 214 215 LoadParam(root, "slot", this, Weapon, setPreferedSlot) 216 .describe("slot this weapon will be added"); 208 217 /* 209 218 LoadParam(root, "emission-point", this, Weapon, setEmissionPoint) … … 463 472 return energyToAdd - maxAddEnergy; 464 473 } 465 474 466 475 } 467 476 -
trunk/src/world_entities/weapons/weapon.h
r10368 r10443 187 187 void deconstr(); 188 188 189 inline int getPreferedSide() { return this->preferedSide; } 190 inline int getPreferedSlot() { return this->preferedSlot; } 191 192 189 193 protected: 190 194 //! ACTION: these functions are handled by the Weapon itself, and must be called by requestAction(WeaponAction); … … 202 206 static const char* stateToChar(WeaponState state); 203 207 208 void setPreferedSlot(int slot, int side) { this->preferedSlot = slot; this->preferedSide = side; } 204 209 205 210 … … 261 266 Animation3D*** shootAnim; 262 267 268 int preferedSlot; //!< prefered slot to add 269 int preferedSide; //!< prefered side (left/right) to be added 270 263 271 }; 264 272
Note: See TracChangeset
for help on using the changeset viewer.