In lesson 1 we introduced the idea of a bit. We learned that a bit is the smallest piece of information in a computer. We learned that a bit can have either the value 1 or 0. We also learned that we as programmers can assign any meaning we wish to individual bits used by our program.
In this lesson we will look at the important programming practice of enumeration.
Quote
e·nu·mer·ate
1. To count off or name one by one; list: A spokesperson enumerated the strikers' demands.
2. To determine the number of; count.
1. To count off or name one by one; list: A spokesperson enumerated the strikers' demands.
2. To determine the number of; count.
Let's say you want the to write a computer game where the player is picking fruit. There are 4 kinds of fruit in the game: Apples, Oranges, Bananas, and Cherries. All 4 kinds of fruit can be on the screen at the same time. Therefore, your program must keep track of each piece of fruit on the screen, and remember what kind of fruit it is so that it can draw the fruit correctly, and award the correct points to the player when they pick the fruit.
The easiest way to track the different kinds of fruit is to enumerate them
Apple = 0
Orange = 1
Banana = 2
Cherries = 3
All information in a computer is stored in bits so let's convert that to a bit:
Apple = 0
Orange = 1
Banana = ??
Uh oh! We have run out values to enumerate our fruit because a bit can only be 0 or 1. To enumerate the fruit we will have to combine 2 bits together like this:
Apple = 00
Orange = 01
Banana = 10
Cherries = 11
The 2 bits together have 4 possible combinations so we can enumerate the fruits in our program using 2 bits for each piece of fruit.
What if our program needs to have 8 different kinds of fruit, how many bits do we need then?
The answer is 3 bits. 3 bits together have 8 value combinations
000
001
010
011
100
101
110
111 = 8 combinations.
The fomula for the number of combinations possible given N bits is:
combinations = 2 ^ N = (2 to the power of N)
So an enumeration of W items will require a minimum of:
N = log2 (W)
Exercises:
------------
Here are some real world examples of enumeration from Atari 2600 games. For each item calculate the minimum bits the program must use to keep track of the particular piece of information.
1. The catridge combat has 27 game variations, what is the minimum number of bits the combat program can use to keep track of the current variation?
2. The 112 game variations for Space Invaders.
3. The Atari 2600 Display is 160 pixels horizontally by 192 pixels vertically (NTSC) To position a player on the screen you must enumerate its horizontal and vertical position. How many bits are needed to store the horizontal and vertical positions of the player?
4. In Surround the "arena" is 40 blocks wide by 20 blocks high. Each block in the playfield is either filled or empty. How many bits are needed to remember the status of the playfield? How many bits are needed to remember the horizontal and vertical position of each player?
I will post the answers in 24 hours.













