Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Web Design & Development > PHP/MySQL/Scripting

Achieving and Enhancing Gameplay in Game Design

📄 Contents

  1. What Is Gameplay?
  2. Interactivity

Key Topics

  • Gameplay means interesting choices

  • The use of strategies

  • Gameplay is just a subset of interactivity

  • Different kinds of interactivity

Now we're going to take a closer look at some of the things we mentioned in the last chapter. In particular, we'll be examining gameplay—what it means, how to achieve it, and how to enhance it.

Strictly speaking, game theory is a branch of economics in which systems governed by rules are mathematically analyzed to determine the payoffs of various end points. The strategies required to reach specific endpoints are collectively termed gameplay.

This is not quite as limited a definition as it sounds. Morality can be considered as an economic question—the costs and payoffs of an altruistic strategy, for example, being quite different if you are within 500 feet of the top of Everest as opposed to an English village. Getting to an important interview after you overslept could involve gameplay. In the movie, A Beautiful Mind, Russell Crowe (playing John Nash, a pioneer of game theory) applies gameplay to the choice of which of three women he should try to chat up.

However, for all its many applications, gameplay is only one element in the composition of modern games. In GTA Vice City, it isn't some careful mathematical assessment of payoffs that makes you choose which kind of car to drive or which radio station to listen to. You do it because it's fun.

Hence there is nothing special about gameplay. A software product doesn't have to involve gameplay to be entertaining. Famously, SimCity has been described by its creator as more of a toy than a game. And the foremost aim of simulation war games is to recreate the reality on which they're modeled. If you have a pure Conquistador sim, it may not be a good well-balanced game at all (it may not be possible for the Aztec player to win) but it could still be fun to play.

Only precedent makes us expect gameplay in entertainment software. No one demands the same thing of a movie or a book. Plenty of things are enjoyable that aren't games. Who's going to say, "Hey, that Hamlet is a great drama but where's the gameplay?"

So then, rule number one is still that your product should be fun. That's where the entertainment part comes in. To be a "good" software product implies it will also be interactive. That's what will make it deliver something that you could not deliver in any other medium. But gameplay? That's a matter of choice.

Later in this chapter we'll discuss some other kinds of entertainment software that are interactive (certainly) and fun (hopefully) but aren't necessarily games at all. This chapter focuses on gameplay because it can be objectively analyzed. That's all. You can learn how to design a good game system the same way you can learn to lay bricks or mix cocktails. But be aware that there is a lot more than game design to creating great entertainment software. The bigger part of it is an art form.

What Is Gameplay?

Imagine you are playing a role-playing game. In this game, you play a group of adventurers—say a knight, a priest, a dwarf, and a thief. During an encounter, you typically want your fighters—that's the dwarf and the knight—at the front of the group while your thief snipes from one side with arrows. Your priest, who is vulnerable, stays at the back to cast spells.

Now, suppose the priest has two kinds of spells, each of which cost him the same number of magic points. One spell injures the enemy (we'll call those "E-Bolts"), and the other heals injuries to your own group (we'll call those "Band-Aids"). Which should he cast during a fight?

First off, suppose the E-Bolts do as much damage as a sword blow and that the Band-Aids heal the same amount. When facing opponents who are equally matched with your own fighters, E-Bolts and Band-Aids are equally useful. Against a single foe using several weapons (an insect creature with a sword in each of six hands, for example) you are obviously better off using E-Bolts. When facing a horde of opponents with individually weak attacks, such as a pack of rats, you are probably going to use Band-Aids. The point is that in each case you can easily decide which spell is better.

However, suppose instead that Band-Aids still only affect a single target, but E-Bolts are area-effect spells that damage all the enemies in a given radius. And suppose also that E-Bolts don't do quite as much damage as before, but the target's armor no longer makes a difference. Now which is the best to use?

There's no easy answer. It depends on lots of things. That makes it an interesting choice. And that's what gameplay is all about.

Implementing Gameplay

