blob: 5ff45032a2348168e306901935a093588098018f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#pragma once
#include <concepts>
#include <string>
#include <string_view>
#include "openvic-simulation/military/UnitType.hpp"
#include "openvic-simulation/types/fixed_point/FixedPoint.hpp"
#include "openvic-simulation/utility/Getters.hpp"
namespace OpenVic {
template<UnitType::branch_t Branch>
struct UnitInstance {
using _UnitType = UnitTypeBranched<Branch>;
private:
std::string PROPERTY(unit_name);
_UnitType const& PROPERTY(unit_type);
fixed_point_t PROPERTY_RW(organisation);
fixed_point_t PROPERTY_RW(morale);
fixed_point_t PROPERTY_RW(strength);
protected:
UnitInstance(std::string_view new_unit_name, _UnitType const& new_unit_type);
public:
UnitInstance(UnitInstance&&) = default;
void set_unit_name(std::string_view new_unit_name);
};
struct Pop;
template<UnitType::branch_t>
struct UnitInstanceBranched;
template<>
struct UnitInstanceBranched<UnitType::branch_t::LAND> : UnitInstance<UnitType::branch_t::LAND> {
friend struct UnitInstanceManager;
private:
Pop* PROPERTY(pop);
UnitInstanceBranched(std::string_view new_name, RegimentType const& new_regiment_type, Pop* new_pop);
public:
UnitInstanceBranched(UnitInstanceBranched&&) = default;
};
using RegimentInstance = UnitInstanceBranched<UnitType::branch_t::LAND>;
template<>
struct UnitInstanceBranched<UnitType::branch_t::NAVAL> : UnitInstance<UnitType::branch_t::NAVAL> {
friend struct UnitInstanceManager;
private:
UnitInstanceBranched(std::string_view new_name, ShipType const& new_ship_type);
public:
UnitInstanceBranched(UnitInstanceBranched&&) = default;
};
using ShipInstance = UnitInstanceBranched<UnitType::branch_t::NAVAL>;
}
|