DDraceNetwork, a free cooperative platformer game
Go to file
2017-07-31 18:24:16 +02:00
cmake Fix the CMake Mac build 2017-07-26 04:30:56 +02:00
data Add kitty skins (by Ravie + fuzzy ninja by patwo.*) 2017-07-25 00:11:37 +02:00
datasrc Fix unpacking of net events 2017-05-27 15:51:29 +02:00
ddnet-libs@f7ab5bfcfb Try using more modern SDL audio interface 2017-07-30 12:33:51 +02:00
other No manifest for MSVC 2017-07-22 11:50:58 +02:00
scripts Let's try the nicer dll names on windows 2017-07-21 23:43:01 +02:00
src A bit nicer birthday message 2017-07-31 18:24:16 +02:00
.gitattributes exclude external libs from github statistics (#740) 2017-04-15 00:36:43 +02:00
.gitignore Windows DPI fixes #2 2017-07-09 09:44:07 +02:00
.gitmodules Lazy developers 2017-07-25 23:50:50 +02:00
.travis.yml Add macOS to Travis 2017-07-26 04:57:14 +02:00
appveyor.yml Try to fix automated builds with submodule 2017-07-20 23:34:10 +02:00
autoexec_server.cfg Fix a line ending in autoexec_server.cfg 2017-03-04 15:30:43 +01:00
bam.lua Fix websocket linking 2017-07-22 21:18:22 +02:00
circle.yml Try to fix automated builds with submodule 2017-07-20 23:34:10 +02:00
CMakeLists.txt safeseh:no only for msvc 2017-07-30 14:35:06 +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 Add instructions to clone libs 2017-07-30 14:16:16 +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

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

make 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, remove the config.lua and bam should use the system-wide libraries by default. You can install all required dependencies and bam on Debian and Ubuntu like this:

apt-get install libsdl2-dev libfreetype6-dev libcurl4-openssl-dev libogg-dev libopus-dev libopusfile-dev bam

Or on Arch Linux like this:

pacman -S sdl2 freetype2 curl opusfile bam

If you have the libraries installed, but still want to use the bundled ones instead, you can specify so by running bam config curl.use_pkgconfig=false opus.use_pkgconfig=false opusfile.use_pkgconfig=false ogg.use_pkgconfig=false.

The MySQL server is not included in the binary releases and can be built with bam server_sql_release. 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 mysql.use_mysqlconfig is set to true in your config.lua.

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