/minild29

To get this branch, use:
bzr branch http://9ix.org/bzr/minild29
1 by Josh C
initial commit
1
#include "Dark.h"
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
2
#include <cmath>
1 by Josh C
initial commit
3
4
namespace Dark
5
{
6
  Player::Player() : Entity(),
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
7
		     FRICTION(150),
8
		     MAXSPEED(150.0f),
9
		     ACCELERATION(300)
1 by Josh C
initial commit
10
  {
11
    sprite = new SpriteAnimation("player.png", FILTER_NONE, 64, 64);
12
    sprite->Add("idle", 0, 0, 0.35f);
13
    sprite->Play("idle");
14
    SetGraphic(sprite);
9 by Josh C
creatures move less, make everything smaller
15
    scale = Vector2(0.25, 0.25);
1 by Josh C
initial commit
16
17
    AddTag("player");
7 by Josh C
footsteps
18
19
    footsteps = Audio::NewDeck(Assets::RequestAudio("footsteps.ogg"));
20
    footsteps->SetLoops(0); //loop indefinitely
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
21
    footsteps->SetVolume(0);
22
    footsteps->Play();
1 by Josh C
initial commit
23
    
9 by Josh C
creatures move less, make everything smaller
24
    SetCollider(new RectangleCollider(16, 16));
10 by Josh C
"light" in the dark
25
26
    dark = new Entity();
27
    dark->SetGraphic(new Sprite("dark.png", FILTER_NONE, 2048, 1536)); //alpha?
1 by Josh C
initial commit
28
  }
29
30
  void Player::Update()
31
  {
32
    Entity::Update();
33
3 by Josh C
square moving around the screen
34
    if (Input::IsKeyMaskHeld("left"))
35
      {
36
	velocity.x -= ACCELERATION * Monocle::deltaTime;
37
      }
38
    if (Input::IsKeyMaskHeld("right"))
39
      {
40
	velocity.x += ACCELERATION * Monocle::deltaTime;
41
      }
42
    if (Input::IsKeyMaskHeld("up"))
43
      {
44
	velocity.y -= ACCELERATION * Monocle::deltaTime;
45
      }
46
    if (Input::IsKeyMaskHeld("down"))
47
      {
48
	velocity.y += ACCELERATION * Monocle::deltaTime;
49
      }
50
    
51
    // velocity will approach 0 in steps of FRICTION * dt
52
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
53
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
54
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
55
    if (velocity.GetSquaredMagnitude() > pow(MAXSPEED, 2))
56
      velocity = velocity.GetNormalized() * MAXSPEED;
57
4 by Josh C
invisible walls and code to bump into them
58
    bool xcol = false;
59
    bool ycol = false;
60
61
    position.x += velocity.x * Monocle::deltaTime;
62
    while (Collide("Solid"))
63
      {
64
	xcol = true;
65
	if (velocity.x == 0) { break; }
66
	//printf("collision1\n");
67
	position.x -= SIGN(velocity.x, 0.1);
68
      }
69
    if (xcol) {velocity.x = 0;}
70
71
    position.y += velocity.y * Monocle::deltaTime;
72
    while (Collide("Solid"))
73
      {
74
	ycol = true;
75
	if (velocity.y == 0) { break; }
76
	//printf("collision2\n");
77
	position.y -= SIGN(velocity.y, 0.1);
78
      }
79
    if (ycol) {velocity.y = 0;}
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
80
    
81
    float magnitude = velocity.GetMagnitude();
82
83
    footsteps->SetVolume(magnitude / MAXSPEED);
84
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;
3 by Josh C
square moving around the screen
88
10 by Josh C
"light" in the dark
89
    dark->position = position;
90
1 by Josh C
initial commit
91
    //Scene::GetCamera()->position = position;
92
  }
93
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
94
  Creature::Creature() : Entity(),
6 by Josh C
skittering blue square
95
			 FRICTION(800),
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
96
			 MAXSPEED(80.0f),
6 by Josh C
skittering blue square
97
			 ACCELERATION(1200)			 
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
98
  {
99
    sprite = new SpriteAnimation("creature.png", FILTER_NONE, 64, 64);
100
    sprite->Add("idle", 0, 0, 0.35f);
8 by Josh C
harder to see creatures
101
    sprite->Add("move", 1, 2, 4.0f);
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
102
    sprite->Play("idle");
103
    SetGraphic(sprite);
9 by Josh C
creatures move less, make everything smaller
104
    scale = Vector2(0.25, 0.25);
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
105
106
    AddTag("creature");
9 by Josh C
creatures move less, make everything smaller
107
    SetCollider(new RectangleCollider(16, 16));
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
108
6 by Josh C
skittering blue square
109
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
110
    skitter1->SetLoops(0); //loop indefinitely
111
17 by Josh C
alert noise
112
    alert = Assets::RequestAudio("alert.ogg");
113
9 by Josh C
creatures move less, make everything smaller
114
    velocity = Vector2::Random() * MAXSPEED;
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
115
116
    //set aiTime to random so creatures tick at different times
6 by Josh C
skittering blue square
117
    aiTime= (float(rand()) / float(RAND_MAX)) * 1.0f;
17 by Josh C
alert noise
118
119
    state = "idle";
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
120
  }
121
122
  void Creature::Update()
123
  {
124
    Entity::Update();
125
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
126
    if (state == "idle" || state == "wander") 
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
127
      {
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
128
	aiTime += Monocle::deltaTime;
129
	if (aiTime > 1.0f)
130
	  {
131
	    switch (rand() % 3)
132
	      {
133
	      case 0: // idle
134
		//printf("idle\n");
135
		direction = Vector2::zero;
136
		state = "idle";
137
		break;
138
	      case 1: // move
139
		if (state != "wander") {
140
		  //printf("wander\n");
141
		  direction = Vector2::Random();
142
		  state = "wander";
143
		  break;
144
		}
145
	      }
146
	    
147
	    aiTime = 0.0f;
148
	  }
149
	
150
	Player *player = ((DarkScene *)scene)->player;
151
	if ( (player->position - position).GetSquaredMagnitude() < 
152
	     pow(player->noisiness, 2) )
153
	  {
17 by Josh C
alert noise
154
	    //printf("alert\n");
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
155
	    state = "alert";
17 by Josh C
alert noise
156
	    alert->Play();
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
157
	    direction = Vector2::zero;
18 by Josh C
ping!
158
	    Ping::NewPing(position, 8.0f, 32.0f, 0.15f); // ping diameter 16-64 over .5s
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
159
	    aiTime = 0.0f; // diff variable?  stateTime?
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
160
	  }
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
161
      } // if idle or wander
162
    else if (state == "alert")
163
      {
164
	aiTime += Monocle::deltaTime;
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
165
	
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
166
	// if we've been listening past the grace period and hear
167
	// something, switch state again
168
169
	// if we've been listening a long time, switch back to idle
17 by Josh C
alert noise
170
	if (aiTime > 5.0f) {
171
	  //printf("end alert\n");
172
	  state = "idle";
173
	}
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
174
      }
16 by Josh C
track palyer noisiness, beginnings of "alert" state for creatures
175
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
176
    velocity += direction * ACCELERATION * Monocle::deltaTime;
177
    
178
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
179
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
180
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
181
    if (velocity.GetSquaredMagnitude() > pow(MAXSPEED, 2))
182
      velocity = velocity.GetNormalized() * MAXSPEED;
183
6 by Josh C
skittering blue square
184
    bool xcol = false;
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
185
    bool ycol = false;
186
187
    position.x += velocity.x * Monocle::deltaTime;
188
    while (Collide("Solid"))
189
      {
190
	xcol = true;
191
	if (velocity.x == 0) { break; }
192
	//printf("collision1\n");
193
	position.x -= SIGN(velocity.x, 0.1);
194
      }
195
    if (xcol) {velocity.x = 0;}
196
197
    position.y += velocity.y * Monocle::deltaTime;
198
    while (Collide("Solid"))
199
      {
200
	ycol = true;
201
	if (velocity.y == 0) { break; }
202
	//printf("collision2\n");
203
	position.y -= SIGN(velocity.y, 0.1);
204
      }
205
    if (ycol) {velocity.y = 0;}
6 by Josh C
skittering blue square
206
7 by Josh C
footsteps
207
    if (velocity.GetSquaredMagnitude() > 20)
8 by Josh C
harder to see creatures
208
      {
15 by Josh C
make maxspeed work. footstep volume has to do with speed. skitter
209
	Vector2 distance = ((DarkScene *)scene)->player->position - position;
210
	// at distance 0, vol should be 1.0.  at 800, it should be 0.
211
	float vol = (distance.GetMagnitude() / -800.0f) + 1.0f;
212
	skitter1->SetVolume(vol);
8 by Josh C
harder to see creatures
213
	skitter1->Play();
214
	sprite->Play("move");
215
      }
6 by Josh C
skittering blue square
216
    else
8 by Josh C
harder to see creatures
217
      {
218
	skitter1->Pause(); //Stop()?
219
	sprite->Play("idle");
220
      }
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
221
  }
222
18 by Josh C
ping!
223
  Ping::Ping() : Entity(),
224
		 d1(0.0f), d2(0.0f), t(0.0f), t2(0.0f)
225
  {
226
    sprite = new Sprite("yellow.png", FILTER_LINEAR, 64, 64);
227
    SetGraphic(sprite);
228
    scale = Vector2::zero;
229
  }
230
231
  Ping *Ping::NewPing(Vector2 pos, float d1, float d2, float t2)
232
  {
233
    Ping *ping = new Ping();
234
    ping->d1 = d1;
235
    ping->d2 = d2;
236
    ping->t2 = t2;
237
    ping->position = pos;
238
239
    Game::GetScene()->Add(ping);
240
    return ping;
241
  }
242
243
  void Ping::Update()
244
  {
245
    Entity::Update();
246
247
    // once we're done LERPing, get gone
248
    if (t > t2)
249
      RemoveSelf();
250
251
    t += Monocle::deltaTime;
252
    float scaleFactor = LERP(d1/64, d2/64, t/t2);
253
    scale = Vector2(scaleFactor, scaleFactor);
254
  }
255
1 by Josh C
initial commit
256
  // Scene
257
258
  DarkScene::DarkScene() : Scene()
259
  {
260
  }
261
  
262
  void DarkScene::Begin()
263
  {
264
    Scene::Begin();
265
266
    Graphics::Set2D(1024, 768);
267
268
    Text *inst2 = new Text("Press ESC to quit");
269
    inst2->position = Vector2(-492, -354); // 20px h, 30px v from U-L corner
270
    Add(inst2);
271
272
    Input::DefineMaskKey("left", KEY_LEFT);
273
    Input::DefineMaskKey("right", KEY_RIGHT);
274
    Input::DefineMaskKey("up", KEY_UP);
275
    Input::DefineMaskKey("down", KEY_DOWN);
276
277
    Input::DefineMaskKey("up", KEY_W);
278
    Input::DefineMaskKey("left", KEY_A);
279
    Input::DefineMaskKey("down", KEY_S);
280
    Input::DefineMaskKey("right", KEY_D);
281
282
    // level editor
283
    Add( levelEditor = new LevelEditor() );
284
    levelEditor->Disable();
285
286
    // load level from files
287
    Level::LoadProject("project.xml");
288
    Level::Load("level.xml", this);
4 by Josh C
invisible walls and code to bump into them
289
13 by Josh C
visible walls
290
    std::list<Entity*> *walls = GetAllTag("wall");
291
    for (std::list<Entity*>::iterator i = walls->begin(); i != walls->end(); ++i)
4 by Josh C
invisible walls and code to bump into them
292
      {
293
        Entity *e = (*i);
294
        Vector2 s = e->scale;
295
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
296
      }
1 by Josh C
initial commit
297
   
11 by Josh C
disappear darkness mask in editor mode
298
    player = new Player();
1 by Josh C
initial commit
299
    player->position = Graphics::GetScreenCenter();
300
    Add(player);
10 by Josh C
"light" in the dark
301
    Add(player->dark);
1 by Josh C
initial commit
302
5 by Josh C
added a "creature" moving around w/ the same dynamics as you do
303
    Creature *creature = new Creature;
304
    creature->position = Graphics::GetScreenCenter();
305
    Add(creature);
306
7 by Josh C
footsteps
307
    Creature *creature2 = new Creature;
308
    creature2->position = Graphics::GetScreenCenter();
309
    Add(creature2);
310
10 by Josh C
"light" in the dark
311
    Graphics::SetBackgroundColor(Color::green * 0.2f);
1 by Josh C
initial commit
312
313
  }
314
315
  void DarkScene::Update()
316
  {
317
    Scene::Update();
318
319
    if (Input::IsKeyPressed(KEY_ESCAPE))
320
      Game::Quit();
321
322
    if (isPaused)
323
      {
324
	if (Input::IsKeyPressed(KEY_S) && Input::IsKeyHeld(KEY_LCTRL))
325
	  Level::Save();
326
327
	if (Input::IsKeyPressed(KEY_A))
328
	  Scene::GetCamera()->position.x -= 600;
329
330
	if (Input::IsKeyPressed(KEY_D))
331
	  Scene::GetCamera()->position.x += 600;
332
      }
333
334
    if (Input::IsKeyPressed(KEY_TAB))
335
      {
336
        // if we're not doing anything in the levelEditor...
337
        if (levelEditor->GetState() == FTES_NONE)
338
          {
339
            isPaused = !isPaused;
340
            
11 by Josh C
disappear darkness mask in editor mode
341
            if (isPaused) {
12 by Josh C
drastically less hacky way to hide the darkness
342
	      player->dark->isVisible = false;
1 by Josh C
initial commit
343
	      levelEditor->Enable();
11 by Josh C
disappear darkness mask in editor mode
344
	    } else {
1 by Josh C
initial commit
345
	      levelEditor->Disable();
12 by Josh C
drastically less hacky way to hide the darkness
346
	      player->dark->isVisible = true;
11 by Josh C
disappear darkness mask in editor mode
347
	    }
1 by Josh C
initial commit
348
          }
349
      }
350
351
  }// DarkScene::Update
352
353
  Text::Text(const std::string& text, FontAsset* font)
354
    : Entity(), text(text)
355
  {
356
    if (font == NULL)
357
      this->font = Assets::RequestFont("LiberationSans-Regular.ttf", 18.0f);
358
    else
359
      this->font = font;
11 by Josh C
disappear darkness mask in editor mode
360
361
    SetLayer(-2);
1 by Josh C
initial commit
362
  }
363
364
  void Text::Render()
365
  {
366
    Graphics::PushMatrix();
367
368
    // place text directly relative to camera
369
    Graphics::Translate(scene->GetCamera()->position + position);
370
371
    Graphics::SetBlend(BLEND_ALPHA);
372
    Graphics::SetColor(Color::white);
373
    Graphics::BindFont(font);
374
    
375
    Graphics::RenderText(*font, text, 0, 0);
376
    Graphics::PopMatrix();
377
  }
378
379
}