/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
 
108
123
    AddTag("creature");
109
124
    SetCollider(new RectangleCollider(16, 16));
110
125
 
 
126
    alert = Assets::RequestAudio("alert.ogg");
 
127
    freakout = Assets::RequestAudio("freakout.ogg");
 
128
    chomp = Assets::RequestAudio("chomp.ogg");
111
129
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
112
130
    skitter1->SetLoops(0); //loop indefinitely
113
 
    alert = Assets::RequestAudio("alert.ogg");
114
131
    sniff = Audio::NewDeck(Assets::RequestAudio("sniff.ogg"));
115
132
    sniff->SetLoops(0);
116
133
 
179
196
            direction = (player->position - position).GetNormalized();
180
197
            maxspeed = STALKSPEED;
181
198
            aiTime = 0.0f;
182
 
            noiseTime = 0.0f;
183
199
          }
184
200
 
185
201
        // if we've been listening a long time, switch back to idle
192
208
    else if (state == "stalk")
193
209
      {
194
210
        aiTime += Monocle::deltaTime;
195
 
        noiseTime += Monocle::deltaTime;
196
211
 
197
212
        // Go to HUNT if:
198
213
        // * it's been >1s & we hear the player
204
219
            || Collide("player")
205
220
            )
206
221
          {
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.
 
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
            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;
 
265
            }
 
266
          }
 
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
        }
220
286
      }
221
287
 
222
288
    velocity += direction * ACCELERATION * Monocle::deltaTime;
231
297
    bool ycol = false;
232
298
 
233
299
    position.x += velocity.x * Monocle::deltaTime;
234
 
    while (Collide("Solid"))
 
300
    while (Collide("Solid") || Collide("creaturewall"))
235
301
      {
236
302
        xcol = true;
237
303
        if (velocity.x == 0) { break; }
241
307
    if (xcol) {velocity.x = 0;}
242
308
 
243
309
    position.y += velocity.y * Monocle::deltaTime;
244
 
    while (Collide("Solid"))
 
310
    while (Collide("Solid") || Collide("creaturewall"))
245
311
      {
246
312
        ycol = true;
247
313
        if (velocity.y == 0) { break; }
253
319
    Vector2 distance = ((DarkScene *)scene)->player->position - position;
254
320
    if (state == "stalk")
255
321
      {
256
 
        float vol = (distance.GetMagnitude() / 250.0f) + 1.0f;
 
322
        float vol = (distance.GetMagnitude() / -250.0f) + 1.0f;
257
323
        sniff->SetVolume(vol);
258
324
        sniff->Play();
259
325
        sprite->Play("slowmove");
350
416
        Vector2 s = e->scale;
351
417
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
352
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
      }
353
427
   
354
428
    Graphics::SetBackgroundColor(Color::green * 0.2f);
355
429