Sid Meier said, "A game is a series of interesting choices." To be worthwhile, gameplay choices must be non-trivial. Each strategy that the player considers using must have an upside and a downside. If there is only an upside, the AI should take care of it automatically. If there's only a downside, no one will ever use that strategy so why bother including it in the game?

Remember that we are only talking about game theory here. You might put in something that's just intended to be fun. A ray gun that plays a little tune whenever you shoot something, for example. But even so, if that ray gun doesn't have some gameplay value—if it doesn't have some upside, even if that upside is only a wide variety of catchy tunes—then pretty soon players will stop using it, which means all that development effort was spent just so players would say, "That's cool—now hand me the BFG."

A decision has gameplay value when it has an upside and a downside and when the overall payoff depends on other factors. Usually this will be something along the lines of "What if the other player uses neutron torpedoes?" or "What if I'm too close to the sun when the warp drive kicks in?" So you choose the option that seems best for you in the circumstances. It might be that you can see a better tactic but you simply don't have the manual dexterity to carry it off. That's still a game choice—albeit one that is likely to have hardened strategy gamers grinding their teeth.

Also it's important to note that the game must be a series of interesting choices. Each decision affects the next. The value of using the nail gun as opposed to the mining laser depends on whether your previous decision was to run to the center of the room or skulk in the corner. That depends on whether you set the cargo bay doors to blow or not, and so on. Hence a game allows strategy. Indeed, a well-designed game cannot be won without strategy. And strategy manifests itself as a series of interesting choices. We've come full circle.

All this requires the game to display complexity. This doesn't mean, however, that the rules themselves must be complex. In the last chapter we looked at the concept of emergence—complexity arising from simple rules. A neat example of emergence that we like is the termite's nest. Termites build towers of dried mud with cooling vanes inside that keep the nest at the precise temperature needed to incubate the eggs. But no termite has a blueprint of this wonderful structure in its head; it only has a few simple rules to follow about where to put each bit of mud.

Emergence results from rules (behaviors) interacting with other rules or with the environment. Resist the temptation to design in too many rules. The best games follow the less-is-more principal. In the rest of this chapter, we'll discuss how very often the simplest rule sets are the ones that lead to the most interesting gameplay.

The Dominant Strategy Problem

How often have you flicked through gaming magazines and seen articles promising "10 killer tactics" or claiming to disclose the ultimate character, weapon, or maneuver in your favorite game?

If those articles are on the level (as they too often are), what they are doing is taking advantage of flaws in the game design. A well-designed game shouldn't contain an option that is never worth using. So it certainly shouldn't have a best maneuver, or character, or weapon—otherwise, what was the point of the other maneuvers, characters and weapons?

To borrow some terminology from game theory, an option that is never worth using under any circumstances is a dominated strategy. An option that is so good it's never worth doing anything else is a dominant strategy.

Dominance means some of the options that you designed into your game—and maybe even all but one of the options—are useless. If they're useless, it means that pretty quickly players will drop them and won't use them again. Not only is that bad game design, it was a waste of development time as well. The only people happy to see dominance in a game are the magazine columnists—because it makes thinking of strategy tips a lot easier.

Summing up, then: A dominated option is worthless. You wasted your time putting it in your game. A dominant option is worse. It means that all the other options are worthless.

Near Dominance

Looking for dominance warns you if options will rarely be used. It's worth taking some time to look for near-dominance as well. A near-dominated option is one that is only useful in very narrow circumstances. Conversely, a near-dominant option is one that players will use most of the time.

Let's consider an example of a near-dominated option: You put a special weapon in your game, a stun gun that is only worth using against one foe, the raptors. Since the stun gun has no effect on other foes, you won't see it used except on the raptor level. This is obvious, but still it's valuable information. It means you can ask yourself these questions:

  1. Did I want the stun gun to be a more common feature?

    • Should I think of other applications?

    • Is the one-off use a positive feature? What should I do to make the most of that?

  2. If the stun gun is going to be used only once during the game, how much development time is it worth spending on it?

    • Should we spend a lot of effort on this feature?

    • Is it worth putting in some special effects just for the raptor encounter?

  3. What's the best way of building the stun gun into the interface, as compared with weapons that are more commonly used?

