Presentation is loading. Please wait.

Presentation is loading. Please wait.

The Greedy Wall Building algorithm Rami Khouri. Ideal definition of Wall Either keeps valuable assets in, or enemies out…mostly keep enemies out Impassable,

Similar presentations


Presentation on theme: "The Greedy Wall Building algorithm Rami Khouri. Ideal definition of Wall Either keeps valuable assets in, or enemies out…mostly keep enemies out Impassable,"— Presentation transcript:

1 The Greedy Wall Building algorithm Rami Khouri

2 Ideal definition of Wall Either keeps valuable assets in, or enemies out…mostly keep enemies out Impassable, or slows down opponents in vulnerable positions –Every wall segment has two unique neighbors –Contains an interior protected area –All interior areas are connected through a path

3 These are not walls Exceptions: Some games will connect blocks on diagonal spaces together, While other games use gates to allow subdivision of inner area. The greedy algorithm is NOT concerned with creating an inner wall.

4 Greedy Algorithm A plan that takes steps for the best immediate gain…do not plan ahead into the future moves Dijkstra’s Shortest Path is an example of Greedy algorithm that gives optimal results In the case of building a wall, Greedy algorithm does not provide optimal results, but good enough for use.

5 Basic Premise of Greed… We will try to “push” the walls outward by expanding at the edges Each move is to expand a wall to incorporate one, and only one new space. Moves cannot break the definition of wall as seen earlier – we are always protected

6

7 Problem with This Paradigm To push the wall outward, we must have a case for every possible wall configuration. 68 cases if tiles are squares, much more if tiles are hexagonal, more if their octagonal Special cases if the wall is adjacent to a natural barrier. –Thinking of the problem in terms of pushing the wall is complex

8 Change the paradigm Instead of pushing the walls, expand the inner area Represent the tiles as vertices, and connections between tiles as edges –Now we can have as many edges as we want coming out of a node –We can represent indestructible natural barriers as the absence of an vertex/edge

9 So how do we apply the algorithm? Keep three lists: –List of all nodes & edges, graph –Closed list: all nodes in the interior space of the wall –Open list: all nodes that are candidates for expansion, in practice this is the perimeter of the enclosed area, i.e. spaces that the wall is occupying Closed Open Graph

10 List OpenList, ClosedList, Graph WallBuilder (Node Start, Criteria Accept){ While (OpenList != empty && Accept != criteria){ if ( bestChoice.Cost <= affordable){ remove bestChoice() from openList add bestChoice to closedList for each Neighbor of BestChoice(){ if (not in closedList or openList) {add to openList/Build wall on it} }

11 How to pick the best choice? Pick the move with the highest value and lowest cost. In this case, Value is always 1, so lets worry only about the cost: –Cost of a move is how many wall constructions it would take to seal it from the outside: This is the number of nodes it connects to that are not in the open or closed list Lets call this w(x); for any node x

12 Demo1 Run Demo1

13 So now we have Cost(n) = w(n); But now lets extend it to take into account that we want to wall in closer nodes first d(n) = value based on distance, –closer = lower c is a constant higher than max d(n) Cost(n) = c * w(n) + d(n)  what is the effect of this formula in English

14 Lets extend Cost(n) = 0 if d(n) < minimum distance Cost(n) = infinity > maximum distance Cost(n) = c * w(n) + d(n) Natural barriers have a cost of zero if toughness => walls

15 Demo2 Run Demo 2

16 What happens here?

17 Gates Draw a path to areas of interest (resources or enemy strongholds) On each path place a gate. Gates within a certain distance of each other can be combined

18

19 Hierarchy in Strategy Games Division of tasks Maps Message Sending

20 Demo 3

21 Without subdivision, movements such as “Human Wave Attacks” are simple: All soldiers: Attack Point (X,Y)” But more complex commands, such as pincer movement, flanking..etc are much harder to implement: Soldier 1 “I am closest to east side, but are there already enough people on that side? Let me ask each soldier and make sure they don’t have too many….etc”

22 Realistic Solution Army Corps Division Corps Division Brigade Battalion Company Platoon Squad Soldier

23 Using a realistic solution, we can divide troops into subgroups…troops, squads, platoons…etc. Creating a level of abstraction between the player and individual troops, a concept often used in OOP programming Squad A attack left side Abstracts: soldier 00001 move left, then attack from left …… soldier 00008 move left, then attack from left

24 Levels of Hierarchy Unit AI: –Soldier, Tank, Helicopter…etc –Short distance path finding –Report events to Squad –Accept Attack & Move commands Some freedom is given in how to execute move and attack (touched on later)

25 Element Map: view of unit Unit sees individual elements of the map i.e. soldier will see –A tree –A rock –A destroyed tank –An enemy sniper Soldier know how to select their own targets and engage, and to find strategic locations within a small area when told to attack or support

26 Squad Interpret commands from higher level (platoon) and send to individual soldiers Set checkpoints for individual soldiers to follow, higher level path finding Maintain reasonable formation, track each unit Receive feedback from units, and move them back up to platoon  move and attack to units. Backup units in need of help

27 Tile Map: Squad view A Squad can see its own individual troops in detail, but abstracts enemy troop data i.e. enemy attack & Defend Squad abstracts attributes of terrain, i.e. mobility rating, defensive rating, connection to other tiles Defense: 2 Offense:3 Mobility: 4 Cover:5 Defense: 2 Offense:5 Mobility: 7 Cover:2 Defense: 1 Offense:1 Mobility: 10 Cover:0 Defense: 0 Offense:0 Mobility: 10 Cover:1

28 Platoon Interpret commands from higher level and translate them to squad instructions Platoon movement is handled by setting checkpoints for each squad in a path to destination – let squad handle smaller pathfinding Keep track of squads, interpret messages i.e. squad Strength, encounter enemy, losing fight…etc. Coordinate backup and formation Pass information up to higher levels (Engaging enemy, need backup, need reinforcement…etc)

29 Tile Map: Platoon view See individual squads of self Abstract enemy values Abstracts attributes of terrain, i.e. mobility rating, defensive rating. Connection to other tiles is most important Basically a continuation of map abstraction from unit to squad, to Platoon Defense: 2 Offense:3 Mobility: 4 Cover:5 Defense: 2 Offense:5 Mobility: 7 Cover:2 Defense: 1 Offense:1 Mobility: 10 Cover:0 Defense: 0 Offense:0 Mobility: 10 Cover:1 Artillery: 14 Speed: 10 Small Arms: 7

30 Computer Player AI Civilization building –Economics –Technology Building Military Set policy towards neighbors –Offensive/Defensive/Alliance

31 CPAI map Highest level map. See strength and weakness of enemy See Resources within an area Only pathfinding necessary is “does a path exist”

32 Interesting Concept! Give commanders of troops personalities! Tactics vary from defensive, aggressive, merciless, highly strategic…etc civilization series, Command & Conquer Generals

33 Gold:104Offense: 19 Oil:78Defense: 21 Disposition: Friendly Gold:67Offense: 15 Oil:44Defense: 17 Disposition: Hostile Gold:104Offense: 19 Oil:78Defense: 21

34 SQUAD PLATOON Computer PlayerUNITDefend Path Defend Path (middle) Defend Location Ready Enemy spotted All Units AttackEngaging enemy Back up squad engage Engaging enemy Hold Platoon formation

35

36

37

38


Download ppt "The Greedy Wall Building algorithm Rami Khouri. Ideal definition of Wall Either keeps valuable assets in, or enemies out…mostly keep enemies out Impassable,"

Similar presentations


Ads by Google