Creating a Multiplayer Game with TogetherJS and CreateJS

Bubble Hell Duel is a multiplayer HTML5 dogfighting game. The object of the game is to dodge bubbles launched from your opponent while returning fire. This game was written mainly as a prototype for learning and the source code is available on GitHub. You can try the game out in single or multiplayer here. Currently the game does not contain any sound effects but uses CreateJS and TogetherJS.

screenshot

In this post I would like to share some of my experiences when developing the game. Please share your thoughts in the comments if you agree or have other suggestions.

Game Engines

When developing a 2d game you can write you own engine or make use of some fantastic libraries that are available. After spending a few days looking at the various options available I decided to use CreateJS. As I have some experience with Flash, CreateJS made sense for my needs as there was not much of a learning curve. I also wanted to make use of some Flash animations and CreateJS supported this feature. I will elaborate a bit more on animations later in the article.

As I am a C++ developer I believe emscripten is also a good choice. It allows C/C++ code to be compiled to JavaScript, which can be executed in the browser. I am of the opinion that the static type checking and compile-time optimizations are great assets when developing large code bases. I have used emscripten before and it works very well, but for this project I wanted the fast and convenient prototyping capabilities of JavaScript. I also wanted to expand my JavaScript knowledge.

I’d like to mention a few other libraries that seem very interesting: Cocos2d-x is making an emscripten port and they already support HTML5 binding. I also like pixi.js as it provides a webGL renderer but also supports Canvas fallback when the browser does not support webGL.

C++ vs JavaScript

At first I was a little bit worried about the performance of JavaScript, and that was the reason my decision between using CreateJS or emscripten was difficult. Fortunately a simple benchmark showed that a naive collision detection algorithm with about 400 balls on screen could still reach 40+ fps, which was enough for my simple experiment.

As someone who has coded more in C++ than JavaScript I loved how quickly I could translate my thoughts into code and test them out on multiple browsers. On the other hand it was not very comfortable debugging my JavaScript. C++ compilers are quite good at pointing out misspellings and other mistakes that cause runtime issues. While the “use strict” directive and other mechanisms like closure compilers have their purpose they were not very helpful to me especially when variables became undefined. Rooting for the cause of errors can be somewhat difficult comparatively.

As an example of difficult debugging, I encountered the following issue. I was using float numbers for coordinates and other geometric values like angles. These values were passed to the other player using the TogetherJS.send method for synchronization:

var player = { x: 10.0, y: 10.0 };
TogetherJS.send({type:'sync',x:player.x,y:player.y});
TogetherJS.hub.on('sync', function(msg){
    enemy.x = msg.x;
    enemy.y = msg.y;
});

This worked, but lots of decimals were sent in this way, so I decided to relax the accuracy:

TogetherJS.send({type:'sync', x:Math.round(player.x), y:Math.round(player.y) });

Then I thought integers might not be accurate enough for collision detection, so I added more digits to the messages:

TogetherJS.send({type:'sync', x:player.x.toFixed(2), y:player.y.toFixed(2) });

While this seemed a reasonable solution, it actually induced a bug that was very hard to find and I did not notice it until I tested the game after implementing some more features. I noticed while playing the game the opponent would never move.

It took me hours in debugging before I could locate the cause. I do not think I would have made this mistake using C++.

If you would like to see this bug in action take a look at this jsFiddle project. Look at the three canvas tag outputs and you will notice the third canvas contains the bug. This issue occurs because toFixed returns a string representation.

I am not sure using a closure compiler would have avoided this issue, but I did find in another project that it definitely helps with optimizations.

Animation with Flash

As with most games I wanted to use a good deal of animation. I was very familiar with creating animations in Flash and found that CreateJS supported several ways of consuming the Flash animations and presenting them in HTML5. CreateJS is a set of libraries and tools used to create interactive HTML5 content. So by using CreateJS I could consume my animations as well as use the other libraries available for loop handling, resource management and in the future, sound manipulation. For a quick introduction to CreateJS take a look at this video.

CreateJS, which Mozilla now sponsors, offers great support for Flash animations.

There are two ways of using Flash animations in HTML5 with CreateJS. The first option is to directly export the Flash animation in a way that you can access all the elements in their original form, including paths, transformations and tweens. The advantage to this approach is that it produces smaller files, and CreateJS allows you to transfer them into a sprite sheet on the client side, for faster rendering. Adobe Flash CS6 offers the CreateJS Toolkit plugin that allows the designer to export all the content of an animation to HTML5 files. This generally results in a JavaScript file with all the graphics and tweens, an HTML file, and a set of image files. You can open up the HTML document in your browser and see the animation.

Another option is to export the animation into a sprite sheet, that is an image containing all the frames with a JavaScript file describing the position and size of each frame. These files can be easily integrated into HTML based games or applications via the SpriteSheet class in CreateJS. This is the approach I used for this game. To see the code where I use the SpriteSheet have a look at this link. If you want some more detail on this approach take a look at this video.