A game with lasting appeal must remain interesting even when players know the tricks. Near-dominance isn't as disastrous as dominance. A careless player could overlook the near-dominated option, and opponents can exploit that. But near dominance does show which options will get used most, and logically those are the ones on which you'll want to lavish the best graphics.

Avoiding Trivial Choices

Good gameplay is achieved when the player faces problems that have non-trivial solutions. But how do you avoid designing in trivial choices?

For this example we'll be talking about units in a wargame, but they could just as easily be different maneuvers, weapons, spells, or whatever. The principal is the same. Say that that the three units are warriors, barbarians, and archers. Figure 3.1 shows one possible way that the combat relationship between them might work.

Figure 3.1Figure 3.1 Transitive combat relationship.

This is a transitive relationship. Warriors are best, then barbarians, then archers. Now consider the intransitive version in Figure 3.2.

Figure 3.2Figure 3.2 Intransitive combat relationship.

Warriors still beat barbarians, and barbarians beat archers, but now archers can beat warriors. It's a little bit more interesting. In fact, it ought to remind you of something familiar. That's right, it's Paper-Scissors-Stone. The example in this case comes from Dave and Barry Murray's 1984 game The Ancient Art of War. In that game, the warriors were stronger than barbarians at close quarters, but they were slow. The barbarians, on the other hand, were fast enough to close with the archers without taking much damage from their arrows.

There's more to be learned from Paper-Scissors-Stone, and we'll analyze it rigorously in Chapter 5, "Game Balance." For now, though, it's worth emphasizing that a non-transitive relation like Paper Scissors-Stone is only the minimum condition to get interesting choices. It ensures a dynamic equilibrium, which keeps the game from stagnating, but it's really just first base.

To illustrate this, suppose you're putting a Paper-Scissors-Stone kind of set-up into your game and you decide to hardwire it. That is, A beats B, B beats C, C beats A—in each case according to some look-up table that applies in all circumstances. If you did it that way, you would need to decide the values for the look-up table—how much better is each unit than the next one round the chain?

Figure 3.3 shows one option, in which a single warrior can beat any number of barbarians.

Figure 3.3Figure 3.3 Absolute superiority.

And Figure 3.4 shows the opposite extreme. Now, the warrior is just a tiny bit better than the barbarian, so 99 warriors are an even match for 100 barbarians:

Figure 3.4Figure 3.4 Marginal superiority.

Which of these is better? Don't waste time thinking about it; it's a trick question! Neither of them leads to interesting gameplay. In the first case (assuming all units have the same cost) armies will have to consist of an equal mix of As, Bs, and Cs; all other combinations will lose. In the second case, a player loses very little by fielding the wrong unit and so the unit interaction becomes virtually redundant.

So you can't hardwire in a single rule and hope for interesting gameplay. It just won't happen. What's needed is a dynamic relationship between different strategies so that in some cases A is much better than B, and in others there's little to choose between them. And sometimes maybe the worm can turn, and B can beat A.

Paper-Scissors-Stone is a first step in avoiding trivial gameplay. It means there isn't a single optimum strategy that wins every time. However, there should be an optimum strategy for each situation; "situations" in a well-designed game being complex because they include not only terrain, altitude, weather, time—the obvious things—but also whatever your opponents are doing. Case Study 3.1 provides an example of gameplay.

Case Study 3.1 Environment Plus Rules Equals Gameplay

At the Battle of Hastings in 1066 AD, King Harold of England had the dual problems of an exhausted army (having just force-marched the length of the country after another battle) and an enemy with a better mix of troop types. Duke William of Normandy had more and better archers, as well as cavalry in the form of his Norman knights. Harold, by contrast, was obliged to rely on infantry. The mainstay of his army, his housecarls with their massive axes, were formidable fighters but lacked the mobility for an offensive battle.

Knowing this, Harold drew up his troops on Senlac Hill, near Hastings, and awaited the Norman onslaught.

