Thunderbots Project
Loading...
Searching...
No Matches
motion_constraint_set_builder.h
1#pragma once
2
3#include <set>
4
5#include "proto/primitive.pb.h"
6#include "software/ai/hl/stp/tactic/tactic.h"
7#include "software/ai/hl/stp/tactic/tactic_visitor.h"
8#include "software/world/game_state.h"
9
10
19std::set<TbotsProto::MotionConstraint> buildMotionConstraintSet(
20 const GameState &game_state, const Tactic &tactic);
21
22
23
32std::set<TbotsProto::MotionConstraint> buildMotionConstraintSetFromGameState(
33 const GameState &game_state);
Holds the state of the game according to the referee.
Definition game_state.h:80
Definition tactic.h:39