This is the second attempt to make a game for ZX Spectrum.
Long-long ago, between the world of darkness and the world of living people, it was built - a line of defense, a trap for dark forces. The Net. But from the blows of the creatures of darkness, cracks are already scattering across it. If the defenses collapse, the world will end. The only hope is to repair the cliffs and restore the fallen areas before the entire Network collapses.
But who can handle this task?
You?
The hero of the game is a rookie in the army of Light, protecting the sparkling The Net from the intrigues of the Dark Forces, a fighter against darkness and chaos, a technical support employee who first went to work. evil, restart the routers, and turn off and then turn on the frozen equipment. Each task consists of two stages: a bike ride, where you need to overcome a winding path in the allotted time, and the answer to a question, with a choice of one of three options. Five attempts, and the attempt is wasted both in the wrong answer to the question and in the fall from the bike.
Let the Evil tremble! Our hero is already close!
P.S. Beware of puddles on the road. "
- nodejs and npm because assets preparing scripts written in JavaScript.
- bin2c
- zmakebas
- cmake
- sdcc
- Fuse emulator
In a project root directory:
./assets.h
In a project root directory:
mkdir build
cd build
cmake ..
make
In a project root directory:
./maketape.sh build
This will create tape file sixsixsixsix.tap in a project root directory.
In a project root directory:
./emulate.sh
There are some useful tools in tools directory. These tools are used to compile assets to C headers and are called by assets.sh.
Sprites are extracted from .scr files to C header files. Extractor can extract sprites from several files. Empty sprites are ignored.
Usage:
sprites_extractor [options] file.scr [file2.scr ...]
Options:
Short | Long | Description | Default |
---|---|---|---|
-o | --outfile | out file | sprites.h |
-n | --name | array name | sprites |
-p | --prefix | guard prefix | _ |
-w | --width | sprite width in bytes | 2 |
-h | --height | sprite height in bytes | 16 |
-? | --help | print usage information | false |
Track data are extracted from .svg files. Just create simple .svg with one , give a path name and run converter.
Usage:
track_converter [options] file.svg [file2.svg ...]
Options:
Short | Long | Description | Default |
---|---|---|---|
-d | --directory | Output directory | . |
-p | --prefix | Guard prefix | __TRACK |
-h | --help | print usage information | false |