Difference between revisions of "Tick-Based Games"

From gdp3
Jump to: navigation, search
(Using the pattern)
Line 18: Line 18:
  
 
== Using the pattern ==
 
== Using the pattern ==
[[The Show Must Go On]]
+
Designing games so that the game state is updated at regular intervals is typically done so [[The Show Must Go On]], both for games with [[Asynchronous Gameplay|Asynchronous]] and [[Synchronous Gameplay]]. [[Dedicated Game Facilitators]] are typically needed to enforce, or at least inform players, when ticks should occur. Ticks can also be created locally for players or for actions. [[Spawning]] does this for players after their [[Avatars]] or [[Player Characters]] have died while [[Cooldown]] do this for actions.
 
+
both those with [[Asynchronous Gameplay|Asynchronous]] and [[Synchronous Gameplay]].  
+
 
+
[[Dedicated Game Facilitators]] are typically needed to enforce, or at least inform players, when ticks should occur. Ticks can also be created locally for players or for actions. [[Spawning]] does this for players after their [[Avatars]] or [[Player Characters]] have died while [[Cooldown]] do this for actions.
+
 
+
  
 +
[[Tick-Based Games]] need to limit the number of actions players can do each tick to be meaningful, but [[Action Caps]] can be used to not limit this to one action per tick. Seen in another perspective, [[Tick-Based Games]] can be seen as putting [[Time Limits]] on [[Budgeted Action Points]].
  
 
=== Can Be Modulated By ===
 
=== Can Be Modulated By ===
[[Action Caps]],
 
 
[[Always Vulnerable]],  
 
[[Always Vulnerable]],  
 
[[Game Pauses]],  
 
[[Game Pauses]],  
Line 36: Line 31:
  
 
=== Can Modulate ===
 
=== Can Modulate ===
[[Budgeted Action Points]],
+
 
 
[[Massively Single-Player Online Games]],  
 
[[Massively Single-Player Online Games]],  
  
Line 55: Line 50:
 
[[Interruptibility]],  
 
[[Interruptibility]],  
 
[[Negotiable Play Sessions]],  
 
[[Negotiable Play Sessions]],  
[[No-Ops]]
+
[[No-Ops]],
 +
[[The Show Must Go On]]
  
 
==== with [[Private Game Spaces]] ====
 
==== with [[Private Game Spaces]] ====

Revision as of 13:35, 18 July 2015

The one-sentence "definition" that should be in italics.

This pattern is a still a stub.

Examples

Anti-Examples

optional

Using the pattern

Designing games so that the game state is updated at regular intervals is typically done so The Show Must Go On, both for games with Asynchronous and Synchronous Gameplay. Dedicated Game Facilitators are typically needed to enforce, or at least inform players, when ticks should occur. Ticks can also be created locally for players or for actions. Spawning does this for players after their Avatars or Player Characters have died while Cooldown do this for actions.

Tick-Based Games need to limit the number of actions players can do each tick to be meaningful, but Action Caps can be used to not limit this to one action per tick. Seen in another perspective, Tick-Based Games can be seen as putting Time Limits on Budgeted Action Points.

Can Be Modulated By

Always Vulnerable, Game Pauses, Persistent Game Worlds, Private Game Spaces, Real-Time Games, Time Limits

Can Modulate

Massively Single-Player Online Games,


Like in Real-Time Games, Tick-Based Games can make Events Timed to the Real World.

Consequences

Tick-Based Games allow players to do a limited number of action each tick, including No-Ops. When the time allotted to each tick is more than significant for planning and performing these actions, Tick-Based Games support a bounded Freedom of Choice of when to play, or phrased differently, Negotiable Play Sessions. This also supports a limited form of Interruptibility since players can interrupt their gameplay without negative effects if they have time to plan and perform necessary gameplay action before the tick occurs. Exaggerated Perception of Influence can be another consequence of Tick-Based Games in these cases where they have ample time to plan what to do.

Tick-Based Games that take place in Private Game Spaces support Asynchronous Gameplay. They limit the amount of Downtime a player can have to the length of a tick.

Relations

Can Instantiate

Events Timed to the Real World, Exaggerated Perception of Influence, Freedom of Choice, Interruptibility, Negotiable Play Sessions, No-Ops, The Show Must Go On

with Private Game Spaces

Asynchronous Gameplay, Freedom of Choice

Can Modulate

Asynchronous Gameplay, Budgeted Action Points, Downtime, Massively Single-Player Online Games, Synchronous Gameplay

Can Be Instantiated By

Cooldown, Dedicated Game Facilitators, Spawning

Can Be Modulated By

Action Caps, Always Vulnerable, Game Pauses, Persistent Game Worlds, Private Game Spaces, Real-Time Games, Time Limits

Possible Closure Effects

-

Potentially Conflicting With

-

History

An updated version of the pattern Tick-Based Games that was part of the original collection in the book Patterns in Game Design[1].

References

  1. Björk, S. & Holopainen, J. (2004) Patterns in Game Design. Charles River Media. ISBN1-58450-354-8.

Acknowledgements

-