Using Cellular Automata and Influence Maps in Games

  • Slides: 24
Download presentation
Using Cellular Automata and Influence Maps in Games Penny Sweetser The University of Queensland

Using Cellular Automata and Influence Maps in Games Penny Sweetser The University of Queensland

Overview n n n n Cellular Automata Influence Maps Grid-Based Techniques Decision making, environmental

Overview n n n n Cellular Automata Influence Maps Grid-Based Techniques Decision making, environmental modelling Spread information in different ways Simple and powerful, separately or together Design, implementation, application to games

Cells n n Divide game world into cells Each cell a database containing info

Cells n n Divide game world into cells Each cell a database containing info about: ¡ n combat strength, vulnerable assets, area visibility, body count, resources, weather, passability Cell size – accuracy / efficiency ¡ 10 -20 standard units side by side

Influence Maps 1 n n Strategic assessment / decisionmaking Usually strategy games Spatial representation

Influence Maps 1 n n Strategic assessment / decisionmaking Usually strategy games Spatial representation of AI’s knowledge about the game world Strategic perspective of game state layered over geographical 1 Tozour, P. (2001) Influence Mapping. In M. Deloura (Ed. ), Game Programming Gems 2. Hingham, MA: Charles River Media, Inc. , pp. 287 -297.

Influence Maps n Influence map indicates: ¡ ¡ ¡ where the AI’s forces are

Influence Maps n Influence map indicates: ¡ ¡ ¡ where the AI’s forces are deployed where the enemy is / most likely to be where the “frontier” between players lies what areas are yet to be explored where significant battles have occurred where enemies are most likely to attack in the future

Influence Maps n IM’s structure makes it possible to make intelligent inferences about: ¡

Influence Maps n IM’s structure makes it possible to make intelligent inferences about: ¡ ¡ ¡ areas of high strategic control weak spots in an opponent’s defences prime “camping” locations strategically vulnerable areas choke points on the terrain other meaningful features that human players would choose through intuition or practice

