2021-01-03 05:51:50 +08:00
|
|
|
#pragma once
|
|
|
|
#include <blah.h>
|
|
|
|
#include "world.h"
|
|
|
|
|
|
|
|
using namespace Blah;
|
|
|
|
|
|
|
|
namespace TL
|
|
|
|
{
|
|
|
|
class Game
|
|
|
|
{
|
|
|
|
public:
|
2021-01-03 09:50:25 +08:00
|
|
|
static constexpr int width = 320;
|
|
|
|
static constexpr int height = 180;
|
|
|
|
static constexpr int tile_width = 8;
|
|
|
|
static constexpr int tile_height = 8;
|
|
|
|
|
2021-01-03 05:51:50 +08:00
|
|
|
World world;
|
|
|
|
FrameBufferRef buffer;
|
|
|
|
Batch batch;
|
|
|
|
|
2021-01-03 09:05:12 +08:00
|
|
|
void load_map();
|
2021-01-03 05:51:50 +08:00
|
|
|
void startup();
|
|
|
|
void shutdown();
|
|
|
|
void update();
|
|
|
|
void render();
|
2021-01-03 08:20:01 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_draw_colliders;
|
2021-01-03 05:51:50 +08:00
|
|
|
};
|
|
|
|
}
|