Need help with tile engine collisions

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
deathsangel
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 30
Joined: Sat Apr 18, 2009 8:17 pm

Need help with tile engine collisions

Post by deathsangel »

Can somebody tell me how to add collisions between my player and my layer?
My Code works something like this -

Code: Select all

render()
{
     for (int r = 0; r < rows; r++)
     {
           for (int c = 0; c < columns; c++)
           {
                  switch(myLayer.get_tile(r, c))
                  {
                         SDL_Rect rect;
                         rect.x = c;
                         rect.y = r;
                         rect.w = 50;
                         rect.h = 50;

                         case 0:
                         break;

                         case 1:
                                SDL_BlitSurface(tileImage, NULL, screen, &rect);
                         break;
                  }
           }
     }
}
And for my player, I just have it display on the screen like so

Code: Select all

SDL_Rect rect;
rect.x = myPlayer.get_x();
rect.y = myPlayer.get_y();
rect.w = 50;
rect.h = 50;

SDL_BlitSurface(playerImage, NULL, screen, &rect);
So how do I make it so that if the player hits the wall (index 1) he stops?

my update is roughly like this

Code: Select all

if (RIGHT)
myPlayer.add_x(1);
if (LEFT)
myPlayer.add_x(-1);
Last edited by deathsangel on Sun Apr 19, 2009 11:46 am, edited 1 time in total.
Thanks to gyro vorbis for inspiring me to learn how to make a 2d graphics engine :)
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Need help with tile engine collisions

Post by MarauderIIC »

Unless you trim it down to the relevant pieces, you probably won't get any useful responses.
But, welcome to the forum!
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Need help with tile engine collisions

Post by dandymcgee »

Call the layer's get_tile from camera class' add_x and add_y functions and check it against an array of known collision tiles. If it's a collision don't update the camera or player positions, otherwise proceed normally.

If you still have questions I highly recommend you do as Marauder suggested and post only relevant sections of code. ;)

And again, welcome! :mrgreen:
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
deathsangel
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 30
Joined: Sat Apr 18, 2009 8:17 pm

Re: Need help with tile engine collisions

Post by deathsangel »

Thank you for the response, I got it to work
Thanks to gyro vorbis for inspiring me to learn how to make a 2d graphics engine :)
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Need help with tile engine collisions

Post by dandymcgee »

deathsangel wrote:Thank you for the response, I got it to work
Cool. ;)
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
deathsangel
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 30
Joined: Sat Apr 18, 2009 8:17 pm

Re: Need help with tile engine collisions

Post by deathsangel »

I rewrote my whole entire engine :nono: but now it supports collisions and many other things. :)
Now I'm working to get a scroll feature. As well as jumping :)
I'm making an maple story style rpg, if you guys have any ideas for what I should have inside my game just post them here!
Thanks to gyro vorbis for inspiring me to learn how to make a 2d graphics engine :)
Post Reply