diff --git a/.idea/editor.xml b/.idea/editor.xml
index dbe54e8..0abfee7 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -33,7 +33,6 @@
-
@@ -284,244 +283,5 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c3e9640..74f3bff 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -51,7 +51,7 @@ macro(blt_add_project name source type)
project(tower-defense)
endmacro()
-project(tower-defense VERSION 0.0.19)
+project(tower-defense VERSION 0.0.20)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
diff --git a/src/main.cpp b/src/main.cpp
index 4cd48c8..0799ee6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,58 +18,58 @@ blt::gfx::curve2d_mesh_data_t mesh;
void init(const blt::gfx::window_data&)
{
- using namespace blt::gfx;
+ using namespace blt::gfx;
- resources.setPrefixDirectory("../");
- BLT_INFO("Loading Resources");
- resources.enqueue("res/enemy.png", "no_enemy_texture");
- resources.enqueue("res/particle.png", "particle");
- resources.enqueue("res/tower.png", "tower");
+ resources.setPrefixDirectory("../");
+ BLT_INFO("Loading Resources");
+ resources.enqueue("res/enemy.png", "no_enemy_texture");
+ resources.enqueue("res/particle.png", "particle");
+ resources.enqueue("res/tower.png", "tower");
- global_matrices.create_internals();
- resources.load_resources();
- renderer_2d.create();
- mesh = curve.to_mesh(32);
+ global_matrices.create_internals();
+ resources.load_resources();
+ renderer_2d.create();
+ mesh = curve.to_mesh(32);
}
void update(const blt::gfx::window_data& data)
{
- global_matrices.update_perspectives(data.width, data.height, 90, 0.1, 2000);
+ global_matrices.update_perspectives(data.width, data.height, 90, 0.1, 2000);
- camera.update();
- camera.update_view(global_matrices);
- global_matrices.update();
+ camera.update();
+ camera.update_view(global_matrices);
+ global_matrices.update();
- t += 0.01f * dir;
- if (t >= 1)
- {
- t = 1;
- dir = -1;
- } else if (t <= 0)
- {
- t = 0;
- dir = 1;
- }
+ t += 0.01f * dir;
+ if (t >= 1)
+ {
+ t = 1;
+ dir = -1;
+ } else if (t <= 0)
+ {
+ t = 0;
+ dir = 1;
+ }
- auto pos = curve.get_point(t);
- renderer_2d.drawRectangle(blt::gfx::rectangle2d_t{pos, blt::vec2{25, 25}}, blt::make_color(1, 0, 0));
- renderer_2d.drawCurve(mesh, blt::make_color(0, 1, 0));
- // auto lines = curve.to_lines(32);
- // for (const auto& line : lines)
- // renderer_2d.drawLineInternal(blt::make_color(0, 1,0), line);
+ auto pos = curve.get_point(t);
+ renderer_2d.drawRectangle(blt::gfx::rectangle2d_t{pos, blt::vec2{25, 25}}, blt::make_color(1, 0, 0));
+ renderer_2d.drawCurve(mesh, blt::make_color(0, 1, 0));
+ // auto lines = curve.to_lines(32);
+ // for (const auto& line : lines)
+ // renderer_2d.drawLineInternal(blt::make_color(0, 1,0), line);
- renderer_2d.render(data.width, data.height);
+ renderer_2d.render(data.width, data.height);
}
void destroy(const blt::gfx::window_data&)
{
- global_matrices.cleanup();
- resources.cleanup();
- renderer_2d.cleanup();
- blt::gfx::cleanup();
+ global_matrices.cleanup();
+ resources.cleanup();
+ renderer_2d.cleanup();
+ blt::gfx::cleanup();
}
int main()
{
- blt::gfx::init(blt::gfx::window_data{"My Sexy Window", init, update, destroy}.setSyncInterval(1));
-}
\ No newline at end of file
+ blt::gfx::init(blt::gfx::window_data{"My Sexy Window", init, update, destroy}.setSyncInterval(1).setWidth(1440).setHeight(720));
+}