/minild29

To get this branch, use:
bzr branch http://9ix.org/bzr/minild29

« back to all changes in this revision

Viewing changes to Dark.cpp

  • Committer: Josh C
  • Date: 2011-09-17 19:59:09 UTC
  • Revision ID: josh@9ix.org-20110917195909-v02b0cco0yri61qc
disappear darkness mask in editor mode

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "Dark.h"
2
 
#include <cmath>
3
2
 
4
3
namespace Dark
5
4
{
6
5
  Player::Player() : Entity(),
7
 
                     FRICTION(150),
8
 
                     MAXSPEED(150.0f),
9
 
                     ACCELERATION(300)
 
6
                     FRICTION(400),
 
7
                     MAXSPEED(20.0f),
 
8
                     ACCELERATION(800)
10
9
  {
11
10
    sprite = new SpriteAnimation("player.png", FILTER_NONE, 64, 64);
12
11
    sprite->Add("idle", 0, 0, 0.35f);
18
17
 
19
18
    footsteps = Audio::NewDeck(Assets::RequestAudio("footsteps.ogg"));
20
19
    footsteps->SetLoops(0); //loop indefinitely
21
 
    footsteps->SetVolume(0);
22
 
    footsteps->Play();
23
20
    
24
21
    SetCollider(new RectangleCollider(16, 16));
25
22
 
52
49
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
53
50
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
54
51
 
55
 
    if (velocity.GetSquaredMagnitude() > pow(MAXSPEED, 2))
56
 
      velocity = velocity.GetNormalized() * MAXSPEED;
57
 
 
58
52
    bool xcol = false;
59
53
    bool ycol = false;
60
54
 
61
 
    Collider *collider = NULL;
62
 
 
63
55
    position.x += velocity.x * Monocle::deltaTime;
64
 
    while (Collide("Solid") || (collider = Collide("creature")))
 
56
    while (Collide("Solid"))
65
57
      {
66
 
        // Don't colide with hunters.  We should just die.
67
 
        if (collider) {
68
 
          Creature *c = (Creature *) collider->GetEntity();
69
 
          if (c->state == "hunt") { break; }
70
 
        }
71
 
 
72
58
        xcol = true;
73
59
        if (velocity.x == 0) { break; }
74
60
        //printf("collision1\n");
76
62
      }
77
63
    if (xcol) {velocity.x = 0;}
78
64
 
79
 
    collider = NULL;
80
65
    position.y += velocity.y * Monocle::deltaTime;
81
 
    while (Collide("Solid") || (collider = Collide("creature")))
 
66
    while (Collide("Solid"))
82
67
      {
83
 
        // Don't colide with hunters.  We should just die.
84
 
        if (collider) {
85
 
          Creature *c = (Creature *) collider->GetEntity();
86
 
          if (c->state == "hunt") { break; }
87
 
        }
88
 
 
89
68
        ycol = true;
90
69
        if (velocity.y == 0) { break; }
91
70
        //printf("collision2\n");
92
71
        position.y -= SIGN(velocity.y, 0.1);
93
72
      }
94
73
    if (ycol) {velocity.y = 0;}
95
 
    
96
 
    float magnitude = velocity.GetMagnitude();
97
 
 
98
 
    footsteps->SetVolume(magnitude / MAXSPEED);
99
 
 
100
 
    // How far away can they hear your footsteps?
101
 
    // The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
102
 
    noisiness = ((magnitude / MAXSPEED *(400-64)) + 64) /2;
 
74
 
 
75
    if (velocity.GetSquaredMagnitude() > 20)
 
76
      footsteps->Play();
 
77
    else
 
78
      footsteps->Pause(); //Stop()?
103
79
 
104
80
    dark->position = position;
105
81
 
108
84
 
109
85
  Creature::Creature() : Entity(),
110
86
                         FRICTION(800),
111
 
                         ACCELERATION(1200),
112
 
                         DEFAULT_MAXSPEED(80.0f),
113
 
                         STALKSPEED(20.0f)
 
87
                         MAXSPEED(15.0f),
 
88
                         ACCELERATION(1200)                      
114
89
  {
115
90
    sprite = new SpriteAnimation("creature.png", FILTER_NONE, 64, 64);
116
91
    sprite->Add("idle", 0, 0, 0.35f);
117
92
    sprite->Add("move", 1, 2, 4.0f);
118
 
    sprite->Add("slowmove", 1, 2, 2.0f);
119
93
    sprite->Play("idle");
120
94
    SetGraphic(sprite);
121
95
    scale = Vector2(0.25, 0.25);
123
97
    AddTag("creature");
124
98
    SetCollider(new RectangleCollider(16, 16));
125
99
 
126
 
    alert = Assets::RequestAudio("alert.ogg");
127
 
    freakout = Assets::RequestAudio("freakout.ogg");
128
 
    chomp = Assets::RequestAudio("chomp.ogg");
129
100
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
130
101
    skitter1->SetLoops(0); //loop indefinitely
131
 
    sniff = Audio::NewDeck(Assets::RequestAudio("sniff.ogg"));
132
 
    sniff->SetLoops(0);
133
102
 
134
 
    maxspeed = DEFAULT_MAXSPEED;
 
103
    velocity = Vector2::Random() * MAXSPEED;
135
104
 
136
105
    //set aiTime to random so creatures tick at different times
137
106
    aiTime= (float(rand()) / float(RAND_MAX)) * 1.0f;
138
 
 
139
 
    state = "idle";
140
107
  }
141
108
 
142
109
  void Creature::Update()
143
110
  {
144
111
    Entity::Update();
145
112
 
146
 
    if (state == "idle" || state == "wander") 
 
113
    aiTime += Monocle::deltaTime;
 
114
    if (aiTime > 1.0f)
147
115
      {
148
 
        aiTime += Monocle::deltaTime;
149
 
        if (aiTime > 1.0f)
150
 
          {
151
 
            switch (rand() % 3)
152
 
              {
153
 
              case 0: // idle
154
 
                //printf("idle\n");
155
 
                direction = Vector2::zero;
156
 
                state = "idle";
157
 
                break;
158
 
              case 1: // move
159
 
                if (state != "wander") {
160
 
                  //printf("wander\n");
161
 
                  direction = Vector2::Random();
162
 
                  state = "wander";
163
 
                  break;
164
 
                }
165
 
              }
166
 
            
167
 
            aiTime = 0.0f;
168
 
          }
169
 
        
170
 
        Player *player = ((DarkScene *)scene)->player;
171
 
        if ( (player->position - position).GetSquaredMagnitude() < 
172
 
             pow(player->noisiness, 2) )
173
 
          {
174
 
            //printf("alert\n");
175
 
            state = "alert";
176
 
            alert->Play();
 
116
        switch (rand() % 3)
 
117
          {
 
118
          case 0: // idle
 
119
            //printf("idle\n");
177
120
            direction = Vector2::zero;
178
 
            Ping::NewPing(position, 8.0f, 32.0f, 0.15f); // ping diameter 16-64 over .5s
179
 
            aiTime = 0.0f; // diff variable?  stateTime?
180
 
          }
181
 
      } // if idle or wander
182
 
    else if (state == "alert")
183
 
      {
184
 
        aiTime += Monocle::deltaTime;
185
 
        
186
 
        // if we've been listening past the grace period and hear
187
 
        // something, switch state again
188
 
        // We hear the player at DOUBLE noisiness distance, cuz WE'RE LISNING!
189
 
        Player *player = ((DarkScene *)scene)->player;
190
 
        if ( aiTime > 1.0f && 
191
 
             (player->position - position).GetSquaredMagnitude() < 
192
 
             pow(player->noisiness * 2, 2) )
193
 
          {
194
 
            state = "stalk";
195
 
            Ping::NewPing(position, 8.0f, 32.0f, 0.15f);
196
 
            direction = (player->position - position).GetNormalized();
197
 
            maxspeed = STALKSPEED;
198
 
            aiTime = 0.0f;
199
 
          }
200
 
 
201
 
        // if we've been listening a long time, switch back to idle
202
 
        if (aiTime > 5.0f) {
203
 
          //printf("end alert\n");
204
 
          state = "idle";
205
 
          aiTime = 0.0f;
206
 
        }
207
 
      }
208
 
    else if (state == "stalk")
209
 
      {
210
 
        aiTime += Monocle::deltaTime;
211
 
 
212
 
        // Go to HUNT if:
213
 
        // * it's been >1s & we hear the player
214
 
        // * we collide with the player
215
 
        Player *player = ((DarkScene *)scene)->player;
216
 
        if ((aiTime > 1.0f &&  
217
 
             (player->position - position).GetSquaredMagnitude() < 
218
 
             pow(player->noisiness, 2) )
219
 
            || Collide("player")
220
 
            )
221
 
          {
222
 
            state = "hunt";
223
 
            direction = (player->position - position).GetNormalized();
224
 
            maxspeed = 0; // give them a running start
225
 
            sniff->Stop();
226
 
            freakout->Play();
227
 
            Ping::NewPing(position, 8.0f, 64.0f, 0.15f); 
228
 
            aiTime = 0.0f;
229
 
            noiseTime = 0.0f;
230
 
          }
231
 
 
232
 
        // Go back to IDLE if:
233
 
        // * we hit a wall
234
 
        // * we stalk for more than 10-15s
235
 
        if ((aiTime > 15.0f) || Collide("wall") || Collide("creaturewall"))
236
 
          {
237
 
            // play frustrated noise?
238
121
            state = "idle";
239
 
            aiTime = 0.0f;
240
 
            sniff->Stop();
241
 
            maxspeed = DEFAULT_MAXSPEED;
242
 
            direction = Vector2::zero;
243
 
          }
244
 
      }
245
 
    else if (state == "hunt")
246
 
      {
247
 
        aiTime += Monocle::deltaTime;
248
 
        noiseTime += Monocle::deltaTime;
249
 
        graceTime += Monocle::deltaTime;
250
 
 
251
 
        if ((graceTime > 1.0f) && (maxspeed != DEFAULT_MAXSPEED))
252
 
          maxspeed = DEFAULT_MAXSPEED;
253
 
 
254
 
        // if we hear the player (
255
 
        Player *player = ((DarkScene *)scene)->player;
256
 
        if ( (player->position - position).GetSquaredMagnitude() < 
257
 
             pow(player->noisiness, 2) )
258
 
          {
259
 
            direction = (player->position - position).GetNormalized();
260
 
            aiTime = 0.0f;
261
 
            if (noiseTime > 2.0f) {
262
 
              freakout->Play();
263
 
              Ping::NewPing(position, 8.0f, 64.0f, 0.15f);
264
 
              noiseTime = 0.0f;
 
122
            break;
 
123
          case 1: // move
 
124
            if (state != "wander") {
 
125
              //printf("wander\n");
 
126
              direction = Vector2::Random();
 
127
              state = "wander";
 
128
              break;
265
129
            }
266
130
          }
267
 
 
268
 
        // I guess chill out if it's been a while
269
 
        if (aiTime > 15.0f) {
270
 
            state = "alert";
271
 
            //alert->Play();
272
 
            direction = Vector2::zero;
273
 
            aiTime = 0.0f;
274
 
            noiseTime = 0.0f;
275
 
            graceTime = 0.0f;
276
 
        }
277
 
 
278
 
        // if we collide with you, move you back to the starting point
279
 
        if (Collide("player")) {
280
 
          // TODO: first wait a second or 3?
281
 
          chomp->Play();
282
 
          DarkScene *scene = (DarkScene *) GetScene();
283
 
          Entity* playersp = scene->GetFirstEntityWithTag("playerspawner");
284
 
          scene->player->position = playersp->position;
285
 
        }
 
131
        
 
132
        aiTime = 0.0f;
286
133
      }
287
 
 
 
134
    
288
135
    velocity += direction * ACCELERATION * Monocle::deltaTime;
289
136
    
290
137
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
291
138
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
292
139
 
293
 
    if (velocity.GetSquaredMagnitude() > pow(maxspeed, 2))
294
 
      velocity = velocity.GetNormalized() * maxspeed;
295
 
 
296
140
    bool xcol = false;
297
141
    bool ycol = false;
298
142
 
299
143
    position.x += velocity.x * Monocle::deltaTime;
300
 
    while (Collide("Solid") || Collide("creaturewall"))
 
144
    while (Collide("Solid"))
301
145
      {
302
146
        xcol = true;
303
147
        if (velocity.x == 0) { break; }
307
151
    if (xcol) {velocity.x = 0;}
308
152
 
309
153
    position.y += velocity.y * Monocle::deltaTime;
310
 
    while (Collide("Solid") || Collide("creaturewall"))
 
154
    while (Collide("Solid"))
311
155
      {
312
156
        ycol = true;
313
157
        if (velocity.y == 0) { break; }
316
160
      }
317
161
    if (ycol) {velocity.y = 0;}
318
162
 
319
 
    Vector2 distance = ((DarkScene *)scene)->player->position - position;
320
 
    if (state == "stalk")
321
 
      {
322
 
        float vol = (distance.GetMagnitude() / -250.0f) + 1.0f;
323
 
        sniff->SetVolume(vol);
324
 
        sniff->Play();
325
 
        sprite->Play("slowmove");
326
 
      }
327
 
    else if (velocity.GetSquaredMagnitude() > 20)
328
 
      {
329
 
        // at distance 0, vol should be 1.0.  at 800, it should be 0.
330
 
        float vol = (distance.GetMagnitude() / -600.0f) + 1.0f;
331
 
        skitter1->SetVolume(vol);
 
163
    if (velocity.GetSquaredMagnitude() > 20)
 
164
      {
332
165
        skitter1->Play();
333
166
        sprite->Play("move");
334
167
      }
339
172
      }
340
173
  }
341
174
 
342
 
  Ping::Ping() : Entity(),
343
 
                 d1(0.0f), d2(0.0f), t(0.0f), t2(0.0f)
344
 
  {
345
 
    sprite = new Sprite("yellow.png", FILTER_LINEAR, 64, 64);
346
 
    SetGraphic(sprite);
347
 
    scale = Vector2::zero;
348
 
  }
349
 
 
350
 
  Ping *Ping::NewPing(Vector2 pos, float d1, float d2, float t2)
351
 
  {
352
 
    Ping *ping = new Ping();
353
 
    ping->d1 = d1;
354
 
    ping->d2 = d2;
355
 
    ping->t2 = t2;
356
 
    ping->position = pos;
357
 
 
358
 
    Game::GetScene()->Add(ping);
359
 
    return ping;
360
 
  }
361
 
 
362
 
  void Ping::Update()
363
 
  {
364
 
    Entity::Update();
365
 
 
366
 
    // once we're done LERPing, get gone
367
 
    if (t > t2)
368
 
      RemoveSelf();
369
 
 
370
 
    t += Monocle::deltaTime;
371
 
    float scaleFactor = LERP(d1/64, d2/64, t/t2);
372
 
    scale = Vector2(scaleFactor, scaleFactor);
373
 
  }
374
 
 
375
175
  // Scene
376
176
 
377
177
  DarkScene::DarkScene() : Scene()
406
206
    Level::LoadProject("project.xml");
407
207
    Level::Load("level.xml", this);
408
208
 
409
 
    HideSpawners();
410
 
    Spawn();
411
 
 
412
 
    std::list<Entity*> *walls = GetAllTag("wall");
413
 
    for (std::list<Entity*>::iterator i = walls->begin(); i != walls->end(); ++i)
414
 
      {
415
 
        Entity *e = (*i);
416
 
        Vector2 s = e->scale;
417
 
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
418
 
      }
419
 
 
420
 
    std::list<Entity*> *creaturewalls = GetAllTag("creaturewall");
421
 
    for (std::list<Entity*>::iterator i = creaturewalls->begin(); i != creaturewalls->end(); ++i)
 
209
    std::list<Entity*> *inv = GetAllTag("invisible");
 
210
    for (std::list<Entity*>::iterator i = inv->begin(); i != inv->end(); ++i)
422
211
      {
423
212
        Entity *e = (*i);
424
213
        Vector2 s = e->scale;
425
214
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
426
215
      }
427
216
   
428
 
    Graphics::SetBackgroundColor(Color::green * 0.2f);
429
 
 
430
 
  }
431
 
 
432
 
  void DarkScene::HideSpawners()
433
 
  {
434
 
    std::list<Entity*> *spawners = GetAllTag("spawner");
435
 
    if (spawners == NULL) {printf("NO SPAWNERS!!!\n");}
436
 
    for (std::list<Entity*>::iterator i = spawners->begin(); i != spawners->end(); ++i)
437
 
      (*i)->isVisible = false;
438
 
  }
439
 
 
440
 
  void DarkScene::ShowSpawners()
441
 
  {
442
 
    std::list<Entity*> *spawners = GetAllTag("spawner");
443
 
    for (std::list<Entity*>::iterator i = spawners->begin(); i != spawners->end(); ++i)
444
 
      (*i)->isVisible = true;
445
 
  }
446
 
  
447
 
  void DarkScene::Spawn()
448
 
  {
449
 
    Entity* playersp = GetFirstEntityWithTag("playerspawner");
450
217
    player = new Player();
451
 
    player->position = playersp->position;;
 
218
    player->position = Graphics::GetScreenCenter();
452
219
    Add(player);
453
220
    Add(player->dark);
454
221
 
455
 
    std::list<Entity*> *spawners = GetAllTag("creaturespawner");
456
 
    // Ugh, monocle is double-entering all the tags...
457
 
    spawners->sort();
458
 
    spawners->unique();
459
 
    for (std::list<Entity*>::iterator i = spawners->begin(); i != spawners->end(); ++i)
460
 
      {
461
 
        Creature *creature = new Creature();
462
 
        creature->position = (*i)->position;
463
 
        Add(creature);
464
 
      }
 
222
    Creature *creature = new Creature;
 
223
    creature->position = Graphics::GetScreenCenter();
 
224
    Add(creature);
 
225
 
 
226
    Creature *creature2 = new Creature;
 
227
    creature2->position = Graphics::GetScreenCenter();
 
228
    Add(creature2);
 
229
 
 
230
    Graphics::SetBackgroundColor(Color::green * 0.2f);
 
231
 
465
232
  }
466
233
 
467
234
  void DarkScene::Update()
491
258
            isPaused = !isPaused;
492
259
            
493
260
            if (isPaused) {
494
 
              player->dark->isVisible = false;
495
 
              ShowSpawners();
 
261
              player->dark->position = Vector2(2048, 1600);
496
262
              levelEditor->Enable();
497
263
            } else {
498
 
              HideSpawners();
499
264
              levelEditor->Disable();
500
 
              player->dark->isVisible = true;
501
265
            }
502
266
          }
503
267
      }