The associated blog post from Ben Purdy: http://www.benpurdy.com/blog/2014/3/demaking-zelda
What technique is being described here? : "I decided that the map would contain as much game data as possible... I could tweak the placement of things using photoshop rather than having to hunt down data in a text editor." Does this mean he used some kind of PSD to level compiler? If so, where can I find such a software?
Zelda De-make
11–20 of 47 posts
Re: Zelda De-make
#12The associated blog post from Ben Purdy: http://www.benpurdy.com/blog/2014/3/demaking-zelda
What technique is being described here? : "I decided that the map would contain as much game data as possible... I could tweak the placement of things using photoshop rather than having to hunt down data in a text editor." Does this mean he used some kind of PSD to level compiler? If so, where can I find such a software?
Re: Zelda De-make
#13Re: Zelda De-make
#14The associated blog post from Ben Purdy: http://www.benpurdy.com/blog/2014/3/demaking-zelda
What technique is being described here? : "I decided that the map would contain as much game data as possible... I could tweak the placement of things using photoshop rather than having to hunt down data in a text editor." Does this mean he used some kind of PSD to level compiler? If so, where can I find such a software?
Re: Zelda De-make
#15Earlier quoted context omitted.
What technique is being described here? : "I decided that the map would contain as much game data as possible... I could tweak the placement of things using photoshop rather than having to hunt down data in a text editor." Does this mean he used some kind of PSD to level compiler? If so, where can I find such a software?
He says he stored the map data as a single PNG. So, each pixel specifies what tile type that area of the map is.
Re: Zelda De-make
#16This is a fantastic commentary on what makes a game fun. I'm always intrigued by titles that require nearly no art skills. "Thomas Was Alone" kind of surprised me in that way too because it was successful side by side with other titles on Steam while using an art style that was so simplistic almost anyone could have done it.
Re: Zelda De-make
#17Earlier quoted context omitted.
What technique is being described here? : "I decided that the map would contain as much game data as possible... I could tweak the placement of things using photoshop rather than having to hunt down data in a text editor." Does this mean he used some kind of PSD to level compiler? If so, where can I find such a software?
Presumably it just means that the engine constructs the levels from an exported image (such as a png, not a psd), instead of creating the levels from a more complicated data system. Because he knows the exact sizes of things, and "sprites" are a 1 to 1 mapping to game objects, he can easily do this. In a more complex game this would be impossible, but it works very well for his purposes.
Re: Zelda De-make
#18Just wish I could see my current orientation! (Seriously though—from a given screen, I have no idea what the result of A is going to do or what the arrow keys are going to do. If i'm at a square and facing left, hitting the left arrow key will move me left, but if i'm facing any other direction, hitting left will rotate me. It's important that I know which way I'm facing.)
Re: Zelda De-make
#19Pretty good work. Didn't like it at first but then ended up playing it for a few minutes, even though I wasn't in the mood for playing games. I noticed one thing though, I looked into the code (it's neat and tidy!) and the game logic (updates) was built into the render function that gets called with requestAnimationFrame. Might be a problem on devices that aren't refreshing @60 hertz because the game runs as fast as…