/minild29

To get this branch, use:
bzr branch http://9ix.org/bzr/minild29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#include "Dark.h"

namespace Dark
{
  Player::Player() : Entity(),
		     FRICTION(400),
		     MAXSPEED(20.0f),
		     ACCELERATION(800)
  {
    sprite = new SpriteAnimation("player.png", FILTER_NONE, 64, 64);
    sprite->Add("idle", 0, 0, 0.35f);
    sprite->Play("idle");
    SetGraphic(sprite);
    scale = Vector2(0.25, 0.25);

    AddTag("player");

    footsteps = Audio::NewDeck(Assets::RequestAudio("footsteps.ogg"));
    footsteps->SetLoops(0); //loop indefinitely
    
    SetCollider(new RectangleCollider(16, 16));

    dark = new Entity();
    dark->SetGraphic(new Sprite("dark.png", FILTER_NONE, 2048, 1536)); //alpha?
  }

  void Player::Update()
  {
    Entity::Update();

    if (Input::IsKeyMaskHeld("left"))
      {
	velocity.x -= ACCELERATION * Monocle::deltaTime;
      }
    if (Input::IsKeyMaskHeld("right"))
      {
	velocity.x += ACCELERATION * Monocle::deltaTime;
      }
    if (Input::IsKeyMaskHeld("up"))
      {
	velocity.y -= ACCELERATION * Monocle::deltaTime;
      }
    if (Input::IsKeyMaskHeld("down"))
      {
	velocity.y += ACCELERATION * Monocle::deltaTime;
      }
    
    // velocity will approach 0 in steps of FRICTION * dt
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);

    bool xcol = false;
    bool ycol = false;

    position.x += velocity.x * Monocle::deltaTime;
    while (Collide("Solid"))
      {
	xcol = true;
	if (velocity.x == 0) { break; }
	//printf("collision1\n");
	position.x -= SIGN(velocity.x, 0.1);
      }
    if (xcol) {velocity.x = 0;}

    position.y += velocity.y * Monocle::deltaTime;
    while (Collide("Solid"))
      {
	ycol = true;
	if (velocity.y == 0) { break; }
	//printf("collision2\n");
	position.y -= SIGN(velocity.y, 0.1);
      }
    if (ycol) {velocity.y = 0;}

    if (velocity.GetSquaredMagnitude() > 20)
      footsteps->Play();
    else
      footsteps->Pause(); //Stop()?

    dark->position = position;