I should also note that you can use a tool called Zoë to export directly to a sprite sheet or a JSON file from a Flash Animation as well.

marisa

The above image is an example of a sprite sheet that I use in the game and was generated as described above. The original image came from the game Touhou Hisouten ~ Scarlet Weather Rhapsody, which is availabe at http://www.spriters-resource.com.

Multiplayer with TogetherJS

On my first iteration of the code the game was not multiplayer. Originally it was a single-player bullet hell game, with a boss foe randomly moving across the screen. I could not last more than 30 seconds before succumbing to withering fire. It was interesting enough that I thought multiplayer would be exciting.

I had heard of Together.js not long after it was released. The jsFiddle project is powered by Together.js and offers an impressive collaboration mode. This led me to using Together.js in my game. It is also very nice that Mozilla offers a default hub server simplifying the process of creating a multiplayer web based game. To learn more about Together.js be sure to check out this article.

It was easy and comfortable integrating Together.js into my game, as it works like other event dispatcher/listeners frameworks.

With Together.js, I was able to implement random match and invitation only multiplayer modes in the game. I did face a few design challenges that I had to overcome when designing the communication protocol.

First off, I did not put code in to prevent cheating with two-party communications and assumed a certain level of trust between players. In the game design currently all collision detection of a player is done locally. Theoretically if you block corresponding messages you can mask that you have taken damage.

Another area that I hacked a bit is that the bubbles of the enemy avatar are generated locally and randomly. This means that the bubbles seen from your character avatar are not necessarily the same as your opponent is seeing.

In practice neither of these shortcuts should ruin the fun of the game.
I did encounter a couple of issues or caveats with Together.JS.

  • I did not find a way to disable the cursor updating in Together.js. While this is useful in collaborative tools I did not need it in my game.
  • I am using Together.js in an asymmetric way, where both players see themselves as the red skirted Avatar (Reimu). This allows for easier placement of the player at the bottom of the screen and the opponent at the top. This also means that when you move the main player from an opponent’s view of the game your move is seen as the opponents move and vice versa.

The Fun of Making Mistakes

There are two visual effects in the game that came as unexpected surprises:

  • When a round finishes and the message ‘You Win’ or ‘You Lose’ appears, the time is frozen for a few seconds. This acts like a dramatic pause.
  • When a charge attack is released, the bullets are fixed and then gradually blown away toward the enemy.

Neither of these effects was designed in this way. I didn’t want the pause and I wanted the bullets to continue rotating around the player upon releasing. However I made mistakes, and the result seemed to be much better than I had planned, so they made the final cut.

Conclusion and Future Plans

It is always fun learning new things. I like the fact that I could prototype and visualize pretty quickly. In the future I might add more patterns for the bullet curtains, and a few sound effects. In addition I will probably also draw more background images or possibly animate them.

While developing the game I did realize in order to get a natural and intuitive feel required more effort than I expected. This is something I have always taken for granted while playing game.

The code is open source, so feel free to fork and play. Be sure to comment if you have any suggestions for improving the game or the existing code.

About Lu Wang

A happy hacker behind pdf2htmlEX and scanmem/GameConqueror.

More articles by Lu Wang…

About Jason Weathersby

Jason Weathersby is a Technical Evangelist for Mozilla, evangelizing Firefox OS. He is also a committer on the BIRT project at the Eclipse Foundation, and has co-authored several books on BIRT integration. He is a proponent of HTML5, Open Source and all things related to web-based gaming.

More articles by Jason Weathersby…


