[5838] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
| 10 | |
---|
| 11 | ### File Specific: |
---|
[5841] | 12 | main-programmer: Silvan Nellen |
---|
| 13 | co-programmer: Benjamin Knecht |
---|
[5838] | 14 | */ |
---|
| 15 | |
---|
[5881] | 16 | |
---|
[5838] | 17 | #include "playable.h" |
---|
[5895] | 18 | |
---|
| 19 | #include "weapons/weapon_manager.h" |
---|
[5875] | 20 | #include "event_handler.h" |
---|
| 21 | #include "player.h" |
---|
[6241] | 22 | #include "state.h" |
---|
[5838] | 23 | |
---|
[6700] | 24 | #include "world_entities/projectiles/projectile.h" |
---|
| 25 | |
---|
[6547] | 26 | #include "power_ups/weapon_power_up.h" |
---|
| 27 | #include "power_ups/param_power_up.h" |
---|
[5872] | 28 | |
---|
[7044] | 29 | #include "game_rules.h" |
---|
[6547] | 30 | |
---|
[6959] | 31 | #include "dot_emitter.h" |
---|
| 32 | #include "sprite_particles.h" |
---|
| 33 | |
---|
| 34 | |
---|
[5838] | 35 | Playable::Playable() |
---|
| 36 | { |
---|
[6442] | 37 | this->setClassID(CL_PLAYABLE, "Playable"); |
---|
| 38 | PRINTF(4)("PLAYABLE INIT\n"); |
---|
| 39 | |
---|
| 40 | this->toList(OM_GROUP_01); |
---|
| 41 | this->weaponMan = new WeaponManager(this); |
---|
| 42 | |
---|
| 43 | // the reference to the Current Player is NULL, because we dont have one at the beginning. |
---|
| 44 | this->currentPlayer = NULL; |
---|
[6695] | 45 | |
---|
[6804] | 46 | this->bFire = false; |
---|
[6868] | 47 | this->oldFlags = 0; |
---|
[6804] | 48 | |
---|
[6695] | 49 | this->setSynchronized(true); |
---|
[6959] | 50 | |
---|
| 51 | this->score = 0; |
---|
| 52 | this->oldScore = 0; |
---|
| 53 | |
---|
| 54 | |
---|
| 55 | this->emitter = new DotEmitter(100, 5, M_2_PI); |
---|
| 56 | this->emitter->setParent(this); |
---|
| 57 | this->emitter->setSpread(M_PI, M_PI); |
---|
| 58 | this->emitter->setEmissionRate(300.0); |
---|
| 59 | this->emitter->setEmissionVelocity(50.0); |
---|
| 60 | |
---|
| 61 | this->explosionParticles = new SpriteParticles(1000); |
---|
| 62 | this->explosionParticles->setName("LaserExplosionParticles"); |
---|
| 63 | this->explosionParticles->setLifeSpan(.5, .3); |
---|
| 64 | this->explosionParticles->setRadius(0.0, 10.0); |
---|
| 65 | this->explosionParticles->setRadius(.5, 6.0); |
---|
| 66 | this->explosionParticles->setRadius(1.0, 3.0); |
---|
| 67 | this->explosionParticles->setColor(0.0, 1,1,0,.9); |
---|
| 68 | this->explosionParticles->setColor(0.5, .8,.8,0,.5); |
---|
| 69 | this->explosionParticles->setColor(1.0, .8,.8,.7,.0); |
---|
[5838] | 70 | } |
---|
| 71 | |
---|
[6695] | 72 | |
---|
| 73 | |
---|
[5875] | 74 | Playable::~Playable() |
---|
[5838] | 75 | { |
---|
[5881] | 76 | delete this->weaponMan; |
---|
[5895] | 77 | |
---|
[6986] | 78 | // THE DERIVED CLASS MUST UNSUBSCRIBE THE PLAYER THROUGH |
---|
| 79 | // this->setPlayer(NULL); |
---|
| 80 | // IN ITS DESTRUCTOR. |
---|
| 81 | assert(this->currentPlayer == NULL); |
---|
[5875] | 82 | } |
---|
| 83 | |
---|
[5898] | 84 | |
---|
[6443] | 85 | void Playable::addWeapon(Weapon* weapon, int configID, int slotID) |
---|
| 86 | { |
---|
[6676] | 87 | this->weaponMan->addWeapon(weapon, configID, slotID); |
---|
[6443] | 88 | |
---|
[6578] | 89 | this->weaponConfigChanged(); |
---|
[6443] | 90 | } |
---|
| 91 | |
---|
[6695] | 92 | |
---|
[6443] | 93 | void Playable::removeWeapon(Weapon* weapon) |
---|
| 94 | { |
---|
| 95 | this->weaponMan->removeWeapon(weapon); |
---|
| 96 | |
---|
[6568] | 97 | this->weaponConfigChanged(); |
---|
[6443] | 98 | } |
---|
| 99 | |
---|
[6695] | 100 | |
---|
[6444] | 101 | void Playable::nextWeaponConfig() |
---|
| 102 | { |
---|
| 103 | this->weaponMan->nextWeaponConfig(); |
---|
[6568] | 104 | this->weaponConfigChanged(); |
---|
[6444] | 105 | } |
---|
[6443] | 106 | |
---|
[6695] | 107 | |
---|
[6444] | 108 | void Playable::previousWeaponConfig() |
---|
| 109 | { |
---|
| 110 | this->weaponMan->previousWeaponConfig(); |
---|
[6568] | 111 | this->weaponConfigChanged(); |
---|
[6444] | 112 | } |
---|
| 113 | |
---|
[6695] | 114 | |
---|
[6568] | 115 | void Playable::weaponConfigChanged() |
---|
| 116 | { |
---|
[6578] | 117 | if (this->currentPlayer != NULL) |
---|
| 118 | this->currentPlayer->weaponConfigChanged(); |
---|
[6568] | 119 | } |
---|
[6444] | 120 | |
---|
[6695] | 121 | |
---|
[5872] | 122 | /** |
---|
[6436] | 123 | * @brief helps us colliding Playables |
---|
| 124 | */ |
---|
| 125 | void Playable::collidesWith(WorldEntity* entity, const Vector& location) |
---|
| 126 | { |
---|
[6959] | 127 | if (entity->isA(CL_PROJECTILE) && !State::isOnline() ) |
---|
[6966] | 128 | { |
---|
[6700] | 129 | this->decreaseHealth(entity->getHealth()); |
---|
[6966] | 130 | // EXTREME HACK |
---|
| 131 | if (this->getHealth() == 0.0f) |
---|
| 132 | { |
---|
| 133 | this->die(); |
---|
| 134 | } |
---|
| 135 | } |
---|
| 136 | } |
---|
[6436] | 137 | |
---|
[6966] | 138 | |
---|
[7044] | 139 | void Playable::respawn() |
---|
[6966] | 140 | { |
---|
[7044] | 141 | PRINTF(0)("Playable respawn\n"); |
---|
| 142 | // only if this is the spaceship of the player |
---|
| 143 | if( this == State::getPlayer()->getPlayable()) |
---|
| 144 | State::getGameRules()->onPlayerSpawn(); |
---|
[6966] | 145 | |
---|
[7044] | 146 | this->setAbsCoor(0.0, 0.0, 0.0); |
---|
[6966] | 147 | |
---|
| 148 | if( this->getOwner()%2 == 0) |
---|
| 149 | this->toList(OM_GROUP_00); |
---|
| 150 | else |
---|
| 151 | this->toList(OM_GROUP_01); |
---|
[6436] | 152 | } |
---|
| 153 | |
---|
[6966] | 154 | |
---|
[7044] | 155 | void Playable::die() |
---|
| 156 | { |
---|
| 157 | PRINTF(0)("Playable dies\n"); |
---|
| 158 | // only if this is the spaceship of the player |
---|
| 159 | if( this == State::getPlayer()->getPlayable()) |
---|
| 160 | State::getGameRules()->onPlayerDeath(); |
---|
| 161 | |
---|
| 162 | this->toList(OM_DEAD); |
---|
| 163 | //.HACK: moves the entity to an unknown place far far away: in the future, GameRules will look for that |
---|
| 164 | this->setAbsCoor(-2000.0, -2000.0, -2000.0); |
---|
| 165 | |
---|
| 166 | //explosion hack |
---|
| 167 | this->emitter->setSystem(explosionParticles); |
---|
| 168 | this->setAbsCoor(0, 0, 0); |
---|
| 169 | this->emitter->setSystem(NULL); |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | |
---|
[6436] | 173 | /** |
---|
[5872] | 174 | * subscribe to all events the controllable needs |
---|
[5898] | 175 | * @param player the player that shall controll this Playable |
---|
[5872] | 176 | */ |
---|
[6986] | 177 | bool Playable::setPlayer(Player* player) |
---|
[5872] | 178 | { |
---|
[6986] | 179 | // if we already have a Player inside do nothing |
---|
| 180 | if (this->currentPlayer != NULL && player != NULL) |
---|
[5872] | 181 | { |
---|
[5895] | 182 | return false; |
---|
[5875] | 183 | } |
---|
[6986] | 184 | |
---|
| 185 | // eject the Player if player == NULL |
---|
| 186 | if (this->currentPlayer != NULL && player == NULL) |
---|
[5895] | 187 | { |
---|
[6987] | 188 | PRINTF(4)("Player gets ejected\n"); |
---|
[6986] | 189 | |
---|
| 190 | // unsubscibe all events. |
---|
[5895] | 191 | EventHandler* evh = EventHandler::getInstance(); |
---|
| 192 | std::list<int>::iterator ev; |
---|
| 193 | for (ev = this->events.begin(); ev != events.end(); ev++) |
---|
[6986] | 194 | evh->unsubscribe( ES_GAME, (*ev)); |
---|
| 195 | |
---|
| 196 | // leave the entity |
---|
| 197 | this->leave(); |
---|
| 198 | |
---|
| 199 | // eject the current Player. |
---|
| 200 | Player* ejectPlayer = this->currentPlayer; |
---|
| 201 | this->currentPlayer = NULL; |
---|
| 202 | // eject the Player. |
---|
| 203 | ejectPlayer->setPlayable(NULL); |
---|
| 204 | |
---|
[5895] | 205 | return true; |
---|
| 206 | } |
---|
[5889] | 207 | |
---|
[6986] | 208 | // get the new Player inside |
---|
| 209 | if (this->currentPlayer == NULL && player != NULL) |
---|
[5896] | 210 | { |
---|
[6987] | 211 | PRINTF(4)("New Player gets inside\n"); |
---|
[6986] | 212 | this->currentPlayer = player; |
---|
| 213 | if (this->currentPlayer->getPlayable() != this) |
---|
| 214 | this->currentPlayer->setPlayable(this); |
---|
[5896] | 215 | |
---|
| 216 | /*EventHandler*/ |
---|
| 217 | EventHandler* evh = EventHandler::getInstance(); |
---|
| 218 | std::list<int>::iterator ev; |
---|
| 219 | for (ev = this->events.begin(); ev != events.end(); ev++) |
---|
[6986] | 220 | evh->subscribe(player, ES_GAME, (*ev)); |
---|
[5896] | 221 | |
---|
[6986] | 222 | this->enter(); |
---|
[5896] | 223 | return true; |
---|
| 224 | } |
---|
[6986] | 225 | |
---|
| 226 | return false; |
---|
[5896] | 227 | } |
---|
| 228 | |
---|
[6986] | 229 | |
---|
[6547] | 230 | bool Playable::pickup(PowerUp* powerUp) |
---|
| 231 | { |
---|
| 232 | if(powerUp->isA(CL_WEAPON_POWER_UP)) { |
---|
[6973] | 233 | return dynamic_cast<WeaponPowerUp*>(powerUp)->process(this->getWeaponManager()); |
---|
[6547] | 234 | } |
---|
| 235 | else if(powerUp->isA(CL_PARAM_POWER_UP)) { |
---|
| 236 | ParamPowerUp* ppu = dynamic_cast<ParamPowerUp*>(powerUp); |
---|
| 237 | switch(ppu->getType()) { |
---|
| 238 | case POWERUP_PARAM_HEALTH: |
---|
[6700] | 239 | this->increaseHealth(ppu->getValue()); |
---|
[6547] | 240 | return true; |
---|
| 241 | case POWERUP_PARAM_MAX_HEALTH: |
---|
[6700] | 242 | this->increaseHealthMax(ppu->getValue()); |
---|
[6547] | 243 | return true; |
---|
| 244 | } |
---|
| 245 | } |
---|
| 246 | return false; |
---|
| 247 | } |
---|
| 248 | |
---|
[5896] | 249 | /** |
---|
[5898] | 250 | * add an event to the event list of events this Playable can capture |
---|
| 251 | * @param eventType the Type of event to add |
---|
[5889] | 252 | */ |
---|
[5896] | 253 | void Playable::registerEvent(int eventType) |
---|
[5889] | 254 | { |
---|
| 255 | this->events.push_back(eventType); |
---|
| 256 | |
---|
[5896] | 257 | if (this->currentPlayer != NULL) |
---|
| 258 | EventHandler::getInstance()->subscribe(this->currentPlayer, ES_GAME, eventType); |
---|
[5889] | 259 | } |
---|
| 260 | |
---|
[5896] | 261 | /** |
---|
[5898] | 262 | * remove an event to the event list this Playable can capture. |
---|
| 263 | * @param event the event to unregister. |
---|
[5896] | 264 | */ |
---|
| 265 | void Playable::unregisterEvent(int eventType) |
---|
| 266 | { |
---|
[5902] | 267 | this->events.remove(eventType); |
---|
[5889] | 268 | |
---|
[5896] | 269 | if (this->currentPlayer != NULL) |
---|
| 270 | EventHandler::getInstance()->unsubscribe(ES_GAME, eventType); |
---|
| 271 | } |
---|
[5889] | 272 | |
---|
[6804] | 273 | /** |
---|
| 274 | * @brief ticks a Playable |
---|
| 275 | * @param dt: the passed time since the last Tick |
---|
| 276 | */ |
---|
| 277 | void Playable::tick(float dt) |
---|
| 278 | { |
---|
| 279 | this->weaponMan->tick(dt); |
---|
| 280 | if (this->bFire) |
---|
| 281 | weaponMan->fire(); |
---|
| 282 | } |
---|
[5896] | 283 | |
---|
[6804] | 284 | |
---|
| 285 | /** |
---|
| 286 | * @brief processes Playable events. |
---|
| 287 | * @param event the Captured Event. |
---|
| 288 | */ |
---|
| 289 | void Playable::process(const Event &event) |
---|
| 290 | { |
---|
| 291 | if( event.type == KeyMapper::PEV_FIRE1) |
---|
| 292 | this->bFire = event.bPressed; |
---|
| 293 | else if( event.type == KeyMapper::PEV_NEXT_WEAPON && event.bPressed) |
---|
| 294 | { |
---|
| 295 | this->nextWeaponConfig(); |
---|
| 296 | } |
---|
| 297 | else if ( event.type == KeyMapper::PEV_PREVIOUS_WEAPON && event.bPressed) |
---|
| 298 | this->previousWeaponConfig(); |
---|
| 299 | } |
---|
| 300 | |
---|
| 301 | |
---|
| 302 | |
---|
[6241] | 303 | void Playable::attachCamera() |
---|
| 304 | { |
---|
[7014] | 305 | State::getCameraNode()->setParentSoft(this); |
---|
| 306 | State::getCameraTargetNode()->setParentSoft(this); |
---|
[6241] | 307 | |
---|
| 308 | } |
---|
| 309 | |
---|
| 310 | |
---|
[6804] | 311 | |
---|
| 312 | |
---|
[6241] | 313 | void Playable::detachCamera() |
---|
| 314 | { |
---|
| 315 | } |
---|
[6868] | 316 | |
---|
[6959] | 317 | #define DATA_FLAGS 1 |
---|
| 318 | #define DATA_SCORE 2 |
---|
| 319 | |
---|
[6868] | 320 | #define FLAGS_bFire 1 |
---|
| 321 | |
---|
| 322 | int Playable::writeSync( const byte * data, int length, int sender ) |
---|
| 323 | { |
---|
| 324 | SYNCHELP_READ_BEGIN(); |
---|
[7010] | 325 | |
---|
[6994] | 326 | byte b; |
---|
| 327 | SYNCHELP_READ_BYTE( b, NWT_PL_B ); |
---|
[7010] | 328 | |
---|
[6868] | 329 | byte flags; |
---|
[7010] | 330 | |
---|
[6994] | 331 | if ( b == DATA_FLAGS ) |
---|
| 332 | { |
---|
| 333 | SYNCHELP_READ_BYTE( flags, NWT_PL_FLAGS ); |
---|
[6871] | 334 | |
---|
[6994] | 335 | bFire = (flags & FLAGS_bFire) != 0; |
---|
[7010] | 336 | |
---|
[6994] | 337 | return SYNCHELP_READ_N; |
---|
| 338 | } |
---|
[7010] | 339 | |
---|
[6994] | 340 | if ( b == DATA_SCORE ) |
---|
| 341 | { |
---|
| 342 | int newScore; |
---|
| 343 | SYNCHELP_READ_BYTE( newScore, NWT_PL_SCORE ); |
---|
| 344 | setScore( newScore ); |
---|
[7010] | 345 | |
---|
[6994] | 346 | return SYNCHELP_READ_N; |
---|
| 347 | } |
---|
[6871] | 348 | |
---|
[6868] | 349 | return SYNCHELP_READ_N; |
---|
| 350 | } |
---|
| 351 | |
---|
| 352 | int Playable::readSync( byte * data, int maxLength ) |
---|
| 353 | { |
---|
| 354 | SYNCHELP_WRITE_BEGIN(); |
---|
[7010] | 355 | |
---|
[6994] | 356 | if ( score != oldScore && isServer() ) |
---|
| 357 | { |
---|
| 358 | SYNCHELP_WRITE_BYTE( DATA_SCORE, NWT_PL_B); |
---|
| 359 | SYNCHELP_WRITE_INT( score, NWT_PL_SCORE ); |
---|
| 360 | oldScore = score; |
---|
[7010] | 361 | |
---|
[6994] | 362 | return SYNCHELP_WRITE_N; |
---|
| 363 | } |
---|
[7010] | 364 | |
---|
[6868] | 365 | byte flags = 0; |
---|
[6871] | 366 | |
---|
[6868] | 367 | if ( bFire ) |
---|
| 368 | flags |= FLAGS_bFire; |
---|
| 369 | |
---|
[6871] | 370 | |
---|
[6994] | 371 | SYNCHELP_WRITE_BYTE( DATA_FLAGS, NWT_PL_B); |
---|
[6868] | 372 | SYNCHELP_WRITE_BYTE( flags, NWT_PL_FLAGS ); |
---|
| 373 | oldFlags = flags; |
---|
| 374 | |
---|
[6871] | 375 | |
---|
[6868] | 376 | return SYNCHELP_WRITE_N; |
---|
| 377 | } |
---|
| 378 | |
---|
| 379 | bool Playable::needsReadSync( ) |
---|
| 380 | { |
---|
[6994] | 381 | if ( score != oldScore && isServer() ) |
---|
| 382 | return true; |
---|
[6959] | 383 | |
---|
[6868] | 384 | byte flags = 0; |
---|
[6871] | 385 | |
---|
[6868] | 386 | if ( bFire ) |
---|
| 387 | flags |= FLAGS_bFire; |
---|
[6871] | 388 | |
---|
[6868] | 389 | return flags!=oldFlags; |
---|
| 390 | } |
---|