summaryrefslogtreecommitdiff
path: root/src/game_edit_data.hpp
blob: 8b118397e734450bf0f92e0824bd6a4f54ddf098 (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
#pragma once

#include "ability_type.hpp"
#include "dungeon_info_type.hpp"
#include "hist_type.hpp"
#include "monster_ego.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;

	/**
	 * Artifact sets
	 */
	std::vector<set_type> set_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;

	/**
	 * Monster race egos
	 */
	std::vector<monster_ego> re_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;

};