Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/space_ships/spacecraft_2d.cc @ 9406

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

orxonox/trunk: merged the proxy back

merged with commandsvn merge -r9346:HEAD https://svn.orxonox.net/orxonox/branches/proxy .

no conflicts

File size: 15.2 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*/
16
17#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
18
19#include "spacecraft_2d.h"
20
21#include "weapons/weapon_manager.h"
22#include "weapons/test_gun.h"
23#include "weapons/turret.h"
24#include "weapons/cannon.h"
25
26#include "util/loading/factory.h"
27#include "util/loading/load_param.h"
28#include "key_mapper.h"
29#include "state.h"
30
31#include "graphics_engine.h"
32#include "dot_emitter.h"
33#include "sprite_particles.h"
34
35#include "debug.h"
36
37#include "script_class.h"
38
39
40CREATE_FACTORY(Spacecraft2D, CL_SPACECRAFT_2D);
41
42
43CREATE_SCRIPTABLE_CLASS(Spacecraft2D, CL_SPACECRAFT_2D,
44                        addMethod("hasPlayer", ExecutorLua0ret<Playable,bool>(&Playable::hasPlayer))
45                        //Coordinates
46                        ->addMethod("setAbsCoor", ExecutorLua3<PNode,float,float,float>(&PNode::setAbsCoor))
47                        ->addMethod("getAbsCoorX", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorX))
48                        ->addMethod("getAbsCoorY", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorY))
49                        ->addMethod("getAbsCoorZ", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorZ))
50                        ->addMethod("setAirFriction", ExecutorLua1<Spacecraft2D, float>(&Spacecraft2D::setAirFriction))
51                       );
52
53
54/**
55 * @brief loads a Spacecraft2D information from a specified file.
56 * @param fileName the name of the File to load the spacecraft_2d from (absolute path)
57 */
58Spacecraft2D::Spacecraft2D(const std::string& fileName)
59{
60  this->init();
61  TiXmlDocument doc(fileName);
62
63  if(!doc.LoadFile())
64  {
65    PRINTF(2)("Loading file %s failed for Spacecraft2D.\n", fileName.c_str());
66    return;
67  }
68
69  this->loadParams(doc.RootElement());
70}
71
72/**
73 * @brief creates a new Spaceship from Xml Data
74 * @param root the xml element containing spaceship data
75
76   @todo add more parameters to load
77*/
78Spacecraft2D::Spacecraft2D(const TiXmlElement* root)
79{
80  this->init();
81  if (root != NULL)
82    this->loadParams(root);
83
84
85
86  //weapons:
87  Weapon* wpRight = dynamic_cast<Weapon*>(Factory::fabricate(CL_LASER_CANNON));
88  wpRight->setName("Cannon_Right");
89  Weapon* wpLeft = dynamic_cast<Weapon*>(Factory::fabricate(CL_LASER_CANNON));
90  wpLeft->setName("Cannon_Left");
91
92  Weapon* turretLeft = dynamic_cast<Weapon*>(Factory::fabricate(CL_BOOMERANG_GUN));
93  wpRight->setName("Turret_Left");
94  Weapon* turretRight = dynamic_cast<Weapon*>(Factory::fabricate(CL_BOOMERANG_GUN));
95  wpLeft->setName("Turret_Right");
96
97  //  cannon->setName("BFG");
98
99  this->addWeapon(wpLeft, 1, 0);
100  this->addWeapon(wpRight,1 ,1);
101  this->addWeapon(turretLeft, 1, 2);
102  this->addWeapon(turretRight, 1, 3);
103
104  //this->addWeapon(cannon, 0, 2);
105
106  this->getWeaponManager().changeWeaponConfig(1);
107  dynamic_cast<Element2D*>(this->getWeaponManager().getFixedTarget())->setVisibility( false);
108}
109
110
111/**
112 * @brief destructs the spacecraft_2d, deletes alocated memory
113 */
114Spacecraft2D::~Spacecraft2D ()
115{
116  this->setPlayer(NULL);
117  delete this->toTravelHeight;
118}
119
120
121/**
122 * @brief initializes a Spacecraft2D
123 */
124void Spacecraft2D::init()
125{
126  //  this->setRelDir(Quaternion(M_PI, Vector(1,0,0)));
127  this->setClassID(CL_SPACECRAFT_2D, "Spacecraft2D");
128
129  this->setSupportedPlaymodes(Playable::Full3D | Playable::Horizontal );
130
131  bForward = bBackward = bLeft = bRight = false;
132  mouseSensitivity = 0.005;
133
134  this->cameraLook = 0.0f;
135  this->rotation = 0.0f;
136  this->acceleration = 20.0f;
137  this->airFriction = 0.0f;
138
139
140  this->setHealthMax(1000);
141  this->setHealth(1000);
142  this->setDamage(100.0f);
143
144
145
146  /// 2D-MODE
147  this->toTravelHeight = NULL;
148  this->travelSpeed = 0.0f;
149  this->travelNode = new PNode();
150
151  this->loadModel("models/ships/mantawing.obj", 5.0f);
152
153  // camera - issue
154  this->cameraNode.addNodeFlags(PNODE_PROHIBIT_DELETE_WITH_PARENT);
155  this->cameraNode.addNodeFlags(PNODE_PROHIBIT_CHILD_DELETE);
156  //this->cameraNode.setParentMode(PNODE_ROTATE_MOVEMENT);
157  //this->cameraNode.setParent(this);
158
159  // PARTICLES
160  this->burstEmitter = new DotEmitter(200, 5.0, .01);
161  this->burstEmitter->setParent(this);
162  this->burstEmitter->setRelCoor(0, -0.7, 0);
163  this->burstEmitter->setRelDir(Quaternion(-M_PI, Vector(0,0,1)));
164  this->burstEmitter->setName("Spacecraft2D_Burst_emitter_Left");
165
166  this->burstSystem = new SpriteParticles(1000);
167  this->burstSystem->addEmitter(this->burstEmitter);
168  this->burstSystem->setName("SpaceShip_Burst_System");
169  ((SpriteParticles*)this->burstSystem)->setMaterialTexture("maps/radial-trans-noise.png");
170  this->burstSystem->setLifeSpan(1.0, .3);
171  this->burstSystem->setRadius(0.0, 1.5);
172  this->burstSystem->setRadius(0.05, 1.8);
173  this->burstSystem->setRadius(.5, .8);
174  this->burstSystem->setRadius(1.0, 0);
175  this->burstSystem->setColor(0.0, .7,.7,1,.5);
176  this->burstSystem->setColor(0.2, 0,0,0.8,.5);
177  this->burstSystem->setColor(0.5, .5,.5,.8,.3);
178  this->burstSystem->setColor(1.0, .8,.8,.8,.0);
179
180
181  //add events to the eventlist of the Playable
182  this->registerEvent(KeyMapper::PEV_FORWARD);
183  this->registerEvent(KeyMapper::PEV_BACKWARD);
184  this->registerEvent(KeyMapper::PEV_LEFT);
185  this->registerEvent(KeyMapper::PEV_RIGHT);
186  this->registerEvent(KeyMapper::PEV_FIRE1);
187  this->registerEvent(KeyMapper::PEV_NEXT_WEAPON);
188  this->registerEvent(KeyMapper::PEV_PREVIOUS_WEAPON);
189  this->registerEvent(EV_MOUSE_MOTION);
190
191  dynamic_cast<Element2D*>(this->getWeaponManager().getFixedTarget())->setVisibility( false);
192
193  // WEAPON_MANAGER configuration
194  this->getWeaponManager().setSlotCount(5);
195
196  this->getWeaponManager().setSlotPosition(0, Vector(1.843, -0.335, 2.029) * 5.0);
197  this->getWeaponManager().setSlotCapability(0, WTYPE_ALLDIRS | WTYPE_DIRECTIONAL);
198
199  this->getWeaponManager().setSlotPosition(1, Vector(1.843, -0.335, -2.029) * 5.0);
200  this->getWeaponManager().setSlotCapability(1, WTYPE_ALLDIRS | WTYPE_DIRECTIONAL);
201
202  /// TODO: THESE ARE TOO MUCH
203  this->getWeaponManager().setSlotPosition(2, Vector(-0.351, -.238, 1.406) * 5.0);
204  this->getWeaponManager().setSlotDirection(2, Quaternion(-1.7, Vector(0,1,0)));
205
206  this->getWeaponManager().setSlotPosition(3, Vector(-0.351, -.238, -1.406) * 5.0);
207  this->getWeaponManager().setSlotDirection(3, Quaternion(1.7, Vector(0,1,0)));
208
209  this->cameraNode.setRelCoor(1,5,0);
210  this->getWeaponManager().getFixedTarget()->setParent(&this->cameraNode);
211  this->getWeaponManager().getFixedTarget()->setRelCoor(1000,0,0);
212
213  registerVar( new SynchronizeableBool( &bForward, &bForward, "bForward", PERMISSION_OWNER ) );
214  registerVar( new SynchronizeableBool( &bBackward, &bBackward, "bBackward", PERMISSION_OWNER ) );
215  registerVar( new SynchronizeableBool( &bLeft, &bLeft, "bLeft", PERMISSION_OWNER ) );
216  registerVar( new SynchronizeableBool( &bRight, &bRight, "bRight", PERMISSION_OWNER ) );
217  //registerVar( new SynchronizeableQuaternion( &direction, &direction, "direction", PERMISSION_OWNER ) );
218  registerVar( new SynchronizeableFloat( &cameraLook, &cameraLook, "cameraLook", PERMISSION_OWNER ) );
219  registerVar( new SynchronizeableFloat( &rotation, &rotation, "rotation", PERMISSION_OWNER ) );
220
221
222
223}
224
225/**
226 * @brief loads the Settings of a Spacecraft2D from an XML-element.
227 * @param root the XML-element to load the Spaceship's properties from
228 */
229void Spacecraft2D::loadParams(const TiXmlElement* root)
230{
231  Playable::loadParams(root);
232
233  LoadParam(root, "travel-speed", this, Spacecraft2D, setTravelSpeed);
234  LoadParam(root, "travel-height", this, Spacecraft2D, setTravelHeight);
235  LoadParam(root, "travel-distance", this, Spacecraft2D, setTravelDistance);
236}
237
238void Spacecraft2D::setPlayDirection(const Quaternion& rot, float speed)
239{
240  this->direction = Quaternion (rot.getHeading(), Vector(0,1,0));
241}
242
243void Spacecraft2D::setTravelSpeed(float travelSpeed)
244{
245  this->travelSpeed = travelSpeed;
246}
247
248
249void Spacecraft2D::setTravelHeight(float travelHeight)
250{
251  if (this->toTravelHeight == NULL)
252    this->toTravelHeight = new float;
253  *this->toTravelHeight = travelHeight;
254}
255
256
257void Spacecraft2D::setTravelDistance(const Vector2D& distance)
258{
259  this->travelDistance = distance;
260}
261
262void Spacecraft2D::setTravelDistance(float x, float y)
263{
264  this->setTravelDistance(Vector2D(x, y));
265}
266
267
268
269void Spacecraft2D::enter()
270{
271  dynamic_cast<Element2D*>(this->getWeaponManager().getFixedTarget())->setVisibility( true);
272  this->setPlaymode(this->getPlaymode());
273}
274
275void Spacecraft2D::leave()
276{
277  dynamic_cast<Element2D*>(this->getWeaponManager().getFixedTarget())->setVisibility( false);
278  this->detachCamera();
279
280}
281
282
283void Spacecraft2D::enterPlaymode(Playable::Playmode playmode)
284{
285  switch(playmode)
286  {
287    case Playable::Full3D:
288      if (State::getCameraNode != NULL)
289      {
290        Vector absCoor = this->getAbsCoor();
291        this->setParent(PNode::getNullParent());
292        this->setAbsCoor(absCoor);
293        State::getCameraNode()->setParentSoft(&this->cameraNode);
294        State::getCameraNode()->setRelCoorSoft(-10, 0,0);
295        State::getCameraTargetNode()->setParentSoft(&this->cameraNode);
296        State::getCameraTargetNode()->setRelCoorSoft(100, 0,0);
297
298      }
299      break;
300
301
302    case Playable::Horizontal:
303      if (State::getCameraNode != NULL)
304      {
305        this->debugNode(1);
306        this->travelNode->debugNode(1);
307
308        this->travelNode->setAbsCoor(this->getAbsCoor());
309        this->travelNode->updateNode(0.01f);
310
311        this->setParent(this->travelNode);
312        this->setRelCoor(0,0,0);
313
314        State::getCameraNode()->setParentSoft(this->travelNode);
315        State::getCameraNode()->setRelCoorSoft(-3, 100,0);
316        State::getCameraTargetNode()->setParentSoft(this->travelNode);
317        State::getCameraTargetNode()->setRelCoorSoft(5,0,1);
318
319
320        this->debugNode(1);
321        this->travelNode->debugNode(1);
322      }
323      break;
324
325    default:
326      PRINTF(2)("Playmode %s Not Implemented in %s\n", Playable::playmodeToString(this->getPlaymode()).c_str(), this->getClassCName());
327  }
328}
329
330
331
332/**
333 * @brief effect that occurs after the Spacecraft2D is spawned
334*/
335void Spacecraft2D::postSpawn ()
336{
337  //setCollision(new CollisionCluster(1.0, Vector(0,0,0)));
338}
339
340/**
341 * @brief the action occuring if the spacecraft_2d left the game
342*/
343void Spacecraft2D::leftWorld ()
344{}
345
346/**
347 * @brief this function is called, when two entities collide
348 * @param entity: the world entity with whom it collides
349 *
350 * Implement behaviour like damage application or other miscellaneous collision stuff in this function
351 */
352void Spacecraft2D::collidesWith(WorldEntity* entity, const Vector& location)
353{
354  Playable::collidesWith(entity, location);
355}
356
357
358
359/**
360 * @brief the function called for each passing timeSnap
361 * @param time The timespan passed since last update
362*/
363void Spacecraft2D::tick (float dt)
364{
365  //  this->debugNode(1);
366  Playable::tick(dt);
367
368  // spaceship controlled movement
369  this->movement(dt);
370
371  // TRYING TO FIX PNode.
372  this->cameraNode.setAbsCoorSoft(this->getAbsCoor() + Vector(0.0f, 5.0f, 0.0f), 30.0f);
373  this->cameraNode.setRelDirSoft(this->getAbsDir(), 30.0f);
374}
375
376/**
377 * @brief calculate the velocity
378 * @param time the timeslice since the last frame
379*/
380void Spacecraft2D::movement (float dt)
381{
382  Vector accel(0.0, 0.0, 0.0);
383
384  if( this->bForward )
385  {
386    accel += Vector(this->acceleration, 0, 0);
387  }
388
389  if( this->bBackward )
390  {
391    accel -= Vector(this->acceleration, 0, 0);
392  }
393  if( this->bLeft)
394  {
395    accel -= Vector(0, 0, this->acceleration);
396  }
397
398  if( this->bRight)
399  {
400    accel += Vector(0, 0, this->acceleration);
401  }
402
403  switch(this->getPlaymode())
404  {
405    case Playable::Full3D:
406      {
407        Vector accelerationDir = this->getAbsDir().apply(accel * this->acceleration);
408
409        // this is the air friction (necessary for a smooth control)
410        Vector damping = (this->velocity * this->airFriction);
411
412
413        this->velocity += (accelerationDir - damping)* dt;
414        this->shiftCoor (this->velocity * dt);
415
416        // limit the maximum rotation speed.
417        if (this->rotation != 0.0f)
418        {
419          float maxRot = 10.0 * dt;
420          if (unlikely(this->rotation > maxRot)) this->rotation = maxRot;
421          if (unlikely(this->rotation < -maxRot)) this->rotation = -maxRot;
422          this->direction *= Quaternion(-M_PI/4.0*this->rotation, Vector(0,1,0));
423
424          this->rotation = 0.0f;
425        }
426
427        this->setRelDirSoft(this->direction * Quaternion(-cameraLook, Vector(0,0,1)), 5);
428      }
429      break;
430
431    case Playable::Horizontal:
432      {
433
434        if (this->toTravelHeight != NULL)
435        {
436          this->travelNode->shiftCoor(Vector(0, (*toTravelHeight - this->travelNode->getAbsCoor().y) * dt * 10.0, 0));
437          if (fabsf(this->travelNode->getAbsCoor().y - *this->toTravelHeight) < .1)
438          {
439            delete this->toTravelHeight;
440            this->toTravelHeight = NULL;
441          }
442        }
443        this->travelNode->shiftCoor(Vector(this->travelSpeed * dt, 0, 0));
444
445        accel.y = 0.0;
446
447        Vector accelerationDir = this->getAbsDir().apply(accel * this->acceleration);
448        accelerationDir.y = 0.0;
449
450        // this is the air friction (necessary for a smooth control)
451        Vector damping = (this->velocity * this->airFriction);
452
453
454        this->velocity += (accelerationDir - damping)* dt;
455
456        if (this->getRelCoor().z > this->travelDistance.y && velocity.z > 0.0)
457          this->velocity.z = 0.0f;
458        if (this->getRelCoor().z < -this->travelDistance.y && velocity.z < 0.0)
459          this->velocity.z = 0.0f;
460
461        if (this->getRelCoor().x > this->travelDistance.x && velocity.x > 0.0)
462          this->velocity.x = 0.0f;
463        if (this->getRelCoor().x < -this->travelDistance.x && velocity.x < 0.0)
464          this->velocity.x = 0.0f;
465
466
467        this->shiftCoor (this->velocity * dt);
468        if (accel.z == 0)
469          this->setRelDirSoft(Quaternion(0, Vector(0,0,0)), 5.0f);
470        else
471          this->setRelDirSoft(Quaternion(this->velocity.z * .004, Vector(1,0,0)), 4.5f);
472      }
473      break;
474
475    default:
476      PRINTF(2)("Playmode %s Not Implemented in %s\n", Playable::playmodeToString(this->getPlaymode()).c_str(), this->getClassCName());
477  }
478}
479
480
481void Spacecraft2D::draw() const
482{
483  WorldEntity::draw();
484}
485
486/**
487 * @todo switch statement ??
488 */
489void Spacecraft2D::process(const Event &event)
490{
491  Playable::process(event);
492
493  if( event.type == KeyMapper::PEV_LEFT)
494    this->bLeft = event.bPressed;
495  else if( event.type == KeyMapper::PEV_RIGHT)
496    this->bRight = event.bPressed;
497  else if( event.type == KeyMapper::PEV_FORWARD)
498    this->bForward = event.bPressed; //this->shiftCoor(0,.1,0);
499  else if( event.type == KeyMapper::PEV_BACKWARD)
500  {this->bBackward = event.bPressed; printf(" %f, %f, %f \n",getAbsCoorX(),getAbsCoorY(),getAbsCoorZ());} //this->shiftCoor(0,-.1,0);
501  else if( event.type == EV_MOUSE_MOTION)
502  {
503
504
505
506    if (this->getPlaymode() == Playable::Full3D)
507    {
508      float xMouse, yMouse;
509      xMouse = event.xRel*mouseSensitivity;
510      yMouse = event.yRel*mouseSensitivity;
511
512      // rotate the Player around the y-axis
513      this->rotation += xMouse;
514
515      this->cameraLook += yMouse;
516      // rotate the Camera around the z-axis
517      if (cameraLook > M_PI_4)
518        cameraLook = M_PI_4;
519      else if (cameraLook < -M_PI_4)
520        cameraLook = -M_PI_4;
521    }
522  }
523}
Note: See TracBrowser for help on using the repository browser.