/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 03:13:10 UTC
  • Revision ID: josh@9ix.org-20110917031310-jb649nt8e2xy0i6k
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
namespace Dark
4
4
{
5
5
  Player::Player() : Entity(),
6
 
                     FRICTION(400),
7
 
                     MAXSPEED(60.0f),
8
 
                     ACCELERATION(800)
 
6
                     VELOCITY(150.0f)
9
7
  {
10
8
    sprite = new SpriteAnimation("player.png", FILTER_NONE, 64, 64);
11
9
    sprite->Add("idle", 0, 0, 0.35f);
21
19
  {
22
20
    Entity::Update();
23
21
 
24
 
    if (Input::IsKeyMaskHeld("left"))
25
 
      {
26
 
        velocity.x -= ACCELERATION * Monocle::deltaTime;
27
 
      }
28
 
    if (Input::IsKeyMaskHeld("right"))
29
 
      {
30
 
        velocity.x += ACCELERATION * Monocle::deltaTime;
31
 
      }
32
 
    if (Input::IsKeyMaskHeld("up"))
33
 
      {
34
 
        velocity.y -= ACCELERATION * Monocle::deltaTime;
35
 
      }
36
 
    if (Input::IsKeyMaskHeld("down"))
37
 
      {
38
 
        velocity.y += ACCELERATION * Monocle::deltaTime;
39
 
      }
40
 
    
41
 
    // velocity will approach 0 in steps of FRICTION * dt
42
 
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
43
 
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);
44
 
 
45
 
    bool xcol = false;
46
 
    bool ycol = false;
47
 
 
48
 
    position.x += velocity.x * Monocle::deltaTime;
49
 
    while (Collide("Solid"))
50
 
      {
51
 
        xcol = true;
52
 
        if (velocity.x == 0) { break; }
53
 
        //printf("collision1\n");
54
 
        position.x -= SIGN(velocity.x, 0.1);
55
 
      }
56
 
    if (xcol) {velocity.x = 0;}
57
 
 
58
 
    position.y += velocity.y * Monocle::deltaTime;
59
 
    while (Collide("Solid"))
60
 
      {
61
 
        ycol = true;
62
 
        if (velocity.y == 0) { break; }
63
 
        //printf("collision2\n");
64
 
        position.y -= SIGN(velocity.y, 0.1);
65
 
      }
66
 
    if (ycol) {velocity.y = 0;}
67
 
 
68
 
 
69
22
    //Scene::GetCamera()->position = position;
70
 
  }
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;}
 
23
 
 
24
    //...
140
25
  }
141
26
 
142
27
  // Scene
172
57
    // load level from files
173
58
    Level::LoadProject("project.xml");
174
59
    Level::Load("level.xml", this);
175
 
 
176
 
    std::list<Entity*> *inv = GetAllTag("invisible");
177
 
    for (std::list<Entity*>::iterator i = inv->begin(); i != inv->end(); ++i)
178
 
      {
179
 
        Entity *e = (*i);
180
 
        Vector2 s = e->scale;
181
 
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
182
 
      }
183
60
   
184
61
    Player *player = new Player;
185
62
    player->position = Graphics::GetScreenCenter();
186
63
    Add(player);
187
64
 
188
 
    Creature *creature = new Creature;
189
 
    creature->position = Graphics::GetScreenCenter();
190
 
    Add(creature);
191
 
 
192
65
    Graphics::SetBackgroundColor(Color::green * 0.2f);
193
66
 
194
67
  }