Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9975 in orxonox.OLD


Ignore:
Timestamp:
Nov 29, 2006, 5:15:10 PM (17 years ago)
Author:
marcscha
Message:

fixes

Location:
branches/playability/src/world_entities
Files:
2 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • branches/playability/src/world_entities/WorldEntities.am

    r9971 r9975  
    5454                \
    5555                world_entities/space_ships/space_ship.cc \
    56                 world_entities/space_ships/playership.cc \
    5756                world_entities/space_ships/helicopter.cc \
    5857                world_entities/space_ships/hover.cc \
     
    162161                \
    163162                space_ships/space_ship.h \
    164                 space_ships/playership.h \
    165163                space_ships/helicopter.h \
    166164                space_ships/hover.h \
  • branches/playability/src/world_entities/player.cc

    r9971 r9975  
    2323
    2424#include "debug.h"
    25 
    26 #include "world_entities/space_ships/playership.h"
    2725
    2826ObjectListDefinition(Player);
     
    130128}
    131129
    132 PlayerShip* Player::getPlayerShip()
    133 {
    134   return this->playership;
    135 }
    136130
    137 void Player::setPlayerShip(PlayerShip* playership)
    138 {
    139   this->playership = playership;
    140 }
    141 
    142 
  • branches/playability/src/world_entities/player.h

    r9971 r9975  
    1010
    1111#include "util/hud.h"
    12 #include "world_entities/space_ships/playership.h"
    1312
    1413/* Forward Declaration */
     
    3231    bool              setPlayable(Playable* controllalble);
    3332    bool              eject();
    34     void              setPlayerShip(PlayerShip playership);
    35     PlayerShip*       getPlayerShip();
    3633    inline Playable*  getPlayable() const  { return this->playable; };
    3734
     
    5047    Playable*         playable;                 //!< The one we controll or NULL if none
    5148    Hud               _hud;                     //!< The HUD to be displayed for this Player.
    52     PlayerShip        playership;
    5349};
    5450
  • branches/playability/src/world_entities/space_ships/space_ship.cc

    r9970 r9975  
    691691 
    692692}
     693
     694void SpaceShip::enterPlaymode(Playable::Playmode playmode)
     695{
     696}
     697
     698void SpaceShip::movement (float dt)
     699{
     700}
  • branches/playability/src/world_entities/space_ships/space_ship.h

    r9971 r9975  
    151151    float                 rotation;
    152152
    153     /*
     153    // FIXME until other fixme removal needed
    154154    Quaternion            mouseDir;           //!< the direction where the player wants to fly
    155155    Quaternion            oldMouseDir;        //!< the direction where the player wanted to fly
     
    159159    Quaternion            pitchDir;
    160160    float                 dogdeSpeed;        //!< the dogde Speed of the ship.
    161     */
     161    // FIXME
    162162
    163163    Quaternion            direction;          //!< the direction of the ship.
  • branches/playability/src/world_entities/weapons/heavy_blaster.cc

    r9972 r9975  
    11#include "heavy_blaster.h"
     2#include "world_entities/projectiles/projectile.h"
     3
     4#include "world_entity.h"
     5#include "static_model.h"
     6#include "weapon_manager.h"
     7#include "util/loading/factory.h"
     8
     9#include "animation3d.h"
     10
     11#include "loading/fast_factory.h"
     12
     13CREATE_FACTORY(HeavyBlaster);
     14/**
     15 * Standard constructor
     16 */
     17HeavyBlaster::HeavyBlaster ()
     18 : Weapon()
     19{
     20    this->init();
     21}
    222
    323HeavyBlaster::HeavyBlaster (const TiXmlElement* root = NULL)
    424 : Weapon()
    5   {
     25{
    626    this->init();
    727    if (root != NULL)
    828      this->loadParams(root);
    9   }
     29}
    1030
    1131/**
     
    1333 */
    1434HeavyBlaster::~HeavyBlaster()
    15   {
     35{
    1636      // model will be deleted from WorldEntity-destructor
    17   }
     37}
     38
     39void HeavyBlaster::loadParams(const TiXmlElement* root)
     40{
     41  Weapon::loadParams(root);
     42}
     43
     44void HeavyBlaster::init()
     45{
     46  //this->registerObject(this, HeavyBlaster::_objectList);
     47
     48//  this->model = (Model*)ResourceManager::getInstance()->load("models/guns/test_gun.obj", OBJ, RP_CAMPAIGN);
     49
     50  this->loadModel("models/guns/plasmadriver_#.obj", 1.0);
     51 
     52
     53  this->setStateDuration(WS_SHOOTING, 0.05);
     54  this->setStateDuration(WS_RELOADING, 0);
     55  this->setStateDuration(WS_ACTIVATING, .5);
     56  this->setStateDuration(WS_DEACTIVATING, 1);
     57
     58  this->setEnergyMax(5000);
     59  this->increaseEnergy(5000);
     60  //this->minCharge = 2;
     61
     62  this->setActionSound(WA_SHOOT, "sound/laser.wav");
     63  this->setActionSound(WA_ACTIVATE, "sound/voices/lasers.wav");
     64  this->setActionSound(WA_RELOAD, "sound/spawn/alien_generator.wav");
     65
     66  this->setCapability(WTYPE_ALLDIRS | WTYPE_DIRECTIONAL | WTYPE_LIGHT);
     67  this->setProjectileTypeC("RailProjectile");   // FIXME temp project type until the blaste class exist
     68  this->prepareProjectiles(100);
     69
     70  Animation3D* animation2 = this->getAnimation(WS_ACTIVATING, this);
     71  Animation3D* animation3 = this->getAnimation(WS_DEACTIVATING, this);
     72
     73  animation2->setInfinity(ANIM_INF_CONSTANT);
     74  animation3->setInfinity(ANIM_INF_CONSTANT);
     75
     76  this->setEmissionPoint(3.8, 1.2, 0);
     77
     78  animation2->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
     79  animation2->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.5, ANIM_LINEAR, ANIM_NULL);
     80
     81  animation3->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.5, ANIM_LINEAR, ANIM_NULL);
     82  animation3->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
     83}
    1884
    1985
     86void HeavyBlaster::fire()
     87{
     88  Projectile* pj =  this->getProjectile();
     89  if (pj == NULL)
     90    return;
     91
     92  // set the owner
     93  pj->setOwner(this->getOwner());
     94
     95  pj->setParent(PNode::getNullParent());
     96
     97  pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     98
     99  pj->setAbsCoor(this->getEmissionPoint());
     100  pj->setAbsDir(this->getAbsDir());
     101  pj->activate();
     102}
     103
     104/**
     105 *  this activates the weapon
     106*/
     107void HeavyBlaster::activate()
     108{
     109}
     110
     111/**
     112 *  this deactivates the weapon
     113*/
     114void HeavyBlaster::deactivate()
     115{
     116}
     117
     118void HeavyBlaster::draw() const
     119{
     120}
  • branches/playability/src/world_entities/weapons/heavy_blaster.h

    r9972 r9975  
    1212class HeavyBlaster : public Weapon
    1313{
    14   ObjectListDeclaration(HeavyBlaster);
     14  //ObjectListDeclaration(HeavyBlaster);
    1515  public:
    1616    HeavyBlaster();
  • branches/playability/src/world_entities/weapons/light_blaster.cc

    r9972 r9975  
    4444void LightBlaster::init()
    4545{
    46   this->registerObject(this, LightBlaster::_objectList);
     46  //this->registerObject(this, LightBlaster::_objectList);
    4747
    4848//  this->model = (Model*)ResourceManager::getInstance()->load("models/guns/test_gun.obj", OBJ, RP_CAMPAIGN);
     
    9090    return;
    9191
     92  // set the owner
     93  pj->setOwner(this->getOwner());
     94
    9295  pj->setParent(PNode::getNullParent());
    9396
    94   pj->setVelocity(this->getVelocity() + this->getAbsDir().apply(Vector(1,0,0))*15+VECTOR_RAND(5));
     97  pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
    9598
    9699  pj->setAbsCoor(this->getEmissionPoint());
     
    112115{
    113116}
     117
     118void LightBlaster::draw() const
     119{
     120}
  • branches/playability/src/world_entities/weapons/light_blaster.h

    r9972 r9975  
    1212class LightBlaster : public Weapon
    1313{
    14   ObjectListDeclaration(LightBlaster);
     14  //ObjectListDeclaration(LightBlaster);
    1515  public:
    1616    LightBlaster ();
  • branches/playability/src/world_entities/weapons/medium_blaster.cc

    r9972 r9975  
    11#include "medium_blaster.h"
     2#include "world_entities/projectiles/projectile.h"
     3
     4#include "world_entity.h"
     5#include "static_model.h"
     6#include "weapon_manager.h"
     7#include "util/loading/factory.h"
     8
     9#include "animation3d.h"
     10
     11#include "loading/fast_factory.h"
     12
     13CREATE_FACTORY(MediumBlaster);
     14/**
     15 * Standard constructor
     16 */
     17MediumBlaster::MediumBlaster ()
     18 : Weapon()
     19{
     20    this->init();
     21}
    222
    323MediumBlaster::MediumBlaster (const TiXmlElement* root = NULL)
    424 : Weapon()
    5   {
     25{
    626    this->init();
    727    if (root != NULL)
    828      this->loadParams(root);
    9   }
     29}
    1030
    1131/**
     
    1333 */
    1434MediumBlaster::~MediumBlaster()
    15   {
     35{
    1636      // model will be deleted from WorldEntity-destructor
    17   }
     37}
     38
     39void MediumBlaster::loadParams(const TiXmlElement* root)
     40{
     41  Weapon::loadParams(root);
     42}
     43
     44void MediumBlaster::init()
     45{
     46  //this->registerObject(this, MediumBlaster::_objectList);
     47
     48//  this->model = (Model*)ResourceManager::getInstance()->load("models/guns/test_gun.obj", OBJ, RP_CAMPAIGN);
     49
     50  this->loadModel("models/guns/plasmadriver_#.obj", 1.0);
     51 
     52
     53  this->setStateDuration(WS_SHOOTING, 0.05);
     54  this->setStateDuration(WS_RELOADING, 0);
     55  this->setStateDuration(WS_ACTIVATING, .5);
     56  this->setStateDuration(WS_DEACTIVATING, 1);
     57
     58  this->setEnergyMax(5000);
     59  this->increaseEnergy(5000);
     60  //this->minCharge = 2;
     61
     62  this->setActionSound(WA_SHOOT, "sound/laser.wav");
     63  this->setActionSound(WA_ACTIVATE, "sound/voices/lasers.wav");
     64  this->setActionSound(WA_RELOAD, "sound/spawn/alien_generator.wav");
     65
     66  this->setCapability(WTYPE_ALLDIRS | WTYPE_DIRECTIONAL | WTYPE_LIGHT);
     67  this->setProjectileTypeC("RailProjectile");   // FIXME temp project type until the blaste class exist
     68  this->prepareProjectiles(100);
     69
     70  Animation3D* animation2 = this->getAnimation(WS_ACTIVATING, this);
     71  Animation3D* animation3 = this->getAnimation(WS_DEACTIVATING, this);
     72
     73  animation2->setInfinity(ANIM_INF_CONSTANT);
     74  animation3->setInfinity(ANIM_INF_CONSTANT);
     75
     76  this->setEmissionPoint(3.8, 1.2, 0);
     77
     78  animation2->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
     79  animation2->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.5, ANIM_LINEAR, ANIM_NULL);
     80
     81  animation3->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.5, ANIM_LINEAR, ANIM_NULL);
     82  animation3->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
     83}
    1884
    1985
     86void MediumBlaster::fire()
     87{
     88  Projectile* pj =  this->getProjectile();
     89  if (pj == NULL)
     90    return;
     91
     92  // set the owner
     93  pj->setOwner(this->getOwner());
     94
     95  pj->setParent(PNode::getNullParent());
     96
     97  pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     98
     99  pj->setAbsCoor(this->getEmissionPoint());
     100  pj->setAbsDir(this->getAbsDir());
     101  pj->activate();
     102}
     103
     104/**
     105 *  this activates the weapon
     106*/
     107void MediumBlaster::activate()
     108{
     109}
     110
     111/**
     112 *  this deactivates the weapon
     113*/
     114void MediumBlaster::deactivate()
     115{
     116}
     117
     118void MediumBlaster::draw() const
     119{
     120}
  • branches/playability/src/world_entities/weapons/medium_blaster.h

    r9972 r9975  
    1212class MediumBlaster : public Weapon
    1313{
    14   ObjectListDeclaration(MediumBlaster);
     14  //ObjectListDeclaration(MediumBlaster);
    1515  public:
    1616    MediumBlaster();
Note: See TracChangeset for help on using the changeset viewer.