Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/cannon.cc @ 5819

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

orxonox/trunk: merged branches world_entities to trunk again
merged with command
svn merge -r5795:HEAD branches/world_entities/ trunk/
no conflicts (what a wonder)

File size: 5.2 KB
Line 
1
2
3/*
4   orxonox - the future of 3D-vertical-scrollers
5
6   Copyright (C) 2004 orx
7
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2, or (at your option)
11   any later version.
12
13   ### File Specific
14   main-programmer: Patrick Boenzli
15   co-programmer:
16
17
18   @todo: direction in which the projectile flights
19   @todo: a target to set/hit
20*/
21#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON
22
23#include "cannon.h"
24
25#include "world_entity.h"
26#include "model.h"
27#include "test_bullet.h"
28#include "weapon_manager.h"
29#include "factory.h"
30
31#include "vector.h"
32#include "list.h"
33#include "animation3d.h"
34#include "sound_engine.h"
35
36#include "null_parent.h"
37
38#include "fast_factory.h"
39
40
41using namespace std;
42
43CREATE_FACTORY(Cannon, CL_CANNON);
44
45/**
46 *  standard constructor
47
48   creates a new weapon
49*/
50Cannon::Cannon ()
51  : Weapon()
52{
53  this->init();
54}
55
56
57Cannon::Cannon(const TiXmlElement* root)
58{
59  this->init();
60  this->loadParams(root);
61}
62
63/**
64 *  standard deconstructor
65*/
66Cannon::~Cannon ()
67{
68  // model will be deleted from WorldEntity-destructor
69}
70
71
72void Cannon::init()
73{
74  this->setClassID(CL_CANNON, "Cannon");
75
76//  this->model = (Model*)ResourceManager::getInstance()->load("models/guns/test_gun.obj", OBJ, RP_CAMPAIGN);
77
78  this->loadModel("models/guns/cannon.obj");
79
80  this->setStateDuration(WS_SHOOTING, 2.0);
81  this->setStateDuration(WS_RELOADING, .1);
82  this->setStateDuration(WS_ACTIVATING, .1);
83  this->setStateDuration(WS_DEACTIVATING, .4);
84
85  this->setMaximumEnergy(100, 1);
86  this->increaseEnergy(30);
87  //this->minCharge = 2;
88
89  this->setActionSound(WA_SHOOT, "sound/explo.wav");
90  this->setActionSound(WA_ACTIVATE, "sound/voices/cannon.wav");
91
92  this->setCapability(WTYPE_ALLDIRS | WTYPE_DIRECTIONAL);
93  this->setProjectileType(CL_BOMB);
94  this->prepareProjectiles(5);
95
96//  this->objectComponent1 = new PNode();
97//  Animation3D* animation1 = this->getAnimation(WS_SHOOTING, this->objectComponent1);
98  Animation3D* animation2 = this->getAnimation(WS_ACTIVATING, this);
99  Animation3D* animation3 = this->getAnimation(WS_DEACTIVATING, this);
100  //parent->addChild(this->objectComponent1, PNODE_ALL);
101//  this->addChild(this->objectComponent1);
102
103//  animation1->setInfinity(ANIM_INF_CONSTANT);
104  animation2->setInfinity(ANIM_INF_CONSTANT);
105  animation3->setInfinity(ANIM_INF_CONSTANT);
106
107  this->setEmissionPoint(3.8, 1.2, 0);
108
109//     animation1->addKeyFrame(Vector(0, -1.5, 0), Quaternion(), 0.1, ANIM_LINEAR, ANIM_NULL);
110//     animation1->addKeyFrame(Vector(0, 0, 0), Quaternion(), 0.1, ANIM_LINEAR, ANIM_NULL);
111//     animation1->addKeyFrame(Vector(0, 0, 0), Quaternion(), 0.0, ANIM_LINEAR, ANIM_NULL);
112
113  animation2->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
114  animation2->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
115
116  animation3->addKeyFrame(Vector(0.0, 0.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
117  animation3->addKeyFrame(Vector(0.0, -1.0, 0.0), Quaternion(), 0.3, ANIM_LINEAR, ANIM_NULL);
118}
119
120
121void Cannon::loadParams(const TiXmlElement* root)
122{
123
124
125}
126
127
128/**
129 *  this activates the weapon
130
131   This is needed, since there can be more than one weapon on a ship. the
132   activation can be connected with an animation. for example the weapon is
133   been armed out.
134*/
135void Cannon::activate()
136{
137}
138
139
140/**
141 *  this deactivates the weapon
142
143   This is needed, since there can be more than one weapon on a ship. the
144   activation can be connected with an animation. for example the weapon is
145   been armed out.
146*/
147void Cannon::deactivate()
148{
149}
150
151
152/**
153 *  fires the weapon
154
155   this is called from the player.cc, when fire-button is been pushed
156   @todo: the ObjectManager deliveres Projectiles not TestBullets! this should be diffrent
157*/
158void Cannon::fire()
159{
160  Projectile* pj =  this->getProjectile();
161  if (pj == NULL)
162    return;
163
164  pj->setParent(NullParent::getInstance());
165
166  pj->setVelocity(this->getVelocity() + this->getAbsDir().apply(Vector(1,0,0))*15+VECTOR_RAND(5));
167
168  pj->setAbsCoor(this->getEmissionPoint());
169  pj->setAbsDir(this->getAbsDir());
170  pj->activate();
171}
172
173/**
174 *  is called, when the weapon is destroyed
175 *
176 * this is in conjunction with the hit function, so when a weapon is able to get
177 * hit, it can also be destoryed.
178*/
179void Cannon::destroy ()
180{}
181
182/**
183 *  this will draw the weapon
184*/
185void Cannon::draw () const
186{
187  /* draw gun body */
188  glMatrixMode(GL_MODELVIEW);
189  glPushMatrix();
190  glTranslatef (this->getAbsCoor ().x,
191                this->getAbsCoor ().y,
192                this->getAbsCoor ().z);
193
194  Vector tmpRot = this->getAbsDir().getSpacialAxis();
195  glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
196
197  this->model->draw();
198  glPopMatrix();
199
200  /* draw objectComponent1: gun coil - animated stuff */
201/*  glMatrixMode(GL_MODELVIEW);
202  glPushMatrix();
203  glTranslatef (this->objectComponent1->getAbsCoor ().x,
204                this->objectComponent1->getAbsCoor ().y,
205                this->objectComponent1->getAbsCoor ().z);
206  tmpRot = this->objectComponent1->getAbsDir().getSpacialAxis();
207  glRotatef (this->objectComponent1->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
208  this->model->draw(0);
209
210  glPopMatrix();*/
211}
212
Note: See TracBrowser for help on using the repository browser.