    //Scene::GetCamera()->position = position;
  }

  Creature::Creature() : Entity(),
			 FRICTION(800),
			 MAXSPEED(15.0f),
			 ACCELERATION(1200)			 
  {
    sprite = new SpriteAnimation("creature.png", FILTER_NONE, 64, 64);
    sprite->Add("idle", 0, 0, 0.35f);
    sprite->Add("move", 1, 2, 4.0f);
    sprite->Play("idle");
    SetGraphic(sprite);
    scale = Vector2(0.25, 0.25);

    AddTag("creature");
    SetCollider(new RectangleCollider(16, 16));

    skitter1 = Audio::NewDeck(Assets::RequestAudio("skitter1.ogg"));
    skitter1->SetLoops(0); //loop indefinitely

    velocity = Vector2::Random() * MAXSPEED;

    //set aiTime to random so creatures tick at different times
    aiTime= (float(rand()) / float(RAND_MAX)) * 1.0f;
  }

  void Creature::Update()
  {
    Entity::Update();

    aiTime += Monocle::deltaTime;
    if (aiTime > 1.0f)
      {
	switch (rand() % 3)
	  {
	  case 0: // idle
	    //printf("idle\n");
	    direction = Vector2::zero;
	    state = "idle";
	    break;
	  case 1: // move
	    if (state != "wander") {
	      //printf("wander\n");
	      direction = Vector2::Random();
	      state = "wander";
	      break;
	    }
	  }
	
	aiTime = 0.0f;
      }
    
    velocity += direction * ACCELERATION * Monocle::deltaTime;
    
    velocity.x = APPROACH(velocity.x, 0, FRICTION * Monocle::deltaTime);
    velocity.y = APPROACH(velocity.y, 0, FRICTION * Monocle::deltaTime);

    bool xcol = false;
    bool ycol = false;

    position.x += velocity.x * Monocle::deltaTime;
    while (Collide("Solid"))
      {
	xcol = true;
	if (velocity.x == 0) { break; }
	//printf("collision1\n");
	position.x -= SIGN(velocity.x, 0.1);
      }
    if (xcol) {velocity.x = 0;}

    position.y += velocity.y * Monocle::deltaTime;
    while (Collide("Solid"))
      {
	ycol = true;
	if (velocity.y == 0) { break; }
	//printf("collision2\n");
	position.y -= SIGN(velocity.y, 0.1);
      }
    if (ycol) {velocity.y = 0;}

    if (velocity.GetSquaredMagnitude() > 20)
      {
	skitter1->Play();
	sprite->Play("move");
      }
    else
      {
	skitter1->Pause(); //Stop()?
	sprite->Play("idle");
      }
  }

  // Scene

  DarkScene::DarkScene() : Scene()
  {
  }
  
  void DarkScene::Begin()
  {
    Scene::Begin();

    Graphics::Set2D(1024, 768);

    Text *inst2 = new Text("Press ESC to quit");
    inst2->position = Vector2(-492, -354); // 20px h, 30px v from U-L corner
    Add(inst2);

    Input::DefineMaskKey("left", KEY_LEFT);
    Input::DefineMaskKey("right", KEY_RIGHT);
    Input::DefineMaskKey("up", KEY_UP);
    Input::DefineMaskKey("down", KEY_DOWN);

    Input::DefineMaskKey("up", KEY_W);
    Input::DefineMaskKey("left", KEY_A);
    Input::DefineMaskKey("down", KEY_S);
    Input::DefineMaskKey("right", KEY_D);

    // level editor
    Add( levelEditor = new LevelEditor() );
    levelEditor->Disable();

    // load level from files
    Level::LoadProject("project.xml");
    Level::Load("level.xml", this);

    std::list<Entity*> *inv = GetAllTag("invisible");
    for (std::list<Entity*>::iterator i = inv->begin(); i != inv->end(); ++i)
      {
        Entity *e = (*i);
        Vector2 s = e->scale;
        e->SetCollider(new RectangleCollider(s.x * 64, s.y * 64));
      }
   
    Player *player = new Player;
    player->position = Graphics::GetScreenCenter();
    Add(player);
    Add(player->dark);

    Creature *creature = new Creature;
    creature->position = Graphics::GetScreenCenter();
    Add(creature);

    Creature *creature2 = new Creature;
    creature2->position = Graphics::GetScreenCenter();
    Add(creature2);

    Graphics::SetBackgroundColor(Color::green * 0.2f);

  }

  void DarkScene::Update()
  {
    Scene::Update();

    if (Input::IsKeyPressed(KEY_ESCAPE))
      Game::Quit();

    if (isPaused)
      {
	if (Input::IsKeyPressed(KEY_S) && Input::IsKeyHeld(KEY_LCTRL))
	  Level::Save();

	if (Input::IsKeyPressed(KEY_A))
	  Scene::GetCamera()->position.x -= 600;

	if (Input::IsKeyPressed(KEY_D))
	  Scene::GetCamera()->position.x += 600;
      }

    if (Input::IsKeyPressed(KEY_TAB))
      {
        // if we're not doing anything in the levelEditor...
        if (levelEditor->GetState() == FTES_NONE)
          {
            isPaused = !isPaused;
            
            if (isPaused)
	      levelEditor->Enable();
            else
	      levelEditor->Disable();
          }
      }

  }// DarkScene::Update

  Text::Text(const std::string& text, FontAsset* font)
    : Entity(), text(text)
  {
    if (font == NULL)
      this->font = Assets::RequestFont("LiberationSans-Regular.ttf", 18.0f);
    else
      this->font = font;
  }

  void Text::Render()
  {
    Graphics::PushMatrix();

    // place text directly relative to camera
    Graphics::Translate(scene->GetCamera()->position + position);

    Graphics::SetBlend(BLEND_ALPHA);
    Graphics::SetColor(Color::white);
    Graphics::BindFont(font);
    
    Graphics::RenderText(*font, text, 0, 0);
    Graphics::PopMatrix();
  }

}