[10044] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
[10104] | 4 | Copyright (C) 2004-2006 orx |
---|
[10044] | 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 |
---|
[10104] | 12 | main-programmer: Nicolas Schlumberger, Marc Schaerrer |
---|
[10044] | 13 | co-programmer: Benjamin Grauer |
---|
| 14 | |
---|
| 15 | */ |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON |
---|
| 19 | |
---|
| 20 | #include "lbolt.h" |
---|
| 21 | |
---|
| 22 | #include "state.h" |
---|
| 23 | #include "model.h" |
---|
| 24 | |
---|
[10545] | 25 | #include "world_entities/npcs/npc.h" |
---|
| 26 | |
---|
[10044] | 27 | #include "particles/dot_emitter.h" |
---|
| 28 | #include "particles/sprite_particles.h" |
---|
[10366] | 29 | #include "npcs/npc.h" |
---|
[10044] | 30 | |
---|
| 31 | #include <cassert> |
---|
| 32 | #include "debug.h" |
---|
| 33 | |
---|
[10079] | 34 | #include "space_ships/space_ship.h" |
---|
[10044] | 35 | |
---|
[10079] | 36 | |
---|
[10366] | 37 | |
---|
[10044] | 38 | ObjectListDefinition(LBolt); |
---|
| 39 | CREATE_FAST_FACTORY_STATIC(LBolt); |
---|
| 40 | |
---|
| 41 | /** |
---|
| 42 | * standard constructor |
---|
| 43 | */ |
---|
| 44 | LBolt::LBolt () : Projectile() |
---|
| 45 | { |
---|
| 46 | this->registerObject(this, LBolt::_objectList); |
---|
| 47 | |
---|
| 48 | this->loadModel("models/projectiles/lbolt.obj"); |
---|
| 49 | |
---|
| 50 | this->setMinEnergy(1); |
---|
| 51 | this->setHealthMax(0); |
---|
[10274] | 52 | this->lifeSpan = 1.0; |
---|
[10044] | 53 | |
---|
| 54 | this->emitter = new DotEmitter(100, 5, M_2_PI); |
---|
| 55 | this->emitter->setParent(this); |
---|
| 56 | this->emitter->setSpread(M_PI, M_PI); |
---|
| 57 | this->emitter->setEmissionRate(300.0); |
---|
| 58 | this->emitter->setEmissionVelocity(50.0); |
---|
| 59 | |
---|
| 60 | this->angle = 0; |
---|
| 61 | this->rotationSpeed = 130; |
---|
[10046] | 62 | |
---|
[10063] | 63 | this->halo = new Billboard(); |
---|
[10074] | 64 | this->halo->setSize(.35, .35); |
---|
[10063] | 65 | this->halo->setTexture("hbolt_halo.png"); |
---|
[10511] | 66 | this->halo->setVisibility(false); |
---|
[10345] | 67 | |
---|
| 68 | |
---|
[10044] | 69 | } |
---|
| 70 | |
---|
| 71 | |
---|
| 72 | /** |
---|
| 73 | * standard deconstructor |
---|
| 74 | */ |
---|
| 75 | LBolt::~LBolt () |
---|
| 76 | { |
---|
| 77 | // delete this->emitter; |
---|
| 78 | |
---|
| 79 | /* this is normaly done by World.cc by deleting the ParticleEngine */ |
---|
| 80 | if (LBolt::explosionParticles != NULL && LBolt::objectList().size() <= 1) |
---|
| 81 | { |
---|
| 82 | //if (ClassList::exists(LBolt::explosionParticles, CL_PARTICLE_SYSTEM)) |
---|
| 83 | // delete LBolt::explosionParticles; |
---|
| 84 | PRINTF(1)("Deleting LBolt Particles\n"); |
---|
| 85 | LBolt::explosionParticles = NULL; |
---|
| 86 | } |
---|
| 87 | |
---|
| 88 | } |
---|
| 89 | |
---|
| 90 | SpriteParticles* LBolt::explosionParticles = NULL; |
---|
| 91 | |
---|
| 92 | void LBolt::activate() |
---|
| 93 | { |
---|
[10511] | 94 | this->halo->setVisibility(true); |
---|
[10345] | 95 | this->origList = this->getOMListNumber(); |
---|
[10274] | 96 | this->toList(OM_ENVIRON); |
---|
[10044] | 97 | if (unlikely(LBolt::explosionParticles == NULL)) |
---|
| 98 | { |
---|
| 99 | LBolt::explosionParticles = new SpriteParticles(1000); |
---|
| 100 | LBolt::explosionParticles->setName("BoltExplosionParticles"); |
---|
| 101 | LBolt::explosionParticles->setLifeSpan(.5, .3); |
---|
| 102 | LBolt::explosionParticles->setRadius(0.0, 10.0); |
---|
| 103 | LBolt::explosionParticles->setRadius(.5, 6.0); |
---|
| 104 | LBolt::explosionParticles->setRadius(1.0, 3.0); |
---|
| 105 | LBolt::explosionParticles->setColor(0.0, 1,1,0,.9); |
---|
| 106 | LBolt::explosionParticles->setColor(0.5, .8,.8,0,.5); |
---|
| 107 | LBolt::explosionParticles->setColor(1.0, .8,.8,.7,.0); |
---|
| 108 | } |
---|
| 109 | |
---|
| 110 | this->setDamage(5); |
---|
| 111 | this->setHealth(0); |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | |
---|
| 115 | void LBolt::deactivate() |
---|
| 116 | { |
---|
| 117 | assert (LBolt::explosionParticles != NULL); |
---|
| 118 | LBolt::explosionParticles->removeEmitter(this->emitter); |
---|
[10511] | 119 | this->halo->setVisibility(false); |
---|
[10044] | 120 | this->lifeCycle = 0.0; |
---|
| 121 | |
---|
[10274] | 122 | this->toList(OM_DEAD); |
---|
[10044] | 123 | this->removeNode(); |
---|
| 124 | LBolt::fastFactory->kill(this); |
---|
| 125 | } |
---|
| 126 | |
---|
[10261] | 127 | |
---|
[10274] | 128 | void LBolt::hit (float damage, WorldEntity* entity ) |
---|
[10044] | 129 | { |
---|
[10079] | 130 | PRINTF(0)("Collision with LBolt\n"); |
---|
[10366] | 131 | if (this->hitEntity != entity && entity->isA(NPC::staticClassID())) |
---|
[10044] | 132 | this->destroy( entity ); |
---|
| 133 | this->hitEntity = entity; |
---|
[10261] | 134 | this->deactivate(); |
---|
| 135 | } |
---|
[10044] | 136 | |
---|
| 137 | /** |
---|
| 138 | * signal tick, time dependent things will be handled here |
---|
| 139 | * @param dt time since last tick |
---|
| 140 | */ |
---|
| 141 | void LBolt::tick (float dt) |
---|
| 142 | { |
---|
| 143 | //Vector v = *this->flightDirection * ( this->speed * time * 1000 + 0.1); |
---|
| 144 | Vector v = this->velocity * dt; |
---|
| 145 | this->shiftCoor(v); |
---|
| 146 | |
---|
| 147 | if (this->tickLifeCycle(dt)) |
---|
| 148 | this->deactivate(); |
---|
| 149 | |
---|
| 150 | angle += rotationSpeed * dt; |
---|
[10274] | 151 | |
---|
[10545] | 152 | for( ObjectList<NPC>::const_iterator eIterator = NPC::objectList().begin(); eIterator !=NPC::objectList().end(); eIterator++) |
---|
[10274] | 153 | { |
---|
[10545] | 154 | if( ((*eIterator)->getOMListNumber() != (this->origList -1)) && ((*eIterator)->getAbsCoor() - this->getAbsCoor()).len() <= 8) |
---|
[10274] | 155 | { |
---|
[10545] | 156 | (*eIterator)->destroy(this); //hit (this->getDamage(),this); |
---|
[10274] | 157 | this->deactivate(); |
---|
| 158 | PRINTF(0)("LBolt destroyed\n"); |
---|
| 159 | } |
---|
| 160 | } |
---|
[10044] | 161 | } |
---|
| 162 | |
---|
| 163 | /** |
---|
| 164 | * the function gets called, when the projectile is destroyed |
---|
| 165 | */ |
---|
| 166 | void LBolt::destroy (WorldEntity* killer) |
---|
| 167 | { |
---|
| 168 | Projectile::destroy( killer ); |
---|
| 169 | PRINTF(5)("DESTROY LBolt\n"); |
---|
| 170 | this->lifeCycle = .95; //!< @todo calculate this usefully. |
---|
| 171 | |
---|
| 172 | this->emitter->setSystem(LBolt::explosionParticles); |
---|
| 173 | } |
---|
| 174 | |
---|
| 175 | |
---|
| 176 | void LBolt::draw () const |
---|
| 177 | { |
---|
| 178 | glPushAttrib(GL_ENABLE_BIT); |
---|
[10046] | 179 | //glDisable(GL_LIGHTING); |
---|
[10044] | 180 | |
---|
| 181 | glMatrixMode(GL_MODELVIEW); |
---|
| 182 | glPushMatrix(); |
---|
| 183 | |
---|
| 184 | float matrix[4][4]; |
---|
| 185 | glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); |
---|
[10063] | 186 | |
---|
[10044] | 187 | glRotatef(angle, 1.0, 0.0, 0.0); |
---|
| 188 | this->getAbsDir().matrix (matrix); |
---|
| 189 | glMultMatrixf((float*)matrix); |
---|
[10063] | 190 | this->getModel()->draw(); |
---|
[10046] | 191 | |
---|
[10063] | 192 | this->halo->draw(); |
---|
| 193 | |
---|
[10044] | 194 | glPopMatrix(); |
---|
| 195 | |
---|
| 196 | glPopAttrib(); |
---|
| 197 | } |
---|
| 198 | |
---|