MountainGoap 0.14.0

dotnet add package MountainGoap --version 0.14.0
NuGet\Install-Package MountainGoap -Version 0.14.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MountainGoap" Version="0.14.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MountainGoap --version 0.14.0
#r "nuget: MountainGoap, 0.14.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MountainGoap as a Cake Addin
#addin nuget:?package=MountainGoap&version=0.14.0

// Install MountainGoap as a Cake Tool
#tool nuget:?package=MountainGoap&version=0.14.0

<img src="https://github.com/caesuric/mountain-goap/raw/main/logo.png" alt="Mountain GOAP logo" title="Mountain GOAP" align="right" height="180" />

Mountain GOAP

Generic C# GOAP (Goal Oriented Action Planning) library for creating AI agents to be used in games. GOAP is a type of an AI system for games popularized by the F.E.A.R. AI paper. GOAP agents use A* pathfinding to plan paths through a series of sequential actions, creating action sequences that allow the agent to achieve its goals.

Mountain GOAP favors composition over inheritance, allowing you to create agents from a series of callbacks. In addition, Mountain GOAP's agents support multiple weighted goals and will attempt to find the greatest utility among a series of goals.

  1. Quickstart
    1. Using distributable
    2. Using distributable in Unity
    3. Using NuGet package
    4. Using as a Unity package
    5. Using the code directly
    6. Using the library after installation
  2. Concepts & API
    1. Agents
      1. Agent state
    2. Goals
      1. Extreme Goals
      2. Comparative Goals
    3. Actions
      1. Comparative Preconditions
      2. Arithmetic Postconditions
      3. Parameter Postconditions
    4. Sensors
    5. Permutation selectors
    6. Cost callbacks
    7. State mutators
    8. State checkers
    9. Full API Docs
  3. Events
    1. Agent events
    2. Action events
    3. Sensor events
  4. Logger
  5. Examples
  6. Project structure
  7. Roadmap
  8. Other open source GOAP projects
  9. License Acknowledgements

Quickstart

Using distributable

Download the release, unzip, and include the DLL in your project. In Visual Studio, you can do this by right-clicking on "Dependencies" in the Solution Explorer, then clicking "Add COM Reference," clicking "Browse," and browsing to the DLL.

Using distributable in Unity

Download the release, unzip to a folder, and drag the folder into your Unity project.

Using NuGet package

If you are not using Unity, you can download and use MountainGoap as a NuGet package.

Right click your package and click "Manage NuGet Packages," then search for "MountainGoap" and install the package.

Using as a Unity package

In the works.

Using the code directly

Clone the repo and copy the code in the MountainGoap folder to your repo.

Using the library after installation

No matter which method of installation you use, you can access MountainGoap by using the MountainGoap namespace as a prefix to the library classes, or by including the following line in your code:

using MountainGoap;

Concepts & API

Agents

Agents are indivdual entities that act within your game or simulated world. The simplest example of instantiating an agent is this: Agent agent = new Agent();

In practice, you will want to pass the agent constructor various things it needs to make a functional agent. Read on to understand what kinds of objects you should pass your agents.

When you want your agent to act, just call the following: agent.Step();

What kind of timeframe is represented by a "step" will vary based on your engine. In a turn based game, a step might be one turn. In a realtime engine like Unity, you might call agent.Step() on every Update() cycle. In a turn-based game you will probably want to call agent.Step() on every turn. In the case of turn-based games, you can force at least one action to be taken per turn by calling agent.Step(mode: StepMode.OneAction). If you want the entire action sequence to be completed in one turn, you can call agent.Step(mode: StepMode.AllActions).

For additional granularity, you can also call the functions agent.Plan(), agent.ClearPlan(), agent.PlanAsync(), and agent.ExecutePlan(). See the full API docs for additional details.

Agent state

The agent stores a dictionary of objects called its state. This state can include anything, but simple values work best with goals and actions. If you need to reference complex game state, however, this is not a problem -- sensors, covered below, can be used to translate complex values like map states into simpler ones, like booleans. More on that below.

