Difference between revisions of "How to setup a local QuakeJS server under Debian 9 or Debian 10"

From steamWiki
Jump to: navigation, search
(Setup a Local QuakeJS Server)
Line 25: Line 25:
 
#Add the repo for [https://nodejs.org/en/ node.js] by running <pre>curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -</pre>
 
#Add the repo for [https://nodejs.org/en/ node.js] by running <pre>curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -</pre>
 
#Install the tools we need to setup our server by running <pre>sudo apt install git build-essential nodejs</pre>
 
#Install the tools we need to setup our server by running <pre>sudo apt install git build-essential nodejs</pre>
#Move into our home directory by running <pre>cd ~</pre>
+
#Make sure we're in our home directory by running <pre>cd ~</pre>
 
#Clone the original QuakeJS git repository (along with the ioq3 repository sub-module) by running <pre>git clone --recurse-submodules https://github.com/inolen/quakejs.git</pre>
 
#Clone the original QuakeJS git repository (along with the ioq3 repository sub-module) by running <pre>git clone --recurse-submodules https://github.com/inolen/quakejs.git</pre>
 
#Move into the newly created ''quakejs'' directory by running <pre>cd quakejs</pre>
 
#Move into the newly created ''quakejs'' directory by running <pre>cd quakejs</pre>

Revision as of 20:43, 6 July 2019

TLDR: This how to will show you how to setup a local QuakeJS server, local Play page (for users to connect to the local server), and a local content server to provide files to the clients.

I found myself in a situation where I was going to be on a LAN without internet access for an extended period of time along with multiple people and multiple computers. I wanted a fun, fast paced, multiplayer game for us. The catch? I didn't want anyone to have to install anything since these computers didn't belong to us. That's a pretty tall order. What I found was QuakeJS. Quake 3 was open sourced at the beginning of 2012 and some awesome dudes based ioquake3 off of it. Another awesome dude created QuakeJS around 2013/2014. QuakeJS allows you to play Quake 3 entirely in a browser.

The source code has instructions for creating a dedicated server as well as building from source & generating assets for a content server. Unfortunately the Emscripten tool used to build the project has changed the way it operates in since 2014 and the current version of the QuakeJS source doesn't build with modern versions of Emscripten. I've found some work-arounds. Some helpful discussion on how to setup a local webpage to connect to the server (as well as providing the content necessary to play) can be found here.

The theory is pretty simple

  1. Follow Inolen's original instructions for setting up a QuakeJS server
  2. Download everything we might need from the content server http://content.quakejs.com and rehost it locally
  3. Download the source code (and referenced CSS & JS files) from http://www.quakejs.com/play, modify them for local use, and rehost them locally
  4. Frag

Below I'm going to break it down step by step

NOTE: This guide assumes your local server's hostname is "quakejs"

Prepare your Machine

  1. Make sure our system is up to date before we start by running
    sudo apt update
    and
    sudo apt upgrade
  2. Create a dedicated user to run our server with
    sudo adduser quake
  3. Temporarily give quake sudo access to make setup easier (we'll remove it later) by running
    sudo usermod -aG sudo quake
  4. Switch to our new quake user and start in his home directory by running
    su - quake

Setup a Local QuakeJS Server

  1. Install curl by running
    sudo apt install curl
  2. Add the repo for node.js by running
    curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
  3. Install the tools we need to setup our server by running
    sudo apt install git build-essential nodejs
  4. Make sure we're in our home directory by running
    cd ~
  5. Clone the original QuakeJS git repository (along with the ioq3 repository sub-module) by running
    git clone --recurse-submodules https://github.com/inolen/quakejs.git
  6. Move into the newly created quakejs directory by running
    cd quakejs
  7. Install the necessary node.js packages by running
    npm install
  8. Run the server for the 1st time by executing the following command. Continue to hit enter a lot to get through the EULA, agree to the EULA by hitting y and game files will be downloaded. Once all files have been downloaded quit the server by hitting Ctrl+C
    node build/ioq3ded.js +set fs_game baseq3 +set dedicated 1
  9. Create a baseq3 server config file by running the following command
    nano /base/baseq3/server.cfg
    and fill in the body with the following
    seta sv_hostname "quakejs"
    seta sv_maxclients 12
    seta g_motd "Welcome to the Local baseq3 QuakeJS Server"
    seta g_quadfactor 3
    seta g_gametype 0
    seta timelimit 15
    seta fraglimit 25
    seta g_weaponrespawn 3
    seta g_inactivity 3000
    seta g_forcerespawn 0
    seta rconpassword "quakejs"
    set d1 "map q3dm7 ; set nextmap vstr d2"
    set d2 "map q3dm17 ; set nextmap vstr d1"
    vstr d1
  10. Run your server with the following command
    node build/ioq3ded.js +set fs_game baseq3 set dedicated 1 +exec server.cfg

Make sure you change the password in seta rconpassword

Setup a Local Content Server

  1. Setup a webserver to host our content buy running
    sudo apt install apache2
  2. Download a script that I wrote to simplify getting the assets from http://content.quakejs.com by Running
    sudo wget -O /var/www/html/get_assets.sh https://raw.githubusercontent.com/begleysm/quakejs/master/assets/get_assets.sh
  3. Run the script and grab all of the assets from http://content.quakejs.com and put them where they can be accessed by clients by running
    sudo /var/www/html/get_assets.sh
  4. Optionally remove get_assets.sh by running
    sudo rm /var/www/html/get_assets.sh

Setup a Local Play Page

  1. If you didn't already install Apache2 for the content server, do it now by running
    sudo apt install apache2
  2. Delete the default index.html that comes with Apache2 by running
    sudo rm /var/www/html/index.html
  3. Download a copy of the Play Page from the QuakeJS website and put it where it can be accessed locally by running
    sudo wget -O /var/www/html/index.html http://www.quakejs.com/play
  4. Download a copy of the CSS used to format the Play Page and it where it goes by running
    sudo wget -O /var/www/html/game.css http://www.quakejs.com/css/ff3bfe05fa66a6c5418f2f02b0e55e36-game.css
  5. Download a copy of the JS and put it where it goes by running
    sudo wget -O /var/www/html/ioquake3.js http://www.quakejs.com/js/38cbed8aa9a0bda4736d1aede69b4867-ioquake3.js
  6. Modify the Play Page you downloaded to make it suitable for running locally by running the following command and making the change specified below
    nano /var/www/html/index.html
    1. Change Line 4 to say whatever you want, something like
      <title>QuakeJS Local</title>
    2. Change Line 5 to
      <link rel="stylesheet" href="/game.css"></link>
    3. Change Line 6 to
      <script type="text/javascript" src="/ioquake3.js"></script>
    4. Comment out Lines 7 through 16 to disable Google Analytics
      1. Change Line 7 to
        <!-- <script type="text/javascript">
      2. Change Line 16 to
        </script> -->
    5. Change Line 75 to
      var args = ['+set', 'fs_cdn', 'quakejs:80', '+connect', 'quakejs:27960'];