ashish2199 / Aidos

A beginner friendly project with aim of creating our own version of Bomberman.
GNU General Public License v3.0
41 stars 27 forks source link

Adding wall #41

Closed ItsStolas closed 6 years ago

ItsStolas commented 6 years ago

Added walls to the game.

This exposed a problem with our current collision system, though.

First I had to alter the functions slightly to return boundaries correctly, this was a minor change. The major change, we will have to discuss.

For collision detection, you want to test where the player IS GOING TO BE, not where he currently is. That's my understanding anyway. The way we have it currently, this is impossible without some ugly hacky code.

I'll open an issue to discuss it further. This is the reason you get stuck in the walls in this PR.

ashish2199 commented 6 years ago

I am thinking of adding a bounce back