DDraceNetwork, a free cooperative platformer game
Go to file
2017-10-16 09:34:07 +02:00
cmake Add a flag -DDOWNLOAD_GTEST to automatically download and build GTest 2017-10-15 09:57:21 +02:00
data Update hungarian.txt (by Cellegen) 2017-10-16 09:34:07 +02:00
datasrc Make most user input teehistoric 2017-09-20 02:23:28 +02:00
ddnet-libs@3d28233cbc builds now 2017-09-08 21:01:38 +02:00
other Merge pull request #836 from heinrich5991/pr_ddnet_unify_icons 2017-09-16 11:18:40 +02:00
scripts First working version of teehistorian 2017-09-20 02:16:11 +02:00
src Use a random token for serverbrowse requests 2017-10-14 21:58:23 +02:00
.gitattributes exclude external libs from github statistics (#740) 2017-04-15 00:36:43 +02:00
.gitignore Add .vs directory that is created by MSVS 2017 2017-10-05 00:15:49 +02:00
.gitmodules Lazy developers 2017-07-25 23:50:50 +02:00
.travis.yml Merge #894 2017-10-15 19:44:22 +00:00
appveyor.yml Merge #894 2017-10-15 19:44:22 +00:00
autoexec_server.cfg Fix a grammar mistake in bot client message 2017-09-24 21:11:23 +02:00
bam.lua Change to C++11 in CMakeLists.txt, bam.lua 2017-09-21 23:34:51 +02:00
bors.toml Add Bors-NG 2017-10-15 13:41:45 +02:00
circle.yml Merge #894 2017-10-15 19:44:22 +00:00
CMakeLists.txt Enable automatic download of GTest on Windows by default 2017-10-15 10:25:26 +02:00
configure.lua Hopefully fix a problem bam.lua that I don't see locally 2016-08-03 00:17:30 +02:00
license.txt updated date in license.txt (#764) 2017-05-21 23:00:31 +02:00
README.md tests instructions are only for debian/ubuntu 2017-09-25 14:28:32 +02:00
storage.cfg i hate this file 2011-02-15 02:29:03 +02:00

DDraceNetwork CircleCI Build Status Travis CI Build Status AppVeyor Build Status

Our own flavor of DDRace, a Teeworlds mod. See the website for more information.

Development discussions happen on #ddnet on Quakenet (Webchat) or on Discord in the developer channel.

You can get binary releases on the DDNet website.

Cloning

To clone this repository with full history and external libraries (~350 MB):

git clone --recursive https://github.com/ddnet/ddnet

To clone this repository with full history when you have the necessary libraries on your system already (~220 MB):

git clone https://github.com/ddnet/ddnet

To clone this repository with history since we moved the libraries to https://github.com/ddnet/ddnet-libs (~40 MB):

git clone --shallow-exclude=included-libs https://github.com/ddnet/ddnet

To clone the libraries if you have previously cloned ddnet without them:

git submodule update --init --recursive

Building on Linux and macOS

To compile DDNet yourself, you can follow the instructions for compiling Teeworlds. Alternatively we also support CMake, so something like this works:

mkdir build
cd build
cmake ..
make

DDNet requires additional libraries, that are bundled for the most common platforms (Windows, Mac, Linux, all x86 and x86_64). The bundled libraries are now in the ddnet-libs submodule.

You can install the required libraries on your system, touch CMakeLists.txt and CMake will use the system-wide libraries by default. You can install all required dependencies and CMake on Debian or Ubuntu like this:

sudo apt install cmake libcurl4-openssl-dev libfreetype6-dev libogg-dev libopus-dev libopusfile-dev libsdl2-dev

Or on Arch Linux like this:

pacman -S cmake curl freetype2 opusfile sdl2

If you have the libraries installed, but still want to use the bundled ones instead, you can do so by removing your build directory and re-running CMake with -DPREFER_BUNDLED_LIBS=ON, e.g. cmake -DPREFER_BUNDLED_LIBS=ON ...

MySQL (or MariaDB) support in the server is not included in the binary releases but it can be built by specifying -DMYSQL=ON, like cmake -DMYSQL=ON ... It requires libmariadbclient-dev, libmysqlcppconn-dev and libboost-dev, which are also bundled for the common platforms.

Note that the bundled MySQL libraries might not work properly on your system. If you run into connection problems with the MySQL server, for example that it connects as root while you chose another user, make sure to install your system libraries for the MySQL client and C++ connector. Make sure that the CMake configuration summary says that it found MySQL libs that were not bundled (no "using bundled libs").

Running tests (Debian/Ubuntu)

In order to run the tests, you need to install the following library libgtest-dev.

This library isn't compiled, so you have to do it:

sudo apt install libgtest-dev
cd /usr/src/gtest
sudo cmake CMakeLists.txt
sudo make
 
# copy or symlink libgtest.a and libgtest_main.a to your /usr/lib folder
sudo cp *.a /usr/lib

To run the tests you must target run_tests with make: make run_tests

Building on Windows with Visual Studio

Download and install some version of Microsoft Visual Studio (as of writing, MSVS Community 2017) with C++ support, install Python 3 for all users and install CMake.

Start CMake and select the source code folder (where DDNet resides, the directory with CMakeLists.txt). Additionally select a build folder, e.g. create a build subdirectory in the source code directory. Click "Configure" and select the Visual Studio generator (it should be pre-selected, so pressing "Finish" will suffice). After configuration finishes and the "Generate" reactivates, click it. When that finishes, click "Open Project". Visual Studio should open. You can compile the DDNet client by right-clicking the DDNet project (not the solution) and select "Select as StartUp project". Now you should be able to compile DDNet by clicking the green, triangular "Run" button.

Importing the official DDNet Database

$ wget https://ddnet.tw/stats/ddnet-sql.zip
$ unzip ddnet-sql.zip
$ yaourt -S mariadb mysql-connector-c++
$ mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
$ systemctl start mariadb
$ mysqladmin -u root password 'PW'
$ mysql -u root -p'PW'
MariaDB [(none)]> create database teeworlds; create user 'teeworlds'@'localhost' identified by 'PW2'; grant all privileges on teeworlds.* to 'teeworlds'@'localhost'; flush privileges;
# this takes a while, you can remove the KEYs in record_race.sql to trade performance in queries
$ mysql -u teeworlds -p'PW2' teeworlds < ddnet-sql/record_*.sql

$ cat mine.cfg
sv_use_sql 1
add_sqlserver r teeworlds record teeworlds "PW2" "localhost" "3306"
add_sqlserver w teeworlds record teeworlds "PW2" "localhost" "3306"

$ bam server_sql_release
$ ./DDNet-Server_sql -f mine.cfg