I was thinking, since I am a visual learner I want to visually put my maps together from the image tiles, and save them as one big picture(similar to a spreadsheet I guess). Lets say that my tiles are going to be 40 x 40 pixles.
Instead of checking a map tile against the player’s position for collision detection, would it be possible to check an array of the exact same size of the tilled map isself?
Let me explain…
I’d like to have an invisible grid laid on-top of the map. Each grid cell will be exactly the same size as each tile 40 x 40 pixles. Each cell will either have a value of 1 for true or 0 for false.
Would it be possible to check the array/grid for all the true values and let the player be-able to walk in those cells?
Sorry for my horrible explaining skills. Look at the photo below to get an idea. The bottom line is instead of checking the map for player collision, I’d rather just allow the player’s character to walk in the cells that have a true(1) value. Since the array will be the exact size as the map, it will look as if the player is actually walking on the map, when the player is actually walking threw the array/grid cells.
The brown blocks are walls that the player shouldn’t be able to walk through. Therefore the brown blocks would hold a 0(false) value. The gray is the walk-able area which holds the 1(true) value, letting the methods of character movement know that the player is allowed to move in those areas. The green dot is the player.
It just seems it would be easier and processer friendly to check a boolean value vs checking a players position, then having to check the tiles position and then having to compare the two for collision detection.
If this is indeed possible it would make map creation and checking for collision detection much easier! Even though if it is indeed possible there wouldn’t be any need for collision detection since the player wouldn’t be allowed to walk anywhere with a false value set in the array in the first playce
Thanks in advance for any ideas or replys.