Overview

Project: Master Of None

Estimated Development Time: 25-30 hours

Lines Of Code: 500

Description: Cover objects are designer placed positions that define potentially defensive or strategic  locations. However, the power of these objects comes from the system that manages them, predefining and updating information that would take far more processing time if done by individual NPCs.

Objectives:

  1. Have data predefined or processed on a need to basis.
  2. Group the different parts of cover to streamline the evaluation process.

 

 

Design and Development

A single Cover Object can consist of 4 different parts:

  1. Cover Object: Contains and manages all linked Cover Sides.
  2. Cover Side: Contains and manages all linked Cover Spots.
  3. Cover Spot: Contains and manages all linked Attack Positions. It is also the final position used when a NPC enters cover.
  4. Attack Position: Works as a max range when a NPC is trying to get an angle on enemy from cover.

 

 

Managed Data

The biggest advantage to predefined cover objects is the ability to have the heavy computing done in the editor or only when something significantly changes within the environment. You are then able to use what would otherwise be expensive data far more often. The cost merely becomes accessing the data.

 

Cover Type:

The cover type is one of the small editor calculations. It describes the nature of a Cover Spot; whether the user of the cover is able to shoot over the top or is able to lean out for an attack. If not for this preset data, a lot of processing would have to be done in the midst of a battle.

 

Cover To Cover Line Of Sight:

Each Cover Spot contains a list of other Cover Spots that it or its attack positions have line of sight to. These are calculated once upon loading up the level. Only in the case of major environment change are they evaluated again.

Each pink line represents line of sight to another Cover Spot.

 

Influence Tracking:

When the level is loading up, each Cover Spot finds a reference to the influence nodes that corresponds to their spot on the context map. This allows quick and easy access to determine an enemy's or friendly's influence in that particular spot. Cover Sides will average out all of there linked Cover Spots in order to get a more accurate evaluation.

The green squares highlight the particular influences nodes the Cover Spots reside within. The color of the square represents which team has more influence over it. Blue is friendly and red is enemy.