State can be passed into the agent constructor, like so:

Agent agent = new Agent(
    state: new Dictionary<string, object> {
        { "nearOtherAgent", false },
        { "otherAgents", new List<Agent>() }
    }
);

Goals

Goals dictate the state values that the agent is trying to achieve. Goals have relatively simple constructors, taking just a dictionary of keys and values the agent wants to see in its state and a weight that indicates how important the goal is. The higher the weight, the more important the goal.

Goals can be passed into the agent constructor, like so:

Goal goal = new Goal(
    desiredState: new Dictionary<string, object> {
        { "nearOtherAgent", true }
    },
    weight: 2f
);
Agent agent = new Agent(
    goals: new List<Goal> {
        goal
    }
);
Extreme Goals

Extreme goals attempt to maximize or minimize a numeric state value. They take similar parameters to normal goals, but the values in the dictionary must be booleans. If the boolean is true, the goal will attempt to maximize the value. If the boolean is false, the goal will attempt to minimize the value. The state value must be a numeric type for this to work correctly.

Example that will try to maximize the agent's health:

ExtremeGoal goal = new ExtremeGoal(
    desiredState: new Dictionary<string, object> {
        { "health", true }
    },
    weight: 2f
);
Comparative Goals

Comparative goals attempt to make a numeric state value compare in a certain way to a base value. They take similar parameters to normal goals, but the values in the dictionary must be ComparisonValuePair objects. The ComparisonValuePair object specifies a value to use for comparison and a comparison operator to use. The state value must be a numeric type and the same type as the comparison value for this to work correctly.

Example that will try to make the agent's health greater than 50:

ComparativeGoal goal = new ComparativeGoal(
    desiredState: new Dictionary<string, object> {
        { "health", new ComparisonValuePair {
            Value = 50,
            Operator = ComparisonOperator.GreaterThan
         } }
    },
    weight: 2f
);

Actions

Actions dictate arbitrary code the agent can execute to affect the world and achieve its goals. Each action, when it runs, will execute the code passed to it, which is called the action executor. Actions can also have preconditions, state values required before the agent is allowed to execute the action, and postconditions, which are values the state is expected to hold if the action is successful. Finally, each action has a cost, which is used in calculating the best plan for the agent.

Actions return an ExecutionStatus enum to say if they succeeded or not. If they succeed, the postconditions will automatically be set to the values passed to the action constructor. If the ExecutionStatus returned is ExecutionStatus.Executing, the action will be considered in progress, and the executor will be called again on the next Step command.

Actions can be passed into the agent constructor, like so:

Action giveHugAction = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("hugged someone");
        return ExecutionStatus.Succeeded;
    },
    preconditions: new Dictionary<string, object> {
        { "nearOtherAgent", true }
    },
    postconditions: new Dictionary<string, object> {
        { "wasHugged", true }
    },
    cost: 0.5f
);
Agent agent = new Agent(
    actions: new List<Action> {
        giveHugAction
    }
);
Comparative Preconditions

Comparative preconditions are preconditions that are calculated by comparing a state value to a target value. They take similar parameters to normal preconditions, but the values in the dictionary must be ComparisonValuePair objects.

Example where energy must be greater than zero to walk:

Action walk = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("I'm walkin' here!");
        return ExecutionStatus.Succeeded;
    },
    comparativePreconditions: new() {
        { "energy", new() { Operator = ComparisonOperator.GreaterThan, Value = 0 } }
    },
);
Arithmetic Postconditions

Arithmetic postconditions are postconditions that are calculated by performing arithmetic on other state values. They take similar parameters to normal postconditions, but the values in the dictionary are added to the existing state value instead of replacing it. Note that the state value and the postcondition value must be of the same numeric type for this to work correctly.

Example that will add 10 to the agent's health as a postcondition:

Action heal = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("healed for 10 hp");
        return ExecutionStatus.Succeeded;
    },
    arithmeticPostconditions: new Dictionary<string, object> {
        { "health", 10 }
    },
    cost: 0.5f
);