Under normal conditions, the Norman archers could have skirmished against the unsupported infantry and won eventual victory. Their volleys would pick off targets and, whenever the lumbering infantry in their heavy mail hauberks came too close, the archers could always run away.

That was the classic theory of early medieval warfare. On this occasion, Harold had found a way to refute the theory. Shooting uphill, the archers' volleys proved less effective. Harold's men were able to stand their ground, their kite shields interlocked to form a defensive wall around them. Even so, initially some of the arrows found their mark. Now and then one of the English soldiers would fall. The housecarls yearned to charge down the hill, but Harold knew that the enemy archers would counter that by retreating, and then would have the advantage. He ordered his men to stand and, as the day wore on, the Norman archers grew tired. Their arrows carried less force. They fell harmlessly among the housecarls, like twigs.

Harold was wise in warfare, but Duke William too had some tricks. Ordinarily, William would not have ordered his cavalry against the English shield wall. Horses will not charge onto a solid line of infantry (as long as the infantrymen know this and have the courage to stand firm). Harold's army did not lack for courage, William knew; they had the opposite problem. He sent his knights in wave after wave against the English line. Each time, the knights would wheel around at the last moment, or take a few lance-thrusts against the shields of the English footmen, and then ride off.

The English housecarls had suffered arrows raining down on them all day. They had little patience for a long wait and liked much better to be in the thick of battle. Now they had to watch Norman knights turn their backs and flee. Many broke from the line and charged.

Off the hill, the conventional theory of combined arms prevailed. Archers could inflict injury on infantry who lacked the mobility to close with them. If the infantry charged in an effort to catch the archers, enemy knights could ride in amongst them and wreak havoc.

If things had been different, could Harold have won? Who knows? The point is that he understood that there are ways to change the balance between different troop types. A good commander isn't the one with the best army; he is the one who knows best how to use it.

Ensuring Interesting Choices

Elite was one of the seminal games of the early '80s. The aim of the game was to accumulate wealth in the form of credits by trading between planets. When a player had earned 1000 credits, he could trade in his pulse laser and get a beam laser and 400 credits in exchange. The 400 credits kept the player in a good position to trade, and the beam laser was far superior to the pulse laser. Therefore, the player would regard the decision to upgrade as a no-brainer. The curious part of the choice was that you had to have 1000 credits before you could spend 600 on a beam laser. Had the beam laser been available as soon as you had 600 credits, an interesting choice would have been created: whether to upgrade right now (but have no credits left to trade with), or carry on trading armed with a substandard weapon.

In the context of a great game, it was a small enough flaw, but a highly illustrative one. A difficult choice had been taken out of the hands of the player.

Here are the kinds of choices that gameplay can involve:

  • An option that should sometimes be taken, and sometimes not, depending on other factors

  • An option whose timing is critical and depends on the context

  • An option that makes little difference whether you take it or not

  • An option that is always worth taking

  • An option that is never worth taking at any point in the game

The first two are evidently the most interesting in a gameplay sense. The third kind (choices that don't make much difference) are perfectly valid but they are chrome and should be recognized as such. Options always worth taking should be handled by the AI. For instance, in most third-person action games (Tomb Raider, Enter the Matrix, and so on) the AI auto-targets the nearest enemy because, nine times out of ten, that's the one the player will need to shoot first. Lastly, options that are never worth taking will be fun once only (if that) and thus ought to be seriously considered before you waste developers' time on them.

A Toolbox of Interesting Choices

Interesting choices are those that require good judgement on the part of the player, which means that the correct choice must vary with the circumstances. Your aim as designer is to ensure that those circumstances will never stagnate to the point that there is only one right way to win.

There is no method for finding the best and most intriguing choices. That's where the creative process comes in. (We said at the outset that it's a black art.) Even so, you can follow a number of tips to ensure the gameplay choices aren't trivial.

Strategic Choices

Strategic choices are those that affect the course of the game over the medium or long term. (This is distinct from tactical choices, which apply right now.) Strategic choices will have a knock-on effect on the player's range of tactical choices later, so they are a prime means of enabling good gameplay.

