Submission #8407: nymx's C64 Maze-Mania in 03:42.60

(Link to video)
Commodore 64
baseline
BizHawk 2.9.0
13317
59.826089499853765
3567
PowerOn
1985-09.d64
Submitted by nymx on 7/4/2023 3:55:57 AM
Submission Comments

Maze-Mania (Compute's Gazette)

Here's a written guarantee that you won't find this game easy or dull. From the start, " Maze-Mania" puts your brain and hand to the test. The object is simple: Travel through the maze and exit. But getting there within the time limit is a rare occasion.
The article for this game can be found on page 68 of Issue 27 (September 1985): https://archive.org/details/1985-09-computegazette/page/n69/mode/2up

Why TAS This Game?

The continuation of TASing games from my all-time favorite magazine, Compute's Gazette. This makes my 16th TAS from this series.
This was one of my favorites. I played it a lot, as it was quite addictive. It was programmed by a repeat coder named Mark Tuttle, which has a number of other fine games through out the magazine's life. What I find amazing is that the crew at "Compute's Gazette" challenged themselves to see how far they could get. The highest level achieved was number 9. I'm not surprised, as my analysis and TASing of this game shows that Levels 8 through 10 are completely unpredictable and completely unfair. It would actually require RNG manipulating in order to set the levels to be playable...as some layouts and block speeds are just too much to handle for a human.
Previous Compute's Gazette submissions include (In order of submission):

Game Ending

Here is another game that has a true ending, with a congratulations screen.

Effort In TASing

This is the first BASIC written game that I've submitted. Thankfully, this makes it much easier to analyse and understand what is going on with figuring out how to make the TAS faster. This happens to be the 3rd game I've TAS, that was a BASIC sourced game. After seeing the same problems in this TAS, as with the other two, I finally had to sit down and figure out what is going on with controlling RNG. Below are some details that I determined for manipulating this game.
  • First off, I need to mention that all my previous submissions were written in pure Machine Language (ML). RNG is completely determined in a different manner than BASIC written games. Instead of calling on the BASIC command, ML programs will scan an address to get a single digit from the last value of the "tick" counter. This is used by applications in different ways to perform different actions....thus the feel of RNG.
  • RNG for BASIC games are controlled with the use of the command, RND. In this case, randomization is determined by use of a positive number. In viewing the code, you will see that it is written as "RND(1)". Because of this use, the game cannot be manipulated during play. The parts that are controlled, with this method...are the maze "holes" laid out on the template maze of each screen.
  • This game also includes ML routines that are loaded up, after starting the game. Because of this, certainly parts of the game can be controlled in the manner of a purely ML written game. In this case, the moving blocks are controlled by this routine and can be manipulated to have various speeds; although, very difficult to control precisely.
  • ML RNG can be controlled by pressing keys or a joystick direction. By doing this, an interrupt is made and the tick value will be different...by the time it is requested for an RNG value.
  • BASIC RNG can be controlled by doing a "Pre-load" command, using RND before loading up the game. No matter what the situation is, if a program is calling on the use of RND(1), it will always be the same sequence of randomization. For some games, this has been a flaw and was corrected in future issues...due to it being extremely predictable.
Information about the operation of the RND command can be found via here.

Human Comparison

This is not exactly the same game, but is was modified for some unknown reason; however, seems to be more cosmetic and nothing to do with game play. Yet, it still remains faithful to the original and does a great job of showing how a human struggles with it.

Special Thanks

  • DrD2k9 for talks about my discovery of controlling RNG with using the RND command.

DrD2k9: Claiming for judging.
DrD2k9: I can see where this game would have been torture for a human to try and complete.
While this is the first instance of someone using the RND command being to seed RNG, it's a valid use of the system. Further, because it's performed before the game is even loaded into memory, the command is simply setting up the system environment. Essentially this is makes it akin to setting an RTC in PC emulators or the various other systems that have real time clocks and use that time information for RNG seeding. Interestingly, this would have been doable on a real C64 system (potentially even easier than setting an RTC as we do for other systems), thus there's no reason for us to exclude that ability here as it doesn't modify the game in any way.
Regarding future games that may want to use the RND command to affect RNG: I see no reason why it couldn't also be used after loading of the game and before a RUN command is issued. Again this would simply be setting an RNG seed variable and not modifying the game itself in any way.
Regarding the game mode choice:
The game presents 3 options: Normal, Fade, and Nervous.
  • This run uses normal mode.
  • In Fade mode, the enemy squares fade in and out, requiring the player to asses their position even when they have disappeared as they can still kill the player.
  • In Nervous mode, the whole playfield shakes around the screen. (annoyingly so, in my opinion)
The graphical variations to these modes create additional difficulty for human players trying to visual track enemies/wall gaps. However, because the mode variations are only graphical, there's no increased difficulty from a game mechanics perspective; and thus they don't introduce any new TASing challenge per se.
Personally, I feel the normal version used in this run is both the most interesting and the least distracting visually.
Unfortunately, simply changing modes prevents this submissions inputs from syncing. Likely due to RNG variations, additional CPU computations due to added visual activity, or a combination of both.
Accepting and setting precedent for use of RND commands as part of system environment setup for C64 games.
fsvgm777: Processing.
Last Edited by fsvgm777 on 7/21/2023 5:27 PM
Page History Latest diff List referrers