SIDE-BY-SIDE COMPARISON
C64 and Atari 2600 |
![]() Ring Raiders More Rings won 1st Place with a Wild award as a Development Tool in the Fjälldata 2025 programming contest in Norway! Includes a new Rainbow Warp Title screen. |
7 Layers of Graphics for 3D Animation 1. Sprites Synthetic 160x100 graphics mode for sprites (x,y addressable). player1x=80 player1y=50 2. Semigraphics 20x10 semigraphic tile pixel playfield (x,y addressable). vwpixel(10,5,flip) 3. Sprite scalling and rotation animation Sprites have three levels of scaling animation and can be rotated backwards and upsidedown. REFP0=0:rem horizontal axis flip for sprite loadsprite0upsidedown(8):rem vertical axis flip for sprite NUSIZ0=255:rem scale sprite size 4. Animated texture mapping Tiles can be texture mapped and animated with hi res petscii 2x2 per tile. Background tiles can be texture mapped as well. TileCharacters(3)=205:BackgroundTileCharacters(0)=49 5. palette switching animation The playfield consists of 10 rows of color with palette switching commands. rowcolors(0)=2:rowcolors(1)=7:rowcolors(2)=6:rowcolors(3)=12:rem Gray 6. Camera animation The camera can scroll the screen while everything is moving for animation on animation. Sprites may be bound to tiles or can be free floating. The virtual world is 92x20 tile pixels or 5x2 Television screens. BITIndex=71:rem set camera x coordinate scrollvirtualworldtoggle=1: rem move camera to new position next frame 7. Motion Blur animation MBR filter for a sharper image or motion blur animation. |
This white paper discusses embedded Development Tools as plug-in's for Video Games. Ring Raiders is used as a model to illustrate. About The musical development suite in Ring Raiders video game were written using a custom player that supports scripting. These dev tools can be added to any game that uses the player. Detailed Instructions To bring up the pattern Editor in Ring Raiders press left-shift + Joystick right. Patterns are 5 bytes each and can be modeled and heard directly on the SID in the Tracker Editor. Control patterns are skipped because they map subtunes to events in the game (control patterns end with 0). Watch the walk-through example in the demo video above. Note the main tune is the first 8 patterns so makes it easy to learn about Trackers and hear changes as you model them. And then exit the Editor to listen to your SID compositions in the game. Fx Controls Holding the button down for 20 seconds during the game will rebuild the SID algorithmically. You can use the Editor to see the changes to the patterns from the algorithm. New: left-shift + Joystick left will use a different algorithm to rebuild the SID The rebuilding algorithms can also affect each other. Left-shift + Joystick up/down during the game will similarly rebuild the SID Control and ADSR register arrays for the 38 instruments. Creating a new set of SID instruments. The instrument set is indicated below the SID label, the SID rebuild revision to the right. This Tracker is a lot of fun to play with and it's different, share your musical creations! How to edit subtunes and sound effects: --------------------------------------------------- The main riff is the first 8 patterns and starts at 000. Subtune 1 starts at 045 and plays when you push the stick left in the game. If the stick is held, pattern 045 repeats as a sound effect, when released the subtune plays. Subtune 2 starts at 075 and plays when you push the stick right in the game. Subtune 3 starts at 160 and plays when you push the stick up in the game. Subtune 4 starts at 230 and plays when you push the stick down in the game. Saving your new soundtrack: If you have an Action Replay or other flashcart that can take a snapshot you can save the game with the new music and sound Fx you have written, or created alogorithmically. Your new image will start up with the new music and Fx in place! Another indirect method is to edit the chiptune patterns in the BASIC program listing to match the C64 Editor screens and reassemble it (see end of workstage). This method allows the Commodore 64 to be used as a development tool to create new music for the Atari 2600 as well. Playing Ring Raiders: ------------------------- Ring Raiders is like Star Raiders except you can control your Phonton Torpedoes. The game is also inspired by Star Ship on the VCS and Battle Sphere Gold on the Jaguar Protect the Rings of Saturn! :) How high can you score in 5 minutes? Hi score is captured with a green flash. |