Influence Maps n n n IM tracks variables separately for each player (multiple parallel

Influence Maps n n n IM tracks variables separately for each player (multiple parallel IM’s) Each AI keeps one IM for itself and one for every other player Could keep one IM and let all AI’s access it (but this is cheating)

Influence Propagation n n n Once initial values given to cells, needs to be

Influence Propagation n n n Once initial values given to cells, needs to be propagated More accurate strategic perspective – current influence / potential influence Spread influence with “falloff” rule Selection of falloff rules is subjective, requires tweaking and tuning Exponential falloff – choose a constant 0. . 1 Need to terminate falloff (never reaches 0) Falloff should be proportional to cell size

Influence Propagation n Top-left: ¡ n Top-right: ¡ n Influence values Lower-right: ¡ 2

Influence Propagation n Top-left: ¡ n Top-right: ¡ n Influence values Lower-right: ¡ 2 Sweetser, Propagation Lower-left: ¡ n Game state Influence grey scale P. (2004) Strategic Decision-Making with Neural Networks and Influence Maps. In S. Rabin (Ed. ), AI Game Programming Wisdom 2. Hingham, MA: Charles River Media, Inc. , pp. 439 -446.

Desirability Value n n n Estimates cell’s value with respect to a certain decision

Desirability Value n n n Estimates cell’s value with respect to a certain decision (e. g. where to attack) Cells can be ranked by how good they appear for the decision Usually calculated with weighted sum ¡ ¡ ¡ n Choose relevant variables for decision Multiply by coefficient (roughly indicates variable’s importance for decision) Sum all weighted variables together Choice of variables / weights is subjective

Desirability Value n n n Variables used depends on game / design / decisions

Desirability Value n n n Variables used depends on game / design / decisions being made Need to compensate for different units of measure (e. g. health vs. rate of fire) Example desirability values: ¡ attack and defence desirability, exploration, defensive asset placement, resource-collection asset placement, unit-producing asset placement, vulnerable asset placement

Weighted Sums for Desirability n n Weighted sums are simple / transparent But: ¡

Weighted Sums for Desirability n n Weighted sums are simple / transparent But: ¡ ¡ ¡ Choosing the relevant variables is difficult Finding good weights is time-consuming Important info might be lost

Alternative to Weighted Sums n n Simulated annealing or evolutionary approaches to find weights

Alternative to Weighted Sums n n Simulated annealing or evolutionary approaches to find weights Neural networks: ¡ ¡ ¡ Determine variables that most influence decision / ignore irrelevant variables Variables are analysed in parallel, info in individual variables is not lost Weights are determined during training

Neural Networks in IM’s 2 n Computational complexity ¡ ¡ ¡ n n Number

Neural Networks in IM’s 2 n Computational complexity ¡ ¡ ¡ n n Number of inputs and weights But don’t need to analyse whole map Train before shipping Different AI personalities / strategies Learn to mimic human players 2 Sweetser, P. (2004) Strategic Decision-Making with Neural Networks and Influence Maps. In S. Rabin (Ed. ), AI Game Programming Wisdom 2. Hingham, MA: Charles River Media, Inc. , pp. 439 -446.

Cellular Automata in Games n n n Proposed as a solution to static environments

Cellular Automata in Games n n n Proposed as a solution to static environments in games 3 More dynamic / realistic behaviour of scripted elements – fire, water, explosions, smoke, heat Conducting research into using CA in games for environmental modelling 3 Forsyth, T. (2002) Cellular Automata for Physical Modelling. In D. Treglia (Ed. ), Game Programming Gems 3. Hingham, MA: Charles River Media, Inc.

Cellular Automata Research n n No research or implementation of CA in games Are

Cellular Automata Research n n No research or implementation of CA in games Are CA appropriate for use in games? Can CA facilitate emergent gameplay? What effect will this have on the player?

Cellular Automata - Traditional n n n Spatial, discrete time model Space represented as

Cellular Automata - Traditional n n n Spatial, discrete time model Space represented as uniform grid Each cell has a state (from a finite set) Time advances in discrete steps Each step, cells change state according to a set of rules New state = function of previous state of the cell and state of neighbour cells

Cellular Automata - Traditional n 1 D – single line of cells, 2 neighbours

Cellular Automata - Traditional n 1 D – single line of cells, 2 neighbours n 2 D – 4 or 8 neighbours 1 2

Cellular Automata in Games n States are continuous (not discrete) ¡ n States have

Cellular Automata in Games n States are continuous (not discrete) ¡ n States have multiple variables ¡ n E. g. heat = 657. 21 E. g. heat, pressure, water Rules are continuous ¡ Damage = temp * burning rate

CA in Games Research 4 n Environmental systems ¡ ¡ 4 Sweetser, Heat and

CA in Games Research 4 n Environmental systems ¡ ¡ 4 Sweetser, Heat and Fire Rain and Fluid Flow Pressure and Explosions Integrated System P. & Wiles, J. (unpublished) Using Cellular Automata to Facilitate Emergence in Game Environments. Submitted to the Journal of Game Development.

CA and IMs in Games n n Cellular automata and influence maps can be

CA and IMs in Games n n Cellular automata and influence maps can be integrated Values generated by CA used for decision-making by influence map ¡ E. g. AI can consider environmental factors when making a decision

CA & IM in Games Research n n Agents used CA and IM to

CA & IM in Games Research n n Agents used CA and IM to determine how to react to the environment Agents use the cellular automata values to determine “comfort” Added a goal (desirability) Desirability of goal is propagated

Conclusion n Grid-based techniques ¡ ¡ n Advantages ¡ n Cellular Automata Influence Maps

Conclusion n Grid-based techniques ¡ ¡ n Advantages ¡ n Cellular Automata Influence Maps Allow type of behaviour to be specified Disadvantages ¡ Lots of tuning / testing to get desired behaviour

References Forsyth, T. (2002) Cellular Automata for Physical Modelling. In D. Treglia (Ed. ),

References Forsyth, T. (2002) Cellular Automata for Physical Modelling. In D. Treglia (Ed. ), Game Programming Gems 3. Hingham, MA: Charles River Media, Inc. Sweetser, P. (2004) Strategic Decision-Making with Neural Networks and Influence Maps. In S. Rabin (Ed. ), AI Game Programming Wisdom 2. Hingham, MA: Charles River Media, Inc. , pp. 439 -446. Sweetser, P. & Wiles, J. (unpublished) Using Cellular Automata to Facilitate Emergence in Game Environments. Submitted to the Journal of Game Development. Tozour, P. (2001) Influence Mapping. In M. Deloura (Ed. ), Game Programming Gems 2. Hingham, MA: Charles River Media, Inc. , pp. 287 -297.