An open API service indexing awesome lists of open source software.

https://github.com/alemart/opensurge

Surge Engine: a 2D retro game engine for making your dreams come true!
https://github.com/alemart/opensurge

allegro game-development game-engine platformer-game retro-games

Last synced: about 1 month ago
JSON representation

Surge Engine: a 2D retro game engine for making your dreams come true!

Awesome Lists containing this project

README

          




Surge Engine


Make your dreams come true!



[![Latest release](https://img.shields.io/github/v/release/alemart/opensurge?color=blue)](https://github.com/alemart/opensurge/releases)
[![License](https://img.shields.io/github/license/alemart/opensurge?color=brightgreen)](#license)
[![GitHub Sponsors](https://img.shields.io/github/sponsors/alemart?logo=github)](https://github.com/sponsors/alemart)
[![Discord server](https://img.shields.io/discord/493384707937927178?color=5662f6&logo=discord&logoColor=white)](https://discord.gg/w8JqM7m)

Demo



## Overview

**Make your dreams come true!** Open Surge Engine is an open-source 2D retro game engine designed to make your dreams come true!

**It's a ton of fun!** Surge the Rabbit is a featured jump 'n' run created with the Open Surge Engine. It's made in the spirit of classic 16-bit Sonic platformers of the 1990s. Play as Surge in fun and exciting levels filled with challenges!

**Unleash your creativity!** Create your own amazing games and play them on your PC and on your mobile device! Share your games with your friends! It's limitless fun!

**A powerful engine for retro games!** One of the core elements of the engine is [SurgeScript](https://github.com/alemart/surgescript), a scripting language for games. Use it to create new gameplay mechanics, characters with special abilities, bosses, and much more! The sky is the limit!

Open Surge Engine is an amazing tool for learning game development, programming, digital art, and the nature of free and open-source software in a playful way.

Official website:

## Download

By purchasing your copy, you can show your appreciation and support future development, user assistance and teaching with our game engine.

[Get it on itch.io](https://alemart.itch.io/opensurge)

## Packaging

[![Packaging status](https://repology.org/badge/vertical-allrepos/opensurge.svg?columns=3&minversion=0.6.1.0)](https://repology.org/project/opensurge/versions)

## Documentation

* [SurgeScript documentation](https://docs.opensurge2d.org)
* [Open Surge Wiki](https://github.com/alemart/opensurge/wiki)
* [How to contribute](https://github.com/alemart/opensurge/blob/master/CONTRIBUTING.md)

## Modding

### Where do I find MODs?

[Here](https://www.youtube.com/playlist?list=PLbPToEpHpU2dkXfNGn6aFc5RzM103DC5l).

### How do I play a MOD?

1. Download the MOD
- Windows / Android users: just download it
- Flatpak users: download it to `~/Downloads` (`$XDG_DOWNLOAD_DIR`)
- Snap users: download it to your home folder
- Other \*nix users: preferably download it to your home folder
2. Load the game
- Windows users: extract the package and launch the executable
- Android users: load the .zip file via options screen
- Other users: load the game via options screen (or via [command line](#command-line-options))

> By default, the Flatpak edition (Linux) cannot access your home folder. You may give it permission by running the following command:
>
> `flatpak override --user --filesystem=$HOME org.opensurge2d.OpenSurge`
>
> You will be able to load MODs from your home folder then.

### How can I create a MOD?

Read [Introduction to Modding](https://github.com/alemart/opensurge/wiki/introduction) at the Wiki.

## About

The project is written from the ground up in C language, using the [Allegro game programming library](http://liballeg.org). It has been started by [Alexandre Martins](http://github.com/alemart), a computer scientist from Brazil. Nowadays, it has contributors all over the world!

## License

[GPLv3](https://github.com/alemart/opensurge/blob/master/LICENSE)

## Advanced

### Command-line options

Run `opensurge --help`

### Paths

Check the *Engine information* at the options screen to see where the files are.

Content is distributed in the following locations:

- `bin`: executable file
- `share`: game assets (images, audio, levels, scripts, etc.)
- `user`: user-modifiable data (preferences, logs, screenshots, additional assets such as user-made levels)

The default paths of these locations vary according to the platform:

- Windows (.zip package):
* `bin`: `./opensurge.exe`
* `share`: `.`
* `user`: `.` or `%OPENSURGE_USER_PATH%`

- Linux:
* `bin`: `/usr/games/opensurge`
* `share`: `/usr/share/games/opensurge/`
* `user`: `~/.local/share/opensurge/` or `$XDG_DATA_HOME/opensurge/` or `$OPENSURGE_USER_PATH`

- Linux (Flatpak):
* `bin`: `flatpak run org.opensurge2d.OpenSurge`
* `share`: `/var/lib/flatpak/app/org.opensurge2d.OpenSurge/current/active/files/share/opensurge/`
* `user`: `~/.var/app/org.opensurge2d.OpenSurge/data/opensurge/` or `$OPENSURGE_USER_PATH`

If you use `$OPENSURGE_USER_PATH`, make sure it points to a subdirectory of `~/Downloads` (`$XDG_DOWNLOAD_DIR`).

- Linux (Snap):
* `bin`: `snap run opensurge`
* `share`: `/snap/opensurge/current/share/games/opensurge/`
* `user`: `~/snap/opensurge/current/.local/share/opensurge/` or `$OPENSURGE_USER_PATH`

If you use `$OPENSURGE_USER_PATH`, make sure it points to a subdirectory of your home folder.

- macOS:
* `bin`: `Contents/MacOS`
* `share`: `Contents/Resources`
* `user`: `~/Library/Application Support/opensurge/` or `$OPENSURGE_USER_PATH`

If you intend to hack the game, it's easier to have all files in the same place (read-write), because some of the above folders are read-only. Download the sources (use the same engine version), extract them to your filesystem and use the `--game-folder` command-line option.

Tip: you can also use the command-line option `--verbose`. The directories will appear at the beginning of the output.

### Compiling the engine

Dependencies:

| | Recommended | Minimum |
|-|-------------|---------|
| [Allegro](http://liballeg.org) | 5.2.11 | 5.2.7 \* |
| [SurgeScript](http://github.com/alemart/surgescript) | 0.6.1 | 0.6.1 |
| [PhysicsFS](https://github.com/icculus/physfs) | 3.2.0 | 3.0.2 |

\* Minimum version on Android: 5.2.10

Compile as usual:

```
cd /path/to/opensurge/
mkdir build && cd build
cmake ..
make -j`nproc`
sudo make install
```

Use `cmake-gui` or `ccmake` to tweak the compile-time options.