Skip to content

konovalov-aleks/reSL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

banner

reSL

The reverse engineered DOS game ShortLine v1.1. (DOKA 1992)

The original game can be downloaded from the link below (version 1.1): https://www.old-games.ru/game/download/1232.html

Current status

reSL

Progress:

~99% done

You can try the live demo here: https://konovalov-aleks.github.io/

(but it doesn't work as smoothly as the native version)

TODO

  1. Consctruction mode
  2. Main menu
  3. Records [WIP]
  4. Archive
  5. Demo
  6. "Game over" screen
  7. "Happy 2000 year" screen
  8. Loading screen
  9. Pause menu
  10. Small font rendering
  11. "Manual" screen

Idea and goals of the project:

This project does not pursue any profit and will not be used for commercial purposes. The goal of the project is to gain fun and experience, as well as to port my favorite childhood game to modern mobile platforms, adapt it to touch controls.

Why did I take v1.1, not latest v2.0?

I initially started reverse engeneering the second version. But I soon realized that:

  • this game is a bit different from the one I played in childhood.
  • moreover it works much worse - there are no animations, the screen blinks when switching menus.
  • v2.0 is written on Pascal using BGI library. But v1.1 is written on TurboC using assembler parts for working with graphics and to implement some tricky mechanics (ShortLine even uses coroutines written on assembler!).

So, v1.1 works better and it's much more interesting to decompile.

Differences from the original game

The aim of this project is to recreate the game as close as possible to the original ShortLine. Therefore, the existing differences between reSL and the original game are due to one of following reasons:

  • the original game was written for DOS, but reSL should be cross-platform
  • the original game has some obvious bugs and it's weird not to fix them.

Fixed bugs of the original game

  1. If the last game session was stopped when trains are waiting in the first entrance (the yellow dispatcher is showing the flag), then when starting a new game the program will freeze.
  2. The loading screen is momentarily drawn in incorrect colors.

Reverse engineering process

md5 hash of the file I decompiled (see the link to download above):

d3516ca38a6e17a7326141794a041212 SL.EXE

I use Ghidra as a main tool: https://github.com/NationalSecurityAgency/ghidra

At the first step I want to restore the code as close to original program as possible. At this stage it's useful to use a code structure that is close to the original. Thus, I even currently use an ineffective "emulator" of the VGA adapter instead of normal graphics functions.

Every function/global variable has a comment like /* 18fa:08d6 */. This is an address of the function/variable in the original binary. It helps a lot not to be confused while working and also might be interesting for newbies who want to compare the restored code with how it looks in the decompiler.

Снимок экрана 2024-05-04 в 01 45 21

After all the code has been rewritten, in the second stage, I will optimize the code for modern platforms and adapt the game to a touch interface.

Building reSL

To build reSL you will need:

  • modern C++ compiler with C++20 support (modern clang, GCC, MSVC)
  • cmake
  • SDL2

MacOS

Open the Terminal application and execute the following instructions:

# install dependencies
brew install cmake sdl2
# prepare the build folder
mkdir -p build && cd build
# run cmake
cmake -DCMAKE_BUILD_TYPE=Release ..
# build the project
cmake --build . -j4
# enjoy!
./resl

Linux (Ubuntu)

Open the terminal application and execute the following instructions:

# install dependencies
sudo apt install -y cmake libsdl2-dev
# prepare the build folder
mkdir -p build && cd build
# run cmake
cmake -DCMAKE_BUILD_TYPE=Release ..
# build the project
cmake --build . -j4
# enjoy!
./resl

WebAssembly (emscripten)

  1. install emscripten https://emscripten.org/docs/getting_started/downloads.html

  2. in the terminal:

mkdir -p build && cd build
emcmake cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j4

Legal notes:

The original game was created by Doka in 1992.

So, it's very old and now it's not clear how to contact the authors to get permission to reverse engineer their product. I hope they don't mind me giving the game a second life and adapting it to modern platforms.

I don't plan to make any profit, this project is just for fun. The rights to all algorithms in the restored code belong to the authors of the original game (Andrei Snegov, DOKA).