Add collision detection for rotation
This commit is contained in:
parent
d67b06d006
commit
20222ad686
1 changed files with 7 additions and 0 deletions
|
@ -175,6 +175,13 @@ int main()
|
||||||
// Rotation
|
// Rotation
|
||||||
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Key::Up)) {
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Key::Up)) {
|
||||||
block.rotation_state++;
|
block.rotation_state++;
|
||||||
|
// Check to see if new rotation state is overlapping any tiles
|
||||||
|
for (auto tile : block.get_tiles()) {
|
||||||
|
if (tile.x <= 0 || tile.x >= GRID_WIDTH || grid[tile.y][tile.x]) {
|
||||||
|
block.rotation_state--;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Horizontal movement
|
// Horizontal movement
|
||||||
|
|
Loading…
Add table
Reference in a new issue