StarCraft is a typically well-designed game from Blizzard. One of the choices in the game is whether you should first upgrade the range of your Marines' rifles, or upgrade the damage the rifles do, or research the StimPack which will allow the Marines to fire faster. This decision requires some thought. If you are expecting a heavily armored foe such as a Protoss Zealot, you will probably want the extra damage—whereas lots of fast-moving opponents like Zerglings call for different tactics. Other factors that will influence your choice are how many Marines you have, what the surrounding terrain is like, whether you have bunkers built, and whether you anticipate an offensive or defensive campaign.

Warzone 2100 includes a beautiful example of strategic decision making. The player needs to build manufacturing plants to spawn his war machines. Optionally, he can build these manufacturing plants in the current level—in which case they deliver units quickly but only for use in that level—or he can build them back at his main base, which means that new units arrive more slowly but the plant can be used to provide units in later levels too.

Sometimes one option will be called for, sometimes another. A player who selects options according to a set plan will not do as well as one who adapts to circumstances. The lesson is that, to create good gameplay, different choices should lead to different kinds of payoff. This way, you reduce the risk that choices will be trivial, and increase the scope for good judgment.

Supporting Investments

Often a game has not only a primary objective but also secondary aims that have to be attended to before you can reach the final goal. For example, the primary goal might be to destroy the enemy, but to do that you might need to build farms to produce food to spawn peasants to trade to make money to recruit soldiers and so on.

Some expenditure directly achieves your eventual goal. In a wargame, an example might be buying a mercenary. Other types of expenditure indirectly work towards your goal, and these are called supporting investments.

Primary supporting investments operate at one remove. For instance, improving weapons technology to make your mercenaries tougher, or building an extra barracks to house mercenaries.

Other supporting investments work more indirectly. For instance, building a smithy so that weapons can be upgraded, or researching construction techniques so that barracks can be built more quickly.

Note that researching construction techniques helps at both the second and third remove: It helps you build barracks to attract mercenaries, and it helps you build smithies to research technology to improve mercenaries. This kind of complexity is excellent, because it makes the decision to research less simple and more interesting.

By including decisions that operate at different levels, you create the need for players to think strategically. The payoff for choosing different investments will alter according to what other players do.

Versatility

A useful rule-of-thumb for anticipating gameplay is to ask what is the best and worst thing about each of the player's options. For instance:

  • This maneuver does the most damage, but it's the slowest.

  • This maneuver is the fastest, but it leaves me defenseless.

  • This maneuver gives the best defense, but it does little damage.

And then there's a unique kind of choice:

  • This maneuver is never the best or the worst, but it's the most versatile.

So, a useful question to ask yourself when designing a weapon or strategy for your game is "When, if ever, is this the best option for the player?" Most choices that you put into the game should be the best in some way. And one of these can be the choice that works only moderately well, but in many different ways: the jack-of-all-trades option.

The more unpredictable the game environment, the bigger the payoff for having versatility of choice. Beginners in particular will benefit from versatile options in a game, as it means there's something they can do while working their way up the learning curve. But versatile options are handy for expert players too. When fighting an expert opponent, you must expect the unexpected, and choosing the versatile maneuver or unit may buy time to put together a more considered response.

One obvious kind of versatility is speed. The fast moving character or unit can quickly go where it's needed. So, normally, you won't want the fastest units to also be the best in other ways.

Also, the value of a fast-moving unit depends on the game environment. On the battlefields of the 14th century, a knight was deemed to be worth 100 foot soldiers. That wasn't because knights were each individually as tough as 100 men, but rather because in a terrain of hedgerows, ditches, ploughed fields, and heathland, the knight had more chance of being at the right place at the right time.

There are many other ways to make an option versatile. If a beam weapon can be used to mine asteroids as well as to destroy incoming nuclear missiles, then that versatility can make up for a disadvantage elsewhere. Of course, if there is no compensating disadvantage, there's no interesting choice. Be careful not to make the versatile choice dominant over all others. Also, be aware that the versatility of a choice may not be obvious even to you as designer. In the last chapter, we saw how the designer of the fantasy game Arena hadn't originally anticipated the way players might use the fireball spells. Case Study 3.2 provides an example of unexpected versatility.

