• Stars
    star
    114
  • Rank 308,031 (Top 7 %)
  • Language
    C
  • Created about 10 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Classic ZX Spectrum game "The Great Escape" rewritten in portable C

“The Great Escape” Ported to C

Build status

© David Thomas, 2013-2022

17th April 2022

Demo

Overview

This is a port to C of “The Great Escape”: the classic isometric 3D game for the 48K Sinclair ZX Spectrum in which you execute a daring escape from a wartime prison camp. Very loosely based on the film of the same name, it was created by Denton Designs and published in 1986 by Ocean Software.

Over here I reverse engineered the original game from a binary snapshot of the Spectrum version, decoding the graphics, data tables and all of the logic. Originally written in Z80 assembly language, I have translated it into portable C code where now builds and runs exactly like the original on macOS, Windows and RISC OS but without the need of an emulator.

The portable C sources have allowed builds for the web, using emscripten and even the BBC Micro, via a Raspberry Pi second processor.

Project Write-up

http://www.davespace.co.uk/the.great.escape/ (2019)

Goals of the Project

  1. Fully disassemble, document and understand the original game.
    • Attempting to reimplement the game logic forces you to explore every nook and cranny of the game logic, enabling a complete reimplementation to be made and the original code fully understood.
  2. Reimplement The Great Escape in portable C code.
    • While being as accurate a recreation of the original as possible.
  3. Fix some bugs in the original game.
  4. Analyse the before-and-after metrics.
    • How much bigger and slower is the compiled C reimplementation compared to the original game?
    • What can we learn from the original’s tight coding techniques?
  5. Provide a basis for porting the game to contemporary systems of the ZX Spectrum.

Running the Game

The port is an exact recreation of the ZX Spectrum version of The Great Escape including the input device selection menu. It builds and runs on macOS, Windows and RISC OS. The macOS version is currently the "best" featuring the menu music and sound effects which the Windows port lacks.

When you start the game hit 0 to start - this will let you define your preferred keys. You could also choose 3 for Sinclair (keys 6/7/8/9/0). The macOS port will let you choose Kempston and use the arrow keys and . for fire.

There are various other controls which vary by OS. On macOS consult the menus for keyboard shortcuts.

The front-ends attempt to always preserve the game's aspect ratio and snap to whole pixels.

Current Builds

Port Maintained? Notes
macOS CMake Yes My default build; the most likely to be up-to-date. To build use cd <src> && mkdir build && cd build && cmake .. && cmake --build ., or build.sh which does the same.
macOS native Probably To build open up the Xcode project platform/osx/The Great Escape.xcodeproj and build that using ⌘B. Run using ⌘R.
Windows CMake Yes CMake build - like above
Windows native Probably Needs Visual Studio 2013. Trunk build lacks sound and UI niceties (but there are improvements on a branch somewhere...) To build open up the Visual Studio solution platform/windows/TheGreatEscape/TheGreatEscape.sln and build that using F7. Run using F5.
RISC OS Yes Runs on RISC OS 3.1 or later. Sound requires a Risc PC or later with a 16-bit sound system. To build this uses GCCSDK and CMake. If you're nutty enough to want to build the RISC OS version then you might want to talk to me first, or take a look at riscos-ci-build.sh.
Makefile Occasionally This builds a minimal headless (no display) version of the game for testing. It runs the game for 100,000 iterations of the main loop then stops.
SDL Perhaps SDL build. No sound or UI niceties and broken timing.
Browser, via emscripten Maybe Try it here using the arrow keys and . for fire. This uses the SDL build but targets emscripten. The structure of the game is not exactly amenable to the browser world (the RISC OS build has a similar issues).

Consult the github actions file for exact build commands.

Components

TheGreatEscape

This is the main game reimplemented in a single (static) library.

ZXSpectrum

Defines an interface to a virtual ZX Spectrum to which the game talks, replacing the bare-metal IN and OUT instructions and providing a screen to draw to, its border, a keyboard and a speaker. This can convert the Spectrum screen memory to 4bpp or 32bpp pixel formats pretty quickly.

Source Layout

./
    include/            - public headers
        TheGreatEscape/
        ZXSpectrum/
    libraries/          - sources
        TheGreatEscape/
            include/    - private headers
        ZXSpectrum/
    platform/           - platform-specific source
        generic/        - generic Makefile build environment
        osx/            - Xcode build environment
        riscos/         - RISC OS build environment
        windows/        - Windows build environment

Chat

Join the chat at https://gitter.im/The-Great-Escape/Lobby

Related Links

Porting Chuckie Egg

More Repositories

1

The-Great-Escape

Classic ZX Spectrum game "The Great Escape" reverse engineered
Assembly
84
star
2

Aha

Tweaked version of "Aha" - "A Hacker's Assistant" superoptimiser by Henry S. Warren
C
57
star
3

Containers

A library of binary tree data structures (bstree, dstree, trie, crit-bit, PATRICIA) implemented in C
C
39
star
4

DPTLib

My C libraries
C
23
star
5

ChaseHQ

Disassembling Chase H.Q. for the ZX Spectrum
Visual Basic 6.0
17
star
6

Nettle

Nettle is *the* terminal emulator and telnet client for the RISC OS operating system. It utilises the ZapRedraw module for speedy display and is a fast, clean native implementation.
Assembly
15
star
7

Introduction-to-ARM

Examples from my "Introduction to ARM" training course
Assembly
15
star
8

PrivateEye

Image viewer/editor for RISC OS & desktop application library
C
12
star
9

Efficient-C-for-ARM

Examples from my "Efficient C for ARM" training course
C
11
star
10

PhotoFiler

Extends the RISC OS Filer, turning it into an image thumbnailing tool.
Assembly
9
star
11

zerotape

C (de)serialisation library
C
5
star
12

PatchedPRMs

A Collection of patches to the RISCOS Ltd Programmer's Reference Manuals CD
Shell
5
star
13

Porter-Duff

Rewriting the classic Porter-Duff compositing paper in Markdown
Makefile
4
star
14

Toolbar

Application launcher for RISC OS
3
star
15

Utils

Utility scripts
Python
3
star
16

MotionMasks

Investigating using RLE-compressed masks for animation
C
3
star
17

Bit-twiddles

Bit twiddling
C
2
star
18

StableDiffusionWorkflows

My Stable Diffusion workflow(s)
2
star
19

davespace.co.uk

Source of www.davespace.co.uk
HTML
2
star
20

MarbleRunKit

Marble Run Kit for Blender
2
star
21

Test

C++
1
star
22

Acorn-Risc-PC

Scans of Acorn Risc PC hardware
1
star
23

dpt.github.com

1
star