Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/power_ups/power_up.cc @ 6710

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

merged the powerups back to the trunk

File size: 3.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: Manuel Leuenberger
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
17
18
19#include "power_up.h"
20#include "extendable.h"
21#include "primitive_model.h"
22
23using namespace std;
24
25PowerUp::PowerUp(float r, float g, float b)
26{
27  this->setClassID(CL_POWER_UP, "PowerUp");
28
29  this->respawnType = RESPAWN_NONE;
30  this->respawnStart = 10;
31  this->model = NULL;
32/*  if(!PowerUp::sphereModel) {*/
33
34  Model* sphereModel = new PrimitiveModel(PRIM_SPHERE, 7, 5);
35
36  this->setModel(sphereModel);
37  this->buildObbTree( 4);
38  this->sphereMaterial = new Material;
39  this->sphereMaterial->setTransparency(.1);
40  this->sphereMaterial->setDiffuse(r, g, b);
41  this->toList(OM_COMMON);
42}
43
44PowerUp::~PowerUp ()
45{
46  delete this->sphereMaterial;
47}
48
49
50void PowerUp::loadParams(const TiXmlElement* root)
51{
52  WorldEntity::loadParams(root);
53}
54
55
56void PowerUp::collidesWith (WorldEntity* entity, const Vector& location)
57{
58  if(entity->isA(CL_EXTENDABLE))
59  {
60    if(dynamic_cast<Extendable*>(entity)->pickup(this))
61    {
62      this->respawnTime = this->respawnStart;
63      this->toList(OM_DEAD_TICK);
64    }
65  }
66}
67
68void PowerUp::tick(float dt) {
69  if(this->getOMListNumber() != OM_COMMON) {
70    this->respawnTime -= dt;
71    if(this->respawnTime <= 0) {
72      this->respawn();
73      this->toList(OM_COMMON);
74    }
75  }
76}
77
78void PowerUp::draw() const
79{
80  if(this->model != NULL) {
81    glMatrixMode(GL_MODELVIEW);
82    glPushMatrix();
83    glTranslatef (this->getAbsCoor ().x,
84                  this->getAbsCoor ().y,
85                  this->getAbsCoor ().z);
86    Vector tmpRot = this->getAbsDir().getSpacialAxis();
87    glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
88    this->model->draw();
89    glPopMatrix();
90  }
91  this->sphereMaterial->select();
92  WorldEntity::draw();
93}
94
95const char* PowerUp::respawnTypes[] = {
96  "none",
97  "time"
98};
99
100void PowerUp::setRespawnType(const char* type)
101{
102  for(int i = 0; i < RESPAWN_size; ++i) {
103    if(!strcmp(type, respawnTypes[i])) {
104      this->respawnType = (PowerUpRespawn)i;
105      break;
106    }
107  }
108}
109
110
111
112/********************************************************************************************
113 NETWORK STUFF
114 ********************************************************************************************/
115
116
117/**
118 * data copied in data will bee sent to another host
119 * @param data pointer to data
120 * @param maxLength max length of data
121 * @return the number of bytes writen
122 */
123int PowerUp::readState( byte * data, int maxLength )
124{
125  SYNCHELP_WRITE_BEGIN();
126  SYNCHELP_WRITE_FKT( WorldEntity::readState );
127  return SYNCHELP_WRITE_N;
128}
129
130
131/**
132 * Writes data from network containing information about the state
133 * @param data pointer to data
134 * @param length length of data
135 * @param sender hostID of sender
136 */
137int PowerUp::writeState( const byte * data, int length, int sender )
138{
139  SYNCHELP_READ_BEGIN();
140  SYNCHELP_READ_FKT( WorldEntity::writeState );
141  return SYNCHELP_READ_N;
142}
143
Note: See TracBrowser for help on using the repository browser.