Case Study 3.2 Unexpected Versatility

In 1997, Dave Morris was working with Jamie Thomson on Abraxas, an on-line CRPG for a major UK publisher. One of the things we wanted was for the game world to have its own laws for the players to discover and exploit. As Jamie put it, "We might suddenly find that a player in Ohio has invented the Abraxas equivalent of steam engine."

One of the factors we were considering was combustion. The temperature scale ranged from -30 (equivalent to absolute zero) up to +1000, with 0 being comfortable room temperature. Materials had an ignition temperature, a burning temperature (within the flame) and a radiative temperature (adjacent to the flame). So oil would ignite at +6, the temperature of its flame was +4, and the flame modified the ambient temperature by +1. (The range of that effect depended on the size of the flame.)

In one playtesting session, players were transporting barrels of phlogiston, a magical substance that burns with a cold flame. They got caught in a blizzard and the temperature dropped to -8, which was definitely life threatening. Now, the properties of phlogiston were that it ignited at +5, burned at -5 and had a radiative temperature of -1. How could they use it to save themselves? A phlogiston fire couldn't warm them because it would merely reduce the ambient temperature by a further -1, taking it down to -9.

Then somebody realized that the temperature within the flame was constant irrespective of the environment and because phlogiston burned at a negative temperature, it wouldn't ignite them or their belongings. So they started a fire and survived the night by sitting inside the flames at a cold but tolerable -5. They had found a versatile solution that we as designers had never expected.

You can measure versatility by looking at the switching costs in the game. This is how much it costs a player to change his mind about the strategy he's using. An example in an espionage game might be if you recruit a spy and later realize you need an assassin instead. The switching cost is however much you wasted on the wrong character, assuming for the sake of argument that the spy is not usable elsewhere. So, say that both cost $1 million. When deciding which to buy, at first you'd think, "If I buy the spy and I need the assassin, I'll end up paying $2 million. If I choose right, it costs me just the $1 million. On the other hand, suppose I buy both now—I only need one, so I'll definitely have wasted $1 million."

Now suppose there is another character, the ninja, who can function as either spy or assassin. How much should the ninja cost? It depends how unpredictable the game is. In this example, if the game were completely predictable, the player would know in advance which character to recruit and so versatility is of no value—the ninja should cost $1 million just like the others. In a completely unpredictable environment, the average cost would be $1.5 million ($1 million if I choose right, $2 million if I choose wrong), which is what a good gambler would pay you for the ninja. Since the truth will lie between those extremes, the versatile unit should cost more than $1 million but less than $1.5 million.

Versatility is more prized in an uncertain environment. No multiplayer game is completely predictable, since you can never know what the other player(s) will do. Even in a relatively predictable game, some levels are more uncertain than others. All of which makes the choice between specialization or versatility an interesting one because it all depends on the circumstances.

Compensating Factors

Consider a strategy game that includes an aerial unit capable of crossing any terrain. The aerial unit is the best at getting places because no other unit can cross all terrain types—ships can't go on land, mountaineers can't cross oceans, camel riders are slowed by forest, and so on. But this unit can go anywhere. How can we as designers balance that?

  • We could make it slow.

  • We could make it weak (for example, easily destroyed).

  • We could give it low surveillance range (rather unlikely).

  • We could make it expensive to buy.

The last of those isn't so good, though, because it doesn't oblige the player to use the unit in a interesting way. He either buys the unit or he doesn't, and once he's made that choice he's committed. The choice whether to buy might be strategically interesting, but it won't lead to clever tactics.

These are all compensating factors. They ensure that any game choice has something in its favor and something weighing against it.

Compensating factors only work when it is clear to the player what they are. Maybe he will decide that the powerful unit is worth having despite the fact that it's so expensive because he intends to make a big push and grab the oil fields. The player's plan might fail, but the choice is his and it is an informed choice. Case Study 3.3 provides an example of how to balance compensating factors.

