Snake: Clear the movement queue on game reset.

This commit is contained in:
Andreas Kling 2019-04-20 03:47:35 +02:00
parent b41e95b578
commit 09c087177c
Notes: sideshowbarker 2024-07-19 14:39:01 +09:00
2 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,12 @@ public:
m_elements[i] = T();
}
void clear()
{
m_head = 0;
m_size = 0;
}
bool is_empty() const { return !m_size; }
int size() const { return m_size; }

View File

@ -19,6 +19,7 @@ void SnakeGame::reset()
m_head = { m_rows / 2, m_columns / 2 };
m_tail.clear_with_capacity();
m_length = 2;
m_velocity_queue.clear();
stop_timer();
start_timer(120);
spawn_fruit();