Hello,
In this update, you now have a solo mode! In this mode you can battle a copumter controlled character!
The algorithm that I used to do the AI is similar to this one (found here: https://gamedev.stackexchange.com/questions/25349/giving-a-bomberman-ai-intelligent-bomb-placement) :
for $(direction) in (up, down, left, right):
— place bomb at current location
— if (can find and reach divergent safe cell in current $(direction)):
—— bomb = true
—— move = $(direction)
—— return
for $(direction) in (up, down, left, right):
— do not place bomb at current location
— if (any safe cell in the current $(direction)):
—— bomb = false
—— move = $(direction)
—— return
I hope you will play my game!
0 comments