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.
sysmovement.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 <vector>
20
23
24namespace cqsp {
25namespace common {
26namespace systems {
28 public:
30 void DoSystem() override;
31 int Interval() override { return 1; }
32
33 private:
34 void ParseOrbitTree(entt::entity parent, entt::entity body);
35
42 void LeaveSOI(const entt::entity& body, entt::entity& parent, components::types::Orbit& orb,
44
51 bool EnterSOI(const entt::entity& parent, const entt::entity& body);
52
60 void CrashObject(cqsp::common::components::types::Orbit& orb, entt::entity body, entt::entity parent);
61
62 void UpdateCommandQueue(cqsp::common::components::types::Orbit& orb, entt::entity body, entt::entity parent);
63
64 void CalculateImpulse(cqsp::common::components::types::Orbit& orb, entt::entity body, entt::entity parent);
65};
66
67class SysPath : public ISimulationSystem {
68 public:
70 void DoSystem();
71 int Interval() { return 1; }
72};
73
75 public:
77 void DoSystem();
78 int Interval() { return 1; }
79};
80} // namespace systems
81} // namespace common
82} // namespace cqsp
Wrapper class for all the components of the game, so that all the game stuff can be initialized in on...
Definition: game.h:28
Definition: isimulationsystem.h:27
Game & game
Definition: isimulationsystem.h:43
Definition: sysmovement.h:27
void ParseOrbitTree(entt::entity parent, entt::entity body)
Definition: sysmovement.cpp:148
void CrashObject(cqsp::common::components::types::Orbit &orb, entt::entity body, entt::entity parent)
Check if the entity has crashed into its parent object
Definition: sysmovement.cpp:74
bool EnterSOI(const entt::entity &parent, const entt::entity &body)
Change the current body's SOI into a child SOI
Definition: sysmovement.cpp:233
void DoSystem() override
Definition: sysmovement.cpp:37
SysOrbit(Game &game)
Definition: sysmovement.h:29
void LeaveSOI(const entt::entity &body, entt::entity &parent, components::types::Orbit &orb, components::types::Kinematics &pos, components::types::Kinematics &p_pos)
Sets the SOI of the entity to the parent
Definition: sysmovement.cpp:43
void CalculateImpulse(cqsp::common::components::types::Orbit &orb, entt::entity body, entt::entity parent)
Definition: sysmovement.cpp:103
void UpdateCommandQueue(cqsp::common::components::types::Orbit &orb, entt::entity body, entt::entity parent)
Definition: sysmovement.cpp:121
int Interval() override
Definition: sysmovement.h:31
Definition: sysmovement.h:67
SysPath(Game &game)
Definition: sysmovement.h:69
void DoSystem()
Definition: sysmovement.cpp:217
int Interval()
Definition: sysmovement.h:71
Definition: sysmovement.h:74
SysSurface(Game &game)
Definition: sysmovement.h:76
int Interval()
Definition: sysmovement.h:78
void DoSystem()
Definition: sysmovement.cpp:201
std::string parent
Definition: loadplanets.cpp:50
When adding assets, it is extremely crucial that you read cqsp::asset::AssetLoader::LoadResources to ...
Definition: clientctx.h:22
Relative position from the parent orbiting object.
Definition: coordinates.h:32