/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:51:34 UTC
  • Revision ID: josh@9ix.org-20110919185134-4sgy1r2m1jjfdody
fix spurs

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
    if (Collide("exit")) {
 
62
      Scene *s = GetScene();
 
63
      s->isPaused = true;
 
64
      
 
65
      Text *win1 = new Text("You made it safely through the dark!", 
 
66
                           Assets::RequestFont("LiberationSans-Regular.ttf", 50.0f));
 
67
      win1->position = Vector2(-350,0);
 
68
      s->Add(win1);
 
69
 
 
70
      Text *win2 = new Text("Congratulations!", 
 
71
                           Assets::RequestFont("LiberationSans-Regular.ttf", 50.0f));
 
72
      win2->position = Vector2(-150,50);
 
73
      s->Add(win2);
 
74
    }
 
75
 
 
76
    Collider *collider = NULL;
 
77
 
61
78
    position.x += velocity.x * Monocle::deltaTime;
62
 
    while (Collide("Solid"))
 
79
    while (Collide("Solid") || (collider = Collide("creature")))
63
80
      {
 
81
        // Don't colide with hunters.  We should just die.
 
82
        if (collider) {
 
83
          Creature *c = (Creature *) collider->GetEntity();
 
84
          if (c->state == "hunt") { break; }
 
85
        }
 
86
 
64
87
        xcol = true;
65
88
        if (velocity.x == 0) { break; }
66
89
        //printf("collision1\n");
68
91
      }
69
92
    if (xcol) {velocity.x = 0;}
70
93
 
 
94
    collider = NULL;
71
95
    position.y += velocity.y * Monocle::deltaTime;
72
 
    while (Collide("Solid"))
 
96
    while (Collide("Solid") || (collider = Collide("creature")))
73
97
      {
 
98
        // Don't colide with hunters.  We should just die.
 
99
        if (collider) {
 
100
          Creature *c = (Creature *) collider->GetEntity();
 
101
          if (c->state == "hunt") { break; }
 
102
        }
 
103
 
74
104
        ycol = true;
75
105
        if (velocity.y == 0) { break; }
76
106
        //printf("collision2\n");
84
114
 
85
115
    // How far away can they hear your footsteps?
86
116
    // The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
87
 
    noisiness = ((magnitude / MAXSPEED *(300-32)) + 32) /2;
 
117
    noisiness = ((magnitude / MAXSPEED *(400-64)) + 64) /2;
88
118
 
89
119
    dark->position = position;
90
120
 
108
138
    AddTag("creature");
109
139
    SetCollider(new RectangleCollider(16, 16));
110
140
 
 
141
    alert = Assets::RequestAudio("alert.ogg");
 
142
    freakout = Assets::RequestAudio("freakout.ogg");
 
143
    chomp = Assets::RequestAudio("chomp.ogg");
111
144
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
112
145
    skitter1->SetLoops(0); //loop indefinitely
113
 
    alert = Assets::RequestAudio("alert.ogg");
114
146
    sniff = Audio::NewDeck(Assets::RequestAudio("sniff.ogg"));
115
147
    sniff->SetLoops(0);
116
148
 
202
234
            || Collide("player")
203
235
            )
204
236
          {
205
 
            //state = "hunt";
 
237
            state = "hunt";
206
238
            direction = (player->position - position).GetNormalized();
207
 
            //maxspeed = DEFAULT_MAXSPEED;
208
 
            // Play hunt noise (REEET!)
209
 
            //aiTime = 0.0f;
 
239
            maxspeed = 0; // give them a running start
 
240
            sniff->Stop();
 
241
            freakout->Play();
 
242
            Ping::NewPing(position, 8.0f, 64.0f, 0.15f); 
 
243
            aiTime = 0.0f;
 
244
            noiseTime = 0.0f;
210
245
          }
211
246
 
212
247
        // Go back to IDLE if:
213
248
        // * we hit a wall
214
 
        // * we hunt for more than 10-15s
215
 
        if ((aiTime > 15.0f) || Collide("wall"))
 
249
        // * we stalk for more than 10-15s
 
250
        if ((aiTime > 15.0f) || Collide("wall") || Collide("creaturewall"))
