Overview

Project: Master Of None

Estimated Development Time: 30-40 hours

Lines Of Code: 700

Description: The Context Map, at its most basic, allows influence to be spread through the map on a 2d representation of a game world. Influence can represent anything from danger used in determining cover to general object space for dynamic collision avoidance.

The colors blue and red represent the amount of influence or control a team has over that particular location. The brighter the color, the more influence they have.

 

Objectives:

  1. Make the propagation of influence efficient enough that the nodes can be relatively small for the sake of precision.
  2. Have influence dampened or blocked entirely by the environment.

 

Thought Process and Choices

 

Why I chose to use a Context Map :

I was originally drawn to context maps with the idea of being able to determine the best cover positions without having to do a bunch of ray-casting. It would allow a NPC to filter through 20 cover spots almost as easily as it could 2 spots. The NPC would simply be retrieving map data rather than having to process the vulnerability of each position. Later on I also saw the advantages a context map could bring when it comes to collision avoidance and general battlefield navigation.

 

Results:

The context map and its manager has gone through several iterations. I would say it is roughly 75% complete. For cover determination, however, it works like a charm. Adding influences is a simple process, but I fear adding additional types of context maps for collision avoidance may complicate things. Due to this potential issue, it most likely will require one more major revision on the manager side before it is finished.

 

Design and Development

Overview

Context maps are not terribly complex or unique, therefore, I will not go into much detail about its architecture but instead focus on the differences it has with the average context map.

Below is short video of a battle between two teams. Debug mode for the context map has been turned on to show the greatest influence in each node. You can see in the video where the influence of both teams converge, creating a sort of battle line.

 

In this next video, the red team has already lost a soldier, making it a 2v3 battle. After a few moments, the blue team loses their first member(Top-Right Corner at 0:12) creating a shift in influence on the battlefield.

 

 

Differences From Traditional Context Maps:

 

1. Not Very Node'ish

Although I consider each of the squares in the context map a "node," they do not have links/connections to each other like one would assume. Rather, the nodes are stored in a 2D array, allowing me to propagate by simply moving within the container. Each node has a direct correlation to a square section of the world, meaning that when trying to get the influence of a location, I do not need to determine to closest node. I simply convert the world location into an index in the array.

 

2. Propagation

Propagation of influence occurs only once per map update, which is currently around twice per second. The propagation extends its entire length during that update.

 

3. Environment Damping

The objects within the environment can slow or entirely cut off the propagation of influence. Which nodes are dampened and by what amount are calculated upon loading of the level.

In the image below, the light blue squares represent nodes in the context map that dampen the amount of propagation force.