/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-18 18:28:45 UTC
  • Revision ID: josh@9ix.org-20110918182845-4hn7df1fr378bql0
andĀ theĀ asset

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
 
 
78
61
    position.x += velocity.x * Monocle::deltaTime;
79
 
    while (Collide("Solid") || (collider = Collide("creature")))
 
62
    while (Collide("Solid"))
80
63
      {
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
 
 
87
64
        xcol = true;
88
65
        if (velocity.x == 0) { break; }
89
66
        //printf("collision1\n");
91
68
      }
92
69
    if (xcol) {velocity.x = 0;}
93
70
 
94
 
    collider = NULL;
95
71
    position.y += velocity.y * Monocle::deltaTime;
96
 
    while (Collide("Solid") || (collider = Collide("creature")))
 
72
    while (Collide("Solid"))
97
73
      {
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
 
 
104
74
        ycol = true;
105
75
        if (velocity.y == 0) { break; }
106
76
        //printf("collision2\n");
114
84
 
115
85
    // How far away can they hear your footsteps?
116
86
    // The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
117
 
    noisiness = ((magnitude / MAXSPEED *(400-64)) + 64) /2;
 
87
    noisiness = ((magnitude / MAXSPEED *(300-32)) + 32) /2;
118
88
 
119
89
    dark->position = position;
120
90
 
138
108
    AddTag("creature");
139
109
    SetCollider(new RectangleCollider(16, 16));
140
110
 
141
 
    alert = Assets::RequestAudio("alert.ogg");
142
 
    freakout = Assets::RequestAudio("freakout.ogg");
143
 
    chomp = Assets::RequestAudio("chomp.ogg");
144
111
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
145
112
    skitter1->SetLoops(0); //loop indefinitely
 
113
    alert = Assets::RequestAudio("alert.ogg");
146
114
    sniff = Audio::NewDeck(Assets::RequestAudio("sniff.ogg"));
147
115
    sniff->SetLoops(0);
148
116
 
211
179
            direction = (player->position - position).GetNormalized();
212
180
            maxspeed = STALKSPEED;
213
181
            aiTime = 0.0f;
 
182
            noiseTime = 0.0f;
214
183
          }
215
184
 
216
185
        // if we've been listening a long time, switch back to idle
223
192
    else if (state == "stalk")
224
193
      {
225
194
        aiTime += Monocle::deltaTime;
 
195
        noiseTime += Monocle::deltaTime;
226
196
 
227
197
        // Go to HUNT if:
228
198
        // * it's been >1s & we hear the player
234
204
            || Collide("player")
235
205
            )
236
206
          {
237
 
            state = "hunt";
238
 
            direction = (player->position - position).GetNormalized();
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;
245
 
          }
246
 
 
247
 
        // Go back to IDLE if:
248
 
        // * we hit a wall
249
 
        // * we stalk for more than 10-15s
250
 
        if ((aiTime > 15.0f) || Collide("wall") || Collide("creaturewall"))
251
 
          {
252
 
            // play frustrated noise?
253
 
            state = "idle";
254
 
            aiTime = 0.0f;
255
 
            sniff->Stop();
256
 
            maxspeed = DEFAULT_MAXSPEED;
257
 
            direction = Vector2::zero;
258
 
          }
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
 
        }
 
207
            //state = "hunt";
 
208
            direction = (player->position - position).GetNormalized();
 
209
            //maxspeed = DEFAULT_MAXSPEED;
 
210
            // Play hunt noise (REEET!)
 
211
 
 
212
          }
 
213
          
 
214
          
 
215
        //after 6 or 7 seconds on the noiseTime clock, play sound and ping again
 
216
        // if we hit a wall, call off the search?
 
217
        //we'll want to play that sound again
 
218
        // do others go ALERT if we start stalking?
 
219
        //probably a timeout here too.
301
220
      }
302
221
 
303
222
    velocity += direction * ACCELERATION * Monocle::deltaTime;
312
231
    bool ycol = false;
313
232
 
314
233
    position.x += velocity.x * Monocle::deltaTime;
315
 
    while (Collide("Solid") || Collide("creaturewall"))
 
234
    while (Collide("Solid"))
316
235
      {
317
236
        xcol = true;
318
237
        if (velocity.x == 0) { break; }
322
241
    if (xcol) {velocity.x = 0;}
323
242
 
324
243
    position.y += velocity.y * Monocle::deltaTime;
325
 
    while (Collide("Solid") || Collide("creaturewall"))
 
244
    while (Collide("Solid"))
326
245
      {
327
246
        ycol = true;
328
247
        if (velocity.y == 0) { break; }
334
253
    Vector2 distance = ((DarkScene *)scene)->player->position - position;
335
254
    if (state == "stalk")
336
255
      {
337
 
        float vol = (distance.GetMagnitude() / -250.0f) + 1.0f;
 
256
        float vol = (distance.GetMagnitude() / 250.0f) + 1.0f;
338
257
        sniff->SetVolume(vol);
339
258
        sniff->Play();
340
259
        sprite->Play("slowmove");
399
318
 
400
319
    Graphics::Set2D(1024, 768);
401
320
 
402
 
    Text *inst1 = new Text("Use arrow keys to move");
403
 
    inst1->position = Vector2(-492, -354);
404
 
    Add(inst1);
405
 
 
406
321
    Text *inst2 = new Text("Press ESC to quit");
407
 
    inst2->position = Vector2(-492, -334); // 20px h, 30px v from U-L corner
 
322
    inst2->position = Vector2(-492, -354); // 20px h, 30px v from U-L corner
408
323
    Add(inst2);
409
324
 
410
325
    Input::DefineMaskKey("left", KEY_LEFT);
435
350
        Vector2 s = e->scale;
436
351
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
437
352
      }
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
 
 
451
353
   
452
354
    Graphics::SetBackgroundColor(Color::green * 0.2f);
453
355