Note that normal Goals use simple equality checks and cannot tell that a value is closer or further away from the goal value. If you want to use an arithmetic postcondition and have the library detect that you are moving closer to your goal, use Comparative Goals or Extreme Goals. Both of these types of numerically based goals will calculate distance from a numeric goal value properly.

Parameter Postconditions

Parameter postconditions are postconditions that copy one of the parameters passed to the action into the agent state. The structure uses a dictionary of string keys and string values, where the keys are the keys to the parameter value being copied and the values are the state key into which you are copying the value.

Example that will copy the "target" parameter into the "target" state value:

var targets = new List<string> { "target1", "target2" }
Action setTarget = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("set target");
        return ExecutionStatus.Succeeded;
    },
    permutationSelectors: new() {
        { "target", PermutationSelectorGenerators.SelectFromCollection(targets) }
    },
    parameterPostconditions: new Dictionary<string, string> {
        { "target", "target" }
    },
    cost: 0.5f
);

This example will create permutations of the action that either target "target1" or "target2", and will copy the selected target into the "target" state value. See permutation selectors for more information on permutation selectors.

Sensors

Sensors allow an agent to distill information into their state, often derived from other state values. Sensors execute on every Step() call, and use a sensor handler to execute code. Sensors can be passed into the agent constructor, like so:

Sensor agentProximitySensor = new Sensor(
    (Agent agent) => {
        if (AgentNearOtherAgent(agent)) agent.State["nearOtherAgent"] = true;
        else agent.State["nearOtherAgent"] = false;
    }
);
Agent agent = new Agent(
    sensors: new List<Sensor> {
        agentProximitySensor
    }
);

Permutation Selectors

Finally, actions can be constructed with permutation selectors, which will instantiate multiple copies of the action with different parameters for purposes such as target selection. The library comes with some default permutation selector generators, or you can write your own as callbacks. For instance, if you want an action to be evaluated separately with each member of a list as a potential parameter, you would construct the action as so:

Action myAction = new Action(
    permutationSelectors: new Dictionary<string, PermutationSelectorCallback> {
        { "target1", PermutationSelectorGenerators.SelectFromCollectionInState<Agent>("otherAgents") },
        { "target2", PermutationSelectorGenerators.SelectFromCollectionInState<Agent>("otherAgents") }
    },
    executor: (Agent agent, Action action) => {
        Console.WriteLine(action.GetParameter("target1").ToString());
        Console.WriteLine(action.GetParameter("target2").ToString());
    }
);

The code above will create an action that when evaluated for execution in an agent plan will be considered once for every pair combination of elements in the "otherAgents" collection of the agent state, one for target1, and one for target2. In order to take advantage of this feature, you can also calculate variable costs based on action parameters using the costCallback argument in the Action constructor. See cost callbacks for more information.

Cost Callbacks

Cost callbacks allow you to calculate the cost of an action based on its parameters. This is useful for actions that have variable costs based on the parameters passed to them. For instance, if you have an action that moves the agent to a target, you might want to calculate the cost of the action based on the distance to the target. You can do this by passing a cost callback to the action constructor:

Action moveToTarget = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("moved to target");
        return ExecutionStatus.Succeeded;
    },
    costCallback: (action, state) => {
        if (action.GetParameter("target") is Agent target) {
            var distance = GetDistance(this, target);
            return distance;
        }
        else return float.MaxValue;
    }
);

State Mutators

State mutators allow you to mutate the agent state during execution or evaluation of an action. This is useful for actions that have more complex side effects on agent state. For instance, if you have an action that moves the agent to a target, you might want to mutate the agent state to reflect the new position of the agent. You can do this by passing a state mutator to the action constructor:

Action moveToTarget = newAction(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("moved to target");
        return ExecutionStatus.Succeeded;
    },
    stateMutator: (action, state) => {
        if (action.GetParameter("target") is Agent target) {
            state["position"] = target.State["position"];
        }
    }
)

State Checkers

