6
5
Player::Player() : Entity(),
11
10
sprite = new SpriteAnimation("player.png", FILTER_NONE, 64, 64);
12
11
sprite->Add("idle", 0, 0, 0.35f);
13
12
sprite->Play("idle");
14
13
SetGraphic(sprite);
15
scale = Vector2(0.25, 0.25);
19
footsteps = Audio::NewDeck(Assets::RequestAudio("footsteps.ogg"));
20
footsteps->SetLoops(0); //loop indefinitely
21
footsteps->SetVolume(0);
24
SetCollider(new RectangleCollider(16, 16));
27
dark->SetGraphic(new Sprite("dark.png", FILTER_NONE, 2048, 1536)); //alpha?
17
SetCollider(new RectangleCollider(32, 32));
30
20
void Player::Update()
52
42
velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
53
43
velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
55
if (velocity.GetSquaredMagnitude() > pow(MAXSPEED, 2))
56
velocity = velocity.GetNormalized() * MAXSPEED;
77
64
position.y -= SIGN(velocity.y, 0.1);
79
66
if (ycol) {velocity.y = 0;}
81
float magnitude = velocity.GetMagnitude();
83
footsteps->SetVolume(magnitude / MAXSPEED);
85
// How far away can they hear your footsteps?
86
// The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
87
noisiness = ((magnitude / MAXSPEED *(300-32)) + 32) /2;
89
dark->position = position;
91
69
//Scene::GetCamera()->position = position;
94
72
Creature::Creature() : Entity(),
99
77
sprite = new SpriteAnimation("creature.png", FILTER_NONE, 64, 64);
100
78
sprite->Add("idle", 0, 0, 0.35f);
101
sprite->Add("move", 1, 2, 4.0f);
102
79
sprite->Play("idle");
103
80
SetGraphic(sprite);
104
scale = Vector2(0.25, 0.25);
106
82
AddTag("creature");
107
SetCollider(new RectangleCollider(16, 16));
83
SetCollider(new RectangleCollider(32, 32));
109
85
skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
110
86
skitter1->SetLoops(0); //loop indefinitely
112
velocity = Vector2::Random() * MAXSPEED;
88
velocity = Vector2::Random() * ACCELERATION;
114
90
//set aiTime to random so creatures tick at different times
115
91
aiTime= (float(rand()) / float(RAND_MAX)) * 1.0f;
122
if (state == "idle" || state == "wander")
98
aiTime += Monocle::deltaTime;
124
aiTime += Monocle::deltaTime;
131
direction = Vector2::zero;
135
if (state != "wander") {
136
//printf("wander\n");
137
direction = Vector2::Random();
146
Player *player = ((DarkScene *)scene)->player;
147
if ( (player->position - position).GetSquaredMagnitude() <
148
pow(player->noisiness, 2) )
151
// TODO: Play startled noise
152
105
direction = Vector2::zero;
153
// TODO: Play pulse animation (yellow?)
154
aiTime = 0.0f; // diff variable? stateTime?
109
if (state != "wander") {
110
//printf("wander\n");
111
direction = Vector2::Random();
156
} // if idle or wander
157
else if (state == "alert")
159
aiTime += Monocle::deltaTime;
161
// if we've been listening past the grace period and hear
162
// something, switch state again
164
// if we've been listening a long time, switch back to idle
167
120
velocity += direction * ACCELERATION * Monocle::deltaTime;
169
122
velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
170
123
velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
172
if (velocity.GetSquaredMagnitude() > pow(MAXSPEED, 2))
173
velocity = velocity.GetNormalized() * MAXSPEED;
175
125
bool xcol = false;
176
126
bool ycol = false;
196
146
if (ycol) {velocity.y = 0;}
198
if (velocity.GetSquaredMagnitude() > 20)
200
Vector2 distance = ((DarkScene *)scene)->player->position - position;
201
// at distance 0, vol should be 1.0. at 800, it should be 0.
202
float vol = (distance.GetMagnitude() / -800.0f) + 1.0f;
203
skitter1->SetVolume(vol);
205
sprite->Play("move");
148
if (velocity.GetSquaredMagnitude() > 0)
209
skitter1->Pause(); //Stop()?
210
sprite->Play("idle");
151
skitter1->Pause(); //Stop()?
245
185
Level::LoadProject("project.xml");
246
186
Level::Load("level.xml", this);
248
std::list<Entity*> *walls = GetAllTag("wall");
249
for (std::list<Entity*>::iterator i = walls->begin(); i != walls->end(); ++i)
188
std::list<Entity*> *inv = GetAllTag("invisible");
189
for (std::list<Entity*>::iterator i = inv->begin(); i != inv->end(); ++i)
251
191
Entity *e = (*i);
252
192
Vector2 s = e->scale;
253
193
e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
256
player = new Player();
196
Player *player = new Player;
257
197
player->position = Graphics::GetScreenCenter();
261
200
Creature *creature = new Creature;
262
201
creature->position = Graphics::GetScreenCenter();
265
Creature *creature2 = new Creature;
266
creature2->position = Graphics::GetScreenCenter();
269
204
Graphics::SetBackgroundColor(Color::green * 0.2f);