aboutsummaryrefslogtreecommitdiff
path: root/game/gst.h
blob: e86ddc5648711baf0ddf3bbbb292fd188739a4aa (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#ifndef GST_H
#define GST_H

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <functional>

#include <random> // just for picking market trains

#include "ground.h"
#include "entity.h"
#include "tile.h"
#include "player.h"
#include "tech.h"

class Ability {
    public:
    Ability(std::string name) : name(name) {}
    std::string name;
};

class Bonus {
    public: 
    Bonus(float amt, int id, bool atk) : amt(amt), id(id), atk(atk) {}
    float amt; int id; bool atk;
    enum Id { ground, type, ability, tech, veteran, on_bld, adjacency };
    std::string id_string () {
        switch (id) {
            case ground: return "Ground";
            case type: return "Class";
            case ability: return "Ability";
            case tech: return "Tech";
            case veteran: return "Veteran";
            case on_bld: return "On Building";
            case adjacency: return "Adjacency";
        }
    }
};

class BattleResult {
    public:
    BattleResult(float atk_hp, float def_hp) 
        : atk_hp(atk_hp), def_hp(def_hp) {}
    float atk_hp, def_hp;
};

class Inv {
    public:
    Inv () {}
    
    std::vector<Tech> techs;
    std::vector<Ability> abilities;
    std::vector<EntityInfo> infos;
    std::vector<Tile> tiles;
    Ground ground;
    
    Tech* get_tech (int id);
    EntityInfo* get_info (std::string name);
    EntityInfo* get_info (int id);
    bool info_has_ability (EntityInfo* info, std::string name);
    
    std::default_random_engine engine = std::default_random_engine{};
};

class Gst {
    public:
    Gst(Inv *inv) : inv(inv) { }
    
    Inv *inv;
    
    std::vector<Entity> entities;
    std::vector<Player> players;
    
    int turn { 0 };
    int day { 0 };
    
    Player& get_player (int id);
    
    Entity& get_at (int x, int y);
    std::vector<float> get_cost (EntityInfo *info, Player &player);
    float get_trade_rate (Player &player);
    
    int get_vet_level (Entity &ent);
    float get_type_bonus (Entity &atk, Entity &def);
    std::vector<Bonus> get_bonuses (Entity &atk, Entity &def);
    float get_damage (Entity &atk, Entity &def);
    float get_damage (Entity &atk, Entity &def, float atk_hp);
    bool get_first_strike (Entity &atk, Entity &def);
    BattleResult battle_res (Entity &atk, Entity &def);
    void clear_dead();    
    int get_range(Entity &ent);
    
    void battle (Entity &atk, Entity &def);
    
    void heal (Entity &atk, Entity &def);
    void convert (Entity &atk, Entity &def);
    
    std::vector<int> get_possible_trains (Entity &ent);
    std::vector<int> get_possible_builds (Entity &ent);
    
    bool check_req_build (Entity &ent, EntityInfo *info);
    bool check_req_tech (Tech *tech, Player &player); 
    bool check_req_level (Player &player); 
    bool check_obstructed (Entity &ent);
    
    void end_day ();
    void level_upgrade (Player &player);
    
    void update_tech_lookup (Player &player);
};

#endif