0ad/source/tools/XpartaMuPP
2015-11-08 17:09:59 +00:00
..
ELO.py Add the limit back to provisionality in the rating system. 2014-04-27 23:42:56 +00:00
LobbyRanking.py Show the number of trade carts and looted resources in the summary screen. Patch by bb, fixes #3311 2015-08-22 17:57:41 +00:00
Makefile Multiplayer lobby based on the XmPP protocol. Special thanks to Philip, alpha123, scythetwirler, and anyone else who has helped build, debug or test the lobby. 2013-11-07 20:07:24 +00:00
mod_ipstamp.erl Use ACLs in the ipstamp module to support multiple lobby bots. 2013-12-31 00:25:33 +00:00
README Clarify the XpartaMuPP readme. Fixes #3163. 2015-04-22 23:43:59 +00:00
XpartaMuPP.py Removes extraneous check from XpartaMuPP. Fixes #3568. 2015-11-08 17:09:59 +00:00

Introduction
============
Some commands assume some apt-get based distribution. `lobby.wildfiregames.com` should be replaced by your own domain name (or localhost) in all commands below.


Install ejabberd and the erlang compiler
========================================
    # apt-get install ejabberd erlang-dev make

Configure it:
    # dpkg-reconfigure ejabberd 
Set the domain name (e.g. localhost if you installed it on your development computer) and add an admin user.

You should now be able to connect to this XMPP server using a normal XMPP client.

Installation of the custom XMPP module
======================================
Go to its source directory
    $ cd source/tools/XpartaMuPP

Edit `mod_ipstamp.erl` to set the domain (e.g. localhost) on which the ejabberd server is run.
    # -define (Domain, <server domain>).

Build and install it
    $ make
    # make install

We want ejabberd to load the module, so add the following to the `modules` section in`/etc/ejabberd/ejabberd.cfg`:
    {mod_ipstamp, []}

Restart ejabberd
    # service ejabberd restart

If something goes wrong, read `/var/log/ejabberd/ejabberd.log`

Ejabberd configuration
======================
A web administration inteface is avaliable at http://localhost:5280/admin. Use the admin user credentials (full JID (user@domain)) to log in. Changing settings there is also possible, but some those might not persist on restart.

The rest of this section should be done by editing `/etc/ejabberd/ejabberd.cfg`.

We want to allow users to create accounts using the game so allow in-band registration:
    {access, register, [{allow, all}]}.

You can see the list of registered using:
    # ejabberdctl registered_users lobby.wildfiregames.com

XpartaMuPP needs a user to function, so create one using:
    # ejabberdctl register wfgbot lobby.wildfiregames.com hunter2

The bot also needs to be able to get the IPs of users hosting a match, which is what the ipstamp module does.
Create an ACL for the bot (or bots):
    {acl, bots, {user, "wfgbot", "lobby.wildfiregames.com"}}.

Add an access rule (name it `ipbots` since that it was the module expects:
    {access, ipbots, [{allow, bots}]}.

MUC room setup
==============
To enable the bot to send the game list to players it needs the JIDs of the players, so the room should be configured as such. In case that you want to host multiple lobby rooms adding an ACL for MUC admins to which the bots are added, which is used for `access_admin` in the `mod_muc` configuration would be advisable.

Run XpartaMuPP - XMPP Multiplayer Game Manager
==============================================
You need to have python 3 and SleekXmpp installed
    $ sudo apt-get install python3 python3-sleekxmpp

If you would like to run the leaderboard database,
    $ sudo apt-get install python3-sqlalchemy

Then execute the following command to setup the database.
    $ python3 LobbyRanking.py

Execute the following command to run the bot with default options
    $ python3 XpartaMuPP.py
or rather a similar command to run a properly configured program
    $ python3 XpartaMuPP.py --domain localhost --login wfgbot --password XXXXXX --nickname WFGbot --room arena

Run `python3 XpartaMuPP.py --help` for the full list of options

If everything is fine you should see something along these lines in your console
    INFO     Negotiating TLS
    INFO     Using SSL version: 3
    INFO     Node set to: wfgbot@lobby.wildfiregames.com/CC
    INFO     XpartaMuPP started

Congratulations, you are running XpartaMuPP - the 0ad Multiplayer Game Manager.