State checkers allow you to check agent state programmatically during execution or evaluation of an action. This is useful for actions that have more complex preconditions than simple equality checks or arithmetic comparisons. For instance, if you have an action that moves the agent to a target, you might want to check that the target is in range. You can do this by passing a state checker to the action constructor:

Action moveToTarget = new Action(
    executor: (Agent agent, Action action) => {
        Console.WriteLine("moved to target");
        return ExecutionStatus.Succeeded;
    },
    stateChecker: (action, state) => {
        if (action.GetParameter("target") is Agent target) {
            var distance = GetDistance(this, target);
            if (distance > 10) return false;
            else return true;
        }
        return false;
    }
);

Full API Docs

Full API docs are available here.

Events

Mountain GOAP features a simple event system that allows you to subscribe to events that occur during the agent's planning and execution process.

Agent events

The following events are available on agents:

  • OnAgentActionSequenceCompleted: Called when the agent has finished executing its plan.
    • Example usage: Agent.OnAgentActionSequenceCompleted += (Agent agent) => { Console.WriteLine("Agent finished executing its plan."); };
  • OnAgentStep: Called when the agent executes a step of work.
    • Example usage: Agent.OnAgentStep += (Agent agent) => { Console.WriteLine("Agent is working."); };
  • OnPlanningStarted: Called when the agent begins planning.
    • Example usage: Agent.OnPlanningStarted += (Agent agent) => { Console.WriteLine("Agent started planning."); };
  • OnPlanningFinished: Called when the agent finishes planning.
    • Example usage: Agent.OnPlanningFinished += (Agent agent, Goal? goal, float utility) => { Console.WriteLine("Agent finished planning."); };
  • OnPlanningFinishedForSingleGoal: Called when the agent finishes planning for a single goal.
    • Example usage: Agent.OnPlanningFinishedForSingleGoal += (Agent agent, Goal goal, float utility) => { Console.WriteLine("Agent finished planning for a single goal."); };
  • OnPlanUpdated: Called when the agent generates a viable action sequence.
    • Example usage: Agent.OnPlanUpdated += (Agent agent, List<Action> actionList) => { Console.WriteLine("Agent generated a viable action sequence."); };
  • OnEvaluatedActionNode: Extremely low level debugging tool, called whenever the agent evaluates a potentially viable node in the action graph. The second parameter is a dictionary of all nodes that have been evaluated so far, with the keys as the most recent nodes and the values as the nodes that preceded them. You can use this to reconstruct the chain of actions that led to this point.
    • Example usage: Agent.OnEvaluatedActionNode(ActionNode node, Dictionary<ActionNode, ActionNode> nodes) => { Console.WriteLine("Agent evaluated a node.")}

Action events

The following events are available on actions:

  • OnBeginExecuteAction: Called when the agent begins executing an action.
    • Example usage: Action.OnBeginExecuteAction += (Agent agent, Action action, Dictionary<string, object> parameters) => { Console.WriteLine("Agent started executing an action."); };
  • OnFinishExecuteAction: Called when the agent finishes executing an action.
    • Example usage: Action.OnFinishExecuteAction += (Agent agent, Action action, ExecutionStatus status, Dictionary<string, object> parameters) => { Console.WriteLine("Agent finished executing an action."); };

Sensor events

The following events are available on sensors:

  • OnSensorRun: Called when the agent runs a sensor.
    • Example usage: Sensor.OnSensorRun += (Agent agent, Sensor sensor) => { Console.WriteLine("Agent ran a sensor."); };

Logger

Mountain GOAP contains a default logger implementation that can be used to examine agent behavior. After including the MountainGoapLogger code, you can enable the logger using the following code:

_ = new MountainGoapLogger.DefaultLogger(
    logToConsole: true,
    loggingFile: "agents.log"
);

Examples

Examples documentation.

  1. Happiness Maximizer Example
  2. RPG Example

Project Structure

