Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/playability/src/world_entities/player.cc @ 9971

Last change on this file since 9971 was 9971, checked in by muellmic, 17 years ago

blub

File size: 2.7 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: Silvan Nellen
13   co-programmer: Benjamin Knecht
14*/
15
16#include "player.h"
17#include "playable.h"
18
19#include "event_handler.h"
20
21#include "state.h"
22#include "util/hud.h"
23
24#include "debug.h"
25
26#include "world_entities/space_ships/playership.h"
27
28ObjectListDefinition(Player);
29/**
30 * creates a new Player
31*/
32Player::Player()
33{
34  //  this->setRelDir(Quaternion(M_PI, Vector(1,0,0)));
35  this->registerObject(this, Player::_objectList);
36
37  PRINTF(4)("PLAYER INIT\n");
38
39  this->playable = NULL;
40  this->_hud.setVisibility(true);
41
42  this->subscribeEvent(ES_GAME, KeyMapper::PEV_CHANGE_SHIP);
43}
44
45
46/**
47 *  destructs the player, deletes alocated memory
48 */
49Player::~Player ()
50{
51  this->setPlayable(NULL);
52}
53
54
55bool Player::setPlayable(Playable* playable)
56{
57  if (this->playable == playable)
58    return false;
59
60  // get out of the current Playable
61  if (this->playable != NULL)
62  {
63    PRINTF(4)("Player gets ejected from Playable\n");
64    this->_hud.setEnergyWidget(NULL);
65    this->_hud.setWeaponManager(NULL);
66
67    Playable* ejectedPlayable = this->playable;
68
69    this->playable = NULL;
70    ejectedPlayable->setPlayer(NULL);
71  }
72
73  if (playable != NULL)
74  {
75    PRINTF(4)("Enter new Playable\n");
76    this->playable = playable;
77    this->_hud.setEnergyWidget(this->playable->getHealthWidget());
78    this->_hud.setWeaponManager(&this->playable->getWeaponManager());
79
80    this->playable->setPlayer(this);
81    return true;
82  }
83
84  if ( playable == NULL )
85    this->playable = NULL;
86
87  return true;
88}
89
90bool Player::eject()
91{
92  return this->setPlayable(NULL);
93}
94
95
96void Player::weaponConfigChanged()
97{
98  this->_hud.updateWeaponManager();
99}
100
101
102void Player::enterNewPlayable()
103{
104  /// FIXME this should be in the ObjectManager
105  for (ObjectList<Playable>::const_iterator node = Playable::objectList().begin();
106       node != Playable::objectList().end();
107       ++node)
108  {
109    if (this->playable != (*node) &&
110        ((*node)->getAbsCoor() - this->playable->getAbsCoor()).len() < ((*node)->getEnterRadius()))
111    {
112
113      this->setPlayable(*(node));
114
115      break;
116    }
117  }
118}
119
120
121void Player::process(const Event &event)
122{
123  if (event.type == KeyMapper::PEV_CHANGE_SHIP && event.bPressed)
124  {
125    this->enterNewPlayable();
126  }
127
128  if (likely(this->playable != NULL))
129    this->playable->process(event);
130}
131
132PlayerShip* Player::getPlayerShip()
133{
134  return this->playership;
135}
136
137void Player::setPlayerShip(PlayerShip* playership)
138{
139  this->playership = playership;
140}
141
142
Note: See TracBrowser for help on using the repository browser.