diff --git a/.idea/editor.xml b/.idea/editor.xml
index 12f1328..bf1be31 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -284,29 +284,244 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 66c75bc..309514d 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -5,9 +5,5 @@
-
-
-
-
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 18e0ba0..fdac275 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.14)
+project(tower-defense VERSION 0.0.15)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
diff --git a/include/enemies.h b/include/enemies.h
index 027682c..2ee7593 100644
--- a/include/enemies.h
+++ b/include/enemies.h
@@ -128,7 +128,7 @@ namespace td
{
const auto index = static_cast(enemy_id);
if (enemies_registry.size() <= index)
- enemies_registry.resize(index + 1);
+ enemies_registry.resize(index + 1, enemy_t{"no_enemy_texture", {}});
enemies_registry[index] = enemy;
}
diff --git a/include/game.h b/include/game.h
index 3758757..b331d22 100644
--- a/include/game.h
+++ b/include/game.h
@@ -29,7 +29,13 @@ namespace td
class game_t
{
public:
+
+ void render();
+
+ void update();
+
private:
+ std::vector enemies;
};
class event_handler_t
@@ -40,27 +46,37 @@ namespace td
// I'm preparing for when a handler would contain more than just a regular std::function, so this class would contain that stuff
public:
- event_handler_t(std::function hndlr) : callback(std::move(hndlr)) {};
- void call(void* target) { return callback(target); }
+ explicit event_handler_t(std::function handler) : callback(std::move(handler))
+ {};
+
+ void call(void* target) const
+ {
+ return callback(target);
+ }
+
private:
};
class event_t
{
+ public:
+ void callHandler(void* target)
+ {
+ handler.call(target);
+ }
+
+ private:
event_handler_t handler;
std::string signature;
- public:
- void callHandler(void* target) { handler.call(target); }
- private:
-
};
class event_scheduler_t
{
public:
void add_event_listener(event_t ev, event_handler_t handler);
+
private:
- void* target;
+ void* target = nullptr;
};
}
diff --git a/include/map.h b/include/map.h
new file mode 100644
index 0000000..0e57a1a
--- /dev/null
+++ b/include/map.h
@@ -0,0 +1,55 @@
+#pragma once
+/*
+ * Copyright (C) 2024 Brett Terpstra
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+#ifndef MAP_H
+#define MAP_H
+
+#include
+#include
+#include
+
+namespace td
+{
+
+ class curve_t
+ {
+ public:
+ blt::vec2 get_point(float t) const;
+ private:
+ blt::vec2 p0, p1, p2;
+ };
+
+ class path_segment_t
+ {
+ public:
+
+ private:
+
+ };
+
+ class map_t
+ {
+ public:
+
+ private:
+
+ };
+
+}
+
+#endif //MAP_H
diff --git a/lib/blt-with-graphics b/lib/blt-with-graphics
index 479247a..8a98d76 160000
--- a/lib/blt-with-graphics
+++ b/lib/blt-with-graphics
@@ -1 +1 @@
-Subproject commit 479247a5a3d3c3e7521eac21e41bea3fd3b92281
+Subproject commit 8a98d767677d9bdc06889f21aa6c7ffc60a3efb5
diff --git a/res/enemy.png b/res/enemy.png
new file mode 100644
index 0000000..7e738a0
Binary files /dev/null and b/res/enemy.png differ
diff --git a/src/main.cpp b/src/main.cpp
index c7bed4f..aedef59 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,8 +4,6 @@
#include "blt/gfx/renderer/camera.h"
#include "blt/gfx/renderer/resource_manager.h"
-void michael_examples();
-
blt::gfx::matrix_state_manager global_matrices;
blt::gfx::resource_manager resources;
blt::gfx::batch_renderer_2d renderer_2d(resources, global_matrices);
@@ -15,7 +13,11 @@ void init(const blt::gfx::window_data&)
{
using namespace blt::gfx;
- BLT_INFO("This should be colored lol");
+ 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();
@@ -43,7 +45,5 @@ void destroy(const blt::gfx::window_data&)
int main()
{
- michael_examples();
-
blt::gfx::init(blt::gfx::window_data{"My Sexy Window", init, update, destroy}.setSyncInterval(1));
}
\ No newline at end of file
diff --git a/src/map.cpp b/src/map.cpp
new file mode 100644
index 0000000..5a49661
--- /dev/null
+++ b/src/map.cpp
@@ -0,0 +1,29 @@
+/*
+ *
+ * Copyright (C) 2025 Brett Terpstra
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+#include
+
+namespace td
+{
+ blt::vec2 curve_t::get_point(const float t) const
+ {
+ const auto t_inv = 1.0f - t;
+ const auto t_inv_sq = t_inv * t_inv;
+ const auto t_sq = t * t;
+ return t_inv_sq * p0 + 2.0f * t_inv * t * p1 + t_sq * p2;
+ }
+}