16 comments

  1. Simon

    You said that you felt not very comfortable debugging your JavaScript and that compilers are quite good at pointing out misspellings and other mistakes that cause runtime issues. What IDE did you use for JS coding (if any)? I find using a good IDE such as webStorm/phpStorm really helps a lot. They really can point out a lot of mistakes right while you are coding.

    Simon

    No I don’t work for Jetbrains, I just love their product phpStorm and are always impressed how much it assists me in (better) coding.

    May 22nd, 2014 at 02:58

    1. Lu Wang

      Hi Simon, thanks for your recommendation!
      I happen to have a copy of IntelliJ IDEA, so I believe that webStorm should also be one of the best IDEs out there.
      It looks promising, and I’ll have a try!

      Most of the time I use vim for a comfortable editing, and then heavily rely on the compilers to check typos and other mistakes. It’s been working well for C/C++ or any other language with type checking.
      But this time for this project I was using brackets, just for a new taste. It does have a JSLint integration, but most of the time it just complained about formatting and spacing stuffs, so not actually much helpful.

      Please allow me to describe a common scenario where I found it difficult to debug JS.
      Say we are dealing with rectangles, there could be different ways of representing them.
      var rect1 = { x: 10, y: 20, width: 50, height: 100 }; var rect2 = [ 10, 20, 50, 100]; var rect3 = [ [10, 20], [60, 120] ]; var rect4 = { x1: 10, y1: 20, x2: 60, y2: 120 };

      While designing the algorithms and the frameworks, I would keep myself busy with translating my thoughts into (pseudo)code, and I won’t pay much attention with the actual data types.
      So I might write
      var x1 = rect1.x; var x2 = rect2.x; // which is wrong, should be rect2[0]

      Now here comes the most annoying part. In C/C++, the error can be detected at compiling stage, in Python, there will be an exception when I try to access rect2.x.
      But in JS, nothing happens until x2 is actually used in rendering the objects. And I found it difficult to find the cause of this kind of issues.

      Wondering how IDE could help debugging or preventing it.
      Sometimes I think that I might have been writing JS in a incorrect/inefficient way that is influenced by my C++ background, but not sure what’s the best way to prevent it.
      I wonder if you find this common in your development, and could you please share some of your approaches dealing with it?
      Thanks!

      May 22nd, 2014 at 04:03

    2. Luke

      Does webStorm/phpStorm have good warnings?

      Netbeans is pretty good for Javascript in that it marks accidental global variables in purple – I haven’t yet seen another IDE that does that. If you accidentally do “var thing = 4 [enter] another=4” instead of “var thing=4, another=5” it marks the accidental global.

      Unfortunately it doesn’t seem to like “let” statements, that most browsers support now.

      May 22nd, 2014 at 17:51

      1. Simon Speich

        Yes it does mark globals, it also marks unused variables.

        May 22nd, 2014 at 23:46

        1. Simon Speich

          …and it also tells you if you redefined a variable and many more inspections: http://blog.jetbrains.com/webide/2012/11/new-javascript-inspections-and-intentions/

          Now I really sound like a marketing guy…

          May 22nd, 2014 at 23:53

          1. Lu Wang

            haha, I guess a good IDE would deserve it.

            May 24th, 2014 at 07:28

  2. Simon

    phpStorm/webStorm will certainly be of some help in your case. When typing rect1. it will autosuggest all your object properties, when typing rect2. though no properties will show up, but array methods. Of course rect.x will not be reported as an error, since it will just return undefined.

    You can also use jsdoc to annotate your objects and they will also show up in autosuggest. If your project is bigger you could also consider writing test cases.

    May 22nd, 2014 at 04:24

    1. Lu Wang

      Annotation works to some extend, I’ve tried it with closure compiler. But if I have to write full annotation, probably I’d choose C++ + emscripten.

      By the example of rectangles, I didn’t mean to access the data fields right after the declaration, it’s more likely within a function call:
      function getArea(rect) { return rect.width * rect.height; // or // return rect[2] * rect[3]; }

      Probably annotation is the only cure, I’m not so sure.

      Test cases indeed make sense, yet I also tried write assertions here and there, which helped a little bit.

      May 22nd, 2014 at 06:14

  3. simon

    webstorm is really pretty smart (and I guess other IDE’s) and you get very far with jsdoc. If you do:

    /**
    * A rectangle object.
    * @class Rect // or have a factory/module etc.
    * @property {number} x
    * @property {number} y
    * @property {number} width
    * @property {number} height
    */
    var rect1 = {};

    then it will do autosuggest within the function and it will also mark for example that rect.rad is not defined

    /**
    *
    * @param {Rect} rect
    * @returns {number}
    */
    function getArea(rect) {
    return rect.width * rect.height;
    }

    or you do:

    /**
    * Calc area.
    * @param {Object} rect.width
    * @param {Object} rect.height
    */
    function getArea(rect) {
    return rect.width * rect.height;
    }

    May 22nd, 2014 at 08:14

    1. Lu Wang

      Yes indeed.
      Probably a possible way for lazy guys like me is to gradually add more annotations until I got the bug fixed.

      May 22nd, 2014 at 10:36

      1. Simon Speich

        It seems more work if you do the jsdoc forehand, but you will also save in typing, because the IDE can autocomplete your code. Also I often don’t remember the function arguments and the IDE can tell you what they are and in the end you also make less mistakes that are hard to find later.

        May 22nd, 2014 at 23:44

        1. Lu Wang

          I see.
          Probably I’ll need also to try CoffeScript, TypeScript and other similar languages.

          May 22nd, 2014 at 23:49

  4. Ablar

    The Game does create ghost-windows for me.

    May 22nd, 2014 at 16:32

    1. Lu Wang

      Which browser are you using?

      May 22nd, 2014 at 23:48

      1. Ablar

        Firefox 29.0.1
        Starting single player and closing tab/windows shows ghosts after memory.ghost_window_timeout_seconds

        May 24th, 2014 at 14:14

  5. niks

    thaanks :D

    May 24th, 2014 at 04:01

Comments are closed for this article.