Case Study 3.3 Balancing Compensating Factors

Shapeshifter is a proposed action-adventure game that allows the player to take the form of various creatures. Each creature has unique abilities. To ensure a degree of strategic choice, Martin, the designer, builds in a cost in magic points each time the player changes shape.

Martin is describing one of the creatures at a development team meeting. "The werewolf is by far the strongest character in the game when the moon is full, and he's invulnerable to anything but silver bullets, but he's only as tough as a normal man at other times."

Sandra, one of the level designers, is skeptical. "If we have a full moon level, which I assume we will, then any player who has the points to transform into a werewolf will always do it. And on other levels you can see how long till full moon, so you can save up your points. It's a no-brainer. Is that good gameplay?"

"It's not quite that simple," says Martin. "First of all, didn't we say we can have weather effects? If the moon goes behind a cloud, or if another player casts a fog spell, that weakens the moonlight and the werewolf isn't so useful."

Sandra isn't entirely convinced. "Well, the weather effects are random, so that makes changing to wolf form just a gamble rather than a gameplay decision. I can see the point if other players are able to create fog, though."

"What about the silver bullets?" points out Kay, the software planner. "Either another player will have one—in which case the werewolf is dead—or not, in which case the werewolf wins hands down."

Martin considers this. "Obviously we don't want it all decided from the start of the level. So there will have to be a silver bullet somewhere on the full moon level, and finding it has to be difficult."

"It still comes down to another gamble," points out Sandra. "Do I spend a lot of points changing to a werewolf, or go looking for the silver bullet and hope I find it before the werewolf player finds me? It's just luck. I'm not sure these are interesting choices."

"You know what?" said Kay. "It's this simple. The silver bullet is going to be very effective against the werewolf, which means it needs to be less useful in other ways. It might be that it does less damage to other characters, or it might be more expensive. But simply making it rare or hard to find is a bad way to balance it, because that takes the choice whether to use it out of the players' hands."

From a gameplay perspective, compensating factors are worthless if the player only finds out about them after making the decision that they apply to—for instance, if the player has to choose a commando squad before seeing the mission they are to undertake. Maybe the arctic survival expert's many strengths are counterbalanced by not having the disguise and fast-talk skills of the CIA man. But all that counts for nothing if it turns out the mission they've been picked for is a hike through tropical jungle to blow up a bridge.

Impermanence

All decisions that pay off lead to some kind of advantage. Some advantages are long lasting: You got to the crate first, so you got the bonus. Others are impermanent: I built my base near the tiberium, sure, but you can still grab it off me.

Impermanence gives the designer another way to confront the player with difficult choices. Would I rather have pretty good armor for the rest of the game, or be completely invulnerable for thirty seconds? It depends, of course, on the circumstances.

Advantages (and disadvantages) can be impermanent in a number of ways:

  • They can be destroyed by chance or by enemy action.

  • They can be stolen or converted.

  • They can apply to something which you don't always have (your heavy cavalry, your jet bike, your wand of flame).

  • They can have a certain number of uses (six bullets in a magazine).

  • They can last for a certain time (the spell wears off at midnight).

Impermanence is of course another kind of compensating factor. But it is one that occurs so often in games, and has such special consequences, that it is worth considering as a separate category of choice.

Shadow Costs

In every game, players are continually being presented with costs and trade-offs. A cost doesn't have to mean money or victory points; it can be simply the things you had to succeed at before you could get to the options you're facing next. What is the real cost of a game choice—in terms of time, effort, attention and alternative resources required to get there? In Warrior Kings, players can hire mercenaries for gold. But the cost of a mercenary isn't only the gold you spent to hire him. First you had to build shops, and townsmen to trade in them, and a tavern to attract the mercenaries to your town in the first place. So you need to consider everything you had to go through to hire that mercenary. This is the shadow cost.

Note that shadow costs are related to supporting investments. Tracing a flowchart for all supporting investments will show you the kinds of strategic choices the player has to make. Summing all the factors along one particular branch of that flowchart tells you the shadow cost required to reach each node of it. Case Study 3.4 gives an example of shadow costs.

