diff --git a/.idea/editor.xml b/.idea/editor.xml
index 7dc090d..0abfee7 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -45,482 +45,243 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bb2012f..340da13 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.22)
+project(tower-defense VERSION 0.0.23)
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
index f31ae49..62558ec 100644
--- a/include/config.h
+++ b/include/config.h
@@ -27,7 +27,7 @@ namespace td {
// 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;
+ inline float PATH_SPEED_MULTIPLIER = 2.0f;
}
#endif //CONFIG_H
diff --git a/lib/blt-with-graphics b/lib/blt-with-graphics
index bf3a7fe..f49876d 160000
--- a/lib/blt-with-graphics
+++ b/lib/blt-with-graphics
@@ -1 +1 @@
-Subproject commit bf3a7fefd89d1c423f0b7016dab3f4659f5f132d
+Subproject commit f49876dab27974b1644410010b94f59fa3d0b79c
diff --git a/src/main.cpp b/src/main.cpp
index 7ff7e37..86935c0 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -14,7 +14,9 @@ float t = 0;
float dir = 1;
blt::gfx::curve2d_t curve{blt::vec2{250, 250}, blt::vec2{350, 500}, blt::vec2{650, 500}, blt::vec2{750, 250}};
+blt::gfx::curve2d_t curve2{blt::vec2{250, 250}, blt::vec2{500, 500}, blt::vec2{750, 250}};
blt::gfx::curve2d_mesh_data_t mesh;
+blt::gfx::curve2d_mesh_data_t mesh2;
using curve_t = blt::gfx::curve2d_t;
using vec2 = blt::vec2f;
@@ -41,6 +43,7 @@ void init(const blt::gfx::window_data&)
resources.load_resources();
renderer_2d.create();
mesh = curve.to_mesh(32);
+ mesh2 = curve2.to_mesh(32);
}
void update(const blt::gfx::window_data& data)
@@ -69,6 +72,7 @@ void update(const blt::gfx::window_data& data)
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));
+ renderer_2d.drawCurve(mesh2, blt::make_color(0, 0, 1));
// auto lines = curve.to_lines(32);
// for (const auto& line : lines)
// renderer_2d.drawLineInternal(blt::make_color(0, 1,0), line);
diff --git a/src/map.cpp b/src/map.cpp
index 34ee474..3d45038 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -17,6 +17,7 @@
*/
#include
#include
+#include
namespace td
{
@@ -55,8 +56,8 @@ namespace td
if (!enemy.is_alive)
continue;
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;
+ const auto movement = (enemy_info.get_speed() / length) * PATH_SPEED_MULTIPLIER * blt::gfx::getFrameDeltaSeconds();
+ enemy.percent_along_path += static_cast(movement);
if (enemy.percent_along_path >= 1)
{
enemy.is_alive = false;