DDraceNetwork, a free cooperative platformer game
Go to file
2019-03-27 19:07:05 +01:00
.circleci Run the tests on CircleCI 2019-02-10 17:00:08 +01:00
cmake Add the SHA256 cryptographic hash function 2019-03-08 02:22:57 +01:00
datasrc removed some magic values 2019-03-24 14:34:56 +01:00
other Merge pull request #1949 from ChillerDragon/master 2019-01-05 18:30:41 +01:00
scripts removed some magic values 2019-03-24 14:34:56 +01:00
src Add bound check in datafile.cpp anywhere m_ppDataPtrs is accessed as an array. Should fix #2073 2019-03-27 19:07:05 +01:00
.gitignore Add GTest-related stuff to .gitignore 2019-03-07 14:53:54 +01:00
.gitmodules Add branch info (master) to .gitmodules 2018-11-11 13:46:50 +01:00
.travis.yml Add Travis CI for macOS builds 2019-03-10 18:53:27 +01:00
appveyor.yml Run tests on AppVeyor 2019-02-10 17:00:08 +01:00
bam.lua added a config option for old gcc compilers which need -msse2 flag to use _mm_pause (https://gcc-patches.gcc.gnu.narkive.com/Ypx83P9u/patch-rfa-move-x86-mm-pause-out-of-pragma-target-sse-scope) 2019-02-10 18:48:37 +01:00
CMakeLists.txt Merge pull request #2039 from Dune-jr/feature-soundnotif 2019-03-08 19:35:59 +01:00
configure.lua switched gcc and cl compiler detection. (#1503) 2017-10-03 19:04:22 +02:00
license.txt updated license with a list of authors and updated the year. closes #1548 2018-11-25 18:19:27 +01:00
readme.md Merge pull request #2022 from heinrich5991/pr_readme_build 2019-03-11 19:09:44 +01:00
storage.cfg fixed currentdir and added appdir search path 2017-09-16 19:10:19 +02:00

Packaging status

Teeworlds CircleCI AppVeyor Build Status

A retro multiplayer shooter

Teeworlds is a free online multiplayer game, available for all major operating systems. Battle with up to 16 players in a variety of game modes, including Team Deathmatch and Capture The Flag. You can even design your own maps!

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. See license.txt for full license text including copyright information.

Please visit https://www.teeworlds.com/ for up-to-date information about the game, including new versions, custom maps and much more.

Originally written by Magnus Auvinen.

Building on Linux or macOS

Installing dependencies

# Debian/Ubuntu
sudo apt install build-essential cmake git libfreetype6-dev libsdl2-dev libpnglite-dev libwavpack-dev python3

# Fedora
sudo dnf install @development-tools cmake gcc-c++ git freetype-devel mesa-libGLU-devel pnglite-devel python3 SDL2-devel wavpack-devel

# Arch Linux (doesn't have pnglite in its repositories)
sudo pacman -S --needed base-devel cmake freetype2 git glu python sdl2 wavpack

# macOS
sudo brew install cmake freetype sdl2

Downloading repository

git clone https://github.com/teeworlds/teeworlds --recurse-submodules
cd teeworlds

# If you already cloned the repository before, use:
# git submodule update --init

Building

mkdir -p build
cd build
cmake ..
make

On subsequent builds, you only have to repeat the make step.

You can then run the client with ./teeworlds and the server with ./teeworlds_srv.

Build options

The following options can be passed to the cmake .. command line (between the cmake and ..) in the "Building" step above.

-GNinja: Use the Ninja build system instead of Make. This automatically parallizes the build and is generally faster. (Needs sudo apt install ninja-build on Debian, sudo dnf install ninja-build on Fedora, and sudo pacman -S --needed ninja on Arch Linux.)

-DDEV=ON: Enable debug mode and disable some release mechanics. This leads to faster builds.

-DCLIENT=OFF: Disable generation of the client target. Can be useful on headless servers which don't have graphics libraries like SDL2 installed.

Building on Windows with Visual Studio

Download and install some version of Microsoft Visual Studio (as of writing, MSVS Community 2017) with the following components:

  • Desktop development with C++ (on the main page)
  • Python development (on the main page)
  • Git for Windows (in Individual Components → Code tools)

Run Visual Studio. Open the Team Explorer (View → Team Explorer, Ctrl+^, Ctrl+M). Click Clone (in the Team Explorer, Connect → Local Git Repositories). Enter https://github.com/teeworlds/teeworlds into the first input box. Wait for the download to complete (terminals might pop up).

Wait until the CMake configuration is done (watch the Output windows at the bottom).

Select teeworlds.exe in the Select Startup Item… combobox next to the green arrow. Wait for the compilation to finish.

For subsequent builds you only have to click the button with the green arrow again.

Building on Windows with MinGW

Download and install MinGW with at least the following components:

  • mingw-developer-toolkit-bin
  • mingw32-base-bin
  • mingw32-gcc-g++-bin
  • msys-base-bin

Also install Git (for downloading the source code), Python and CMake.

Open CMake ("CMake (cmake-gui)" in the start menu). Click "Browse Source" (first line) and select the directory with the Teeworlds source code. Next, click "Browse Build" and create a subdirectory for the build (e.g. called "build"). Then click "Configure". Select "MinGW Makefiles" as the generator and click "Finish". Wait a bit (until the progress bar is full). Then click "Generate".

You can now build Teeworlds by executing mingw32-make in the build directory.

Building with bam, guides for all operating systems

You can also compile Teeworlds with bam, a custom build system. Instructions for that can be found at https://www.teeworlds.com/?page=docs&wiki=hacking.