blob: 8030ffd5a5dc327dba1ab7d9d6940092f13dd167 (
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
|
#pragma once
#include <godot_cpp/classes/object.hpp>
#include <openvic-simulation/interface/GFXObject.hpp>
#include <openvic-simulation/military/UnitInstanceGroup.hpp>
#include <openvic-simulation/types/OrderedContainers.hpp>
namespace OpenVic {
struct BuildingInstance;
class ModelSingleton : public godot::Object {
GDCLASS(ModelSingleton, godot::Object)
static inline ModelSingleton* singleton = nullptr;
protected:
static void _bind_methods();
public:
static ModelSingleton* get_singleton();
ModelSingleton();
~ModelSingleton();
private:
GFX::Actor const* get_actor(std::string_view name, bool error_on_fail = true) const;
GFX::Actor const* get_cultural_actor(
std::string_view culture, std::string_view name, std::string_view fallback_name
) const;
godot::Dictionary make_animation_dict(GFX::Actor::Animation const& animation) const;
godot::Dictionary make_model_dict(GFX::Actor const& actor) const;
template<UnitType::branch_t Branch>
bool add_unit_dict(
ordered_set<UnitInstanceGroupBranched<Branch>*> const& units, godot::TypedArray<godot::Dictionary>& unit_array
) const;
bool add_building_dict(
BuildingInstance const& building, ProvinceInstance const& province,
godot::TypedArray<godot::Dictionary>& building_array
) const;
public:
godot::TypedArray<godot::Dictionary> get_units() const;
godot::Dictionary get_cultural_gun_model(godot::String const& culture) const;
godot::Dictionary get_cultural_helmet_model(godot::String const& culture) const;
godot::Dictionary get_flag_model(bool floating) const;
godot::TypedArray<godot::Dictionary> get_buildings() const;
};
}
|