Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/targeting_turret.cc @ 7070

Last change on this file since 7070 was 7070, checked in by bensch, 18 years ago

fix targettingturret

File size: 4.3 KB
Line 
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
12   main-programmer: Benjamin Grauer
13   co-programmer:
14*/
15#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON
16
17#include "targeting_turret.h"
18
19#include "weapon_manager.h"
20#include "aim.h"
21#include "world_entities/projectiles/projectile.h"
22
23#include "model.h"
24
25#include "animation3d.h"
26
27#include "factory.h"
28
29CREATE_FACTORY(TargetingTurret, CL_TARGETING_TURRET);
30
31using namespace std;
32
33
34/**
35 *  standard constructor
36
37   creates a new weapon
38*/
39TargetingTurret::TargetingTurret ()
40  : Weapon()
41{
42  this->init();
43
44}
45
46
47TargetingTurret::TargetingTurret(const TiXmlElement* root)
48{
49  this->init();
50  if( root != NULL)
51    this->loadParams(root);
52}
53
54/**
55 *  standard deconstructor
56*/
57TargetingTurret::~TargetingTurret ()
58{
59  // model will be deleted from WorldEntity-destructor
60//  delete this->target;
61}
62
63void TargetingTurret::init()
64{
65  this->setClassID(CL_TARGETING_TURRET, "TargetingTurret");
66
67  Animation3D* animation1 = this->getAnimation(WS_ACTIVATING, this);
68  Animation3D* animation2 = this->getAnimation(WS_DEACTIVATING, this);
69
70  animation1->addKeyFrame(Vector(0, -.5, 0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_CONSTANT);
71  animation1->addKeyFrame(Vector(0, 0, 0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_CONSTANT);
72  animation2->addKeyFrame(Vector(0, 0, 0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_CONSTANT);
73  animation2->addKeyFrame(Vector(0, -.5, 0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_CONSTANT);
74
75  animation1->setInfinity(ANIM_INF_CONSTANT);
76  animation2->setInfinity(ANIM_INF_CONSTANT);
77
78  this->setStateDuration(WS_SHOOTING, .1);
79  this->setStateDuration(WS_RELOADING, .1);
80  this->setStateDuration(WS_ACTIVATING, .4);
81  this->setStateDuration(WS_DEACTIVATING, .4);
82
83  this->setEnergyMax(10000);
84  this->increaseEnergy(100000);
85
86  this->setCapability(WTYPE_ALLDIRS | WTYPE_TURRET);
87  this->setProjectileType(CL_GUIDED_MISSILE);
88
89
90  this->setEmissionPoint(1.684, 0.472, 0);
91  //this->getProjectileFactory()->prepare(100);
92
93  this->target = new Aim(this);
94  this->target->setVisibility(false);
95  this->target->setRange(1000);
96  this->target->setAngle(M_PI_4);
97  this->lockedTarget = this->target;
98
99  this->lockedTime = 0;
100  this->neededLockTime = 2;
101  this->lockedTarget->setParent(PNode::getNullParent());
102  this->loadModel("models/guns/turret2.obj");
103
104
105  this->setActionSound(WA_SHOOT, "sound/explosions/explosion_3.wav");
106  this->setActionSound(WA_ACTIVATE, "sound/voices/rockets.wav");
107  this->setActionSound(WA_RELOAD, "sound/vocals/reload.wav");
108}
109
110void TargetingTurret::loadParams(const TiXmlElement* root)
111{
112  Weapon::loadParams(root);
113
114}
115
116void TargetingTurret::activate()
117{
118  this->target->setVisibility(true);
119}
120
121void TargetingTurret::deactivate()
122{
123  this->target->setVisibility(false);
124}
125
126void TargetingTurret::tick(float dt)
127{
128  if (!Weapon::tickW(dt))
129    return;
130
131  if( lockedTime >= neededLockTime )
132   {
133    lockedTarget = this->target->getParent();
134    lockedTime = 0;
135   }
136
137  this->target->tick(dt);
138
139  if(this->target->getParent() == PNode::getNullParent())
140   lockedTime = 0;
141  else
142   lockedTime += dt;
143
144}
145
146void TargetingTurret::fire()
147{
148  Projectile* pj = this->getProjectile();
149  if (pj == NULL)
150    return;
151
152  pj->setVelocity(this->getVelocity() + /*this->getVelocity()+*/(this->getAbsDir().apply(Vector(1,0,0))*250.0 + VECTOR_RAND(13)
153            /*target->getAbsCoor() - this->getAbsCoor()*/)*.5);//this->getVelocity());
154
155  pj->setTarget(lockedTarget);
156  pj->setParent(PNode::getNullParent());
157  pj->setAbsCoor(this->getEmissionPoint());
158  pj->setAbsDir(this->getAbsDir());
159  pj->activate();
160
161}
162
163void TargetingTurret::destroy ()
164{}
165
166/**
167 * draws the TargetingTurret
168*/
169void TargetingTurret::draw () const
170{
171  /* draw gun body */
172  glMatrixMode(GL_MODELVIEW);
173  glPushMatrix();
174  glTranslatef (this->getAbsCoor ().x,
175                this->getAbsCoor ().y,
176                this->getAbsCoor ().z);
177  Vector tmpRot = this->getAbsDir().getSpacialAxis();
178  glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
179  if (this->getModel() != NULL)
180    this->getModel()->draw();
181  glPopMatrix();
182}
183
Note: See TracBrowser for help on using the repository browser.