Sponsored By

Featured Blog | This community-written post highlights the best of what the game industry has to offer. Read more like it on the Game Developer Blogs.

Multiplayer videogames which model human players in a 3D space use the same elements as real-world sports and playground games. Can we define a grammar that helps us analyze and compare all of these types of games? Here's one possible scheme.

Doug Zartman, Blogger

September 18, 2017

9 Min Read

Two things strike me as odd about the multiplayer gametypes in video games which model human-like players in a 3D arena. First, they are generally based on familiar real-world game rules, like Capture the Flag or King of the Hill, which is not odd, but then they rarely stray outside those rules. The other thing is, as a designer, there doesn’t appear to be any grammar for how those games are built, or how they can be compared or analyzed. What might such a grammar of multiplayer games look like?

First, some context. When I was a kid, often on summer nights a bunch of neighborhood kids would gather in a local field to play games. 2-Flag Capture the Flag and Jailbreak were the go-tos, Tag or Hide 'n' Seek if we weren't feeling organized, and we'd play for hours until our parents called us home. There might be minor variations in the rules (flags hidden or in the open; a jailbreak frees everyone or only one player) but that was grist for debates. It was common for players to propose new rules, playtest them and usually discard them.
 

Playground rules in video games

20 years later I was at Bungie Software during the development of the sci-fi FPS Marathon. It featured multiplayer between ethernet-networked Macs, a rare thing at the time. The primary multiplayer game was what Doom players called “deathmatch” and we called “Every man for himself”. But the sequel, Marathon 2: Durandal introduced new multiplayer modes: Capture the Flag, Kill the Man with the Ball, King of the Hill, Tag – all analogs of playground games familiar to us from real life. Though the great majority of FPS multiplayer games actually played was always “just shoot everybody” those new gametypes added different kinds of strategic routes toward winning games. The LAN parties that Marathon, Myth and Halo CE all spawned proved to be exciting social activities as well.

Bungie's later games, the Myth and Halo series, carried on this tradition of adapting playground multiplayer game rules into RTS and FPS multiplayer. These served Bungie's games well and went on to be elaborated in the many interesting gametypes in the later Halo games. Halo Reach’s Invasion gametype made big strides toward a dynamic set of game goals.

(Here is where I should do an analysis of the many interesting gametypes in LoL, TF2, Overwatch, Garden Warfare, many others - but I’ll leave that for a future post.)

A grammar engine

10 years after that, now a designer at Wideload, I worked on an entirely different kind of game called Disney Guilty Party. It was a turn-based, cooperative, family-friendly mystery game on the Wii, where a group of players worked together as detectives to solve mysteries – about as unlike a fast-paced competitive shooter as you can get.

We made an engine which generated mysteries, naturally called the Mystery Engine. We populated it with over 3000 clue items, each tagged with nouns and verbs that identified the core meaning of the clue. The Mystery Engine used this data to relate clues and generate randomized mystery scenarios which were non-obvious and solvable. There were billions of unique possibilities with this relatively small set of data.

It used a grammar of nouns and verbs to create these mysteries. While the mysteries it generated were admittedly pretty simple, it's the only real random-mystery-generator in a game that I'm aware of. Disney acquired Wideload for that game, and Patrick Curry, Fletcher Dunn and Nick Schrag were awarded a patent for that engine.

Sadly, the Guilty Party franchise did not survive at Disney and Wideload went on to work on a prototype for a real-time, competitive multiplayer game set in a superhero universe. Some of the tech developed for the Mystery Engine was applied to a new engine, the Enigma engine, which was now designed to randomly create superhero adventures.

Grammar to gametypes

One key to the drama in a superhero adventure is the Dilemma. The hero/player is confronted with a hard choice - either save a single target which means a lot to them personally (i.e. their beloved), or save dozens of civilians from the villain's evil schemes (i.e. a train car full of people). The tension of that choice is what makes the story engaging. A villain would just let the civilians die, but you are a hero - what will you do, how will you resolve this conflict?

For our multiplayer superhero game, we wanted to make a dynamic goal-generating system, where the player would begin the match with one game goal in mind, but then the engine would introduce Dilemmas - either adding new goals, transforming the base goal or even superseding it with an unexpected, greater goal.

We wanted a goal randomization system such that few matches would play the same, players would often be surprised and rise to the new challenges, and they would come away from the match with interesting stories about the twists and turns of their match. Finally, we hoped that this system could take the place of writing a lot of authored narrative - the game would tell the player their changed goals and circumstances, and their imaginations would make sense of it without a ton of exposition from us.

