/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-17 04:24:47 UTC
  • Revision ID: josh@9ix.org-20110917042447-pht93k6g9j22wtar
added a "creature" moving around w/ the same dynamics as you do 
(acceleration, collision)

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
    //Scene::GetCamera()->position = position;
70
70
  }
71
71
 
 
72
  Creature::Creature() : Entity(),
 
73
                         FRICTION(400),
 
74
                         MAXSPEED(60.0f),
 
75
                         ACCELERATION(800)                       
 
76
  {
 
77
    sprite = new SpriteAnimation("creature.png", FILTER_NONE, 64, 64);
 
78
    sprite->Add("idle", 0, 0, 0.35f);
 
79
    sprite->Play("idle");
 
80
    SetGraphic(sprite);
 
81
 
 
82
    AddTag("creature");
 
83
    SetCollider(new RectangleCollider(32, 32));
 
84
 
 
85
    velocity = Vector2::Random() * ACCELERATION;
 
86
 
 
87
    //set aiTime to random so creatures tick at different times
 
88
    aiTime= (float(rand()) / float(RAND_MAX)) * 2.0f;
 
89
  }
 
90
 
 
91
  void Creature::Update()
 
92
  {
 
93
    Entity::Update();
 
94
 
 
95
    aiTime += Monocle::deltaTime;
 
96
    if (aiTime > 2.0f)
 
97
      {
 
98
        switch (rand() % 3)
 
99
          {
 
100
          case 1: // idle
 
101
            direction = Vector2::zero;
 
102
            state = "idle";
 
103
            break;
 
104
          case 2: // move
 
105
            direction = Vector2::Random();
 
106
            state = "wander";
 
107
            break;
 
108
          }
 
109
        
 
110
        aiTime = 0.0f;
 
111
      }
 
112
    
 
113
    velocity += direction * ACCELERATION * Monocle::deltaTime;
 
114
    
 
115
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
 
116
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
 
117
 
 
118
        bool xcol = false;
 
119
    bool ycol = false;
 
120
 
 
121
    position.x += velocity.x * Monocle::deltaTime;
 
122
    while (Collide("Solid"))
 
123
      {
 
124
        xcol = true;
 
125
        if (velocity.x == 0) { break; }
 
126
        //printf("collision1\n");
 
127
        position.x -= SIGN(velocity.x, 0.1);
 
128
      }
 
129
    if (xcol) {velocity.x = 0;}
 
130
 
 
131
    position.y += velocity.y * Monocle::deltaTime;
 
132
    while (Collide("Solid"))
 
133
      {
 
134
        ycol = true;
 
135
        if (velocity.y == 0) { break; }
 
136
        //printf("collision2\n");
 
137
        position.y -= SIGN(velocity.y, 0.1);
 
138
      }
 
139
    if (ycol) {velocity.y = 0;}
 
140
  }
 
141
 
72
142
  // Scene
73
143
 
74
144
  DarkScene::DarkScene() : Scene()
115
185
    player->position = Graphics::GetScreenCenter();
116
186
    Add(player);
117
187
 
 
188
    Creature *creature = new Creature;
 
189
    creature->position = Graphics::GetScreenCenter();
 
190
    Add(creature);
 
191
 
118
192
    Graphics::SetBackgroundColor(Color::green * 0.2f);
119
193
 
120
194
  }