Case Study 3.4 Shadow Costs in Age of Empires

The primary resources of Age of Empires are wood and food. Food is pretty much an inexhaustible resource within the confines of the game, but wood—although easy to harvest—is finite.

Consider a charioteer. The apparent costs of the charioteer are 60 wood, 40 food, and 40 seconds to spawn. This unit's shadow cost, however, changes greatly over the course of the game. Early on, when the player's economy is underdeveloped, both food and wood are expensive. The forty seconds' spawning time is not so important, though. Later in the game, wood and food are plentiful and your main concern is how quickly you can pump out new units. In the end game, if there is no convenient supply of wood left, each charioteer you spawn is priceless.

The shadow cost of the charioteer involves other factors too, of course—like the stables you had to build, and the upgrades you've paid to make him a useful unit. But it is the influence of the fluctuating availability of resources that has most dramatic impact throughout the game.

A shadow cost is the underlying cost to the player of a decision. You can use the variability of shadow costs to add subtlety to your game. Vary the environment and you vary the shadow costs. This is both a challenge for the level designer and an opportunity to give the gameplay more depth that expert players will appreciate.

Synergies

Synergies are the interaction between different elements of the player's strategic arsenal. They take four forms, as shown in Table 3.1.

Table 3.1 Synergies

Good fit = positive feedback

Economies of Scale:

The more units of one type you have, the better each unit is. If your magicians draw strength from each other, then the value of a new magician is greater if you already have many others.

Economies of Scope:

Of obvious use representing the advantage of combined arms (for example, infantry units should be supported by tanks). Also covers the use of complementary gadgets (such as mining lasers with mineral scoops, or a gladiator fighting with net and trident).

Poor fit = negative feedback

Diseconomies of Scale:

The first unit is the most useful—after a while it's not worth getting any more. Some investments are designed to be increasingly costly—although this sometimes disguises a drop in the real shadow cost.

Diseconomies of Scope:

Mixed troops must move at the pace of the slowest, and must be given different orders. Sometimes a focused approach is better than hedging your bets and being able to do nothing well.

Ideally, all four of these synergies should be in play at once because when they interact, they make decisions of timing more critical. When carefully chosen they also add verisimilitude and make the game more immersive.

Altering the balance between different synergies critically affects the gameplay. A game with many economies of scale and scope is a game that gives positive feedback and encourages the player who is already winning. Chess is a game of positive feedback; it's very carefully balanced but even a small mistake is magnified throughout the game. Games like this tend to tip suddenly as a small advantage becomes crushing. Positive feedback in a game with chance elements also encourages gambling—having 20 units is much better than having ten, so if offered a double or quits gamble you'll take it. Monopoly displays this kind of gameplay.

On the other hand, if there's an emphasis on diseconomies then you have negative feedback. Here, advantages are increasingly hard won, and those who are losing will rarely fall far behind. These synergies create a "catch-up" factor. Such a game will tend to last a long time. It's a good simulation of certain types of warfare, such as a land war in Asia, or trench combat. How much fun it is will depend on what else you have put in to keep the player's interest.

A Final Word About Gameplay

As we said in the last chapter, by way of introduction to this whole topic, a good game is one you win by doing something your opponent did not expect and making it work. This is not simply a case of allowing for interesting choices. As the designer, you also need to make sure those choices will interact. It's not so satisfying to win a game just by out-optimizing the other guy on resource production, or whatever. I want his choices to have made a difference to mine. If the aim is just to complete the level with more points than another player scored when he tried it, then your choices and your opponent's choices aren't interacting at all. What you have then is a competition rather than a game.

Worst of all is a game where you simply have to know the right thing to do, and choices don't enter the picture at all. Then it isn't even a competition, it's a foregone conclusion.

We have to stress again that all this only applies to gameplay, and gameplay isn't everything. Many software entertainment products aren't games at all. There's no harm in that. Grim Fandango is a mystery story requiring you to solve puzzles; it is no more a game than a book of riddles is a game, but nobody cares because it's fun.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020