4cade/res/attract-mode.txt

105 lines
2.4 KiB
Plaintext
Raw Normal View History

2018-11-14 19:04:57 +00:00
# List of candidates for self-running 'captive' demos
#
# Not all games are good candidates. Some have no demo mode at all.
# Others technically have one but it's visually uninteresting or too short.
# Others are ruled out by technical constraints. Due to the architecture of
# the launcher, all captive demos must run entirely in main memory (48K).
# NO languard card, NO auxmem!
#
# We have enough disk space that we don't worry too much about it. (Wow.)
# Generally we start with an uncompressed ProDOS port of the entire game
# and whittle it down to just the files it needs for its demo mode, then
# apply patches so that it
#
# - returns control after the natural end of the demo cycle
# - returns control on any keypress
# - returns control on any button press (note: some games don't support
# joystick buttons at all, and we don't add button support, but if you
# can start the game by pressing a button, we need to ensure that that
# returns control instead)
# - disables all sound output
#
# 'Returning control' involves activating RAM bank 1 read access and
# jumping to $D000 (labeled as |Reenter| in the source code). The launcher
# puts this code at $0100 before executing a captive demo, so generally
# you can just put 'JMP $0100' anywhere. If a particular game overwrites
# this area of the stack page, you will need to find 6 bytes for the
# 'LDA $C088 / JMP $D000' instructions yourself.
#
# Notes on completed and in-progress captive demos are in res/notes/
#
2018-11-13 01:34:24 +00:00
# TODO
Agent USA
Alien Ambush
Alien Downpour
Alien Rain
Apple Cider Spider
Aquatron
Bouncing Kamungas
Buzzard Bait
Canyon Climber
Ceiling Zero
Choplifter
Conan
Drelbs
Dung Beetles
Firebird
Flip Out
Formula 1 Racer
Galaxian
Gamma Goblins
Gumball
High Rise
2018-11-13 01:36:50 +00:00
Jungle Hunt [priority]
2018-11-13 01:34:24 +00:00
Karateka
Lady Tut
Lost Tomb
Mr. Cool
Nibbler
O'Riley's Mine
Pac-Man
Pie-Man
2018-11-13 01:36:50 +00:00
Pooyan [priority]
2018-11-13 01:34:24 +00:00
Repton
Ribbit
Robotron 2084
2018-11-13 01:36:50 +00:00
Sammy Lightfoot [priority]
2018-11-13 01:34:24 +00:00
Serpentine
Snake Byte
Snoggle
2018-11-13 01:36:50 +00:00
Spider Raid [priority]
2018-11-13 01:34:24 +00:00
Starblaster
Stargate
Stellar 7
Succession
Tag Team Wrestling
Thunder Bombs
Track N Field
Tubeway ][
Vindicator
# uncompressed but unpatched
Hard Hat Mack
2018-11-17 01:55:46 +00:00
Plasmania
2018-11-13 01:34:24 +00:00
# done
2018-11-16 22:37:58 +00:00
Bolo
2018-11-13 01:34:24 +00:00
BurgerTime
2018-11-16 22:37:58 +00:00
Championship Lode Runner
2018-11-16 23:07:10 +00:00
Dino Eggs
2018-11-13 01:34:24 +00:00
Lode Runner
Pest Patrol
Pitfall II
Sneakers
Spare Change
2018-11-17 01:55:46 +00:00
Spy Hunter
2018-11-15 00:02:23 +00:00
Spy's Demise
2018-11-13 01:34:24 +00:00
Wavy Navy
# obvious candidates that we're skipping
2018-11-14 19:04:57 +00:00
Arkanoid (requires 64K)
2018-11-13 01:34:24 +00:00
Drol (attract mode is minimal)
Mr. Do (attract mode requires 64K)
2018-11-14 19:04:57 +00:00
Prince of Persia (requires 128K)