Using SP1 for Scroller Games

(This is the first in a series of articles about developing scrolling games on the ZX Spectrum using Z88DK toolchain and the SP1 Sprite Library by Alvin Albrecht. All mentioned code and also draft versions of these articles can be found at the GitHub repo )

My previous proofs of concept for vertical scrollers on the ZX spectrum (see doc/DESIGN-NOTES.md) were based on double buffering, with an offscreen buffer arranged as a linear byte array. This layout very much simplifies the scrolling and screen transfer routines, and also the sprite routines. Linear memory layouts are simple and trivial to work with.

Having done the initial POC for the buffer, scrolling and transfer routines, and with the scroller already working on the screen (see tests in src/technique-{1,2} directories), I found myself having to write the sprite routines if I wanted to do any games. Sprite routines would have been simple to write for the linear buffer, but the point was that I already had extensive experience using the SP1 library (a great sprite library for the Spectrum written by Alvin Albrecht), and even fixing and modifying it; SP1 already has the capabilities for handling the most important layers in a game: the background layer and the sprite layer. I felt it could be really good if SP1 could be used for handling those layers in my Speccy scroller games.

Then I remembered that when specifying the background tiles in SP1 for each character position, you use a 16-bit value that can specify 2 tile types:

I use the second mode in my RAGE1 game library as a way to escape the 255 tile limit, and I am quite familiar with it, so I realized that this method could be used in the following way:

I have made a simple POC (see src/sp1-baselinedirectory) which configures all SP1 tile pointers in the scrolling area to a single tile which I trivially manipulate on each frame to get a feel of the scrolling movement; just to verify if SP1 is quick enough to do this.

I found that of course it can’t do 50 fps (I expected that), but so far I have found it quite capable, so I’ll do more experiments by tweaking e.g. the scrolling area, the scrolling speed, number of sprites, etc.