Changes

Games

164 bytes added, 16:32, 17 February 2007
all
=== Page Flipping===
Most good CPC games use the page-flipping technique in order to display sprites and/or scroll the playing area smoothly. In especial, two memory areas (instead of one) are reserved for the screen ram. In each frame, one of the two screens is displayed in turn, by using the hardware (exactly by changing the screen-offset, Reg 12 and 13 of the CRTC). At the same time, the next frame is being drawn in the non-visible screen until the next frame fly back signal. Then, the same cycle continues on and on for (each) next frame.
The big advantage of this technique is that we can use a whole frame's machine-time for our code (with no animation problems that arrise when we alter screen ram at the same time the electron beam displays it on the monitor). On the other hand, page flipping eats up a lot of memory area (which is crucial especially for 64Kb machines).This explains why a lot of games have very small game-areas !
=== Hardware Scrolling===
* R3 used to make an approximate byte lenght horizontal scroll (not really smooth)
|}
=== Rupture(or splitscreen) ===
A technique to split the screen into more than one block vertically.
Anonymous user