The rules of "Pool" are simple — you try to sink the billiard balls on the table by aiming and shooting the white cue ball.
The VIC version accepts either keyboard or joystick input (for details on how to play 64 Pool, see the programmer's
notes accompanying this article). Use the joystick (or f3 key) to rotate the cue stick around the cue ball. Shoot it by pressing
and holding the fire button (or f1). The longer you hold it down, the softer the shot. For a hard shot, release the button or key
immediately.
Your turn continues as long as you keep pocketing balls. If you miss or scratch, your opponent takes over
(if you're playing solo, try playing left against right hand). After a scratch, the cue ball may be positioned anywhere behind the
scratch line using the joystick (or f3 and f5). Once you've selected a spot, tap the fire button (or f1) and continue playing.
The 15 balls are randomly placed after the last ball is sunk. You can then continue the game (up to a mutually agreeable
limit) or respond to the prompt for a new game.
Kevin Mykytyn, Editorial Programmer
Rather than translating the VIC version directly to the 64, an entirely new high-resolution Pool was written. It requires a
joystick (two joysticks in the two-player version).
The 64 version is written entirely in machine language, so MLX is required to type it in. If you do not have a copy of
MLX (published periodically in the GAZETTE), type it in and save it to tape or disk. Then run it, and enter the following
information:
Starting Address: 49152
Ending Address: 52905
When you've finished, save the program. Load it back into the computer using a secondary address of 1:
LOAD "POOL",8,1 (disk) or LOAD "POOL",1,1 (tape). SYS 49152 starts the program.
The title screen comes up first, with a ragtime melody playing in the background. You choose a one- or two-player game. The screen clears and the pool table appears.
At the start of the game, the white cue ball is at one end of the table and six balls are arranged at the other end. There are six (rather than 15) because only eight sprites are available on the 64. Using the joystick, position the cue ball in the "kitchen," behind the scratch line. When you're ready to shoot, press the joystick button once. A crosshair appears on top of the cue ball.
Move the crosshair in the direction you want to shoot. Unlike the VIC version, which has eight directions of movement, 64 Pool allows you to shoot in any direction. Pressing the joystick button starts the cue ball rolling,
The distance between the cue ball and crosshair determines the strength of the shot. The farther away, the harder the shot. There is a limit on how far you can move the crosshair (approximately two-thirds the length of the table). On the initial break, you'll probably want to shoot hard. On later turns, the strength of the shot will determine how far the cue ball travels after a collision. Strategic soft shots can help you set up the table for the next shot.
The goal in the one player game is to clear the table in the fewest number of shots (the record here at COMPUTE! Publications is eight). When all balls are in the pockets, you're ranked according to your ability, from Pro (the best) to Pool Shark, Amateur, and Novice.
In the two-player game, you try to outshoot your opponent. When you sink a ball, it's placed on your side of the screen. With six balls in play, tie games are possible.
A scratch occurs when you knock the cue ball into a pocket, or when the cue ball doesn't hit anything before coming to a stop. You lose your turn, one of the balls to your credit is put back on the table, and the cue ball is placed in the starting position. Your opponent can then put the cue ball anywhere behind the scratch line.
64 Pool does not completely follow the laws of physics, although it offers a realistic simulation. The sprites are moved pixel by pixel, but the movement is calculated in 256ths of a pixel for increased accuracy.