FREE US SHIPPING ON ORDERS $175+

Translation missing: ru.general.language.dropdown_label

Translation missing: ru.general.currency.dropdown_label

0 Cart
Added to Cart
    You have items in your cart
    You have 1 item in your cart
      Total

      Retro Development — retro game

      Smooth Jumping for Platformers

      Smooth Jumping for Platformers

      Since moving around platforms is such an integral part of the platformer experience, it is crucial that this feels good to the player. Getting controls to feel just right though is a balancing act between in-game physics, collision, and game design. It is feat for the truly meaty at heart.

      If this isn't you, fear not! Read on to find out more about these elements, and how we worked through them to make the jumping of Kon, a ghost minotaur, feel great in our upcoming NES platformer, The Meating!

      Read more

      Pushing the Sega Genesis to Its Limits

      Pushing the Sega Genesis to Its Limits

      All of this information is getting pulled from the following series of videos. If you are planning on doing anything along these lines, it is a great idea to not only read this document but also watch the videos that are being referenced. They break down how to do these effects piece by piece in order to achieve these impressive effects: https://www.youtube.com/playlist?list=PLi29TNPrdbwJLiB-VcWSSg-3iNTGJnn_L

       

      2-Color 60FPS Full Screen Animations

      https://youtu.be/c-aQvP7CUAI

       

      Doing a full-screen animation, even at two colors, at 60 frames per second would obviously be way too large to fit on a Genesis game. Even with compression, it would end up being larger than the max size. In order to get around that, the creators of Sonic 3D Blast took a very interesting approach to achieve the effect.

      This is a single frame pulled out of the animation. The way that they were able to create the fluid motion is by making the animation itself ¼ of the perceived amount of frames and then overlaying a handful of frames on top of each other with different palette indexes. They then set palette index0 to a dark color and then the appropriate indexes for the first “subframe” to a light color. Finally, all other indexes are set to the same color as index0. Then they simply cycled the palette between frame changes to animate all of the subframes to create the smooth animation. So while it looks like a smooth 60fps animation, it’s really a very choppy 15fps animation with a ton of palette cycling going on in it. What that means for an artist is that they have to set up each frame to have a series of frames overlaid on top of each other. Each of these subframes needs to be a unique color, as does any area where subframes overlap like in the above image.

       

      3 Dimensional Curvature

      https://youtu.be/z1mcLXEJTkA

       

      This is an interesting trick that makes use of horizontal scan line interrupts and a lot of math to create a 3 Dimensional perspective with a slight curvature to it. The background itself is composed of a tileable portion that is mirrored and then offset in a way to hide the seam where it is mirrored.

      Those are the mirrored segments lined up to show that they are indeed mirrored, but when they are placed next to each other, you can see that the artist did it in a way that the mirroring would be hidden.

      The way the perspective curve is achieved is entirely through using horizontal interrupts to remove select horizontal lines from rendering, and doing it in a curve in order to make it shrink the higher you go up the screen.

      The resulting combination will give you a full image that looks like this:

      In motion with a vertical scroll, it gives off a pretty great sense of perspective. There are about a million different ways this concept can be used as well other than just perspective tricks. Using this method you should be able to actually squish and stretch entire background layers vertically for example.

       

      Full on FMVs in a Genesis game

      https://youtu.be/IehwV2K60r8

       

      The first thing that was done to save a little bit of space to make a fully rendered video actually fit into a full-featured game was the make the video slightly shorter than the native screen resolution, as well as only rendering it at 16 colors (as opposed to using the four available palettes). The video itself is played back at 15fps to further save space. Then finally they used RNC compression on the entire thing to shrink it down even further. The problem with RNC compression though is that it can’t process fast enough for a nearly full-screen 15pfs screen animation. This is where they yet again used horizontal scan-line interrupts.

      This is what the video looks like in the game when you are playing it.

      This is what the image that is being rendered actually is. They took the frames of the video and sliced a bunch of horizontal lines out of it to produce an extremely shortened version of the image. You’ll also notice all of the vertical lines running through the image. RNC compression handles vertical lines a little better than dithering patterns. Those lines will be dealt with shortly though.

      In order to make the image fill the screen, they used horizontal interrupts to duplicate each line of the image, stretching it back out to fill the screen up. That is how they went from the short image above to a nearly full-screen image in the final product.

      In order to change the horizontal lines into a dithering pattern, they offset every other scanline by one pixel, creating the checkerboard pattern that you would expect. They went back and offset the odd scan-lines instead of the even ones and alternated between the two at a constant 60fps. Doing this took what was originally just a series of vertical lines and convincingly turned it into some extra colors. In the end, the entire 12.5 second FMV only ends up weighing roughly 660kb, which is only a small portion of the available 4MB of the total ROM.

       

       

      Organizing NES Graphics Banks

      Organizing NES Graphics Banks
      A guide to organizing banks of sprite and backgrounds tiles to optimize memory for the NES.

      Read more

      Thinking with Banks

      Thinking with Banks
      An explanation of using banks for NES graphics.

      Read more

      Enemy Design 201 - Lethal Wedding

      Enemy Design 201 - Lethal Wedding
      The second in a series about designing enemy concepts and behavior, using examples from Lethal Wedding.

      Read more