summaryrefslogtreecommitdiff
path: root/src/game_edit_data.hpp
blob: cc3af2dcf738c1b4ea387116dfc785ac5f5945fb (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#pragma once

#include "ability_type.hpp"
#include "artifact_type.hpp"
#include "dungeon_info_type.hpp"
#include "ego_item_type.hpp"
#include "feature_type.hpp"
#include "hist_type.hpp"
#include "monster_ego.hpp"
#include "monster_race.hpp"
#include "object_kind.hpp"
#include "owner_type.hpp"
#include "player_class.hpp"
#include "player_race.hpp"
#include "player_race_mod.hpp"
#include "randart_gen_type.hpp"
#include "randart_part_type.hpp"
#include "set_type.hpp"
#include "skill_descriptor.hpp"
#include "store_action_type.hpp"
#include "store_info_type.hpp"
#include "vault_type.hpp"
#include "wilderness_type_info.hpp"

#include <vector>

/**
 * Game edit data, i.e. the parsed contents of the edit .txt
 * files.
 */
struct GameEditData {

	/**
	 * Dungeons
	 */
	std::vector<dungeon_info_type> d_info;

	/**
	 * Vaults
	 */
	std::vector<vault_type> v_info;

	/**
	 * Random artifact part descriptors, i.e. the bits that
	 * randarts are made up of.
	 */
	std::vector<randart_part_type> ra_info;

	/**
	 * Random artifact generation parameters.
	 */
	std::vector<randart_gen_type> ra_gen;

	/**
	 * Artifacts
	 */
	std::vector<artifact_type> a_info;

	/**
	 * Ego items
	 */
	std::vector<ego_item_type> e_info;

	/**
	 * Artifact sets
	 */
	std::vector<set_type> set_info;

	/**
	 * Object kinds
	 */
	std::vector<object_kind> k_info;

	/**
	 * Building actions.
	 */
	std::vector<store_action_type> ba_info;

	/**
	 * Buildings
	 */
	std::vector<store_info_type> st_info;

	/**
	 * Building owners.
	 */
	std::vector<owner_type> ow_info;

	/**
	 * Player classes.
	 */
	std::vector<player_class> class_info;

	/**
	 * Player races.
	 */
	std::vector<player_race> race_info;

	/**
	 * Player subraces.
	 */
	std::vector<player_race_mod> race_mod_info;

	/**
	 * Player race histories
	 */
	std::vector<hist_type> bg;

	/**
	 * Player skills
	 */
	std::vector<skill_descriptor> s_descriptors;

	/*
	 * The monster races
	 */
	std::vector<monster_race> r_info;

	/**
	 * Monster race egos
	 */
	std::vector<monster_ego> re_info;

	/*
	 * Terrain features
	 */
	std::vector<feature_type> f_info;

	/**
	 * Wilderness features
	 */
	std::vector<wilderness_type_info> wf_info;

	/**
	 * Base skills for all characters.
	 */
	skill_modifiers gen_skill;

	/**
	 * Player abilities.
	 */
	std::vector<ability_type> ab_info;

};