216
251
          {
217
252
            // play frustrated noise?
218
253
            state = "idle";
222
257
            direction = Vector2::zero;
223
258
          }
224
259
      }
 
260
    else if (state == "hunt")
 
261
      {
 
262
        aiTime += Monocle::deltaTime;
 
263
        noiseTime += Monocle::deltaTime;
 
264
        graceTime += Monocle::deltaTime;
 
265
 
 
266
        if ((graceTime > 1.0f) && (maxspeed != DEFAULT_MAXSPEED))
 
267
          maxspeed = DEFAULT_MAXSPEED;
 
268
 
 
269
        // if we hear the player (
 
270
        Player *player = ((DarkScene *)scene)->player;
 
271
        if ( (player->position - position).GetSquaredMagnitude() < 
 
272
             pow(player->noisiness, 2) )
 
273
          {
 
274
            direction = (player->position - position).GetNormalized();
 
275
            aiTime = 0.0f;
 
276
            if (noiseTime > 2.0f) {
 
277
              freakout->Play();
 
278
              Ping::NewPing(position, 8.0f, 64.0f, 0.15f);
 
279
              noiseTime = 0.0f;
 
280
            }
 
281
          }
 
282
 
 
283
        // I guess chill out if it's been a while
 
284
        if (aiTime > 15.0f) {
 
285
            state = "alert";
 
286
            //alert->Play();
 
287
            direction = Vector2::zero;
 
288
            aiTime = 0.0f;
 
289
            noiseTime = 0.0f;
 
290
            graceTime = 0.0f;
 
291
        }
 
292
 
 
293
        // if we collide with you, move you back to the starting point
 
294
        if (Collide("player")) {
 
295
          // TODO: first wait a second or 3?
 
296
          chomp->Play();
 
297
          DarkScene *scene = (DarkScene *) GetScene();
 
298
          Entity* playersp = scene->GetFirstEntityWithTag("playerspawner");
 
299
          scene->player->position = playersp->position;
 
300
        }
 
301
      }
225
302
 
226
303
    velocity += direction * ACCELERATION * Monocle::deltaTime;
227
304
    
235
312
    bool ycol = false;
236
313
 
237
314
    position.x += velocity.x * Monocle::deltaTime;
238
 
    while (Collide("Solid"))
 
315
    while (Collide("Solid") || Collide("creaturewall"))
239
316
      {
240
317
        xcol = true;
241
318
        if (velocity.x == 0) { break; }
245
322
    if (xcol) {velocity.x = 0;}
246
323
 
247
324
    position.y += velocity.y * Monocle::deltaTime;
248
 
    while (Collide("Solid"))
 
325
    while (Collide("Solid") || Collide("creaturewall"))
249
326
      {
250
327
        ycol = true;
251
328
        if (velocity.y == 0) { break; }
322
399
 
323
400
    Graphics::Set2D(1024, 768);
324
401
 
 
402
    Text *inst1 = new Text("Use arrow keys to move");
 
403
    inst1->position = Vector2(-492, -354);
 
404
    Add(inst1);
 
405
 
325
406
    Text *inst2 = new Text("Press ESC to quit");
326
 
    inst2->position = Vector2(-492, -354); // 20px h, 30px v from U-L corner
 
407
    inst2->position = Vector2(-492, -334); // 20px h, 30px v from U-L corner
327
408
    Add(inst2);
328
409
 
329
410
    Input::DefineMaskKey("left", KEY_LEFT);
354
435
        Vector2 s = e->scale;
355
436
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
356
437
      }
 
438
 
 
439
    std::list<Entity*> *creaturewalls = GetAllTag("creaturewall");
 
440
    for (std::list<Entity*>::iterator i = creaturewalls->begin(); i != creaturewalls->end(); ++i)
 
441
      {
 
442
        Entity *e = (*i);
 
443
        Vector2 s = e->scale;
 
444
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
 
445
      }
 
446
 
 
447
    Entity* exit = GetFirstEntityWithTag("exit");
 
448
    Vector2 s = exit->scale;
 
449
    exit->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
 
450
 
357
451
   
358
452
    Graphics::SetBackgroundColor(Color::green * 0.2f);
359
453