Blocking character movements

Started by
0 comments, last by GameDev.net 24 years, 9 months ago
I',m creating a 2D game sort of like Lode Runner. I have all the character animation and movement done, but I don't really know how to block the character from moving past certain tiles. My Tile struct

typedef struct {
int posx;
int posy;
int obstacle;
}CELL;

Any help or direction would be appreciated

Advertisement
ok in the move func just place some code kinda like this just before the actual movement is done.

calc new position
if tile[at ne pos] not equ. to obstical
move

------------------
Great Milenko

Words Of Wisdom:
"Never Stick A Pretzel In Your Butt It Might Break Off In There."


http://www.crosswinds.net/~milenko
http://www.crosswinds.net/~pirotech

This topic is closed to new replies.

Advertisement