Conquer Space 0.0.0
A space themed grand strategy game set in the near future, with realistic orbital mechanics, and an emphasis on economics and politics.
commands.h
Go to the documentation of this file.
1/* Conquer Space
2 * Copyright (C) 2021-2025 Conquer Space
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17#pragma once
18
19#include <initializer_list>
20
23#include "common/universe.h"
24
26enum class Command {
33 CoplanarIntercept, // Just intercepts
34 CoplanarInterceptAndTransfer, // Intercepts and matches orbit
35 Impulse,
37};
38
39enum class Trigger {
40 // When to trigger the command
43 OnManeuver, // When the previous manuever is executed
44 OnCrash,
45};
46
49};
50
52 double value; // Modifies the orbit by some sort of scalar
53};
54
56 entt::entity target;
57};
58
62bool VerifyCommand(Universe& universe, entt::entity command);
64bool ProcessCommandQueue(Universe& universe, entt::entity body, Trigger trigger);
65void ExecuteCommand(Universe& universe, entt::entity entity, entt::entity command_entity, Command command);
66void TransferToMoon(Universe& universe, entt::entity agent, entt::entity target);
67void LandOnMoon(Universe& universe, entt::entity agent, entt::entity target, entt::entity city);
68
69void PushManeuvers(Universe& universe, entt::entity entity, std::initializer_list<components::Maneuver_t> maneuver,
70 double offset = 0);
71void PushManeuvers(Universe& universe, entt::entity entity, components::HohmannPair_t hohmann_pair, double offset = 0);
72} // namespace cqsp::common::systems::commands
Definition: universe.h:34
std::pair< Maneuver_t, Maneuver_t > HohmannPair_t
Definition: movement.h:27
Definition: commands.cpp:27
void ExecuteCommand(Universe &universe, entt::entity entity, entt::entity command_entity, Command command)
Definition: commands.cpp:32
Trigger
Definition: commands.h:39
bool ProcessCommandQueue(Universe &universe, entt::entity body, Trigger trigger)
Returns true if a command is processed and popped, returns false if not.
Definition: commands.cpp:124
void LandOnMoon(Universe &universe, entt::entity agent, entt::entity target, entt::entity city)
Definition: commands.cpp:195
void TransferToMoon(Universe &universe, entt::entity agent, entt::entity target)
Definition: commands.cpp:154
bool VerifyCommand(Universe &universe, entt::entity command)
Definition: commands.cpp:28
Command
Definition: commands.h:26
void PushManeuvers(Universe &universe, entt::entity entity, std::initializer_list< components::Maneuver_t > maneuver, double offset)
Definition: commands.cpp:180
glm::vec3 offset
Definition: starsystemview.cpp:74
entt::entity target
Definition: commands.h:56
double value
Definition: commands.h:52
components::types::Orbit orbit
Definition: commands.h:48
common::Universe * universe
Definition: turnsavewindow.h:3