So, what is gameplay?
First, I think it's important to define clearly what a game is, and to differentiate it from other game-like things. To me, the critical aspects of a game are:
- Games are played by one or more players. If something doesn't have a player, it's not a game (for example, an a-life demo isn't a game, even though it has states and rules and an idea of failure).
- Games are, fundamentally, big state machines. This means that you have some idea of game state that is updated by actions taken by players. The game state can be represented by anything from a board and pieces, to a 3D rendered world on a monitor, to players on a field, to some nerds running around with foam swords hitting each other.
- Games always include some sort of metric for player performance. This means that games are, essentially, goal oriented. While some games may not have winners or losers (e.g. D&D) they do present metrics or mechanics that reward players for successful play (XP in the case of D&D) or punish them for unsuccessful play (Death in the case of D&D).
- Games have rules, be they simulative (e.g. Forza Motorsport) or more abstract (Chess, Tetris).
- There are two types of rules: first, a series of actions are defined as valid for players. These can be presented as the valid inputs allowed to players in a video game, or as a list of things you can't do in a sport, or a list of how each piece moves in a board game.
Second, you have rules that determine how the game state is updated based on the cumulative actions of players. These rules can be relatively simple (Chess) or very complex (American Football).
I think this definition is helpful because it starts to take apart things that have traditionally been a part of games (e.g. Puzzles) and sets them apart from core gameplay. Most puzzles in games don't really rely on gameplay - when you're trying to find the right item to open a door in an adventure game, there isn't really a ruleset to rely on or a gamestate to update. If there is, it's so simplistic (Actions: each item in your inventory! Rules: binary success or failure based on which item you picked!) that the "gameplay" becomes trivial. Or, the results of the actions are unclear, and the goal is to figure out which action is correct, not to optimize the results across many different valid options.
I'm curious to your opinion of Minecraft. You said that one of the critical aspects of games is its goal orientation. But minecraft has no goals, at least not set by the game. It's all about your own goals that you create on what essentially is a world with nothing but resources. Unless you consider "surviving" a goal, the game sets none. It is massively popular for Sonething with no goals. Is this an exception to the rule, are the rules of gameplay evolving or do I just not fully understand?
ReplyDeleteI think Minecraft is a sandbox that people make into a game by creating goals for themselves. On the other hand, Survival mode at least has failure criteria, which does mean that bad play is punished and good play encouraged.
ReplyDelete