• Register

Destroy enemy ships, paint the territory and reach the top of the ranking in this colorful online shooter!

Post tutorial Report RSS What everybody ought to know about building HTML5 web MMOs in 2017

Are you thinking about building an web MMO, agar.io-style? It's dangerous to go alone! Take these tips with you.

Posted by on - Basic Website

Hello, everybody! As you might know, recently i launched SplashWars.io, an online shooter game. If you are willing to build your very own web MMO too, or just generally curious, here are some things you should know:

Architecture is a pain

This topic is by far the one that hit me the hardest (and will probably hit you, too). Especially if you are going to use Node.JS, you simply won't find any existing application architecture that you can simply drop in your project, and you'll have to roll out your own. Be really careful with the decisions you take here, since architectural changes are the most complicated to make down the line! Here are some features your architecture will have to support:

  • Game simulation: Move the players, collide bullets, etc.
  • Network events: You need to notify every client when receiving user input, when user dies, etc.
  • Timeline prediction: You don't want to notify the clients every single event, so you'll have to simulate those events at the browser.
  • Renderers: How you'll draw your game state? Remember to be aware of animations.
  • Input validation on the server and on the client: Protect yourself from hackers! Don't let the server accept everything.
  • Many more, depending on the kind of game you want to make.

Optimize for performance from day one

That's other topic that wasted many hours of mine during Splash Wars development: optimizing the clients. Even though our desktop machines are already powerful enough to not have trouble (well, most of the time) during rendering/updating the game, if you want to make your game compatible with mobile devices, you'll have to put a lot of work into optimizing your render/update code.

The most important rule here is the same as any other application: make sure that you are measuring your performance. Google Chrome DevTools is great for that, so make sure to always run the Profiler before trying any optimizations. The 80-20 rule applies here: most of your benefits are going to come from simple changes on the code.

Chrome's Dev Tools profiling on Splash Wars

Don't ever forget bandwidth and latency

Unless your game doesn't involve too much realtime interaction, its unlikely plain text messages will work well. At the very least, you should send all your data in its binary format, what introduces lots of complexities by itself: for example, you'll have to think about how many bits you might need and how to properly encode and decode messages.

Besides bandwidth, you'll also have to worry about latency, otherwise your game might become unplayable. The core ideas to optimize the latency are simply making sure that your application responds quickly enough and that your servers are close to your players. The second part is a lot more expensive, but it can pay off big wins: by setting up a server in my country, i managed to cut the ping in half!

Chrome Dev Tools bandwith on Splash Wars

Take good care of your physics

Depending on the architecture you chose for step 1, this might become easier for you. You should pay a great deal of attention to physics, since even slightly off hitboxes will have a huge impact in your players perception of the game.

I've had lots of trouble with it, but i managed to come up with a custom solution for rendering hitboxes that made physics a tad more manageable. This topic also ties with optimization, since the naive collision detection might work fine for most basic use cases and small amounts of elements, but will surely make your server/client hang as the amount of players increase.

Wrapping up

I've mentioned a few factors that will surely come into play no matter what kind of MMO you are intending to make, but fortunately many of these problems have been solved before and turned into packages for your favorite programming language. If you are using NodeJS, you are lucky: npm is the biggest package repository out here, and most of the boilerplate code you can find there.

Nevertheless, building a MMO web game is still a formidable task, but definitely achievable and a very cool project to show to your friends, family and coworkers. If you have some free time to spare, give it a try and send me a link on Twitter (Twitter.com), i'll be glad to play with you!

Obs.: This article was posted first at my personal blog, thenameisflic.com. Head there to view my other blog posts about code and entrepreneurship!

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: