Go to file
Paul Chote 017d8bf484 Update .gitignore
* Remove obsolete entries
* Add .idea (JetBrains Rider cache)
2021-01-30 15:50:04 +01:00
.github/workflows Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
mods/example Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
OpenRA.Mods.Example Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
packaging Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
.editorconfig Added an .editorconfig file to the repository 2019-10-27 01:33:59 +02:00
.gitignore Update .gitignore 2021-01-30 15:50:04 +01:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT and CONTRIBUTING documentation. 2017-08-22 20:45:30 +01:00
CONTRIBUTING.md Note the PowerShell >=3 requirement in CONTRIBUTING.md. 2017-09-23 20:36:53 +01:00
COPYING Add GPLv3 COPYING file 2017-07-23 12:06:54 +01:00
ExampleMod.sln Update scripts to work with the new engine toolchain. 2019-08-25 17:21:23 +01:00
fetch-engine.sh Replace "template" with "SDK" in error messages. 2020-11-28 19:30:48 +01:00
launch-dedicated.cmd Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
launch-dedicated.sh Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
launch-game.cmd Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
launch-game.sh Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
make.cmd Try to bypass the security warning 2017-05-27 12:01:29 +02:00
make.ps1 Remove broken 'docs' target from the windows make script. 2021-01-30 15:50:04 +01:00
Makefile Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
mod.config Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
README.md Add a README paragraph about data licensing. 2018-07-01 18:11:12 +01:00
utility.cmd Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00
utility.sh Update scripts, packaging, and example mod for playtest-20201213. 2021-01-30 15:50:04 +01:00

This repository contains a bare development environment for creating a new mod/game on the OpenRA engine.

These scripts and support files wrap and automatically manage a copy of the OpenRA game engine and common files during development, and generates Windows installers, macOS .app bundles, and Linux AppImages for distribution.

The key scripts in this SDK are:

Windows Linux / macOS Purpose
make.cmd Makefile Compiles your project and fetches dependencies (including the OpenRA engine).
launch-game.cmd launch-game.sh Launches your project from the SDK directory.
launch-server.cmd launch-server.sh Launches a dedicated server for your project from the SDK directory.
utility.cmd utility.sh Launches the OpenRA Utility for your project.
<not available> packaging/package-all.sh Generates release installers for your project.

To launch your project from the development environment you must first compile the project by running make.cmd (Windows), or opening a terminal in the SDK directory and running make (Linux / macOS). You can then run launch-game.cmd (Windows) or launch-game.sh (Linux / macOS) to run your game.

The example mod included in this repository provides the bare minimum structure to launch to the in-game main menu for the sole purpose of demonstrating the SDK. See Getting Started on the Wiki for instructions on how to adapt this template for your own projects. For common questions, please see the FAQ. See Updating to a new SDK or Engine version for a guide on updating your mod a newer OpenRA release.

The OpenRA engine and SDK scripts are made available under the GPLv3 license, and any executable code developed by a mod and loaded by the engine (i.e. custom mod DLLs, lua scripts) must be released under a compatible license. Your mod data files (artwork, sound files, yaml, etc) are not part of your mod's source code, so your are free to distribute these assets under different terms (e.g. allowing redistribution in unmodified form, but not for use in other works).