From befc31951508740d8e9ae230734d9352246ab515 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 23 Mar 2024 18:04:17 +0100 Subject: a --- src/critter.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/critter.cpp') diff --git a/src/critter.cpp b/src/critter.cpp index 8acfac65..221a8256 100644 --- a/src/critter.cpp +++ b/src/critter.cpp @@ -102,12 +102,13 @@ constexpr std::array rotation_to_similar(rotation r) template bool update_movement_1(critter& C, size_t& i, const anim_def& info, uint32_t nframes) { - const auto rotations = rotation_to_similar(new_r); - const unsigned nvecs = (int)new_r & 1 ? 3 : 1; - bool can_move = false; + constexpr auto rotations = rotation_to_similar(new_r); + constexpr unsigned nvecs = (int)new_r & 1 ? 3 : 1; for (auto k = 0u; k < nframes; k++) { + bool can_move = false; + for (unsigned j = 0; j < nvecs; j++) { const auto vec = rotation_to_vec(rotations[j]); @@ -137,9 +138,12 @@ bool update_movement_1(critter& C, size_t& i, const anim_def& info, uint32_t nfr break; } } + + if (!can_move) + return false; } - return can_move; + return true; } } // namespace -- cgit v1.2.3