File or folder Description
/Examples/ Examples of how to use the library
/Examples/RpgExample/ RPG grid-based example.
/Examples/RpgExample/RpgCharacterFactory.cs Static methods for creating character agents.
/Examples/RpgExample/RpgExample.cs Main RPG example entrypoint.
/Examples/RpgExample/RpgMonsterFactory.cs Static methods for creating enemy agents derived from the base character agent.
/Examples/RpgExample/Utils.cs RPG example utility functions.
/Examples/examples.md Examples documentation.
/Examples/HappinessIncrementer.cs Happiness incrementer example.
/Examples/Program.cs Examples entrypoint.
/MountainGoap/ The main library folder
/MountainGoap/CallbackDelegates/ Function signatures for callbacks.
/MountainGoap/CallbackDelegates/ExecutorCallback.cs Function signature for a callback that executes an action.
/MountainGoap/CallbackDelegates/PermutationSelectorCallbacks.cs Function signature for a callback that selects a list of options for an action parameter.
/MountainGoap/CallbackDelegates/SensorRunCallback.cs Function signature for a callback that runs a sensor.
/MountainGoap/Internals/ Internal classes that external applications using the library will not need directly.
/MountainGoap/Internals/ActionAStar.cs Class that calculates AStar for an action graph.
/MountainGoap/Internals/ActionGraph.cs Class that represents an action graph.
/MountainGoap/Internals/ActionNode.cs Class that represents a node in an action graph.
/MountainGoap/Internals/CopyDictionaryExtensionMethod.cs Convenience extension method for copying a dictionary.
/MountainGoap/Internals/Planner.cs Planning class used by agents.
/MountainGoap/Action.cs An action that can be made available to agents.
/MountainGoap/Agent.cs An agent that can figure out plans to execute.
/MountainGoap/BaseGoal.cs A base class for all goal types.
/MountainGoap/ComparativeGoal.cs A goal that compares a value to a pre-existing value
/MountainGoap/ComparisonOperator.cs An enum defining the comparison operators that can be used with ComparativeGoal.
/MountainGoap/ComparisonValuePair.cs A class that represents a comparison value pair.
/MountainGoap/ExecutionStatus.cs An enum defining the execution status of an action.
/MountainGoap/ExtremeGoal.cs A goal that attempts to minimize or maximize a state value.
/MountainGoap/Goal.cs A goal that agents can attempt to accomplish.
/MountainGoap/PermutationSelectorGenerators.cs Generators for lambda functions that return a list of options for an action parameter.
/MountainGoap/Sensor.cs A sensor that generates data for use by an agent.
/MountainGoapLogging/DefaultLogger.cs Example logger implementation that can be used to inspect agent behavior.

Roadmap

  • Tests
  • Examples - general and Unity

Other open source GOAP projects

  • ReGoap - C# GOAP library with more direct Unity support, providing Unity Components that can be attached to GameObjects.

License Acknowledgements

Project is MIT licensed, and the main license file can be found here.

Priority Queue Implementation

The MIT License (MIT)

Copyright (c) 2013 Daniel "BlueRaja" Pflughoeft

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.14.0 397 1/3/2024
0.13.0 93 1/3/2024
0.12.0 100 1/2/2024
0.11.4 111 12/23/2023
0.11.3 99 12/18/2023
0.10.0 233 9/17/2023
0.9.1 91 9/17/2023
0.9.0 95 9/13/2023
0.8.0 104 9/11/2023
0.7.1 98 9/7/2023
0.7.0 145 6/5/2023
0.6.8 104 6/2/2023
0.6.7 100 6/1/2023
0.6.5 124 4/17/2023
0.6.3 527 3/18/2023
0.6.2 185 3/16/2023
0.6.1 171 3/15/2023
0.5.0 311 10/30/2022
0.4.1 308 10/30/2022
0.3.2 348 10/10/2022
0.3.1 337 10/10/2022
0.2.0 367 10/10/2022
0.1.6 349 10/8/2022
0.1.5 344 10/8/2022
0.1.4 355 10/8/2022
0.1.1 345 10/6/2022

Initial release.