/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-19 18:02:20 UTC
  • Revision ID: josh@9ix.org-20110919180220-flnvccj5mdk3441x
chompy noise, make collisions with hunters work a little better

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    bool xcol = false;
59
59
    bool ycol = false;
60
60
 
 
61
    Collider *collider = NULL;
 
62
 
61
63
    position.x += velocity.x * Monocle::deltaTime;
62
 
    while (Collide("Solid"))
 
64
    while (Collide("Solid") || (collider = Collide("creature")))
63
65
      {
 
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
 
64
72
        xcol = true;
65
73
        if (velocity.x == 0) { break; }
66
74
        //printf("collision1\n");
68
76
      }
69
77
    if (xcol) {velocity.x = 0;}
70
78
 
 
79
    collider = NULL;
71
80
    position.y += velocity.y * Monocle::deltaTime;
72
 
    while (Collide("Solid"))
 
81
    while (Collide("Solid") || (collider = Collide("creature")))
73
82
      {
 
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
 
74
89
        ycol = true;
75
90
        if (velocity.y == 0) { break; }
76
91
        //printf("collision2\n");
84
99
 
85
100
    // How far away can they hear your footsteps?
86
101
    // The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
87
 
    noisiness = ((magnitude / MAXSPEED *(300-32)) + 32) /2;
 
102
    noisiness = ((magnitude / MAXSPEED *(400-64)) + 64) /2;
88
103
 
89
104
    dark->position = position;
90
105
 
110
125
 
111
126
    alert = Assets::RequestAudio("alert.ogg");
112
127
    freakout = Assets::RequestAudio("freakout.ogg");
 
128
    chomp = Assets::RequestAudio("chomp.ogg");
113
129
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
114
130
    skitter1->SetLoops(0); //loop indefinitely
115
131
    sniff = Audio::NewDeck(Assets::RequestAudio("sniff.ogg"));
208
224
            maxspeed = 0; // give them a running start
209
225
            sniff->Stop();
210
226
            freakout->Play();
211
 
            // TODO: big yellow ping
 
227
            Ping::NewPing(position, 8.0f, 64.0f, 0.15f); 
212
228
            aiTime = 0.0f;
213
229
            noiseTime = 0.0f;
214
230
          }
216
232
        // Go back to IDLE if:
217
233
        // * we hit a wall
218
234
        // * we stalk for more than 10-15s
219
 
        if ((aiTime > 15.0f) || Collide("wall"))
 
235
        if ((aiTime > 15.0f) || Collide("wall") || Collide("creaturewall"))
220
236
          {
221
237
            // play frustrated noise?
222
238
            state = "idle";
230
246
      {
231
247
        aiTime += Monocle::deltaTime;
232
248
        noiseTime += Monocle::deltaTime;
 
249
        graceTime += Monocle::deltaTime;
233
250
 
234
 
        if ((aiTime > 1.0f) && (maxspeed != DEFAULT_MAXSPEED))
 
251
        if ((graceTime > 1.0f) && (maxspeed != DEFAULT_MAXSPEED))
235
252
          maxspeed = DEFAULT_MAXSPEED;
236
253
 
237
254
        // if we hear the player (
241
258
          {
242
259
            direction = (player->position - position).GetNormalized();
243
260
            aiTime = 0.0f;
244
 
            if (noiseTime > 1.0f) {
 
261
            if (noiseTime > 2.0f) {
245
262
              freakout->Play();
246
 
              // TODO: big yellow ping
 
263
              Ping::NewPing(position, 8.0f, 64.0f, 0.15f);
247
264
              noiseTime = 0.0f;
248
265
            }
249
266
          }
254
271
            //alert->Play();
255
272
            direction = Vector2::zero;
256
273
            aiTime = 0.0f;
 
274
            noiseTime = 0.0f;
 
275
            graceTime = 0.0f;
257
276
        }
258
277
 
259
 
        // if we collide with you... game over?
 
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
        }
260
286
      }
261
287
 
262
288
    velocity += direction * ACCELERATION * Monocle::deltaTime;
271
297
    bool ycol = false;
272
298
 
273
299
    position.x += velocity.x * Monocle::deltaTime;
274
 
    while (Collide("Solid"))
 
300
    while (Collide("Solid") || Collide("creaturewall"))
275
301
      {
276
302
        xcol = true;
277
303
        if (velocity.x == 0) { break; }
281
307
    if (xcol) {velocity.x = 0;}
282
308
 
283
309
    position.y += velocity.y * Monocle::deltaTime;
284
 
    while (Collide("Solid"))
 
310
    while (Collide("Solid") || Collide("creaturewall"))
285
311
      {
286
312
        ycol = true;
287
313
        if (velocity.y == 0) { break; }
390
416
        Vector2 s = e->scale;
391
417
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
392
418
      }
 
419
 
 
420
    std::list<Entity*> *creaturewalls = GetAllTag("creaturewall");
 
421
    for (std::list<Entity*>::iterator i = creaturewalls->begin(); i != creaturewalls->end(); ++i)
 
422
      {
 
423
        Entity *e = (*i);
 
424
        Vector2 s = e->scale;
 
425
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
 
426
      }
393
427
   
394
428
    Graphics::SetBackgroundColor(Color::green * 0.2f);
395
429