diff --git a/.idea/editor.xml b/.idea/editor.xml
index d636c73..d04f5f3 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -283,247 +283,14 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74f3bff..72dcc3e 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.20)
+project(tower-defense VERSION 0.0.21)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
diff --git a/include/config.h b/include/config.h
new file mode 100644
index 0000000..f31ae49
--- /dev/null
+++ b/include/config.h
@@ -0,0 +1,33 @@
+#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 CONFIG_H
+#define CONFIG_H
+
+#include
+
+namespace td {
+ // number of segments used to draw curves. The larger this number the more triangles are created.
+ inline blt::i32 PATH_DRAW_SEGMENTS = 32;
+ // number of segments used when creating static data, such as the length of a curve
+ inline blt::i32 PATH_UPDATE_SEGMENTS = 64;
+
+ inline float PATH_SPEED_MULTIPLIER = 0.1f;
+}
+
+#endif //CONFIG_H
diff --git a/include/enemies.h b/include/enemies.h
index c550f3a..206f65a 100644
--- a/include/enemies.h
+++ b/include/enemies.h
@@ -36,9 +36,13 @@ namespace td
struct enemy_instance_t
{
+ enemy_instance_t(const enemy_id_t id, const float health_left) : id{id}, health_left{health_left}
+ {}
+
enemy_id_t id;
float health_left;
- float percent_along_path;
+ float percent_along_path = 0;
+ bool is_alive = true;
};
class enemy_t
@@ -135,6 +139,11 @@ namespace td
enemies_registry[index] = enemy;
}
+ [[nodiscard]] const enemy_t& get(enemy_id_t id) const
+ {
+ return enemies_registry[static_cast(id)];
+ }
+
private:
void register_entities();
diff --git a/include/map.h b/include/map.h
index b0014b5..5ad324b 100644
--- a/include/map.h
+++ b/include/map.h
@@ -30,6 +30,7 @@ namespace td
class path_segment_t
{
friend map_t;
+
public:
explicit path_segment_t(const blt::gfx::curve2d_t& curve);
@@ -38,6 +39,24 @@ namespace td
return m_bounding_box;
}
+ void remove_enemy(const blt::size_t index)
+ {
+ m_enemies[index].is_alive = false;
+ m_empty_indices.emplace_back(index);
+ }
+
+ void add_enemy(const enemy_instance_t& enemy)
+ {
+ if (!m_empty_indices.empty())
+ {
+ m_enemies[m_empty_indices.back()] = enemy;
+ m_empty_indices.pop_back();
+ } else
+ {
+ m_enemies.push_back(enemy);
+ }
+ }
+
private:
static bounding_box_t get_bounding_box(const blt::gfx::curve2d_t& curve, blt::i32 segments);
@@ -45,20 +64,25 @@ namespace td
blt::gfx::curve2d_t m_curve;
float m_curve_length;
std::vector m_enemies;
+ std::vector m_empty_indices;
};
class map_t
{
public:
- explicit map_t(const std::vector& path_segments): m_path_segments{path_segments}
+ explicit map_t(const std::vector& path_segments, enemy_database_t& database): m_path_segments{path_segments},
+ m_database{&database}
{}
- void update();
+ void draw();
+
+ float update();
[[nodiscard]] blt::gfx::curve2d_mesh_data_t get_mesh_data(float thickness = 1) const;
private:
std::vector m_path_segments;
+ enemy_database_t* m_database;
};
}
diff --git a/lib/blt-with-graphics b/lib/blt-with-graphics
index e1e2bb1..64223a0 160000
--- a/lib/blt-with-graphics
+++ b/lib/blt-with-graphics
@@ -1 +1 @@
-Subproject commit e1e2bb18a4e3dcf3d70ed10bdb5ed50b2490e161
+Subproject commit 64223a0cfd2fb2da0e2d02017b6cd7ccc3d7e8f0
diff --git a/pullall.sh b/pullall.sh
new file mode 100755
index 0000000..b528dfd
--- /dev/null
+++ b/pullall.sh
@@ -0,0 +1,8 @@
+#bash
+git pull
+cd lib/blt-with-graphics
+git checkout main
+git pull
+cd libraries/BLT
+git checkout main
+git pull
diff --git a/src/map.cpp b/src/map.cpp
index 06c0634..5088912 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -15,12 +15,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
+#include
#include
namespace td
{
- path_segment_t::path_segment_t(const blt::gfx::curve2d_t& curve): m_bounding_box{get_bounding_box(curve, 32)}, m_curve{curve},
- m_curve_length{curve.length(32)}
+ path_segment_t::path_segment_t(const blt::gfx::curve2d_t& curve): m_bounding_box{get_bounding_box(curve, PATH_UPDATE_SEGMENTS)}, m_curve{curve},
+ m_curve_length{curve.length(PATH_UPDATE_SEGMENTS)}
{}
bounding_box_t path_segment_t::get_bounding_box(const blt::gfx::curve2d_t& curve, const blt::i32 segments)
@@ -42,16 +43,38 @@ namespace td
return bounding_box_t{min, max};
}
- void map_t::update()
+ float map_t::update()
{
+ float damage = 0;
+ for (blt::size_t i = 0; i < m_path_segments.size(); ++i)
+ {
+ auto& segment = m_path_segments[i];
+ const auto length = segment.m_curve_length;
+ for (const auto [j, enemy] : blt::enumerate(segment.m_enemies))
+ {
+ const auto& enemy_info = m_database->get(enemy.id);
+ const auto movement = (enemy_info.get_speed() / length) * PATH_SPEED_MULTIPLIER;
+ enemy.percent_along_path += movement;
+ if (enemy.percent_along_path >= 1)
+ {
+ enemy.is_alive = false;
+ segment.m_empty_indices.emplace_back(j);
+ if (i != m_path_segments.size() - 1)
+ {
+
+ }
+ }
+ }
+ }
+ return damage;
}
blt::gfx::curve2d_mesh_data_t map_t::get_mesh_data(const float thickness) const
{
blt::gfx::curve2d_mesh_data_t mesh_data;
for (const auto& segment : m_path_segments)
- mesh_data.with(segment.m_curve.to_mesh(32, thickness));
+ mesh_data.with(segment.m_curve.to_mesh(PATH_DRAW_SEGMENTS, thickness));
return mesh_data;
}
}