A downloadable game

Drop

Simply hit the space bar at just the right time to drop the package into the landing zone. If you hit the landing zone, it gets smaller for the next round.

You get up to 5 misses, and don't forget to take into account the wind (W)! Inspired by "Test Pilot" by Rob Plass, originally written for Commodore PET.

Key

`S: 100` - score

`L: 5` - lives

`W: 0.1` - wind


Description

0: Clear the screen. Seed random number generator with the time. F=random plane speed. W=random wind. B%=random barrel location

1: X, Y: location of the package. C=column of the plane. Draw barrel, score (S) , lives (L), wind (W).

2: Move the plane, draw new location. If there's a package, clear its last location and and move it, goto 6.

4: If the space bar was hit and no package is in flight, drop it from the plane. Double the plane's speed (since now we're drawing the plane and the package every iteration.)

5: If the plane got to the right side of the screen, erase it, goto 2

6: If the package Y value is not on the bottom line, draw it, goto 4

7: (The package is on the bottom line): If the package X value is between the barrel and its width (E), it's a hit. Increase the score (S) by the width of the barrel, and make the barrel width smaller. Goto 0

8: (It's a miss): Bump the # of lives used. If less than 5, show "MISS" and  wait for a key. Go back to 0. If not, Game over.

Download

Download
description.txt 997 bytes
Download
DROP.DO 506 bytes
Download
instructions.txt 376 bytes
Download
README.md 378 bytes

Install instructions

1. Open the simulator at http://bitchin100.com/CloudT/#!/M100Display

2. Scroll down and click "Choose File" 

3. Pick the "DROP.DO" source file from your computer

4. Click in the big gray box; the cursor should be on BASIC. If not, use your keyboard to highlight BASIC and hit Enter

5. Type run"cas:drop" (including the quotes) and hit ENTER. The program should load and start

Comments

Log in with itch.io to leave a comment.

I would actually consider booting up the Model 100 and typing this in .. any chance we could get a screenshot with the appropriate character encoding?  When I open the .do file in Sublime Text, I fear I don't see the right characters in some cases .. 

Very fun! I like the changing speed and wind that add to the challenge.