annotate mm7_data.cpp @ 2360:63ad4e3606f4

MovieRelease();
author Ritor1
date Wed, 16 Apr 2014 17:36:47 +0600
parents 8a49cf25fb88
children 802460e60eee
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2239
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
0
Ritor1
parents:
diff changeset
2 #include "mm7_data.h"
Ritor1
parents:
diff changeset
3
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 221
diff changeset
4 #include "GUIWindow.h"
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
5 #include "Party.h"
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2185
diff changeset
6 #include "OSWindow.h"
0
Ritor1
parents:
diff changeset
7
Ritor1
parents:
diff changeset
8
Ritor1
parents:
diff changeset
9 void ErrHR(HRESULT hr, const char *pAPI, const char *pFunction, const char *pFile, int line)
Ritor1
parents:
diff changeset
10 {
Ritor1
parents:
diff changeset
11 if (SUCCEEDED(hr))
Ritor1
parents:
diff changeset
12 return;
Ritor1
parents:
diff changeset
13
Ritor1
parents:
diff changeset
14 char msg[4096];
Ritor1
parents:
diff changeset
15 sprintf(msg, "%s error (%08X) in\n\t%s\nin\n\t%s:%u",
Ritor1
parents:
diff changeset
16 pAPI, hr, pFunction, pFile, line);
Ritor1
parents:
diff changeset
17
Ritor1
parents:
diff changeset
18 char caption[1024];
Ritor1
parents:
diff changeset
19 sprintf(caption, "%s error", pAPI);
Ritor1
parents:
diff changeset
20
Ritor1
parents:
diff changeset
21 MessageBoxA(nullptr, msg, caption, MB_ICONEXCLAMATION);
Ritor1
parents:
diff changeset
22 }
Ritor1
parents:
diff changeset
23
Ritor1
parents:
diff changeset
24
Ritor1
parents:
diff changeset
25
Ritor1
parents:
diff changeset
26
2037
7a9477135943 Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents: 2006
diff changeset
27 #include "OurMath.h"
0
Ritor1
parents:
diff changeset
28 struct stru193_math *stru_5C6E00 = new stru193_math;
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30 #include "MapInfo.h"
Ritor1
parents:
diff changeset
31 struct MapStats *pMapStats;
Ritor1
parents:
diff changeset
32
Ritor1
parents:
diff changeset
33 #include "Viewport.h"
Ritor1
parents:
diff changeset
34 struct Viewport *pViewport = new Viewport;
Ritor1
parents:
diff changeset
35 struct ViewingParams *viewparams = new ViewingParams;
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37
Ritor1
parents:
diff changeset
38
Ritor1
parents:
diff changeset
39 #include "stru123.h"
1736
c6fe09a06712 Player::CompareVariable finished, renamed stru_5E4C90 to stru_5E4C90_MapPersistVars, party::field_4A0 to party::CounterEventValues
Grumpy7
parents: 1696
diff changeset
40 stru123 stru_5E4C90_MapPersistVars;
0
Ritor1
parents:
diff changeset
41
Ritor1
parents:
diff changeset
42 #include "stru298.h"
2059
f9698295c0bd AttackerInfo, MerchandiseTest
Ritor1
parents: 2057
diff changeset
43 stru298 AttackerInfo; // weak
0
Ritor1
parents:
diff changeset
44
Ritor1
parents:
diff changeset
45 #include "Autonotes.h"
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1279
diff changeset
46 std::array<Autonote, 196> pAutonoteTxt; // weak
0
Ritor1
parents:
diff changeset
47
Ritor1
parents:
diff changeset
48 #include "Awards.h"
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
49 std::array<Award, 105> pAwards;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
50 std::array<AwardType, 1000> achieved_awards;
949
Nomad
parents: 948
diff changeset
51 int num_achieved_awards;
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1410
diff changeset
52 int full_num_items_in_book;
0
Ritor1
parents:
diff changeset
53
Ritor1
parents:
diff changeset
54 #include "stru160.h"
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
55 std::array<stru160, 66> array_4EB8B8 =
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
56 {{
0
Ritor1
parents:
diff changeset
57 stru160( 0.0000000f, 0.0000000f, 1.0000000f),
Ritor1
parents:
diff changeset
58 stru160( 0.0000000f, 0.3826830f, 0.9238799f),
Ritor1
parents:
diff changeset
59 stru160( 0.3826830f, 0.0000000f, 0.9238799f),
Ritor1
parents:
diff changeset
60 stru160( 0.4082480f, 0.4082480f, 0.8164970f),
Ritor1
parents:
diff changeset
61 stru160( 0.0000000f, 0.7071070f, 0.7071070f),
Ritor1
parents:
diff changeset
62 stru160( 0.7071070f, 0.0000000f, 0.7071070f),
Ritor1
parents:
diff changeset
63 stru160( 0.4082480f, 0.8164970f, 0.4082480f),
Ritor1
parents:
diff changeset
64 stru160( 0.8164970f, 0.4082480f, 0.4082480f),
Ritor1
parents:
diff changeset
65 stru160( 0.7071070f, 0.7071070f, 0.0000000f),
Ritor1
parents:
diff changeset
66 stru160( 0.0000000f, 0.9238799f, 0.3826830f),
Ritor1
parents:
diff changeset
67 stru160( 0.3826830f, 0.9238799f, 0.0000000f),
Ritor1
parents:
diff changeset
68 stru160( 0.0000000f, 1.0000000f, 0.0000000f),
Ritor1
parents:
diff changeset
69 stru160( 0.9238799f, 0.3826830f, 0.0000000f),
Ritor1
parents:
diff changeset
70 stru160( 0.9238799f, 0.0000000f, 0.3826830f),
Ritor1
parents:
diff changeset
71 stru160( 1.0000000f, 0.0000000f, 0.0000000f),
Ritor1
parents:
diff changeset
72 stru160( 0.0000000f, -0.3826830f, 0.9238799f),
Ritor1
parents:
diff changeset
73 stru160( 0.4082480f, -0.4082480f, 0.8164970f),
Ritor1
parents:
diff changeset
74 stru160( 0.0000000f, -0.7071070f, 0.7071070f),
Ritor1
parents:
diff changeset
75 stru160( 0.8164970f, -0.4082480f, 0.4082480f),
Ritor1
parents:
diff changeset
76 stru160( 0.4082480f, -0.8164970f, 0.4082480f),
Ritor1
parents:
diff changeset
77 stru160( 0.7071070f, -0.7071070f, 0.0000000f),
Ritor1
parents:
diff changeset
78 stru160( 0.9238799f, -0.3826830f, 0.0000000f),
Ritor1
parents:
diff changeset
79 stru160( 0.3826830f, -0.9238799f, 0.0000000f),
Ritor1
parents:
diff changeset
80 stru160( 0.0000000f, -0.9238799f, 0.3826830f),
Ritor1
parents:
diff changeset
81 stru160( 0.0000000f, -1.0000000f, 0.0000000f),
Ritor1
parents:
diff changeset
82 stru160(-0.3826830f, 0.0000000f, 0.9238799f),
Ritor1
parents:
diff changeset
83 stru160(-0.4082480f, -0.4082480f, 0.8164970f),
Ritor1
parents:
diff changeset
84 stru160(-0.7071070f, 0.0000000f, 0.7071070f),
Ritor1
parents:
diff changeset
85 stru160(-0.4082480f, -0.8164970f, 0.4082480f),
Ritor1
parents:
diff changeset
86 stru160(-0.8164970f, -0.4082480f, 0.4082480f),
Ritor1
parents:
diff changeset
87 stru160(-0.7071070f, -0.7071070f, 0.0000000f),
Ritor1
parents:
diff changeset
88 stru160(-0.3826830f, -0.9238799f, 0.0000000f),
Ritor1
parents:
diff changeset
89 stru160(-0.9238799f, -0.3826830f, 0.0000000f),
Ritor1
parents:
diff changeset
90 stru160(-0.9238799f, 0.0000000f, 0.3826830f),
Ritor1
parents:
diff changeset
91 stru160(-1.0000000f, 0.0000000f, 0.0000000f),
Ritor1
parents:
diff changeset
92 stru160(-0.4082480f, 0.4082480f, 0.8164970f),
Ritor1
parents:
diff changeset
93 stru160(-0.8164970f, 0.4082480f, 0.4082480f),
Ritor1
parents:
diff changeset
94 stru160(-0.4082480f, 0.8164970f, 0.4082480f),
Ritor1
parents:
diff changeset
95 stru160(-0.7071070f, 0.7071070f, 0.0000000f),
Ritor1
parents:
diff changeset
96 stru160(-0.9238799f, 0.3826830f, 0.0000000f),
Ritor1
parents:
diff changeset
97 stru160(-0.3826830f, 0.9238799f, 0.0000000f),
Ritor1
parents:
diff changeset
98 stru160( 0.0000000f, 0.0000000f, -1.0000000f),
Ritor1
parents:
diff changeset
99 stru160( 0.0000000f, 0.3826830f, -0.9238799f),
Ritor1
parents:
diff changeset
100 stru160( 0.3826830f, 0.0000000f, -0.9238799f),
Ritor1
parents:
diff changeset
101 stru160( 0.4082480f, 0.4082480f, -0.8164970f),
Ritor1
parents:
diff changeset
102 stru160( 0.0000000f, 0.7071070f, -0.7071070f),
Ritor1
parents:
diff changeset
103 stru160( 0.7071070f, 0.0000000f, -0.7071070f),
Ritor1
parents:
diff changeset
104 stru160( 0.4082480f, 0.8164970f, -0.4082480f),
Ritor1
parents:
diff changeset
105 stru160( 0.8164970f, 0.4082480f, -0.4082480f),
Ritor1
parents:
diff changeset
106 stru160( 0.0000000f, 0.9238799f, -0.3826830f),
Ritor1
parents:
diff changeset
107 stru160( 0.9238799f, 0.0000000f, -0.3826830f),
Ritor1
parents:
diff changeset
108 stru160( 0.0000000f, -0.3826830f, -0.9238799f),
Ritor1
parents:
diff changeset
109 stru160( 0.4082480f, -0.4082480f, -0.8164970f),
Ritor1
parents:
diff changeset
110 stru160( 0.0000000f, -0.7071070f, -0.7071070f),
Ritor1
parents:
diff changeset
111 stru160( 0.8164970f, -0.4082480f, -0.4082480f),
Ritor1
parents:
diff changeset
112 stru160( 0.4082480f, -0.8164970f, -0.4082480f),
Ritor1
parents:
diff changeset
113 stru160( 0.0000000f, -0.9238799f, -0.3826830f),
Ritor1
parents:
diff changeset
114 stru160(-0.3826830f, 0.0000000f, -0.9238799f),
Ritor1
parents:
diff changeset
115 stru160(-0.4082480f, -0.4082480f, -0.8164970f),
Ritor1
parents:
diff changeset
116 stru160(-0.7071070f, 0.0000000f, -0.7071070f),
Ritor1
parents:
diff changeset
117 stru160(-0.4082480f, -0.8164970f, -0.4082480f),
Ritor1
parents:
diff changeset
118 stru160(-0.8164970f, -0.4082480f, -0.4082480f),
Ritor1
parents:
diff changeset
119 stru160(-0.9238799f, 0.0000000f, -0.3826830f),
Ritor1
parents:
diff changeset
120 stru160(-0.4082480f, 0.4082480f, -0.8164970f),
Ritor1
parents:
diff changeset
121 stru160(-0.8164970f, 0.4082480f, -0.4082480f),
Ritor1
parents:
diff changeset
122 stru160(-0.4082480f, 0.8164970f, -0.4082480f)
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
123 }};
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
124 std::array<stru160, 128> array_4EBBD0;
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
125 std::array<__int32, 128*3> array_4EBBD0_x =
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
126 {{
0
Ritor1
parents:
diff changeset
127 0x00000000, 0x00000001, 0x00000002, 0x00000001,
Ritor1
parents:
diff changeset
128 0x00000003, 0x00000002, 0x00000001, 0x00000004,
Ritor1
parents:
diff changeset
129 0x00000003, 0x00000003, 0x00000005, 0x00000002,
Ritor1
parents:
diff changeset
130 0x00000004, 0x00000006, 0x00000003, 0x00000006,
Ritor1
parents:
diff changeset
131 0x00000007, 0x00000003, 0x00000006, 0x00000008,
Ritor1
parents:
diff changeset
132 0x00000007, 0x00000007, 0x00000005, 0x00000003,
Ritor1
parents:
diff changeset
133 0x00000004, 0x00000009, 0x00000006, 0x00000009,
Ritor1
parents:
diff changeset
134 0x0000000A, 0x00000006, 0x00000009, 0x0000000B,
Ritor1
parents:
diff changeset
135 0x0000000A, 0x0000000A, 0x00000008, 0x00000006,
Ritor1
parents:
diff changeset
136 0x00000008, 0x0000000C, 0x00000007, 0x0000000C,
Ritor1
parents:
diff changeset
137 0x0000000D, 0x00000007, 0x0000000C, 0x0000000E,
Ritor1
parents:
diff changeset
138 0x0000000D, 0x0000000D, 0x00000005, 0x00000007,
Ritor1
parents:
diff changeset
139 0x00000000, 0x00000002, 0x0000000F, 0x00000002,
Ritor1
parents:
diff changeset
140 0x00000010, 0x0000000F, 0x00000002, 0x00000005,
Ritor1
parents:
diff changeset
141 0x00000010, 0x00000010, 0x00000011, 0x0000000F,
Ritor1
parents:
diff changeset
142 0x00000005, 0x00000012, 0x00000010, 0x00000012,
Ritor1
parents:
diff changeset
143 0x00000013, 0x00000010, 0x00000012, 0x00000014,
Ritor1
parents:
diff changeset
144 0x00000013, 0x00000013, 0x00000011, 0x00000010,
Ritor1
parents:
diff changeset
145 0x00000005, 0x0000000D, 0x00000012, 0x0000000D,
Ritor1
parents:
diff changeset
146 0x00000015, 0x00000012, 0x0000000D, 0x0000000E,
Ritor1
parents:
diff changeset
147 0x00000015, 0x00000015, 0x00000014, 0x00000012,
Ritor1
parents:
diff changeset
148 0x00000014, 0x00000016, 0x00000013, 0x00000016,
Ritor1
parents:
diff changeset
149 0x00000017, 0x00000013, 0x00000016, 0x00000018,
Ritor1
parents:
diff changeset
150 0x00000017, 0x00000017, 0x00000011, 0x00000013,
Ritor1
parents:
diff changeset
151 0x00000000, 0x0000000F, 0x00000019, 0x0000000F,
Ritor1
parents:
diff changeset
152 0x0000001A, 0x00000019, 0x0000000F, 0x00000011,
Ritor1
parents:
diff changeset
153 0x0000001A, 0x0000001A, 0x0000001B, 0x00000019,
Ritor1
parents:
diff changeset
154 0x00000011, 0x0000001C, 0x0000001A, 0x0000001C,
Ritor1
parents:
diff changeset
155 0x0000001D, 0x0000001A, 0x0000001C, 0x0000001E,
Ritor1
parents:
diff changeset
156 0x0000001D, 0x0000001D, 0x0000001B, 0x0000001A,
Ritor1
parents:
diff changeset
157 0x00000011, 0x00000017, 0x0000001C, 0x00000017,
Ritor1
parents:
diff changeset
158 0x0000001F, 0x0000001C, 0x00000017, 0x00000018,
Ritor1
parents:
diff changeset
159 0x0000001F, 0x0000001F, 0x0000001E, 0x0000001C,
Ritor1
parents:
diff changeset
160 0x0000001E, 0x00000020, 0x0000001D, 0x00000020,
Ritor1
parents:
diff changeset
161 0x00000021, 0x0000001D, 0x00000020, 0x00000022,
Ritor1
parents:
diff changeset
162 0x00000021, 0x00000021, 0x0000001B, 0x0000001D,
Ritor1
parents:
diff changeset
163 0x00000000, 0x00000019, 0x00000001, 0x00000019,
Ritor1
parents:
diff changeset
164 0x00000023, 0x00000001, 0x00000019, 0x0000001B,
Ritor1
parents:
diff changeset
165 0x00000023, 0x00000023, 0x00000004, 0x00000001,
Ritor1
parents:
diff changeset
166 0x0000001B, 0x00000024, 0x00000023, 0x00000024,
Ritor1
parents:
diff changeset
167 0x00000025, 0x00000023, 0x00000024, 0x00000026,
Ritor1
parents:
diff changeset
168 0x00000025, 0x00000025, 0x00000004, 0x00000023,
Ritor1
parents:
diff changeset
169 0x0000001B, 0x00000021, 0x00000024, 0x00000021,
Ritor1
parents:
diff changeset
170 0x00000027, 0x00000024, 0x00000021, 0x00000022,
Ritor1
parents:
diff changeset
171 0x00000027, 0x00000027, 0x00000026, 0x00000024,
Ritor1
parents:
diff changeset
172 0x00000026, 0x00000028, 0x00000025, 0x00000028,
Ritor1
parents:
diff changeset
173 0x00000009, 0x00000025, 0x00000028, 0x0000000B,
Ritor1
parents:
diff changeset
174 0x00000009, 0x00000009, 0x00000004, 0x00000025,
Ritor1
parents:
diff changeset
175 0x00000029, 0x0000002A, 0x0000002B, 0x0000002A,
Ritor1
parents:
diff changeset
176 0x0000002C, 0x0000002B, 0x0000002A, 0x0000002D,
Ritor1
parents:
diff changeset
177 0x0000002C, 0x0000002C, 0x0000002E, 0x0000002B,
Ritor1
parents:
diff changeset
178 0x0000002D, 0x0000002F, 0x0000002C, 0x0000002F,
Ritor1
parents:
diff changeset
179 0x00000030, 0x0000002C, 0x0000002F, 0x00000008,
Ritor1
parents:
diff changeset
180 0x00000030, 0x00000030, 0x0000002E, 0x0000002C,
Ritor1
parents:
diff changeset
181 0x0000002D, 0x00000031, 0x0000002F, 0x00000031,
Ritor1
parents:
diff changeset
182 0x0000000A, 0x0000002F, 0x00000031, 0x0000000B,
Ritor1
parents:
diff changeset
183 0x0000000A, 0x0000000A, 0x00000008, 0x0000002F,
Ritor1
parents:
diff changeset
184 0x00000008, 0x0000000C, 0x00000030, 0x0000000C,
Ritor1
parents:
diff changeset
185 0x00000032, 0x00000030, 0x0000000C, 0x0000000E,
Ritor1
parents:
diff changeset
186 0x00000032, 0x00000032, 0x0000002E, 0x00000030,
Ritor1
parents:
diff changeset
187 0x00000029, 0x0000002B, 0x00000033, 0x0000002B,
Ritor1
parents:
diff changeset
188 0x00000034, 0x00000033, 0x0000002B, 0x0000002E,
Ritor1
parents:
diff changeset
189 0x00000034, 0x00000034, 0x00000035, 0x00000033,
Ritor1
parents:
diff changeset
190 0x0000002E, 0x00000036, 0x00000034, 0x00000036,
Ritor1
parents:
diff changeset
191 0x00000037, 0x00000034, 0x00000036, 0x00000014,
Ritor1
parents:
diff changeset
192 0x00000037, 0x00000037, 0x00000035, 0x00000034,
Ritor1
parents:
diff changeset
193 0x0000002E, 0x00000032, 0x00000036, 0x00000032,
Ritor1
parents:
diff changeset
194 0x00000015, 0x00000036, 0x00000032, 0x0000000E,
Ritor1
parents:
diff changeset
195 0x00000015, 0x00000015, 0x00000014, 0x00000036,
Ritor1
parents:
diff changeset
196 0x00000014, 0x00000016, 0x00000037, 0x00000016,
Ritor1
parents:
diff changeset
197 0x00000038, 0x00000037, 0x00000016, 0x00000018,
Ritor1
parents:
diff changeset
198 0x00000038, 0x00000038, 0x00000035, 0x00000037,
Ritor1
parents:
diff changeset
199 0x00000029, 0x00000033, 0x00000039, 0x00000033,
Ritor1
parents:
diff changeset
200 0x0000003A, 0x00000039, 0x00000033, 0x00000035,
Ritor1
parents:
diff changeset
201 0x0000003A, 0x0000003A, 0x0000003B, 0x00000039,
Ritor1
parents:
diff changeset
202 0x00000035, 0x0000003C, 0x0000003A, 0x0000003C,
Ritor1
parents:
diff changeset
203 0x0000003D, 0x0000003A, 0x0000003C, 0x0000001E,
Ritor1
parents:
diff changeset
204 0x0000003D, 0x0000003D, 0x0000003B, 0x0000003A,
Ritor1
parents:
diff changeset
205 0x00000035, 0x00000038, 0x0000003C, 0x00000038,
Ritor1
parents:
diff changeset
206 0x0000001F, 0x0000003C, 0x00000038, 0x00000018,
Ritor1
parents:
diff changeset
207 0x0000001F, 0x0000001F, 0x0000001E, 0x0000003C,
Ritor1
parents:
diff changeset
208 0x0000001E, 0x00000020, 0x0000003D, 0x00000020,
Ritor1
parents:
diff changeset
209 0x0000003E, 0x0000003D, 0x00000020, 0x00000022,
Ritor1
parents:
diff changeset
210 0x0000003E, 0x0000003E, 0x0000003B, 0x0000003D,
Ritor1
parents:
diff changeset
211 0x00000029, 0x00000039, 0x0000002A, 0x00000039,
Ritor1
parents:
diff changeset
212 0x0000003F, 0x0000002A, 0x00000039, 0x0000003B,
Ritor1
parents:
diff changeset
213 0x0000003F, 0x0000003F, 0x0000002D, 0x0000002A,
Ritor1
parents:
diff changeset
214 0x0000003B, 0x00000040, 0x0000003F, 0x00000040,
Ritor1
parents:
diff changeset
215 0x00000041, 0x0000003F, 0x00000040, 0x00000026,
Ritor1
parents:
diff changeset
216 0x00000041, 0x00000041, 0x0000002D, 0x0000003F,
Ritor1
parents:
diff changeset
217 0x0000003B, 0x0000003E, 0x00000040, 0x0000003E,
Ritor1
parents:
diff changeset
218 0x00000027, 0x00000040, 0x0000003E, 0x00000022,
Ritor1
parents:
diff changeset
219 0x00000027, 0x00000027, 0x00000026, 0x00000040,
Ritor1
parents:
diff changeset
220 0x00000026, 0x00000028, 0x00000041, 0x00000028,
Ritor1
parents:
diff changeset
221 0x00000031, 0x00000041, 0x00000028, 0x0000000B,
Ritor1
parents:
diff changeset
222 0x00000031, 0x00000031, 0x0000002D, 0x00000041
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
223 }};
0
Ritor1
parents:
diff changeset
224
Ritor1
parents:
diff changeset
225 #include "stru176.h"
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
226 stru176 array_5B5928_timers[100];
0
Ritor1
parents:
diff changeset
227
Ritor1
parents:
diff changeset
228 #include "ObjectList.h"
Ritor1
parents:
diff changeset
229 struct ObjectList *pObjectList;
Ritor1
parents:
diff changeset
230
Ritor1
parents:
diff changeset
231 #include "IconFrameTable.h"
Ritor1
parents:
diff changeset
232 struct IconFrameTable *pIconsFrameTable;
Ritor1
parents:
diff changeset
233
Ritor1
parents:
diff changeset
234 struct
Ritor1
parents:
diff changeset
235 {
Ritor1
parents:
diff changeset
236 struct UIAnimation _pUIAnim_Food;
Ritor1
parents:
diff changeset
237 struct UIAnimation _pUIAnim_Gold;
Ritor1
parents:
diff changeset
238 struct UIAnimation _pUIAnum_Torchlight;
Ritor1
parents:
diff changeset
239 struct UIAnimation _pUIAnim_WizardEye;
Ritor1
parents:
diff changeset
240 } _uianim;
Ritor1
parents:
diff changeset
241
Ritor1
parents:
diff changeset
242 struct UIAnimation *pUIAnim_Food = &_uianim._pUIAnim_Food;
Ritor1
parents:
diff changeset
243 struct UIAnimation *pUIAnim_Gold = &_uianim._pUIAnim_Gold;
Ritor1
parents:
diff changeset
244 struct UIAnimation *pUIAnum_Torchlight = &_uianim._pUIAnum_Torchlight;
Ritor1
parents:
diff changeset
245 struct UIAnimation *pUIAnim_WizardEye = &_uianim._pUIAnim_WizardEye;
Ritor1
parents:
diff changeset
246
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
247 std::array<struct UIAnimation *, 4> pUIAnims =
0
Ritor1
parents:
diff changeset
248 {
Ritor1
parents:
diff changeset
249 &_uianim._pUIAnim_Food,
Ritor1
parents:
diff changeset
250 &_uianim._pUIAnim_Gold,
Ritor1
parents:
diff changeset
251 &_uianim._pUIAnum_Torchlight,
Ritor1
parents:
diff changeset
252 &_uianim._pUIAnim_WizardEye
Ritor1
parents:
diff changeset
253 };
Ritor1
parents:
diff changeset
254
Ritor1
parents:
diff changeset
255
Ritor1
parents:
diff changeset
256
Ritor1
parents:
diff changeset
257 #include "PlayerFrameTable.h"
Ritor1
parents:
diff changeset
258 struct PlayerFrameTable *pPlayerFrameTable; // idb
Ritor1
parents:
diff changeset
259
Ritor1
parents:
diff changeset
260 #include "MM7.h"
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 831
diff changeset
261
1091
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
262
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
263 std::array<stat_coord, 26> stat_string_coord = //4E2940
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
264 {{
900
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
265 {0x1A, 0x39, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
266 {0x1A, 0x4A, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
267 {0x1A, 0x5B, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
268 {0x1A, 0x6C, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
269 {0x1A, 0x7D, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
270 {0x1A, 0x8E, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
271 {0x1A, 0x9F, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
272 {0x1A, 0xC6, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
273 {0x1A, 0xD7, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
274 {0x1A, 0xE8, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
275 {0x1A, 0x10C, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
276 {0x1A, 0x11E, 0xDC, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
277 {0x111, 0x36, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
278 {0x111, 0x47, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
279 {0x111, 0x58, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
280 {0x111, 0x7E, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
281 {0x111, 0x8F, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
282 {0x111, 0xA0, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
283 {0x111, 0xB1, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
284 {0x111, 0xCA, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
285 {0x111, 0xDD, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
286 {0x111, 0xF0, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
287 {0x111, 0x103, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
288 {0x111, 0x116, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
289 {0x111, 0x129, 0xBA, 0x12},
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
290 {0x13E, 0x12, 0x89, 0x12},
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1196
diff changeset
291 }
900
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
292 };
0
Ritor1
parents:
diff changeset
293
Ritor1
parents:
diff changeset
294
Ritor1
parents:
diff changeset
295
Ritor1
parents:
diff changeset
296
Ritor1
parents:
diff changeset
297
Ritor1
parents:
diff changeset
298 #include "stru314.h"
1078
b44dee7e70e8 added a structure for 0x50B700-0x50BBB8
zipi
parents: 1077
diff changeset
299 #include "stru367.h"
0
Ritor1
parents:
diff changeset
300
Ritor1
parents:
diff changeset
301
Ritor1
parents:
diff changeset
302
Ritor1
parents:
diff changeset
303 //-------------------------------------------------------------------------
Ritor1
parents:
diff changeset
304 // Data declarations
Ritor1
parents:
diff changeset
305
351
5f36449527c6 stru351 -> summoned/spell-enchanted item
Nomad
parents: 345
diff changeset
306 int game_starting_year = 0;
819
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
307 int game_viewport_width;
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
308 int game_viewport_height;
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
309 int game_viewport_x;
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
310 int game_viewport_y;
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
311 int game_viewport_z;
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
312 int game_viewport_w;
351
5f36449527c6 stru351 -> summoned/spell-enchanted item
Nomad
parents: 345
diff changeset
313
819
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
314
9359c114f98c More on screenshot
Nomad
parents: 816
diff changeset
315
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
316 std::array<unsigned int, 2> saveload_dlg_xs = {82, 0};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
317 std::array<unsigned int, 2> saveload_dlg_ys = {60, 0};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
318 std::array<unsigned int, 2> saveload_dlg_zs = {460, 640};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
319 std::array<unsigned int, 2> saveload_dlg_ws = {344, 480};
0
Ritor1
parents:
diff changeset
320 int pWindowList_at_506F50_minus1_indexing[1];
Ritor1
parents:
diff changeset
321 int dword_4C9890[10]; // weak
Ritor1
parents:
diff changeset
322 int dword_4C9920[16]; // weak
Ritor1
parents:
diff changeset
323 char byte_4D864C; // weak
Ritor1
parents:
diff changeset
324 float flt_4D86CC = 1.0f; // weak
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
325 int dword_4D86D8 = 0x40000000; // weak
1185
24454b5c9268 more on acromage
Gloval
parents: 1183
diff changeset
326
1218
eb687c8529ee arcomage card animation working
Gloval
parents: 1211
diff changeset
327
1185
24454b5c9268 more on acromage
Gloval
parents: 1183
diff changeset
328
1218
eb687c8529ee arcomage card animation working
Gloval
parents: 1211
diff changeset
329
1185
24454b5c9268 more on acromage
Gloval
parents: 1183
diff changeset
330
1183
fa30ea497e94 arcomage refactoring started
Gloval
parents: 1181
diff changeset
331
fa30ea497e94 arcomage refactoring started
Gloval
parents: 1181
diff changeset
332
0
Ritor1
parents:
diff changeset
333 float flt_4D84E8 = 0.0f;
1186
569216b4f54d more on arcomage 2
Gloval
parents: 1185
diff changeset
334
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 221
diff changeset
335 int pCurrentScreen = SCREEN_VIDEO; // 004E28F8
0
Ritor1
parents:
diff changeset
336 unsigned int uGammaPos;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
337 std::array<int, 8> BtnTurnCoord =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
338 {{
362
38bfbee60146 Menu options
Ritor1
parents: 357
diff changeset
339 0xA4, 0x5D, 0x16, 0xB, 0x5, 0xD, 0x7, 0x3B,
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
340 }}; // weak
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
341 std::array<__int16, 4> RightClickPortraitXmin={{0x14, 0x83, 0xF2, 0x165}};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
342 std::array<__int16, 4> RightClickPortraitXmax={{0x53, 0xC6, 0x138, 0x1A7}};
1091
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
343
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
344 std::array<unsigned int, 4> pHealthBarPos = {{22, 137, 251, 366}};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
345 std::array<unsigned int, 4> pManaBarPos = {{102, 217, 331, 447}};
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
346
1243
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
347 std::array<char, 88> monster_popup_y_offsets =
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
348 {{
1243
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
349 -20, 20, 0, -40, 0, 0, 0, 0, 0, 0, -50,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
350 20, 0, -10, -10, -20, 10, -10, 0, 0, 0, -20,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
351 10, -10, 0, 0, 0, -20, -10, 0, 0, 0, -40,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
352 -20, 0, 0, 0, -50, -30, -30, -30, -30, -30, -30,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
353 0, 0, 0, 0, 0, 0, -20, -20, -20, 20, 20,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
354 20, 10, 10, 10, 10, 10, 10, -90, -60, -40, -20,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
355 -20, -80, -10, 0, 0, -40, 0, 0, 0, -20, 10,
766ec1e7f4ea fixing monster portrait not drawing when rightclicking + out of bounds error when opening inventory
Grumpy7
parents: 1215
diff changeset
356 0, 0, 0, 0, 0, 0, -60, 0, 0, 0, 0
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
357 }};
649
0e368c04acfb Sleeping in a tavern
Nomad
parents: 648
diff changeset
358 unsigned char hourglass_icon_idx = 12; // weak
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 521
diff changeset
359
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 940
diff changeset
360
46
9b4f8fe32a6e 21.01.13 StatsTab
Ritor1
parents: 42
diff changeset
361 const char *format_4E2D80 = "\f%05d%s\f00000\n";
648
35ce4761382c Fixed numbers in tavern dialogue ui
Nomad
parents: 629
diff changeset
362 //const char *format_4E2DC8 = "\f%05d";
900
4dc2252e0b03 CharacterUI_StatsTab_ShowHint fixed
Ritor1
parents: 899
diff changeset
363 const char *format_4E2DE8 = "\f%05d%s\f00000 - ";
46
9b4f8fe32a6e 21.01.13 StatsTab
Ritor1
parents: 42
diff changeset
364 const char *format_4E2E00 = "%s\f%05u\xD\r180%s\n"; // idb
9b4f8fe32a6e 21.01.13 StatsTab
Ritor1
parents: 42
diff changeset
365 const char *format_4E2E10 = "%s\f%05u\t110%d\f00000 / %d\n";
0
Ritor1
parents:
diff changeset
366 int dword_4E455C; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
367 std::array<int, 6> dword_4E4560;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
368 std::array<int, 6> dword_4E4578;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
369 std::array<int, 6> dword_4E4590;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
370 std::array<int, 6> dword_4E45A8;
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
371 std::array<float, 10> flt_4E4A80 =
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
372 {
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
373 0.050000001, 0.1, 0.30000001, 0.5, 0.60000002,
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
374 1.0, 6.0, 25.0, 50.0, 100.0
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
375 };
299
b0db84628733 paperdoll array
Ritor1
parents: 289
diff changeset
376
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
377
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
378 std::array< std::array<int, 2>, 14> pPartySpellbuffsUI_XYs =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
379 {{
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
380 {477, 247}, {497, 247}, {522, 247}, {542, 247}, {564, 247}, {581, 247}, {614, 247},
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
381 {477, 279}, {497, 279}, {522, 279}, {542, 279}, {564, 279}, {589, 279}, {612, 279}
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
382 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
383 std::array<unsigned char, 14> byte_4E5DD8 =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
384 {{
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
385 PARTY_BUFF_FEATHER_FALL, PARTY_BUFF_RESIST_FIRE, PARTY_BUFF_RESIST_AIR, PARTY_BUFF_RESIST_WATER, PARTY_BUFF_RESIST_MIND, PARTY_BUFF_RESIST_EARTH, PARTY_BUFF_RESIST_BODY,
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
386 PARTY_BUFF_HEROISM, PARTY_BUFF_HASTE, PARTY_BUFF_SHIELD, PARTY_BUFF_STONE_SKIN, PARTY_BUFF_PROTECTION_FROM_MAGIC, PARTY_BUFF_IMMOLATION, PARTY_BUFF_DAY_OF_GODS
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
387 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
388 std::array<unsigned __int8, 14> pPartySpellbuffsUI_smthns =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
389 {{
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
390 14, 1, 10, 4, 7, 2, 9,
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
391 3, 6, 15, 8, 3, 12, 0
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
392 }};
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
393
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
394 std::array< std::array<int, 6>, 6> pNPCPortraits_x = // 004E5E50
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
395 {{
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
396 {521, 0, 0, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
397 {521, 521, 0, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
398 {521, 521, 521, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
399 {521, 486, 564, 521, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
400 {521, 486, 564, 486, 564, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
401 {486, 564, 486, 564, 486, 564}
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
402 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
403 std::array< std::array<int, 6>, 6> pNPCPortraits_y = // 004E5EE0
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
404 {{
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
405 {38, 0, 0, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
406 {38, 165, 0, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
407 {38, 133, 228, 0, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
408 {38, 133, 133, 228, 0, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
409 {38, 133, 133, 228, 228, 0},
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 417
diff changeset
410 {38, 38, 133, 133, 228, 228}
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
411 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
412 std::array<const char *, 11> pHouse_ExitPictures=
345
051dd64c23c1 some data
zipi
parents: 337
diff changeset
413 {
051dd64c23c1 some data
zipi
parents: 337
diff changeset
414 "",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
415 "ticon01",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
416 "ticon02",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
417 "ticon03",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
418 "ticon04",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
419 "ticon05",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
420 "istairup",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
421 "itrap",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
422 "outside",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
423 "idoor",
051dd64c23c1 some data
zipi
parents: 337
diff changeset
424 "isecdoor"
051dd64c23c1 some data
zipi
parents: 337
diff changeset
425 };
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
426
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
427 std::array<__int16, 11> word_4E8152 = {0, 0, 0, 90, 8, 2, 70, 20, 10, 50, 30};
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 521
diff changeset
428
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
429 char _4E94D0_light_type = 5; // weak
0
Ritor1
parents:
diff changeset
430 char _4E94D2_light_type = 6; // weak
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
431 char _4E94D3_light_type = 10; // weak
0
Ritor1
parents:
diff changeset
432 int dword_4E98BC_bApplicationActive; // weak
434
137c59c3dbc4 Temple of Moon and Dragon Lair can now be entered.
Nomad
parents: 427
diff changeset
433 //char *off_4EB080; // idb
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
434 std::array<char*, 465> pTransitionStrings = {"", nullptr}; // 004EB080
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
435 std::array<const char*, 25> pPlayerPortraitsNames =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
436 {{
0
Ritor1
parents:
diff changeset
437 "pc01-", "pc02", "pc03", "pc04", "pc05-",
Ritor1
parents:
diff changeset
438 "pc06", "pc07", "pc08", "pc09-", "pc10",
Ritor1
parents:
diff changeset
439 "pc11-", "pc12", "pc13", "pc14", "pc15",
Ritor1
parents:
diff changeset
440 "pc16", "pc17-", "pc18", "pc19", "pc20",
Ritor1
parents:
diff changeset
441 "pc21-", "pc22-", "pc23", "pc24-", "pc25-"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
442 }};
0
Ritor1
parents:
diff changeset
443
Ritor1
parents:
diff changeset
444
203
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
445
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
446 std::array< std::array<unsigned char, 25>, 48> byte_4ECF08 = // 4ECF08
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
447 {{
221
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
448 {2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 1},//1
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
449 {2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2},//2
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
450 {2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//3
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
451 {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//4
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
452 {2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//5
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
453 {2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//6
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
454 {2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//7
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
455 {2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 1},//8
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
456 {2, 1, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2},//9
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
457 {2, 1, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//10
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
458 {2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2},//11
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
459 {1, 1, 2, 1, 2, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1, 2, 2},//12
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
460 {2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//13
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
461 {1, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 1, 2, 1, 2, 2},//14
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
462 {2, 1, 1, 2, 1, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2},//15
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
463 {1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 1},//16
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
464 {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//17
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
465 {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1},//18
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
466 {1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//19
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
467 {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//20
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
468 {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//21
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
469 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//22
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
470 {2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1},//23
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
471 {2, 2, 2, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2},//24
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
472 {1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 2, 1, 1},//25
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
473 {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2},//26
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
474 {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2},//27
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
475 {1, 2, 2, 1, 2, 2, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//28
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
476 {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 1, 1},//29
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
477 {1, 2, 2, 1, 2, 1, 2, 2, 1, 2, 2, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1},//30
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
478 {1, 1, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, 2, 1, 1},//31
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
479 {1, 1, 2, 1, 1, 2, 2, 2, 2, 1, 2, 2, 1, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2},//32
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
480 {1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1},//33
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
481 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1},//34
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
482 {1, 1, 1, 2, 1, 2, 2, 1, 1, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2},//35
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
483 {1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2},//36
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
484 {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2},//37
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
485 {2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 1, 1},//38
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
486 {1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1},//39
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
487 {1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//40
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
488 {2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1},//41
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
489 {1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1},//42
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
490 {1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},//43
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
491 {1, 2, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 2, 1, 2, 2},//44
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
492 {2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 2, 1, 2, 1, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2},//45
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
493 {1, 1, 1, 2, 2, 2, 1, 1, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 1, 2, 1, 2, 2},//46
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
494 {1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1},//47
c122d90a620a voice-related array
Ritor1
parents: 203
diff changeset
495 {1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1},//48
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
496 }};
1213
8192b25d356c SoundSetAction to std::array
Grumpy7
parents: 1207
diff changeset
497 std::array<std::array<unsigned char, 8>, 110> SoundSetAction = // 4ED3D8
8192b25d356c SoundSetAction to std::array
Grumpy7
parents: 1207
diff changeset
498 {{
203
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
499 { 0, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
500 {38, 0, 0, 37, 38, 45, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
501 {37, 0, 0, 47, 53, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
502 { 2, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
503 { 1, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
504 { 3, 0, 0, 41, 42, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
505 { 0, 0, 0, 33, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
506 { 5, 0, 0, 21, 22, 23, 24, 45},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
507 { 6, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
508 { 7, 0, 0, 43, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
509 { 8, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
510 { 9, 0, 0, 39, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
511 {13, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
512 {23, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
513 { 0, 0, 0, 37, 38, 45, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
514 {25, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
515 {26, 0, 0, 38, 47, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
516 {27, 0, 0, 41, 42, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
517 {28, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
518 { 0, 0, 0, 51, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
519 {30, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
520 {29, 0, 0, 27, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
521 {32, 33, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
522 {34, 0, 0, 53, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
523 {15, 0, 0, 34, 35, 36, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
524 { 0, 0, 0, 3, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
525 {22, 0, 0, 5, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
526 {20, 0, 0, 8, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
527 {20, 0, 0, 9, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
528 {19, 0, 0, 7, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
529 {21, 0, 0, 2, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
530 {18, 0, 0, 6, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
531 { 0, 0, 0, 11, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
532 {17, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
533 { 0, 0, 0, 12, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
534 {17, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
535 { 0, 0, 0, 37, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
536 { 0, 0, 0, 49, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
537 {24, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
538 {31, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
539 { 0, 0, 0, 41, 42, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
540 { 0, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
541 { 0, 0, 0, 46, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
542 { 0, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
543 { 0, 0, 0, 41, 42, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
544 { 0, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
545 {41, 0, 0, 21, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
546 {40, 0, 0, 21, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
547 {16, 0, 0, 46, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
548 { 0, 0, 0, 40, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
549 { 0, 0, 0, 39, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
550 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
551 { 0, 0, 0, 48, 49, 50, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
552 { 0, 0, 0, 44, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
553 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
554 { 0, 0, 0, 37, 38, 45, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
555 { 0, 0, 0, 41, 42, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
556 { 0, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
557 { 0, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
558 { 0, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
559 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
560 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
561 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
562 { 0, 0, 0, 31, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
563 { 0, 0, 0, 32, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
564 {47, 0, 0, 46, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
565 {22, 0, 0, 5, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
566 { 0, 0, 0, 25, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
567 { 0, 0, 0, 37, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
568 { 0, 0, 0, 52, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
569 { 0, 0, 0, 45, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
570 { 0, 0, 0, 27, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
571 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
572 { 0, 0, 0, 49, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
573 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
574 { 0, 0, 0, 37, 38, 45, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
575 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
576 { 0, 0, 0, 37, 38, 45, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
577 { 0, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
578 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
579 {44, 0, 0, 39, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
580 { 0, 0, 0, 48, 49, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
581 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
582 { 0, 0, 0, 31, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
583 {32, 33, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
584 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
585 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
586 { 0, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
587 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
588 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
589 { 0, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
590 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
591 { 0, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
592 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
593 { 0, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
594 { 0, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
595 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
596 { 0, 0, 0, 38, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
597 { 0, 0, 0, 5, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
598 { 0, 0, 0, 37, 38, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
599 { 0, 0, 0, 44, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
600 { 0, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
601 { 4, 0, 0, 0, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
602 { 0, 0, 0, 58, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
603 {10, 0, 0, 45, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
604 {11, 0, 0, 47, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
605 {12, 0, 0, 43, 48, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
606 {39, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
607 {14, 0, 0, 48, 0, 0, 0, 0},
0c64754c7fd4 Voices work (at least in party creation screen)
Nomad
parents: 198
diff changeset
608 {17, 0, 0, 0, 0, 0, 0, 0}
1213
8192b25d356c SoundSetAction to std::array
Grumpy7
parents: 1207
diff changeset
609 }};
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
610 std::array<__int16, 4> pPlayerPortraitsXCoords_For_PlayerBuffAnimsDrawing = {34, 149, 264, 379};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
611 std::array< std::array<char, 37>, 36> byte_4ED970_skill_learn_ability_by_class_table =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
612 {{
269
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
613 2, 3, 2, 3, 3, 2, 3, 4, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0, 2, 1, 0, 1, 2, 2, 0, 3, 0, 0, 1,//Knight
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
614 2, 3, 2, 3, 3, 2, 3, 4, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0, 2, 1, 0, 1, 2, 2, 0, 3, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
615 2, 4, 2, 3, 4, 2, 3, 4, 4, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 0, 2, 1, 0, 1, 2, 2, 0, 4, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
616 2, 4, 2, 3, 4, 2, 3, 4, 4, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 0, 2, 1, 0, 1, 2, 2, 0, 4, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
617
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
618 0, 3, 3, 0, 0, 2, 2, 4, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 2, 0, 3, 0, 0, 3, 3, 2, 0, 3, 3, 2, 2,//Thief
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
619 0, 3, 3, 0, 0, 2, 2, 4, 1, 3, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 3, 3, 1, 2, 0, 3, 0, 0, 3, 3, 2, 0, 3, 3, 2, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
620 0, 3, 4, 0, 0, 2, 2, 4, 1, 4, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 3, 3, 1, 2, 0, 3, 0, 0, 4, 3, 2, 0, 3, 4, 2, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
621 0, 3, 4, 0, 0, 2, 2, 4, 1, 4, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 3, 3, 1, 2, 0, 3, 0, 0, 4, 3, 2, 0, 3, 4, 2, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
622
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
623 3, 2, 2, 0, 2, 1, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 1, 0, 1, 3, 3, 2, 3, 1, 0, 3,//Monk
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
624 3, 2, 2, 0, 2, 1, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 3, 0, 2, 1, 0, 2, 3, 3, 2, 3, 1, 0, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
625 4, 2, 2, 0, 2, 1, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 4, 0, 2, 1, 0, 2, 4, 4, 2, 3, 1, 0, 4,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
626 4, 2, 2, 0, 2, 1, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 2, 1, 0, 3, 4, 4, 2, 3, 2, 0, 4,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
627
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
628 1, 3, 2, 2, 2, 2, 3, 4, 3, 2, 2, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 3, 3, 2, 1, 3, 0, 0, 1, 1, 0, 2, 0, 0, 1,//Paladin
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
629 1, 3, 2, 2, 2, 2, 3, 4, 3, 2, 2, 3, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 3, 3, 2, 1, 3, 0, 0, 1, 1, 0, 2, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
630 1, 3, 2, 2, 2, 2, 4, 4, 4, 2, 2, 3, 0, 0, 0, 0, 3, 3, 3, 1, 0, 0, 2, 4, 3, 2, 1, 4, 0, 0, 1, 1, 0, 2, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
631 1, 3, 2, 2, 2, 2, 4, 4, 4, 2, 2, 3, 0, 0, 0, 0, 3, 3, 3, 0, 1, 0, 2, 4, 3, 2, 1, 4, 0, 0, 1, 1, 0, 2, 0, 0, 1,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
632
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
633 1, 2, 2, 2, 3, 3, 0, 4, 0, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 0, 0, 1, 2, 1, 0, 2, 0, 0, 3,//Archer
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
634 1, 2, 2, 2, 3, 3, 0, 4, 0, 3, 3, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 0, 0, 1, 2, 1, 0, 2, 0, 0, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
635 1, 2, 2, 2, 3, 4, 0, 4, 0, 3, 4, 0, 3, 3, 3, 3, 0, 0, 0, 1, 0, 0, 2, 2, 2, 2, 4, 0, 0, 2, 2, 1, 0, 2, 0, 0, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
636 1, 2, 2, 2, 3, 4, 0, 4, 0, 3, 4, 0, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 4, 0, 0, 2, 2, 1, 0, 2, 0, 0, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
637
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
638 1, 2, 2, 3, 2, 3, 0, 4, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 3, 2, 0, 2, 2, 1, 3, 2, 2, 1, 2,//Ranger
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
639 1, 2, 2, 3, 2, 3, 0, 4, 2, 3, 3, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 2, 1, 3, 2, 0, 2, 2, 1, 3, 2, 2, 1, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
640 1, 2, 2, 4, 2, 3, 0, 4, 2, 3, 3, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 1, 1, 1, 2, 1, 3, 2, 0, 2, 2, 1, 4, 2, 2, 1, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
641 1, 2, 2, 4, 2, 3, 0, 4, 2, 3, 3, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 1, 1, 1, 2, 1, 3, 2, 0, 2, 2, 1, 4, 2, 2, 1, 2,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
642
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
643 1, 0, 0, 0, 0, 2, 3, 4, 3, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 3, 3, 1, 3, 2, 3, 0, 0, 0, 0, 2, 0, 0, 2, 3,//Cleric
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
644 1, 0, 0, 0, 0, 2, 3, 4, 3, 2, 2, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 1, 3, 2, 3, 0, 0, 0, 0, 2, 0, 0, 2, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
645 1, 0, 0, 0, 0, 2, 3, 4, 3, 2, 2, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 4, 3, 1, 3, 2, 3, 0, 0, 0, 0, 2, 0, 0, 2, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
646 1, 0, 0, 0, 0, 2, 3, 4, 3, 2, 2, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 3, 1, 3, 2, 3, 0, 0, 0, 0, 2, 0, 0, 2, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
647
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
648 1, 0, 3, 0, 0, 1, 2, 4, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 3, 2, 0, 0, 0, 0, 0, 2, 1, 0, 3, 3,//Druid
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
649 1, 0, 3, 0, 0, 1, 2, 4, 2, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 0, 0, 3, 2, 0, 0, 0, 0, 0, 2, 1, 0, 3, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
650 1, 0, 3, 0, 0, 1, 2, 4, 2, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 0, 0, 4, 2, 0, 0, 0, 0, 0, 2, 1, 0, 4, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
651 1, 0, 3, 0, 0, 1, 2, 4, 2, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 0, 0, 4, 2, 0, 0, 0, 0, 0, 2, 1, 0, 4, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
652
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
653 3, 0, 2, 0, 0, 1, 0, 4, 0, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 3, 1, 2, 0, 3, 2, 1, 0, 0, 0, 0, 3, 0, 0, 3, 3,//Sorcerer
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
654 3, 0, 2, 0, 0, 1, 0, 4, 0, 2, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 1, 2, 0, 3, 2, 1, 0, 0, 0, 0, 3, 0, 0, 3, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
655 3, 0, 2, 0, 0, 1, 0, 4, 0, 2, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 4, 1, 2, 0, 3, 2, 1, 0, 0, 0, 0, 4, 0, 0, 3, 3,
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 248
diff changeset
656 3, 0, 2, 0, 0, 1, 0, 4, 0, 2, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 4, 4, 1, 2, 0, 3, 2, 1, 0, 0, 0, 0, 4, 0, 0, 3, 3,
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
657 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
658 std::array<unsigned int, 2> pHiredNPCsIconsOffsetsX = {489, 559};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
659 std::array<unsigned int, 2> pHiredNPCsIconsOffsetsY = {152, 152};
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2169
diff changeset
660 std::array<int, 2> Party_Spec_Motion_status_ids = {7, 18}; //dword_4EE07C
1996
f7e8c4d4a01b sound id fix
zipi
parents: 1896
diff changeset
661 std::array<__int16, 101> word_4EE088_sound_ids =
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
662 {{
0
Ritor1
parents:
diff changeset
663 0, 10000, 10010, 10020, 10030, 10040, 10050, 10060, 10070, 10080,
Ritor1
parents:
diff changeset
664 10090, 10100, 11000, 11010, 11020, 11030, 11040, 11050, 11060, 11070,
Ritor1
parents:
diff changeset
665 11080, 11090, 11100, 12000, 12010, 12020, 12030, 12040, 12050, 12060,
Ritor1
parents:
diff changeset
666 12070, 12080, 12090, 12100, 13000, 13010, 13020, 13030, 13040, 13050,
Ritor1
parents:
diff changeset
667 13060, 13070, 13080, 13090, 13100, 14000, 14010, 14020, 14030, 14040,
Ritor1
parents:
diff changeset
668 14050, 14060, 14070, 14080, 14090, 14100, 15000, 15010, 15020, 15030,
Ritor1
parents:
diff changeset
669 15040, 15050, 15060, 15070, 15080, 15090, 15100, 16000, 16010, 16020,
Ritor1
parents:
diff changeset
670 16030, 16040, 16050, 16060, 16070, 16080, 16090, 16100, 17000, 17010,
Ritor1
parents:
diff changeset
671 17020, 17030, 17040, 17050, 17060, 17070, 17080, 17090, 17100, 18000,
1996
f7e8c4d4a01b sound id fix
zipi
parents: 1896
diff changeset
672 18010, 18020, 18030, 18040, 18050, 18060, 18070, 18080, 18090, 18100,
f7e8c4d4a01b sound id fix
zipi
parents: 1896
diff changeset
673 1
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
674 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
675 std::array<short, 28> word_4EE150 =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
676 {{
0
Ritor1
parents:
diff changeset
677 1, 2, 3, 4, 5, 7, 32, 33, 36, 37, 38, 40, 41, 42, 43, 45, 46,
Ritor1
parents:
diff changeset
678 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
679 }};
0
Ritor1
parents:
diff changeset
680
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2076
diff changeset
681 int ScreenshotFileNumber; // dword_4EFA80
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
682 std::array<const char *, 19> off_4F03B8 =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
683 {{
0
Ritor1
parents:
diff changeset
684 "", "WEPNTABL", "ARMORY", "MAGSHELF",
Ritor1
parents:
diff changeset
685 "MAGSHELF", "MAGSHELF", "MAGSHELF", "MAGSHELF",
Ritor1
parents:
diff changeset
686 "MAGSHELF", "MAGSHELF", "MAGSHELF", "MAGSHELF",
Ritor1
parents:
diff changeset
687 "MAGSHELF", "MAGSHELF", "MAGSHELF", "MAGSHELF",
410
6cb79ea315ba small fix, please revise if you agree or not
zipi
parents: 405
diff changeset
688 "MAGSHELF", "MAGSHELF", "MAGSHELF"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
689 }};
410
6cb79ea315ba small fix, please revise if you agree or not
zipi
parents: 405
diff changeset
690
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
691 std::array<int, 32> guild_mambership_flags={{
484
4bd56919f075 avard quest guild bits
Gloval
parents: 480
diff changeset
692 54, 54, 54, 54, 52, 52, 52, 52, 55, 55, 55, 55, 53, 53,
4bd56919f075 avard quest guild bits
Gloval
parents: 480
diff changeset
693 53, 53, 58, 58, 58, 58, 57, 57, 57, 57, 56, 56,
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
694 56, 56, 59, 59, 60, 60}};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
695 std::array<__int16, 49> word_4F0754;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
696 std::array<__int16, 54> _4F0882_evt_VAR_PlayerItemInHands_vals =
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
697 {{
89
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
698 0x0D4, 0x270, 0x0D5, 0x21C, 0x0D6, 0x2BE, 0x0D7, 0x2BD, 0x0D8, 0x289,
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
699 0x0D9, 0x258, 0x0DA, 0x2AB, 0x0DB, 0x281, 0x0DC, 0x280, 0x0DD,
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
700 0x284, 0x0DE, 0x285, 0x0DF, 0x283, 0x0E0, 0x282, 0x0E1, 0x27F,
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
701 0x0E2, 0x1E7, 0x0E3, 0x287, 0x0E4, 0x272, 0x0E5, 0x267, 0x0E6,
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
702 0x275, 0x0E7, 0x25A, 0x0E8, 0x2A4, 0x0E9, 0x2A5, 0x0EA, 0x2A3,
98cd93e14777 pointer fixes
zipi
parents: 81
diff changeset
703 0x0EB, 0x25C, 0x0EC, 0x25D, 0x0ED, 0x259, 0x0F1, 0x21E
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
704 }};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
705 std::array<unsigned short, 6> pMaxLevelPerTrainingHallType = {5, 15, 25, 25, 200, 200};
651
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
706
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
707 std::array<int, 11> price_for_membership={100, 100, 50, 50, 50, 50, 50, 50, 50, 1000, 1000}; // weak
727
da130dd3092a Big time Travel ouverhaul
Nomad
parents: 710
diff changeset
708
775
7994986603d5 Moved some subs
Nomad
parents: 774
diff changeset
709
2135
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
710 std::array<Vec2_int_, 20> pMonsterArenaPlacements =
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
711 {{
2169
5b27c035a241 small cleaning
Ritor1
parents: 2154
diff changeset
712 Vec2_int_(1524, 8332),
5b27c035a241 small cleaning
Ritor1
parents: 2154
diff changeset
713 Vec2_int_(2186, 8844),
5b27c035a241 small cleaning
Ritor1
parents: 2154
diff changeset
714 Vec2_int_(3219, 9339),
5b27c035a241 small cleaning
Ritor1
parents: 2154
diff changeset
715 Vec2_int_(4500, 9339),
5b27c035a241 small cleaning
Ritor1
parents: 2154
diff changeset
716 Vec2_int_(5323, 9004),
2135
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
717 Vec2_int_(0x177D, 0x2098),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
718 Vec2_int_(0x50B, 0x1E15),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
719 Vec2_int_(0x18FF, 0x1E15),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
720 Vec2_int_(0x50B, 0xD69),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
721 Vec2_int_(0x18FF, 0x1B15),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
722 Vec2_int_(0x50B, 0x1021),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
723 Vec2_int_(0x18FF, 0x1848),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
724 Vec2_int_(0x50B, 0x12D7),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
725 Vec2_int_(0x18FF, 0x15A3),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
726 Vec2_int_(0x50B, 0x14DB),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
727 Vec2_int_(0x18FF, 0x12D7),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
728 Vec2_int_(0x50B, 0x1848),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
729 Vec2_int_(0x18FF, 0x1021),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
730 Vec2_int_(0x50B, 0x1B15),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
731 Vec2_int_(0x18FF, 0xD69),
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
732 }}
e99081a3a66a Arena works
Ritor1
parents: 2132
diff changeset
733 ;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
734 std::array<__int16, 32> word_4F0F30 ={{ 4, 7, 10, 11,
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
735 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
736 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
737 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
738 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
739 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
740 4, 7, 10, 11,
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
741 7, 11,
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
742 7, 11}};
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
743 std::array<int, 500> ai_array_4F5E68;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
744 std::array<int, 500> ai_array_4F6638_actor_ids;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
745 std::array<int, 500> ai_near_actors_targets_pid;
0
Ritor1
parents:
diff changeset
746 int ai_arrays_size; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
747 std::array<int, 500> ai_near_actors_distances;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
748 std::array<unsigned int, 500> ai_near_actors_ids;
2302
2b65eb263ceb mm7_7 made redundant, exctracted the 2 useful functions, commented out the rest of the file
Grumpy7
parents: 2289
diff changeset
749 std::array<int, 182> dword_4F8580 = {}; // weak
1256
236d39ae8f6e arcomage playable
Gloval
parents: 1245
diff changeset
750
0
Ritor1
parents:
diff changeset
751 char byte_4FAA24; // weak
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1740
diff changeset
752 //HWND dword_4FAA28; // idb
1185
24454b5c9268 more on acromage
Gloval
parents: 1183
diff changeset
753
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
754 std::array<unsigned int, 480> pSRZBufferLineOffsets;
0
Ritor1
parents:
diff changeset
755 int areWeLoadingTexture; // weak
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1410
diff changeset
756 std::array<char, 777> books_num_items_per_page; // weak
2185
385040580292 CastSpell continue
Ritor1
parents: 2182
diff changeset
757 int lloyds_beacon_spell_id; // dword_506338
385040580292 CastSpell continue
Ritor1
parents: 2182
diff changeset
758 int lloyds_beacon_sound_id; // dword_50633C
0
Ritor1
parents:
diff changeset
759 signed int sRecoveryTime; // idb
Ritor1
parents:
diff changeset
760 unsigned int uRequiredMana; // idb
Ritor1
parents:
diff changeset
761 int _506348_current_lloyd_playerid; // weak
2185
385040580292 CastSpell continue
Ritor1
parents: 2182
diff changeset
762 __int64 lloyds_beacon_spell_level; // qword_506350
0
Ritor1
parents:
diff changeset
763 char byte_506360; // weak
Ritor1
parents:
diff changeset
764 int dword_506364; // weak
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 521
diff changeset
765 unsigned int uExitCancelTextureId;
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1410
diff changeset
766 int books_page_number; // weak
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1410
diff changeset
767 int books_primary_item_per_page; // weak
990
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
768 int Autonotes_Instructors_page_flag; // dword_50652C
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
769 int Autonotes_Misc_page_flag; //dword_506530
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
770 int Book_PageBtn6_flag; //dword_506534
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
771 int Book_PageBtn5_flag; //dword_506538
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
772 int Book_PageBtn4_flag; // dword_50653C
087a9af8e0ec MessageParam
Ritor1
parents: 984
diff changeset
773 int Book_PageBtn3_flag; //dword_506540
992
Nomad
parents: 991 990
diff changeset
774 int BtnDown_flag; //BtnDown_flag
Nomad
parents: 991 990
diff changeset
775 int BtnUp_flag; //BtnUp_flag
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
776 int quick_spell_at_page; // weak
0
Ritor1
parents:
diff changeset
777 char byte_506550; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
778 std::array<const char *, 5> aMoonPhaseNames;
981
a6ef7125f6e4 Autonotes & GameState
Nomad
parents: 949
diff changeset
779 int _506568_autonote_type; // weak
0
Ritor1
parents:
diff changeset
780 char bRecallingBeacon; // weak
Ritor1
parents:
diff changeset
781 int uLastPointedObjectID; // weak
Ritor1
parents:
diff changeset
782 //unsigned __int8 bMonsterInfoUI_bDollInitialized;
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
783 std::array<const char *, 44> aSpellNames;
11
66319a734368 16.01.13(work)
Ritor1
parents: 2
diff changeset
784 int pMainScreenNum; // weak
1091
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
785 int dword_506980_uW; // weak
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
786 int dword_506984_uZ; // weak
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
787 int dword_506988_uY; // weak
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
788 int dword_50698C_uX; // weak
1031
f93d17337113 UI stuff.
Nomad
parents: 1018
diff changeset
789 int uGameMenuUI_CurentlySelectedKeyIdx; // 506E68
1676
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1658
diff changeset
790 std::array<unsigned int, 28> pPrevVirtualCidesMapping;
362
38bfbee60146 Menu options
Ritor1
parents: 357
diff changeset
791 int KeyboardPageNum; // weak
0
Ritor1
parents:
diff changeset
792 int uRestUI_FoodRequiredToRest;
Ritor1
parents:
diff changeset
793 int dword_506F14; // weak
1396
e6908823897f Research on #62
Nomad
parents: 1391
diff changeset
794 int _506F18_num_minutes_to_sleep; // weak
0
Ritor1
parents:
diff changeset
795 int dword_506F1C; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
796 std::array<int, 20> pVisibleWindowsIdxs; // weak
0
Ritor1
parents:
diff changeset
797 int uNumVisibleWindows;
Ritor1
parents:
diff changeset
798 char bFlashHistoryBook; // weak
Ritor1
parents:
diff changeset
799 char bFlashAutonotesBook; // weak
Ritor1
parents:
diff changeset
800 char bFlashQuestBook; // weak
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
801 int uTextureID_PlayerBuff_PainReflection; // weak
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
802 int uTextureID_PlayerBuff_Hammerhands; // weak
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
803 int uTextureID_PlayerBuff_Preservation; // weak
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
804 int uTextureID_PlayerBuff_Bless; // weak
319
5a66be213cff Actor::Die
Nomad
parents: 314
diff changeset
805 int uTextureID_Btn_QuickReference; // weak
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1477
diff changeset
806 int uTextureID_Compas; // dword_5079B4
0
Ritor1
parents:
diff changeset
807 int dword_5079C8; // weak
Ritor1
parents:
diff changeset
808 int dword_5079CC; // weak
Ritor1
parents:
diff changeset
809 int dword_5079D0; // weak
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1477
diff changeset
810 int uTextureID_Minimap_Loop; // dword_5079D8
319
5a66be213cff Actor::Die
Nomad
parents: 314
diff changeset
811 struct GUIButton *pBtn_ZoomOut; // idb
5a66be213cff Actor::Die
Nomad
parents: 314
diff changeset
812 struct GUIButton *pBtn_ZoomIn; // idb
0
Ritor1
parents:
diff changeset
813 unsigned int uGameUIFontShadow;
Ritor1
parents:
diff changeset
814 unsigned int uGameUIFontMain;
Ritor1
parents:
diff changeset
815 int dword_507B00_spell_info_to_draw_in_popup; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
816 std::array<const char *, 12> aMonthNames;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
817 std::array<const char *, 7> aDayNames;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
818 std::array<const char *, 9> aSpellSchoolNames;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
819 std::array<const char *, 7> aAttributeNames;
0
Ritor1
parents:
diff changeset
820 unsigned int uActiveCharacter;
Ritor1
parents:
diff changeset
821 int dword_507BF0_is_there_popup_onscreen; // weak
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
822 int awards_scroll_bar_created; // weak
1091
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
823 int dword_507CC0_activ_ch; // weak
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
824 __int64 GameUI_RightPanel_BookFlashTimer; // weak
0
Ritor1
parents:
diff changeset
825 int _507CD4_RestUI_hourglass_anim_controller; // weak
1408
204cce84300b FindSound
Ritor1
parents: 1407
diff changeset
826 bool OpenedTelekinesis;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
827 std::array<int, 50> dword_50B570; // weak
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
828 std::array<int, 50> dword_50B638; // weak
1344
65379a50e4eb Portals in indoor (continue)
Ritor1
parents: 1332
diff changeset
829 stru367 PortalFace;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
830 std::array<int, 100> dword_50BC10; // weak
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
831 std::array<int, 100> dword_50BDA0; // weak
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2169
diff changeset
832 std::array<int, 100> _50BF30_actors_in_viewport_ids; // weak
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 701
diff changeset
833 char town_portal_caster_id; // weak
0
Ritor1
parents:
diff changeset
834 int some_active_character; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
835 std::array<unsigned int, 5> pIconIDs_Turn;
0
Ritor1
parents:
diff changeset
836 unsigned int uIconID_TurnStop;
Ritor1
parents:
diff changeset
837 unsigned int uIconID_TurnHour;
Ritor1
parents:
diff changeset
838 int uIconID_CharacterFrame; // idb
Ritor1
parents:
diff changeset
839 unsigned int uIconID_TurnStart;
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
840 int dword_50C994 = 0; // weak
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
841 int dword_50C998_turnbased_icon_1A = 0; // weak
0
Ritor1
parents:
diff changeset
842 int uSpriteID_Spell11; // idb
1682
3c451fd02fcf OnInventoryLeftClick cleanup
Grumpy7
parents: 1658
diff changeset
843 bool _50C9A0_IsEnchantingInProgress; // weak
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
844 int _50C9A8_item_enchantment_timer = 0; // weak
1682
3c451fd02fcf OnInventoryLeftClick cleanup
Grumpy7
parents: 1658
diff changeset
845 int _50C9D0_AfterEnchClickEventId; // weak
3c451fd02fcf OnInventoryLeftClick cleanup
Grumpy7
parents: 1658
diff changeset
846 int _50C9D4_AfterEnchClickEventSecondParam; // weak
3c451fd02fcf OnInventoryLeftClick cleanup
Grumpy7
parents: 1658
diff changeset
847 int _50C9D8_AfterEnchClickEventTimeout; // weak
0
Ritor1
parents:
diff changeset
848 int dword_50C9DC; // weak
Ritor1
parents:
diff changeset
849 struct NPCData *ptr_50C9E0;
1012
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
850 //int dword_50C9E8; // idb
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
851 //int dword_50C9EC[120]; // weak
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
852 int dword_50CDC8;
0
Ritor1
parents:
diff changeset
853 Vec3_int_ layingitem_vel_50FDFC;
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1470
diff changeset
854 char pStartingMapName[32]; // idb
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
855 std::array<unsigned __int8, 5> IsPlayerWearingWatersuit;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
856 std::array<char, 54> party_has_equipment;
2289
60293358b4b3 byte_5111F6 to byte_5111F6_OwnedArtifacts, changed magic numbers to enums in GetItemTextureFilename
Grumpy7
parents: 2285
diff changeset
857 std::array<char, 17> byte_5111F6_OwnedArtifacts;
1091
9c7eb4037567 data moving
Gloval
parents: 1078
diff changeset
858
0
Ritor1
parents:
diff changeset
859 unsigned int uNumBlueFacesInBLVMinimap;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
860 std::array<unsigned __int16, 50> pBlueFacesInBLVMinimapIDs;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
861 std::array<int, 14> pTextureIDs_PartyBuffIcons;
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
862 unsigned int uIconIdx_FlySpell;
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 561
diff changeset
863 unsigned int uIconIdx_WaterWalk;
0
Ritor1
parents:
diff changeset
864 int dword_576E28; // weak
1051
05c62d166182 004C1D2B cleaned
Nomad
parents: 1050
diff changeset
865 int _576E2C_current_minimap_zoom; // weak
0
Ritor1
parents:
diff changeset
866 __int64 _5773B8_event_timer; // weak
Ritor1
parents:
diff changeset
867
629
59713bb36033 houses func moved to uihouses
Gloval
parents: 607
diff changeset
868
0
Ritor1
parents:
diff changeset
869 int dword_591084; // weak
Ritor1
parents:
diff changeset
870 struct Actor *pDialogue_SpeakingActor;
Ritor1
parents:
diff changeset
871 unsigned int uDialogueType;
1094
c40d40027b77 npc some clean
Gloval
parents: 1091
diff changeset
872 int sDialogue_SpeakingActorNPC_ID;
0
Ritor1
parents:
diff changeset
873 struct LevelDecoration *_591094_decoration;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
874 std::array<char, 200> sHouseName; // idb
0
Ritor1
parents:
diff changeset
875 int uCurrentHouse_Animation; // weak
Ritor1
parents:
diff changeset
876 char *dword_591164_teleport_map_name; // idb
Ritor1
parents:
diff changeset
877 int dword_591168_teleport_speedz; // weak
Ritor1
parents:
diff changeset
878 int dword_59116C_teleport_directionx; // weak
Ritor1
parents:
diff changeset
879 int dword_591170_teleport_directiony; // weak
Ritor1
parents:
diff changeset
880 int dword_591174_teleportz; // weak
Ritor1
parents:
diff changeset
881 int dword_591178_teleporty; // weak
Ritor1
parents:
diff changeset
882 int dword_59117C_teleportx; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
883 std::array<std::array<char, 100>, 6> byte_591180; // idb
1211
fd3bea473c0c fix HouseNpcdata array addresiing
Gloval
parents: 1209
diff changeset
884 std::array<struct NPCData *, 7> HouseNPCData;//0 zero element holds standart house npc
1589
Ritor1
parents: 1545
diff changeset
885 GUIButton* HouseNPCPortraitsButtonsList[6];//dword_5913F4
0
Ritor1
parents:
diff changeset
886 struct Texture *pTexture_591428;
Ritor1
parents:
diff changeset
887 struct Texture *pTexture_outside; // idb
Ritor1
parents:
diff changeset
888 struct Texture *pTexture_Dialogue_Background;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
889 std::array<char, 2000> byte_5B0938;
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 468
diff changeset
890 int EvtTargetObj; // 0x5B5920
434
137c59c3dbc4 Temple of Moon and Dragon Lair can now be entered.
Nomad
parents: 427
diff changeset
891 int _unused_5B5924_is_travel_ui_drawn = false; // 005B5924
0
Ritor1
parents:
diff changeset
892 int _5B65A8_npcdata_uflags_or_other; // weak
Ritor1
parents:
diff changeset
893 int _5B65AC_npcdata_fame_or_other; // weak
Ritor1
parents:
diff changeset
894 int _5B65B0_npcdata_rep_or_other; // weak
Ritor1
parents:
diff changeset
895 int _5B65B4_npcdata_loword_house_or_other; // weak
Ritor1
parents:
diff changeset
896 int _5B65B8_npcdata_hiword_house_or_other; // weak
Ritor1
parents:
diff changeset
897 int dword_5B65BC; // weak
Ritor1
parents:
diff changeset
898 int dword_5B65C0; // weak
1825
23deb6b09c8c cancelEventProcessing to dword_5B65C4_cancelEventProcessing
Grumpy7
parents: 1823
diff changeset
899 int dword_5B65C4_cancelEventProcessing; // weak
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
900 int dword_5B65C8_timers_count; // weak
1793
4dee76d79c78 dword_5B65CC to npcIdToDismissAfterDialogue, Party::field_709 to Party::hirelingScrollPosition
Grumpy7
parents: 1740
diff changeset
901 int npcIdToDismissAfterDialogue; // weak
602
628694cd5744 Margaret working
zipi
parents: 569
diff changeset
902 signed int dword_5B65D0_dialogue_actor_npc_id; // weak
0
Ritor1
parents:
diff changeset
903 int dword_5C3418; // weak
Ritor1
parents:
diff changeset
904 int dword_5C341C; // weak
1470
c987b5ed09af footer array fix
zipi
parents: 1459
diff changeset
905 //std::array<char, 777> byte_5C3427; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
906 std::array<char, 200> GameUI_Footer_TimedString;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
907 std::array<char, 200> pFooterString;
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 778
diff changeset
908 unsigned int GameUI_Footer_TimeLeft;
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 778
diff changeset
909 int bForceDrawFooter; // weak
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
910 int _5C35C0_force_party_death = false; // weak
0
Ritor1
parents:
diff changeset
911 int bDialogueUI_InitializeActor_NPC_ID; // weak
Ritor1
parents:
diff changeset
912 char *p2DEventsTXT_Raw;
629
59713bb36033 houses func moved to uihouses
Gloval
parents: 607
diff changeset
913
0
Ritor1
parents:
diff changeset
914 int dword_5C35D4; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
915 std::array<const char *, 2> aAMPMNames;
0
Ritor1
parents:
diff changeset
916 char byte_5C45AF[777]; // weak
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 165
diff changeset
917
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
918 std::array<char, 4096> pFinalMessage; // idb
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
919 std::array<char, 2000> pTmpBuf;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
920 std::array<char, 2000> pTmpBuf2;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
921 std::array<char, 100> Journal_limitation_factor; // weak
0
Ritor1
parents:
diff changeset
922 int ui_current_text_color; // weak
Ritor1
parents:
diff changeset
923 __int64 qword_5C6DF0; // weak
Ritor1
parents:
diff changeset
924 int dword_5C6DF8; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
925 std::array<char, 104> item__getname_buffer; // idb
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
926 std::array<char *, 36> pClassDescriptions;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
927 std::array<char *, 7> pAttributeDescriptions;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
928 std::array<char *, 38> pGrandSkillDesc;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
929 std::array<char *, 38> pMasterSkillDesc;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
930 std::array<char *, 38> pExpertSkillDesc;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
931 std::array<char *, 38> pNormalSkillDesc;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
932 std::array<char *, 38> pSkillDesc;
0
Ritor1
parents:
diff changeset
933 char *pHealthPointsAttributeDescription;
Ritor1
parents:
diff changeset
934 char *pSpellPointsAttributeDescription;
Ritor1
parents:
diff changeset
935 char *pArmourClassAttributeDescription;
Ritor1
parents:
diff changeset
936 char *pPlayerConditionAttributeDescription; // idb
Ritor1
parents:
diff changeset
937 char *pFastSpellAttributeDescription;
Ritor1
parents:
diff changeset
938 char *pPlayerAgeAttributeDescription;
Ritor1
parents:
diff changeset
939 char *pPlayerLevelAttributeDescription;
Ritor1
parents:
diff changeset
940 char *pPlayerExperienceAttributeDescription;
Ritor1
parents:
diff changeset
941 char *pAttackBonusAttributeDescription;
Ritor1
parents:
diff changeset
942 char *pAttackDamageAttributeDescription;
Ritor1
parents:
diff changeset
943 char *pMissleBonusAttributeDescription;
Ritor1
parents:
diff changeset
944 char *pMissleDamageAttributeDescription;
Ritor1
parents:
diff changeset
945 char *pFireResistanceAttributeDescription;
Ritor1
parents:
diff changeset
946 char *pAirResistanceAttributeDescription;
Ritor1
parents:
diff changeset
947 char *pWaterResistanceAttributeDescription;
Ritor1
parents:
diff changeset
948 char *pEarthResistanceAttributeDescription;
Ritor1
parents:
diff changeset
949 char *pMindResistanceAttributeDescription;
Ritor1
parents:
diff changeset
950 char *pBodyResistanceAttributeDescription;
Ritor1
parents:
diff changeset
951 char *pSkillPointsAttributeDescription;
Ritor1
parents:
diff changeset
952 char *pClassTXT_Raw;
Ritor1
parents:
diff changeset
953 char *pStatsTXT_Raw;
Ritor1
parents:
diff changeset
954 char *pSkillDescTXT_Raw;
233
0df4136b6aac store_line
Gloval
parents: 227
diff changeset
955
0
Ritor1
parents:
diff changeset
956 struct FactionTable *pFactionTable;
1263
73269755dd89 arcomage renaming&cleaning
Gloval
parents: 1257
diff changeset
957 //std::array<char, 777> byte_5C8D1A; // weak
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 165
diff changeset
958
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
959 std::array<char, 777> byte_5E4C15; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
960 std::array<const char *, 14> pSomeItemsNames;
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 165
diff changeset
961
0
Ritor1
parents:
diff changeset
962 char *pMonstersTXT_Raw;
Ritor1
parents:
diff changeset
963 char *pMonsterPlacementTXT_Raw;
Ritor1
parents:
diff changeset
964 char *pSpellsTXT_Raw;
Ritor1
parents:
diff changeset
965 char *pMapStatsTXT_Raw;
Ritor1
parents:
diff changeset
966 char *pHostileTXT_Raw;
Ritor1
parents:
diff changeset
967 char *pPotionsTXT_Raw;
Ritor1
parents:
diff changeset
968 char *pPotionNotesTXT_Raw;
233
0df4136b6aac store_line
Gloval
parents: 227
diff changeset
969
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
970 std::array<int, 777> _6807B8_level_decorations_ids; // idb
0
Ritor1
parents:
diff changeset
971 int _6807E0_num_decorations_with_sounds_6807B8; // weak
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
972 std::array<int, 3000> event_triggers; // 6807E8
1503
4ce525fe9ea9 Fix types.
yoctozepto
parents: 1477
diff changeset
973 size_t num_event_triggers; // 6836C8
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
974 std::array<int, 64> dword_69B010;
0
Ritor1
parents:
diff changeset
975 float flt_69B138_dist; // weak
Ritor1
parents:
diff changeset
976 char byte_69BD41_unused; // weak
Ritor1
parents:
diff changeset
977 unsigned int uTextureID_x_u;
Ritor1
parents:
diff changeset
978 unsigned int uTextureID_LS_saveU;
Ritor1
parents:
diff changeset
979 unsigned int uTextureID_LS_loadU;
Ritor1
parents:
diff changeset
980 unsigned int uTextureID_AR_DN_DN;
Ritor1
parents:
diff changeset
981 unsigned int uTextureID_AR_UP_DN;
Ritor1
parents:
diff changeset
982 unsigned int uTextureID_LS_;
Ritor1
parents:
diff changeset
983 unsigned int uTextureID_x_d;
Ritor1
parents:
diff changeset
984 unsigned int uTextureID_save_up;
Ritor1
parents:
diff changeset
985 unsigned int uTextureID_load_up;
Ritor1
parents:
diff changeset
986 unsigned int uTextureID_loadsave;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 0
diff changeset
987 int pSaveListPosition; // weak
0
Ritor1
parents:
diff changeset
988 unsigned int uLoadGameUI_SelectedSlot;
Ritor1
parents:
diff changeset
989 HWND hInsertCDWindow; // idb
Ritor1
parents:
diff changeset
990 int uCPUSpeed; // weak
Ritor1
parents:
diff changeset
991 char cMM7GameCDDriveLetter; // idb
2006
30c2b575d25c signed fixes
zipi
parents: 2000
diff changeset
992 MENU_STATE sCurrentMenuID;
0
Ritor1
parents:
diff changeset
993 unsigned int uGameState;
Ritor1
parents:
diff changeset
994 int uDefaultTravelTime_ByFoot; // weak
Ritor1
parents:
diff changeset
995 int day_attrib; // weak
Ritor1
parents:
diff changeset
996 int day_fogrange_1; // weak
Ritor1
parents:
diff changeset
997 int day_fogrange_2; // weak
Ritor1
parents:
diff changeset
998 struct TileTable *pTileTable; // idb
Ritor1
parents:
diff changeset
999 int outdoor_grid_band_1; // idb
Ritor1
parents:
diff changeset
1000 int outdoor_grid_band_2; // idb
Ritor1
parents:
diff changeset
1001 int outdoor_grid_band_3; // idb
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1002 std::array<char, 777> pDefaultSkyTexture; // idb
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1003 std::array<char, 16> byte_6BE124_cfg_textures_DefaultGroundTexture; // idb
0
Ritor1
parents:
diff changeset
1004 int _6BE134_odm_main_tile_group; // weak
Ritor1
parents:
diff changeset
1005 int dword_6BE138; // weak
Ritor1
parents:
diff changeset
1006 int dword_6BE13C_uCurrentlyLoadedLocationID; // weak
Ritor1
parents:
diff changeset
1007 float fWalkSpeedMultiplier = 1.0f; // weak
Ritor1
parents:
diff changeset
1008 float fBackwardWalkSpeedMultiplier = 1.0f; // weak
Ritor1
parents:
diff changeset
1009 float fTurnSpeedMultiplier = 1.0f; // weak
Ritor1
parents:
diff changeset
1010 float flt_6BE150_look_up_down_dangle = 1.0f; // weak
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1740
diff changeset
1011 //HWND hWnd; // idb
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1012 bool FORCE_16_BITS = false;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1740
diff changeset
1013 class OSWindow *window = nullptr;
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1470
diff changeset
1014 char pCurrentMapName[32]; // idb
0
Ritor1
parents:
diff changeset
1015 unsigned int uLevelMapStatsID;
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2059
diff changeset
1016 int dword_6BE364_game_settings_1 = 0;
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2059
diff changeset
1017 int dword_6BE368_debug_settings_2 = 0;
0
Ritor1
parents:
diff changeset
1018 unsigned __int8 bCanLoadFromCD = false;
Ritor1
parents:
diff changeset
1019 int bShowDamage; // idb
Ritor1
parents:
diff changeset
1020 unsigned int bAlwaysRun;
Ritor1
parents:
diff changeset
1021 unsigned int bFlipOnExit;
Ritor1
parents:
diff changeset
1022 unsigned int uTurnSpeed;
2151
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2140
diff changeset
1023 float flt_6BE3A0 = 0.55000001f; // weak
0
Ritor1
parents:
diff changeset
1024 float flt_6BE3A4_debug_recmod1;
Ritor1
parents:
diff changeset
1025 float flt_6BE3A8_debug_recmod2;
Ritor1
parents:
diff changeset
1026 float flt_6BE3AC_debug_recmod1_x_1_6;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1027 std::array<char, 20> byte_6BE3B0; // idb
0
Ritor1
parents:
diff changeset
1028 char bUnderwater = false; // weak
Ritor1
parents:
diff changeset
1029 char bNoNPCHiring = false; // weak
Ritor1
parents:
diff changeset
1030 unsigned int bNoVideo = false;
Ritor1
parents:
diff changeset
1031 bool bNoIntro = false;
Ritor1
parents:
diff changeset
1032 bool bNoLogo = false;
Ritor1
parents:
diff changeset
1033 bool bNoCD = false;
Ritor1
parents:
diff changeset
1034 bool bNoSound = false;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1035 std::array<int, 100> dword_720020_zvalues;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1036 std::array<int, 299> dword_7201B0_zvalues;
0
Ritor1
parents:
diff changeset
1037 int uTextureID_720980; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1038 std::array<__int16, 104> word_7209A0_intercepts_ys_plus_ys;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1039 std::array<__int16, 104> word_720A70_intercepts_xs_plus_xs;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1040 std::array<__int16, 104> word_720B40_intercepts_zs;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1041 std::array<__int16, 102> word_720C10_intercepts_xs;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1042 std::array<__int16, 777> word_720CE0_ys; // idb
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1043 std::array<__int16, 777> word_720DB0_xs; // idb
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1044 std::array<int, 20> dword_720E80;
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1045 std::array<int, 20> dword_720ED0;
2043
2ccf638342d6 int max_flight_height and GetCeilingHeight function
Ritor1
parents: 2037
diff changeset
1046 std::array<int, 20> ceiling_height_level;
2075
24033aa2e1f8 ODM_GetFloorLevel() check height
Ritor1
parents: 2068
diff changeset
1047 std::array<__int16, 104> odm_floor_face_vert_coord_Y; // word_720F70
24033aa2e1f8 ODM_GetFloorLevel() check height
Ritor1
parents: 2068
diff changeset
1048 std::array<__int16, 104> odm_floor_face_vert_coord_X; // word_721040
2140
4c0c475917dd drawing items in the dragon's cave and GetFloorLevel for BModels
Ritor1
parents: 2135
diff changeset
1049 std::array<int, 20> current_Face_id; // dword_721110
4c0c475917dd drawing items in the dragon's cave and GetFloorLevel for BModels
Ritor1
parents: 2135
diff changeset
1050 std::array<int, 20> current_BModel_id; // dword_721160
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1051 std::array<int, 20> odm_floor_level; // idb
0
Ritor1
parents:
diff changeset
1052 int blv_prev_party_x; // weak
Ritor1
parents:
diff changeset
1053 int blv_prev_party_z; // weak
Ritor1
parents:
diff changeset
1054 int blv_prev_party_y; // weak
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
1055 std::array<NPCTopic, 789> pNPCTopics;
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1279
diff changeset
1056 std::array<const char *, 513> pQuestTable;
0
Ritor1
parents:
diff changeset
1057 char *dword_723718_autonote_related; // idb
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1058 std::array<const char *, 82> pScrolls;
0
Ritor1
parents:
diff changeset
1059 int dword_7241C8; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1060 std::array<const char *, 59> aNPCProfessionNames;
0
Ritor1
parents:
diff changeset
1061 char *pAwardsTXT_Raw;
Ritor1
parents:
diff changeset
1062 char *pScrollsTXT_Raw;
Ritor1
parents:
diff changeset
1063 char *pMerchantsTXT_Raw;
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1064 std::array<const char *, 7> pMerchantsBuyPhrases;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1065 std::array<const char *, 7> pMerchantsSellPhrases;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1066 std::array<const char *, 7> pMerchantsRepairPhrases;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1067 std::array<const char *, 7> pMerchantsIdentifyPhrases;
0
Ritor1
parents:
diff changeset
1068 char *pTransitionsTXT_Raw;
Ritor1
parents:
diff changeset
1069 char *pAutonoteTXT_Raw;
Ritor1
parents:
diff changeset
1070 char *pQuestsTXT_Raw;
2151
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2140
diff changeset
1071 unsigned int uNumTerrainNormals;
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2140
diff changeset
1072 struct Vec3_float_ *pTerrainNormals;
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2140
diff changeset
1073 std::array<unsigned short, 128 * 128 * 2> pTerrainNormalIndices;
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2140
diff changeset
1074 std::array<unsigned int, 128 * 128 * 2> pTerrainSomeOtherData;
0
Ritor1
parents:
diff changeset
1075 int dword_A74C88; // weak
Ritor1
parents:
diff changeset
1076 unsigned int uPlayerCreationUI_SkySliderPos;
Ritor1
parents:
diff changeset
1077 int uPlayerCreationUI_ArrowAnim;
Ritor1
parents:
diff changeset
1078 unsigned int uPlayerCreationUI_SelectedCharacter;
Ritor1
parents:
diff changeset
1079 int dword_A74CDC; // weak
Ritor1
parents:
diff changeset
1080 struct Texture *pTexture_PlayerFaceMask;
Ritor1
parents:
diff changeset
1081 struct Texture *pTexture_PlayerFaceEradicated;
Ritor1
parents:
diff changeset
1082 struct Texture *pTexture_PlayerFaceDead;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1083 std::array< std::array<struct Texture *, 56>, 4> pTextures_PlayerFaces;
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2169
diff changeset
1084 __int64 _A750D8_player_speech_timer; // qword_A750D8
1406
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1396
diff changeset
1085 enum PlayerSpeech PlayerSpeechID;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1086 int uSpeakingCharacter; // weak
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1087 std::array<const char *, 36> pClassNames;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1088 std::array<const char *, 19> aCharacterConditionNames;
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
1089 std::array<const char *, 38> pSkillNames;
0
Ritor1
parents:
diff changeset
1090 char byte_AE5B91; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1091 std::array<int, 32> dword_F1B430; // weak
758
9f7db515a8d7 Training Hall & levelling up fixed
Nomad
parents: 747
diff changeset
1092 //int dword_F8B144; // nexindex [-1] to the following
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1093 std::array<int, 4> player_levels = {{1, 1, 1, 1}};
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1696
diff changeset
1094 std::array<__int16, 6> weapons_Ypos; // word_F8B158
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1095 struct Texture *ShopTexture; // idb
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1096 std::array<struct Texture *, 12> ItemsInShopTexture;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1518
diff changeset
1097 __int16 bountyHunting_monster_id_for_hunting; // word_F8B1A0
61458df2cb4f bountyHunting fix
Ritor1
parents: 1518
diff changeset
1098 const char *bountyHunting_text; // word_F8B1A4
484
4bd56919f075 avard quest guild bits
Gloval
parents: 480
diff changeset
1099 int contract_approved; // weak
492
Gloval
parents: 487
diff changeset
1100 int dword_F8B1AC_award_bit_number; // idb
2239
699bd6ee5ad0 dword_F8B1B0 to dword_F8B1B0_MasteryBeingTaught, some final touches to _4B254D_SkillMasteryTeacher
Grumpy7
parents: 2229
diff changeset
1101 int dword_F8B1B0_MasteryBeingTaught; // weak
267
ac44e716d051 DrawDialogueUI logic restored
Nomad
parents: 248
diff changeset
1102 int gold_transaction_amount; // F8B1B4
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1103 std::array<char *, 4> pShopOptions;
0
Ritor1
parents:
diff changeset
1104 int dword_F8B1D8; // weak
Ritor1
parents:
diff changeset
1105 int dword_F8B1E0; // weak
Ritor1
parents:
diff changeset
1106 int dword_F8B1E4; // weak
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 819
diff changeset
1107 const char *current_npc_text; // idb
248
37dcbe8f3cca Dialogue stuff
Nomad
parents: 246
diff changeset
1108 char dialogue_show_profession_details = false; // F8B1EC
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1109 std::array<char, 777> byte_F8B1EF; // weak
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1110 std::array<char, 4> byte_F8B1F0;
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 688
diff changeset
1111
0
Ritor1
parents:
diff changeset
1112 int bGameoverLoop = 0; // weak
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1203
diff changeset
1113 std::array<__int16, 104> intersect_face_vertex_coords_list_a; // word_F8BC48
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
1114 std::array<__int16, 104> intersect_face_vertex_coords_list_b; // word_F8BD18