In the course of designing this Enigma engine with the team, I worked up a list of nouns and verbs which might be randomly shuffled to create a huge variety of game goals and rules. In fact, it seemed to me that a scheme like this might be able to systematically describe every playground game, every sports game, and every videogame using similar rules - any game played with multiple human-like avatars on a field. It also offered the possibility of creating entirely new gametypes which no one had thought of yet.

A possible grammar of multiplayer gametypes

Here's what we arrived at – this was basically the first-pass of a written design, and was only lightly implemented in-engine. But the prototype did work with a subset of these nouns and verbs. I consider this a starting point for the development of a better scheme.  

The 7 nouns in Enigma:

  • FLAG – a goal object which can move by itself or be moved by players. A ball, a bomb, a McGuffin, a NPC.

  • SITE – a goal area which can be occupied by players or flags, but cannot move. A soccer goal, a Territories site.

  • DESTRUCTABLE – a goal object which can be destroyed, either Flag or Site.

  • BASE – a special site, the team’s anchor in the world, spawn point and regen point.

  • PLAYER - the player's avatar in the world.

  • TEAMMATE - other players with the same goals as the player.

  • OPPONENT - other players opposed to the player's goals.

The 10 verbs in Enigma:

  • ACQUIRE – a Player takes possession of a Flag.

  • CONTROL – a Player occupies a Site exclusively from Opponents.

  • DEFEND – a Player protects a Flag from damage for X time.

  • DELIVER – a Player moves a Flag to a Site.

  • DESTROY – a Player damages a Destructible until it is destroyed.

  • HOLD – a Player maintains possession of a Flag for X time.

  • HUNT – a Player finds a Flag or Site whose location is unknown.

  • OCCUPY – a Player occupies a Site non-exclusively from opponents.

  • TOUCH – a Player collides with a Flag or Site.

  • TRANSFORM – a player changes the nature of a Flag.

There are huge caveats to point out with those lists – they were made with our intended gameplay in mind, and many of those verbs above could be broken down to finer atoms. For example, "delivering" could be broken down into “acquiring the flag” "moving the flag", and then "entering a site with the flag". We decided at the time that the granularity of “delivering” was appropriate for the design of the prototype we were making. We had a subset of these games working (and pretty fun!) in the engine when the project died.

The big idea

So, could a collection of nouns and verbs like this be useful for systematically describing a wide range of multiplayer gametypes, in both real and virtual worlds - sports games, playground games, videogame multiplayer? Here are some examples:

  • Soccer/Football/1-Flag CTF (most sports games): 1-Flag Acquire, Hold, Deliver to Opponent Base

  • Deathmatch: N-Opponent Destroy

  • Dodge ball: N-Flag Acquire, N-Opponent Destroy, Flags are balls.

  • King of the Hill: 1-Site Control

  • Territories: N-Site Control

  • Red Rover: 1-Site Occupy/1-Site Control (asymmetric)

  • Scavenger Hunt: N-Flag Hunt, N-Flag Acquire

  • Hide-n-Seek: N-Opponent Hunt (asymmetric)

  • Baseball: 1-Flag Deliver, N-Site Touch / 1-Flag Deliver, N-Player Acquire (asymmetric)

(It’s kind of amazing to me how nearly all of our huge team-sports games, generating tens of billions of dollars, are just 1-Flag CTF - soccer, American football, basketball, hockey, Buzkashi - basically every huge sport that’s not baseball or cricket, which are themselves closely related. Sure, I get that people like sports for the athleticism and not the interesting rules, but still - just that one gametype, everywhere? Most of the innovation in rules for these types of games seems to come from playground games.)

Those examples above are some familiar games rendered in this grammar. What are some new game types which could be made with this scheme? Here are a couple of not-tested ideas:

  • N-Flag Hunt, Acquire, Transform, Defend - the player finds and acquires flags, transforms them to move themselves toward the opponent site, and defends them from opponent acquisition.

  • 1-Site Occupy, Destroy the Destructible, Transform Opponents, Acquire Opponents - occupy site and destroy the destructible, transform opponents into flags, acquire flags.

Those are a couple of games we're not playing now, and maybe those would be proven not-fun in playtesting (I can see a couple of issues with them already). But I think there is some promise in this scheme, and it might provide a starting point for a more rigorous analysis of how multiplayer mechanics actually work. This is something like the boardgame “504” which aims at similar rule-shuffling, but on tabletops.

I know this is incomplete - this is as far as I got with this scheme when we stopped working on it. But I've been thinking of it ever since. I suspect that there's a grammar here which can be useful to other developers. I also suspect that new combinations of these rules could generate many new types of games which would be both fun and understandable to players, beyond the old tried and true Deathmatch, CTF and KotH.

Let me know what you think!
 

Read more about:

Featured Blogs

About the Author(s)

Daily news, dev blogs, and stories from Game Developer straight to your inbox

You May Also Like