-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGate.cpp
128 lines (102 loc) · 2.12 KB
/
Gate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include "Gate.h"
#include "ActivateButton.h"
#include "Sound.h"
extern Sound *gSound;
Gate::Gate(float x, float y, int width, int height, char *textureSource, float openTime)
: Object(x, y, width, height, textureSource, GATE)
{
mOpen = false;
mOpenTime = openTime;
mTimeElapsed = 0;
setResizeable(false);
mActivateButton = NULL;
}
Gate::~Gate()
{
// dtor
}
void Gate::update(float dt)
{
if(mOpen)
{
mTimeElapsed += dt;
if(mTimeElapsed >= mOpenTime) {
// close the ActivateButton
mOpen = false;
move(0, -2000);
}
}
}
void Gate::draw(void)
{
Object::draw();
}
void Gate::saveToFile(std::ofstream *fout)
{
*fout << getType() << " " << getID() << " " << getX() << " " << getY() << " " << getWidth() << " " << getHeight() << " ";
*fout << mOpenTime << " " << getTextureSource() << std::endl;
}
void Gate::move(float dx, float dy)
{
Object::move(dx, dy);
}
void Gate::scale(direction side, int dwidth, int dheight)
{
}
void Gate::onPlayerCollision(Player *player, MTV mtv, float dt)
{
}
std::vector<Property> Gate::getProperties(void)
{
std::vector<Property> properties = Object::getProperties();
Property tmp;
char buffer[16];
tmp.name = "open";
sprintf(buffer, "%.2f", mOpenTime);
tmp.value = buffer;
properties.push_back(tmp);
tmp.name = "id";
sprintf(buffer, "%i", getID());
tmp.value = buffer;
properties.push_back(tmp);
return properties;
}
void Gate::loadProperties(std::vector<Property> propertyList)
{
Object::loadProperties(propertyList);
float tmp;
tmp = atof(propertyList[2].value.c_str()); // open time
if(tmp != mOpenTime) {
mOpenTime = tmp;
}
}
void Gate::activate(void)
{
gSound->playEffect("misc\\sound\\gate_open.wav");
if(!mOpen) {
// open the ActivateButton
move(0, 2000); // hack
mTimeElapsed = 0;
mOpen = true;
}
else {
// close the ActivateButton
move(0, -2000); // hack
mOpen = false;
}
}
bool Gate::getOpen(void)
{
return mOpen;
}
void Gate::setActivateButton(ActivateButton *button)
{
mActivateButton = button;
}
void Gate::onRemove(void)
{
if(mActivateButton != NULL) {
mActivateButton->setGateId(9999);
mActivateButton->connectGate(NULL);
}
}