/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 04:39:18 UTC
  • Revision ID: josh@9ix.org-20110918043918-eb8i96g094zxhn5q
ping!

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        position.y -= SIGN(velocity.y, 0.1);
78
78
      }
79
79
    if (ycol) {velocity.y = 0;}
80
 
 
81
 
    float vol = velocity.GetMagnitude() / MAXSPEED;
82
 
    footsteps->SetVolume(vol);
 
80
    
 
81
    float magnitude = velocity.GetMagnitude();
 
82
 
 
83
    footsteps->SetVolume(magnitude / MAXSPEED);
 
84
 
 
85
    // How far away can they hear your footsteps?
 
86
    // The circle is diameter 300 at MAXSPEED, 32 (2x your size) at 0 speed
 
87
    noisiness = ((magnitude / MAXSPEED *(300-32)) + 32) /2;
83
88
 
84
89
    dark->position = position;
85
90
 
104
109
    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
105
110
    skitter1->SetLoops(0); //loop indefinitely
106
111
 
 
112
    alert = Assets::RequestAudio("alert.ogg");
 
113
 
107
114
    velocity = Vector2::Random() * MAXSPEED;
108
115
 
109
116
    //set aiTime to random so creatures tick at different times
110
117
    aiTime= (float(rand()) / float(RAND_MAX)) * 1.0f;
 
118
 
 
119
    state = "idle";
111
120
  }
112
121
 
113
122
  void Creature::Update()
114
123
  {
115
124
    Entity::Update();
116
125
 
117
 
    aiTime += Monocle::deltaTime;
118
 
    if (aiTime > 1.0f)
 
126
    if (state == "idle" || state == "wander") 
119
127
      {
120
 
        switch (rand() % 3)
121
 
          {
122
 
          case 0: // idle
123
 
            //printf("idle\n");
 
128
        aiTime += Monocle::deltaTime;
 
129
        if (aiTime > 1.0f)
 
130
          {
 
131
            switch (rand() % 3)
 
132
              {
 
133
              case 0: // idle
 
134
                //printf("idle\n");
 
135
                direction = Vector2::zero;
 
136
                state = "idle";
 
137
                break;
 
138
              case 1: // move
 
139
                if (state != "wander") {
 
140
                  //printf("wander\n");
 
141
                  direction = Vector2::Random();
 
142
                  state = "wander";
 
143
                  break;
 
144
                }
 
145
              }
 
146
            
 
147
            aiTime = 0.0f;
 
148
          }
 
149
        
 
150
        Player *player = ((DarkScene *)scene)->player;
 
151
        if ( (player->position - position).GetSquaredMagnitude() < 
 
152
             pow(player->noisiness, 2) )
 
153
          {
 
154
            //printf("alert\n");
 
155
            state = "alert";
 
156
            alert->Play();
124
157
            direction = Vector2::zero;
125
 
            state = "idle";
126
 
            break;
127
 
          case 1: // move
128
 
            if (state != "wander") {
129
 
              //printf("wander\n");
130
 
              direction = Vector2::Random();
131
 
              state = "wander";
132
 
              break;
133
 
            }
 
158
            Ping::NewPing(position, 8.0f, 32.0f, 0.15f); // ping diameter 16-64 over .5s
 
159
            aiTime = 0.0f; // diff variable?  stateTime?
134
160
          }
 
161
      } // if idle or wander
 
162
    else if (state == "alert")
 
163
      {
 
164
        aiTime += Monocle::deltaTime;
135
165
        
136
 
        aiTime = 0.0f;
 
166
        // if we've been listening past the grace period and hear
 
167
        // something, switch state again
 
168
 
 
169
        // if we've been listening a long time, switch back to idle
 
170
        if (aiTime > 5.0f) {
 
171
          //printf("end alert\n");
 
172
          state = "idle";
 
173
        }
137
174
      }
138
 
    
 
175
 
139
176
    velocity += direction * ACCELERATION * Monocle::deltaTime;
140
177
    
141
178
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
183
220
      }
184
221
  }
185
222
 
 
223
  Ping::Ping() : Entity(),
 
224
                 d1(0.0f), d2(0.0f), t(0.0f), t2(0.0f)
 
225
  {
 
226
    sprite = new Sprite("yellow.png", FILTER_LINEAR, 64, 64);
 
227
    SetGraphic(sprite);
 
228
    scale = Vector2::zero;
 
229
  }
 
230
 
 
231
  Ping *Ping::NewPing(Vector2 pos, float d1, float d2, float t2)
 
232
  {
 
233
    Ping *ping = new Ping();
 
234
    ping->d1 = d1;
 
235
    ping->d2 = d2;
 
236
    ping->t2 = t2;
 
237
    ping->position = pos;
 
238
 
 
239
    Game::GetScene()->Add(ping);
 
240
    return ping;
 
241
  }
 
242
 
 
243
  void Ping::Update()
 
244
  {
 
245
    Entity::Update();
 
246
 
 
247
    // once we're done LERPing, get gone
 
248
    if (t > t2)
 
249
      RemoveSelf();
 
250
 
 
251
    t += Monocle::deltaTime;
 
252
    float scaleFactor = LERP(d1/64, d2/64, t/t2);
 
253
    scale = Vector2(scaleFactor, scaleFactor);
 
254
  }
 
255
 
186
256
  // Scene
187
257
 
188
258
  DarkScene::DarkScene() : Scene()