annotate mm7_5.cpp @ 1677:a699ecd7aeb3

PlayerCreationUI_Draw()
author Ritor1
date Fri, 20 Sep 2013 14:31:42 +0600
parents 483cc7f0d86c
children 7d99124bccd8
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1160
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1160
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1160
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1160
diff changeset
4
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
5 #include "Texture.h"
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
6 #include "mm7_data.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
7 #include "VideoPlayer.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
8 #include "Sprites.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
9 #include "MapInfo.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
10 #include "BSPModel.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
11 #include "LightmapBuilder.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
12 #include "DecalBuilder.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
13 #include "Mouse.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
14 #include "Keyboard.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
15 #include "GammaControl.h"
1263
73269755dd89 arcomage renaming&cleaning
Gloval
parents: 1254
diff changeset
16 #include "mm7_data.h"
73269755dd89 arcomage renaming&cleaning
Gloval
parents: 1254
diff changeset
17 #include "FactionTable.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 1000
diff changeset
18 #include "Vis.h"
0
Ritor1
parents:
diff changeset
19 #include "mm7.h"
Ritor1
parents:
diff changeset
20 #include "Game.h"
Ritor1
parents:
diff changeset
21 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
22 #include "GUIFont.h"
Ritor1
parents:
diff changeset
23 #include "GUIProgressBar.h"
Ritor1
parents:
diff changeset
24 #include "Party.h"
Ritor1
parents:
diff changeset
25 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
26 #include "Outdoor.h"
Ritor1
parents:
diff changeset
27 #include "Arcomage.h"
Ritor1
parents:
diff changeset
28 #include "LOD.h"
Ritor1
parents:
diff changeset
29 #include "Actor.h"
Ritor1
parents:
diff changeset
30 #include "Events.h"
Ritor1
parents:
diff changeset
31 #include "Viewport.h"
Ritor1
parents:
diff changeset
32 #include "FrameTableInc.h"
Ritor1
parents:
diff changeset
33 #include "Math.h"
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
34 #include "SpriteObject.h"
0
Ritor1
parents:
diff changeset
35 #include "ObjectList.h"
Ritor1
parents:
diff changeset
36 #include "Chest.h"
Ritor1
parents:
diff changeset
37 #include "PaletteManager.h"
Ritor1
parents:
diff changeset
38 #include "SaveLoad.h"
Ritor1
parents:
diff changeset
39 #include "Time.h"
Ritor1
parents:
diff changeset
40 #include "TurnEngine.h"
924
a78f08dbeb88 CastSpellInfo
Ritor1
parents: 921
diff changeset
41 #include "CastSpellInfo.h"
0
Ritor1
parents:
diff changeset
42 #include "stru298.h"
Ritor1
parents:
diff changeset
43 #include "Events2D.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 165
diff changeset
44 #include "texts.h"
0
Ritor1
parents:
diff changeset
45 #include "Log.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1297
diff changeset
46 #include "UI\UIHouses.h"
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
47 #include "Lights.h"
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
48 #include "Lights.h"
0
Ritor1
parents:
diff changeset
49
Ritor1
parents:
diff changeset
50 //----- (004304E7) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
51 void GameUI_MsgProc()
0
Ritor1
parents:
diff changeset
52 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
53 //signed int v0; // edi@6
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
54 //char *v1; // esi@6
0
Ritor1
parents:
diff changeset
55 unsigned int v2; // edx@7
Ritor1
parents:
diff changeset
56 Actor *pActor; // ecx@13
Ritor1
parents:
diff changeset
57 int v4; // ecx@18
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
58 //NPCData *pNPCData0; // eax@18
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
59 //int v6; // edx@20
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
60 //int v7; // ecx@29
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
61 //unsigned int v8; // edx@59
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
62 //unsigned int v9; // ecx@60
0
Ritor1
parents:
diff changeset
63 unsigned int v10; // ecx@73
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
64 //unsigned int v11; // eax@75
0
Ritor1
parents:
diff changeset
65 unsigned __int8 v12; // sf@75
Ritor1
parents:
diff changeset
66 unsigned __int8 v13; // of@75
Ritor1
parents:
diff changeset
67 int v14; // eax@98
Ritor1
parents:
diff changeset
68 unsigned int v15; // eax@102
Ritor1
parents:
diff changeset
69 unsigned __int8 v16; // al@104
Ritor1
parents:
diff changeset
70 unsigned __int8 v17; // al@105
Ritor1
parents:
diff changeset
71 int v18; // eax@106
Ritor1
parents:
diff changeset
72 float v19; // ST64_4@121
Ritor1
parents:
diff changeset
73 unsigned int v20; // ecx@121
Ritor1
parents:
diff changeset
74 float v21; // ST64_4@126
Ritor1
parents:
diff changeset
75 float v22; // ST64_4@127
Ritor1
parents:
diff changeset
76 unsigned int v23; // ecx@135
Ritor1
parents:
diff changeset
77 unsigned int v24; // ecx@149
Ritor1
parents:
diff changeset
78 unsigned int v25; // ecx@165
Ritor1
parents:
diff changeset
79 GUIWindow *pWindow; // eax@204
Ritor1
parents:
diff changeset
80 unsigned int v27; // edx@204
Ritor1
parents:
diff changeset
81 unsigned int v28; // ecx@204
Ritor1
parents:
diff changeset
82 GUIWindow *pWindow2; // ecx@248
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
83 //int v30; // edx@258
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
84 //const char *v31; // ecx@262
0
Ritor1
parents:
diff changeset
85 signed int v32; // eax@269
Ritor1
parents:
diff changeset
86 unsigned int v33; // eax@277
Ritor1
parents:
diff changeset
87 unsigned __int8 v34; // al@279
Ritor1
parents:
diff changeset
88 unsigned __int8 v35; // al@280
1000
Ritor1
parents: 999
diff changeset
89 //GUIWindow *pWindow3; // ecx@332
0
Ritor1
parents:
diff changeset
90 int v37; // eax@341
Ritor1
parents:
diff changeset
91 int v38; // eax@358
Ritor1
parents:
diff changeset
92 SHORT v39; // ax@365
910
Ritor1
parents: 907
diff changeset
93 //signed int v40; // eax@365
0
Ritor1
parents:
diff changeset
94 char *v41; // eax@380
Ritor1
parents:
diff changeset
95 int v42; // eax@396
Ritor1
parents:
diff changeset
96 POINT *pPoint; // eax@397
Ritor1
parents:
diff changeset
97 signed int v44; // eax@398
Ritor1
parents:
diff changeset
98 int v45; // edx@398
Ritor1
parents:
diff changeset
99 signed int v46; // ecx@398
Ritor1
parents:
diff changeset
100 char v47; // zf@399
Ritor1
parents:
diff changeset
101 char v48; // zf@405
Ritor1
parents:
diff changeset
102 BLVFace *pBLVFace; // ecx@410
Ritor1
parents:
diff changeset
103 ODMFace *pODMFace; // ecx@412
1000
Ritor1
parents: 999
diff changeset
104 CastSpellInfo *pSpellInfo; // ecx@415
0
Ritor1
parents:
diff changeset
105 void *v52; // eax@424
Ritor1
parents:
diff changeset
106 __int16 v53; // ax@431
Ritor1
parents:
diff changeset
107 int v54; // eax@432
Ritor1
parents:
diff changeset
108 int v55; // ecx@432
Ritor1
parents:
diff changeset
109 int v56; // edx@432
Ritor1
parents:
diff changeset
110 int v57; // eax@432
Ritor1
parents:
diff changeset
111 Player *pPlayer; // edx@442
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
112 unsigned int pMapNum; // eax@445
0
Ritor1
parents:
diff changeset
113 signed int v60; // ST64_4@459
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
114 //NPCData *pNPCData2; // eax@467
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
115 //unsigned __int64 v62; // kr00_8@467
0
Ritor1
parents:
diff changeset
116 __int16 v63; // dx@479
Ritor1
parents:
diff changeset
117 unsigned int v64; // eax@486
Ritor1
parents:
diff changeset
118 int v65; // ecx@486
Ritor1
parents:
diff changeset
119 int v66; // eax@488
Ritor1
parents:
diff changeset
120 char *v67; // eax@489
Ritor1
parents:
diff changeset
121 __int16 v68; // dx@498
Ritor1
parents:
diff changeset
122 char *v69; // eax@512
Ritor1
parents:
diff changeset
123 int v70; // eax@525
Ritor1
parents:
diff changeset
124 int v71; // edi@527
Ritor1
parents:
diff changeset
125 NPCData *pNPCData3; // esi@527
Ritor1
parents:
diff changeset
126 char *v73; // ecx@533
Ritor1
parents:
diff changeset
127 signed int v74; // edi@535
Ritor1
parents:
diff changeset
128 int v75; // eax@535
Ritor1
parents:
diff changeset
129 int v76; // esi@535
Ritor1
parents:
diff changeset
130 int v77; // eax@537
Ritor1
parents:
diff changeset
131 Player *pPlayer2; // ecx@549
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
132 //int v79; // ecx@550
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
133 //unsigned int v80; // edx@550
0
Ritor1
parents:
diff changeset
134 signed int v81; // eax@552
Ritor1
parents:
diff changeset
135 POINT *pPoint2; // eax@553
Ritor1
parents:
diff changeset
136 signed int v83; // ecx@554
Ritor1
parents:
diff changeset
137 signed int v84; // ecx@554
Ritor1
parents:
diff changeset
138 GUIButton *pButton; // eax@578
Ritor1
parents:
diff changeset
139 unsigned int v86; // eax@583
Ritor1
parents:
diff changeset
140 const char *v87; // ecx@595
Ritor1
parents:
diff changeset
141 const char *v88; // ecx@596
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
142 //unsigned int v89; // eax@598
0
Ritor1
parents:
diff changeset
143 unsigned int v90; // eax@602
Ritor1
parents:
diff changeset
144 int v91; // edx@605
Ritor1
parents:
diff changeset
145 int v92; // eax@605
Ritor1
parents:
diff changeset
146 int v93; // edx@605
Ritor1
parents:
diff changeset
147 int pPlayerNum; // edx@611
Ritor1
parents:
diff changeset
148 int v95; // eax@611
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
149 //const char *v96; // ecx@621
0
Ritor1
parents:
diff changeset
150 unsigned int v97; // eax@624
Ritor1
parents:
diff changeset
151 int v98; // eax@636
Ritor1
parents:
diff changeset
152 unsigned __int8 v99; // al@643
Ritor1
parents:
diff changeset
153 Player *pPlayer3; // eax@648
Ritor1
parents:
diff changeset
154 int v101; // ecx@648
Ritor1
parents:
diff changeset
155 int v102; // edx@652
Ritor1
parents:
diff changeset
156 int v103; // eax@671
Ritor1
parents:
diff changeset
157 Player *pPlayer4; // ecx@718
Ritor1
parents:
diff changeset
158 int v105; // eax@718
Ritor1
parents:
diff changeset
159 Player *pPlayer5; // ST78_4@758
Ritor1
parents:
diff changeset
160 unsigned int v107; // eax@758
Ritor1
parents:
diff changeset
161 unsigned int v108; // eax@758
Ritor1
parents:
diff changeset
162 unsigned int v115; // eax@764
Ritor1
parents:
diff changeset
163 int v116; // eax@776
Ritor1
parents:
diff changeset
164 POINT *pPoint3; // eax@777
Ritor1
parents:
diff changeset
165 unsigned int v118; // eax@785
Ritor1
parents:
diff changeset
166 unsigned int v119; // ecx@786
Ritor1
parents:
diff changeset
167 unsigned int v120; // [sp-28h] [bp-624h]@86
Ritor1
parents:
diff changeset
168 unsigned int v121; // [sp-28h] [bp-624h]@711
Ritor1
parents:
diff changeset
169 unsigned int v122; // [sp-24h] [bp-620h]@86
Ritor1
parents:
diff changeset
170 unsigned int v123; // [sp-24h] [bp-620h]@711
Ritor1
parents:
diff changeset
171 unsigned int v124; // [sp-20h] [bp-61Ch]@86
Ritor1
parents:
diff changeset
172 unsigned int v125; // [sp-20h] [bp-61Ch]@711
Ritor1
parents:
diff changeset
173 unsigned int v126; // [sp-1Ch] [bp-618h]@86
Ritor1
parents:
diff changeset
174 int v127; // [sp-1Ch] [bp-618h]@107
Ritor1
parents:
diff changeset
175 unsigned int v128; // [sp-1Ch] [bp-618h]@711
Ritor1
parents:
diff changeset
176 int v129; // [sp-18h] [bp-614h]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
177 //signed int v130; // [sp-18h] [bp-614h]@107
0
Ritor1
parents:
diff changeset
178 int v131; // [sp-14h] [bp-610h]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
179 //unsigned int v132; // [sp-14h] [bp-610h]@107
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
180 //unsigned int v133; // [sp-10h] [bp-60Ch]@60
0
Ritor1
parents:
diff changeset
181 unsigned int v134; // [sp-10h] [bp-60Ch]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
182 //signed int v135; // [sp-10h] [bp-60Ch]@107
0
Ritor1
parents:
diff changeset
183 unsigned int v136; // [sp-10h] [bp-60Ch]@121
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
184 //unsigned int v137; // [sp-Ch] [bp-608h]@60
0
Ritor1
parents:
diff changeset
185 unsigned int v138; // [sp-Ch] [bp-608h]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
186 //signed int v139; // [sp-Ch] [bp-608h]@107
0
Ritor1
parents:
diff changeset
187 unsigned int v140; // [sp-Ch] [bp-608h]@121
Ritor1
parents:
diff changeset
188 enum WindowType pWindowType; // [sp-8h] [bp-604h]@56
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
189 //enum WindowType pWindowType1; // [sp-8h] [bp-604h]@60
0
Ritor1
parents:
diff changeset
190 unsigned __int8 v143; // [sp-8h] [bp-604h]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
191 //int v144; // [sp-8h] [bp-604h]@107
0
Ritor1
parents:
diff changeset
192 enum WindowType pWindowType2; // [sp-8h] [bp-604h]@121
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
193 //const char *v146; // [sp-8h] [bp-604h]@449
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
194 //unsigned int v147; // [sp-8h] [bp-604h]@550
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
195 //int v148; // [sp-4h] [bp-600h]@56
0
Ritor1
parents:
diff changeset
196 GUIButton *pButton2; // [sp-4h] [bp-600h]@59
Ritor1
parents:
diff changeset
197 const char *v150; // [sp-4h] [bp-600h]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
198 //unsigned int v151; // [sp-4h] [bp-600h]@107
0
Ritor1
parents:
diff changeset
199 int v152; // [sp-4h] [bp-600h]@121
Ritor1
parents:
diff changeset
200 int v153; // [sp-4h] [bp-600h]@135
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
201 //int v154; // [sp-4h] [bp-600h]@149
0
Ritor1
parents:
diff changeset
202 int v155; // [sp-4h] [bp-600h]@165
Ritor1
parents:
diff changeset
203 int v156; // [sp-4h] [bp-600h]@204
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
204 //const char *v157; // [sp-4h] [bp-600h]@444
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
205 //unsigned int v158; // [sp-4h] [bp-600h]@449
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
206 //__int16 v159; // [sp-4h] [bp-600h]@550
0
Ritor1
parents:
diff changeset
207 int v160; // [sp-4h] [bp-600h]@599
Ritor1
parents:
diff changeset
208 const char *v161; // [sp-4h] [bp-600h]@637
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
209 //int v162; // [sp+0h] [bp-5FCh]@56
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
210 //int v163; // [sp+0h] [bp-5FCh]@59
0
Ritor1
parents:
diff changeset
211 Texture *pTexture; // [sp+0h] [bp-5FCh]@86
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
212 //int v165; // [sp+0h] [bp-5FCh]@107
0
Ritor1
parents:
diff changeset
213 int v166; // [sp+0h] [bp-5FCh]@121
Ritor1
parents:
diff changeset
214 int v167; // [sp+0h] [bp-5FCh]@135
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
215 //int v168; // [sp+0h] [bp-5FCh]@149
0
Ritor1
parents:
diff changeset
216 int v169; // [sp+0h] [bp-5FCh]@165
Ritor1
parents:
diff changeset
217 int v170; // [sp+0h] [bp-5FCh]@204
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
218 //signed int v171; // [sp+0h] [bp-5FCh]@259
0
Ritor1
parents:
diff changeset
219 KeyToggleType pKeyToggleType; // [sp+0h] [bp-5FCh]@287
Ritor1
parents:
diff changeset
220 char *v173; // [sp+0h] [bp-5FCh]@444
Ritor1
parents:
diff changeset
221 char *v174; // [sp+0h] [bp-5FCh]@449
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
222 //int v175; // [sp+0h] [bp-5FCh]@550
0
Ritor1
parents:
diff changeset
223 int v176; // [sp+0h] [bp-5FCh]@599
Ritor1
parents:
diff changeset
224 const char *v177; // [sp+0h] [bp-5FCh]@629
Ritor1
parents:
diff changeset
225 char *v178; // [sp+0h] [bp-5FCh]@637
Ritor1
parents:
diff changeset
226 int v179; // [sp+4h] [bp-5F8h]@0
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
227 //signed int _this; // [sp+14h] [bp-5E8h]@22
0
Ritor1
parents:
diff changeset
228 signed int thisa; // [sp+14h] [bp-5E8h]@251
Ritor1
parents:
diff changeset
229 signed int thisb; // [sp+14h] [bp-5E8h]@272
Ritor1
parents:
diff changeset
230 Player *pPlayer7; // [sp+14h] [bp-5E8h]@373
Ritor1
parents:
diff changeset
231 Player *pPlayer8; // [sp+14h] [bp-5E8h]@377
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
232 char *pMapName; // [sp+14h] [bp-5E8h]@445
0
Ritor1
parents:
diff changeset
233 Player *pPlayer9; // [sp+14h] [bp-5E8h]@455
Ritor1
parents:
diff changeset
234 int thisg; // [sp+14h] [bp-5E8h]@467
Ritor1
parents:
diff changeset
235 int thish; // [sp+14h] [bp-5E8h]@528
Ritor1
parents:
diff changeset
236 signed int thisi; // [sp+14h] [bp-5E8h]@535
Ritor1
parents:
diff changeset
237 MapInfo *pMapInfo; // [sp+14h] [bp-5E8h]@604
Ritor1
parents:
diff changeset
238 Player *pPlayer10; // [sp+14h] [bp-5E8h]@641
Ritor1
parents:
diff changeset
239 int thisl; // [sp+14h] [bp-5E8h]@648
Ritor1
parents:
diff changeset
240 int uMessageParam; // [sp+18h] [bp-5E4h]@7
Ritor1
parents:
diff changeset
241 int uAction; // [sp+1Ch] [bp-5E0h]@18
Ritor1
parents:
diff changeset
242 NPCData *pNPCData4; // [sp+20h] [bp-5DCh]@23
Ritor1
parents:
diff changeset
243 unsigned int uNumSeconds; // [sp+24h] [bp-5D8h]@18
Ritor1
parents:
diff changeset
244 char v197; // [sp+2Bh] [bp-5D1h]@101
Ritor1
parents:
diff changeset
245 enum UIMessageType uMessage; // [sp+2Ch] [bp-5D0h]@7
Ritor1
parents:
diff changeset
246 unsigned int v199; // [sp+30h] [bp-5CCh]@7
Ritor1
parents:
diff changeset
247 char *v200; // [sp+34h] [bp-5C8h]@518
Ritor1
parents:
diff changeset
248 POINT v201; // [sp+38h] [bp-5C4h]@553
Ritor1
parents:
diff changeset
249 POINT v202; // [sp+40h] [bp-5BCh]@141
Ritor1
parents:
diff changeset
250 POINT a2; // [sp+48h] [bp-5B4h]@127
Ritor1
parents:
diff changeset
251 POINT v204; // [sp+50h] [bp-5ACh]@777
Ritor1
parents:
diff changeset
252 POINT v205; // [sp+58h] [bp-5A4h]@171
Ritor1
parents:
diff changeset
253 POINT v206; // [sp+60h] [bp-59Ch]@553
Ritor1
parents:
diff changeset
254 POINT v207; // [sp+68h] [bp-594h]@155
Ritor1
parents:
diff changeset
255 POINT v208; // [sp+70h] [bp-58Ch]@397
Ritor1
parents:
diff changeset
256 POINT v209; // [sp+78h] [bp-584h]@777
Ritor1
parents:
diff changeset
257 POINT v210; // [sp+80h] [bp-57Ch]@397
Ritor1
parents:
diff changeset
258 POINT v211; // [sp+88h] [bp-574h]@704
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
259 //__int64 v212; // [sp+90h] [bp-56Ch]@467
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
260 int v213; // [sp+98h] [bp-564h]@385
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
261 char pLevelName[32]; // [sp+9Ch] [bp-560h]@380
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
262 char pOut[32]; // [sp+BCh] [bp-540h]@370
0
Ritor1
parents:
diff changeset
263 FrameTableTxtLine v216; // [sp+DCh] [bp-520h]@524
Ritor1
parents:
diff changeset
264 int v217[9]; // [sp+158h] [bp-4A4h]@652
Ritor1
parents:
diff changeset
265 FrameTableTxtLine v218; // [sp+17Ch] [bp-480h]@524
Ritor1
parents:
diff changeset
266 char a1[64]; // [sp+1F8h] [bp-404h]@467
Ritor1
parents:
diff changeset
267 char Str2[128]; // [sp+238h] [bp-3C4h]@527
Ritor1
parents:
diff changeset
268 Actor actor; // [sp+2B8h] [bp-344h]@4
Ritor1
parents:
diff changeset
269
Ritor1
parents:
diff changeset
270 dword_50CDC8 = 0;
Ritor1
parents:
diff changeset
271 if ( !pEventTimer->bPaused )
Ritor1
parents:
diff changeset
272 {
Ritor1
parents:
diff changeset
273 pParty->sEyelevel = pParty->uDefaultEyelevel;
Ritor1
parents:
diff changeset
274 pParty->uPartyHeight = pParty->uDefaultPartyHeight;
Ritor1
parents:
diff changeset
275 }
Ritor1
parents:
diff changeset
276 if ( bDialogueUI_InitializeActor_NPC_ID )
Ritor1
parents:
diff changeset
277 {
Ritor1
parents:
diff changeset
278 //Actor::Actor(&actor);
Ritor1
parents:
diff changeset
279 memset(&actor, 0, 0x344u);
Ritor1
parents:
diff changeset
280 dword_5B65D0_dialogue_actor_npc_id = bDialogueUI_InitializeActor_NPC_ID;
602
628694cd5744 Margaret working
zipi
parents: 600
diff changeset
281 actor.sNPC_ID = bDialogueUI_InitializeActor_NPC_ID;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
282 GameUI_InitializeDialogue(&actor, false);
0
Ritor1
parents:
diff changeset
283 bDialogueUI_InitializeActor_NPC_ID = 0;
Ritor1
parents:
diff changeset
284 }
Ritor1
parents:
diff changeset
285 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
286 {
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
287 //v1 = "";
0
Ritor1
parents:
diff changeset
288 while ( 2 )
Ritor1
parents:
diff changeset
289 {
Ritor1
parents:
diff changeset
290 if ( !pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
291 break;
Ritor1
parents:
diff changeset
292
Ritor1
parents:
diff changeset
293 pMessageQueue_50CBD0->PopMessage(&uMessage, &uMessageParam, (int *)&v199);
Ritor1
parents:
diff changeset
294 switch ( uMessage )
Ritor1
parents:
diff changeset
295 {
Ritor1
parents:
diff changeset
296 case UIMSG_ChangeGameState:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
297 uGameState = GAME_FINISHED;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
298 continue;
0
Ritor1
parents:
diff changeset
299 case UIMSG_PlayArcomage:
Ritor1
parents:
diff changeset
300 pVideoPlayer->_4BF5B2();
Ritor1
parents:
diff changeset
301 pArcomageGame->bGameInProgress = 1;
Ritor1
parents:
diff changeset
302 PrepareArcomage();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
303 continue;
0
Ritor1
parents:
diff changeset
304 case UIMSG_StartNPCDialogue:
Ritor1
parents:
diff changeset
305 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
306 continue;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
307 viewparams->field_48 = 1;
0
Ritor1
parents:
diff changeset
308 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
309 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
602
628694cd5744 Margaret working
zipi
parents: 600
diff changeset
310 dword_5B65D0_dialogue_actor_npc_id = pActors[uMessageParam].sNPC_ID;
0
Ritor1
parents:
diff changeset
311 pActor = &pActors[uMessageParam];
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
312 //goto _actor_init_dlg;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
313 GameUI_InitializeDialogue(pActor, true);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
314 continue;
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
315 case UIMSG_StartHireling1Dialogue:
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
316 case UIMSG_StartHireling2Dialogue:
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
317 {
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
318 if (bNoNPCHiring || pCurrentScreen)
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
319 continue;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
320
0
Ritor1
parents:
diff changeset
321 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
322 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
323 uAction = 0;
201
30aa44013f7a On Items
Nomad
parents: 199
diff changeset
324 int hireling_idx = uMessage - UIMSG_StartHireling1Dialogue;
0
Ritor1
parents:
diff changeset
325 v4 = 0;
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
326
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
327 for (uint i = 0; i < 2; ++i)
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
328 //pNPCData0 = pParty->pHirelings;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
329 //do
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
330 {
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
331 if (pParty->pHirelings[i].pName)
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
332 //{
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
333 //v6 = uAction++;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
334 pTmpBuf[uAction++] = i;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
335 //}
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
336 //++pNPCData0;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
337 //++v4;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
338 }
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
339 //while ( (signed int)pNPCData0 < (signed int)&pParty->pPickedItem );
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
340
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
341 //_this = 0;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
342 for (uint i = 0; i < pNPCStats->uNumNewNPCs; ++i)
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
343 {
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
344 auto npc = pNPCStats->pNewNPCData + i;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
345 //do
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
346 //{
248
37dcbe8f3cca Dialogue stuff
Nomad
parents: 247
diff changeset
347 if (npc->Hired() &&
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
348 (!pParty->pHirelings[0].pName || strcmp(npc->pName, pParty->pHirelings[0].pName)) &&
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
349 (!pParty->pHirelings[1].pName || strcmp(npc->pName, pParty->pHirelings[1].pName)) )
0
Ritor1
parents:
diff changeset
350 {
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
351 //v7 =;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
352 pTmpBuf[uAction++] = i + 2;
0
Ritor1
parents:
diff changeset
353 }
199
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
354 //++_this;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
355 //++pNPCData4;
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
356 //}
66db86fa4ed2 Hireling dialogues
Nomad
parents: 198
diff changeset
357 //while ( _this < (signed int)pNPCStats->uNumNewNPCs );
0
Ritor1
parents:
diff changeset
358 }
201
30aa44013f7a On Items
Nomad
parents: 199
diff changeset
359
30aa44013f7a On Items
Nomad
parents: 199
diff changeset
360 if ( (signed int)(hireling_idx + (unsigned __int8)pParty->field_709) < uAction )
0
Ritor1
parents:
diff changeset
361 {
Ritor1
parents:
diff changeset
362 //Actor::Actor(&actor);
Ritor1
parents:
diff changeset
363 memset(&actor, 0, 0x344u);
602
628694cd5744 Margaret working
zipi
parents: 600
diff changeset
364 actor.sNPC_ID += -1 - (unsigned __int8)pParty->field_709 - hireling_idx;
0
Ritor1
parents:
diff changeset
365 pActor = &actor;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
366 GameUI_InitializeDialogue(&actor, true);
0
Ritor1
parents:
diff changeset
367 }
Ritor1
parents:
diff changeset
368 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
369 continue;
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 731
diff changeset
370
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 731
diff changeset
371 case UIMSG_BuyInShop_Identify_Repair:
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 731
diff changeset
372 UIShop_Buy_Identify_Repair();
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 731
diff changeset
373 continue;
467
Ritor1
parents: 457
diff changeset
374 case UIMSG_ClickNPCTopic:
Ritor1
parents: 457
diff changeset
375 ClickNPCTopic(uMessageParam);
Ritor1
parents: 457
diff changeset
376 continue;
651
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
377 case UIMSG_SelectShopDialogueOption:
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
378 OnSelectShopDialogueOption(uMessageParam);
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
379 continue;
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
380 case UIMSG_SelectNPCDialogueOption:
2bf48d11d742 Training hall UI fixed
Nomad
parents: 649
diff changeset
381 OnSelectNPCDialogueOption((DIALOGUE_TYPE)uMessageParam);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
382 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
383 case UIMSG_ClickHouseNPCPortrait:
0
Ritor1
parents:
diff changeset
384 _4B4224_UpdateNPCTopics(uMessageParam);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
385 continue;
0
Ritor1
parents:
diff changeset
386 case UIMSG_StartNewGame:
Ritor1
parents:
diff changeset
387 if ( dword_6BE138 == 124 || uMessageParam )
Ritor1
parents:
diff changeset
388 {
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
389 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
390 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
391 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
392 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
393 pGUIWindow_CurrentMenu->Release();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
394 uGameState = GAME_STATE_NEWGAME_OUT_GAMEMENU;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
395 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
396 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
397 }
Ritor1
parents:
diff changeset
398 else
Ritor1
parents:
diff changeset
399 {
Ritor1
parents:
diff changeset
400 ShowStatusBarString(pGlobalTXT_LocalizationStrings[201], 2u);// "Are you sure? Click again to start a New Game"
Ritor1
parents:
diff changeset
401 pAudioPlayer->PlaySound(SOUND_20001, 0, 0, -1, 0, 0, 0, 0);
Ritor1
parents:
diff changeset
402 dword_6BE138 = 124;
Ritor1
parents:
diff changeset
403 }
Ritor1
parents:
diff changeset
404 stru_506E40.Release();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
405 continue;
0
Ritor1
parents:
diff changeset
406 case UIMSG_Game_OpenLoadGameDialog:
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
407 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
408 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
409 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
410 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
411 pGUIWindow_CurrentMenu->Release();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
412 pCurrentScreen = SCREEN_LOADGAME;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
413 LoadUI_Load(1);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
414 continue;
0
Ritor1
parents:
diff changeset
415 case UIMSG_Quit:
Ritor1
parents:
diff changeset
416 if ( dword_6BE138 == 132 || uMessageParam )
Ritor1
parents:
diff changeset
417 {
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
418 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
419 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
420 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
421 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
422 pGUIWindow_CurrentMenu->Release();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
423 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
424 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
425 if ( !uMessageParam )
Ritor1
parents:
diff changeset
426 pAudioPlayer->PlaySound((SoundID)(SOUND_EnteringAHouse|0x1), 0, 0, -1, 0, 0, 0, 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
427 uGameState = GAME_STATE_GAME_QUITTING_TO_MAIN_MENU;
0
Ritor1
parents:
diff changeset
428 }
Ritor1
parents:
diff changeset
429 else
Ritor1
parents:
diff changeset
430 {
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
431 ShowStatusBarString(pGlobalTXT_LocalizationStrings[82], 2);// "Are you sure? Click again to quit"
0
Ritor1
parents:
diff changeset
432 pAudioPlayer->PlaySound(SOUND_20001, 0, 0, -1, 0, 0, 0, 0);
Ritor1
parents:
diff changeset
433 dword_6BE138 = 132;
Ritor1
parents:
diff changeset
434 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
435 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
436 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
437 case UIMSG_80:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
438 __debugbreak();
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
439 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
440 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
441 pGUIWindow_CurrentMenu->Release();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
442 pCurrentScreen = SCREEN_OPTIONS;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
443 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_8, 0, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
444 continue;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
445 case UIMSG_ArrowUp:
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
446 --pSaveListPosition;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
447 if ( pSaveListPosition < 0 )
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
448 pSaveListPosition = 0;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
449 GUIWindow::Create(215, 199, 17, 17, WINDOW_PressedButton2, (int)pBtnArrowUp, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
450 continue;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
451 case UIMSG_DownArrow:
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
452 ++pSaveListPosition;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
453 if ( pSaveListPosition >= uMessageParam )
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
454 pSaveListPosition = uMessageParam - 1;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
455 GUIWindow::Create(215, 323, 17, 17, WINDOW_PressedButton2, (int)pBtnDownArrow, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
456 continue;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
457 case UIMSG_Cancel:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
458 GUIWindow::Create(350, 302, 106, 42, WINDOW_CloseRestWindowBtn, (int)pBtnCancel, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
459 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
460 case UIMSG_SaveLoadBtn:
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
461 GUIWindow::Create(241, 302, 106, 42, WINDOW_SaveLoadBtn, (int)pBtnLoadSlot, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
462 continue;
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
463 case UIMSG_SelectLoadSlot:
1038
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
464 if ( pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
465 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
466 if ( pCurrentScreen != SCREEN_SAVEGAME || uLoadGameUI_SelectedSlot != pSaveListPosition + uMessageParam )
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
467 {
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
468 v10 = pSaveListPosition + uMessageParam;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
469 if ( dword_6BE138 == pSaveListPosition + uMessageParam )
0
Ritor1
parents:
diff changeset
470 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
471 pMessageQueue_50CBD0->AddMessage(UIMSG_SaveLoadBtn, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
472 pMessageQueue_50CBD0->AddMessage(UIMSG_LoadGame, 0, 0);
0
Ritor1
parents:
diff changeset
473 }
Ritor1
parents:
diff changeset
474 uLoadGameUI_SelectedSlot = v10;
Ritor1
parents:
diff changeset
475 dword_6BE138 = v10;
Ritor1
parents:
diff changeset
476 }
Ritor1
parents:
diff changeset
477 else
Ritor1
parents:
diff changeset
478 {
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
479 pKeyActionMap->EnterText(0, 19, pGUIWindow_CurrentMenu);
43
196847ece26a autosave slot fix
zipi
parents: 42
diff changeset
480 if ( strcmp((const char *)&pSavegameHeader[uLoadGameUI_SelectedSlot], pGlobalTXT_LocalizationStrings[72]) )// "Empty"
196847ece26a autosave slot fix
zipi
parents: 42
diff changeset
481 strcpy((char *)pKeyActionMap->pPressedKeysBuffer, (const char *)&pSavegameHeader[uLoadGameUI_SelectedSlot]);
0
Ritor1
parents:
diff changeset
482 pKeyActionMap->uNumKeysPressed = strlen((const char *)pKeyActionMap->pPressedKeysBuffer);
Ritor1
parents:
diff changeset
483 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
484 continue;
0
Ritor1
parents:
diff changeset
485 case UIMSG_LoadGame:
Ritor1
parents:
diff changeset
486 if ( pSavegameUsedSlots[uLoadGameUI_SelectedSlot] )
Ritor1
parents:
diff changeset
487 {
Ritor1
parents:
diff changeset
488 LoadGame(uLoadGameUI_SelectedSlot);
1214
0d6c7ff3cddd simplified stru193_math constructor and class definition
Grumpy7
parents: 1207
diff changeset
489 uGameState = GAME_STATE_LOADING_GAME;
0
Ritor1
parents:
diff changeset
490 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
491 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
492 continue;
0
Ritor1
parents:
diff changeset
493 case UIMSG_SaveGame:
1038
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
494 if ( pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
495 {
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
496 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE);
837
bebc19f3d2af Save/load work with some problems
Gloval
parents: 821
diff changeset
497 strcpy((char *)&pSavegameHeader[uLoadGameUI_SelectedSlot], (const char *)pKeyActionMap->pPressedKeysBuffer);
0
Ritor1
parents:
diff changeset
498 }
Ritor1
parents:
diff changeset
499 DoSavegame(uLoadGameUI_SelectedSlot);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
500 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
501 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
502 case UIMSG_Game_OpenSaveGameDialog:
0
Ritor1
parents:
diff changeset
503 pGUIWindow_CurrentMenu->Release();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
504 pCurrentScreen = SCREEN_SAVEGAME;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
505 SaveUI_Load();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
506 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
507 case UIMSG_Game_OpenOptionsDialog://Open
0
Ritor1
parents:
diff changeset
508 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
509 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
510 pGUIWindow_CurrentMenu->Release();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
511 viewparams->field_48 = 1;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
512 pCurrentScreen = SCREEN_OPTIONS;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
513
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
514 options_menu_skin.uTextureID_Background = pIcons_LOD->LoadTexture("ControlBG", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
515 options_menu_skin.uTextureID_TurnSpeed[2] = pIcons_LOD->LoadTexture("con_16x", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
516 options_menu_skin.uTextureID_TurnSpeed[1] = pIcons_LOD->LoadTexture("con_32x", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
517 options_menu_skin.uTextureID_TurnSpeed[0] = pIcons_LOD->LoadTexture("con_Smoo", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
518 options_menu_skin.uTextureID_ArrowLeft = pIcons_LOD->LoadTexture("con_ArrL", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
519 options_menu_skin.uTextureID_ArrowRight = pIcons_LOD->LoadTexture("con_ArrR", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
520 options_menu_skin.uTextureID_SoundLevels[0] = pIcons_LOD->LoadTexture("convol10", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
521 options_menu_skin.uTextureID_SoundLevels[1] = pIcons_LOD->LoadTexture("convol20", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
522 options_menu_skin.uTextureID_SoundLevels[2] = pIcons_LOD->LoadTexture("convol30", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
523 options_menu_skin.uTextureID_SoundLevels[3] = pIcons_LOD->LoadTexture("convol40", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
524 options_menu_skin.uTextureID_SoundLevels[4] = pIcons_LOD->LoadTexture("convol50", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
525 options_menu_skin.uTextureID_SoundLevels[5] = pIcons_LOD->LoadTexture("convol60", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
526 options_menu_skin.uTextureID_SoundLevels[6] = pIcons_LOD->LoadTexture("convol70", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
527 options_menu_skin.uTextureID_SoundLevels[7] = pIcons_LOD->LoadTexture("convol80", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
528 options_menu_skin.uTextureID_SoundLevels[8] = pIcons_LOD->LoadTexture("convol90", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
529 options_menu_skin.uTextureID_SoundLevels[9] = pIcons_LOD->LoadTexture("convol00", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
530 options_menu_skin.uTextureID_FlipOnExit = pIcons_LOD->LoadTexture("option04", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
531 options_menu_skin.uTextureID_AlwaysRun = pIcons_LOD->LoadTexture("option03", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
532 options_menu_skin.uTextureID_ShowDamage = pIcons_LOD->LoadTexture("option02", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
533 options_menu_skin.uTextureID_WalkSound = pIcons_LOD->LoadTexture("option01", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
534
0
Ritor1
parents:
diff changeset
535 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Options, 0, 0);
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
536 pGUIWindow_CurrentMenu->CreateButton(22, 270,
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
537 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[2])->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
538 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[2])->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
539 1, 0, UIMSG_SetTurnSpeed, 0x80, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
540 pGUIWindow_CurrentMenu->CreateButton(93, 270,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
541 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[1])->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
542 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[1])->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
543 1, 0, UIMSG_SetTurnSpeed, 0x40u, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
544 pGUIWindow_CurrentMenu->CreateButton(164, 270,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
545 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[0])->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
546 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[0])->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
547 1, 0, UIMSG_SetTurnSpeed, 0, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
548
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
549 pGUIWindow_CurrentMenu->CreateButton(20, 303,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
550 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_WalkSound)->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
551 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_WalkSound)->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
552 1, 0, UIMSG_ToggleWalkSound, 0, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
553 pGUIWindow_CurrentMenu->CreateButton(128, 303,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
554 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ShowDamage)->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
555 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ShowDamage)->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
556 1, 0, UIMSG_ToggleShowDamage, 0, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
557 pGUIWindow_CurrentMenu->CreateButton(20, 325,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
558 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_AlwaysRun)->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
559 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_AlwaysRun)->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
560 1, 0, UIMSG_ToggleAlwaysRun, 0, 0, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
561 pGUIWindow_CurrentMenu->CreateButton(128, 325,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
562 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_FlipOnExit)->uTextureWidth,
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
563 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_FlipOnExit)->uTextureHeight,
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
564 1, 0, UIMSG_ToggleFlipOnExit, 0, 0, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
565
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
566 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 162, 16, 16, 1, 0, UIMSG_ChangeSoundVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
567 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 162, 16, 16, 1, 0, UIMSG_ChangeSoundVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
568 pGUIWindow_CurrentMenu->CreateButton(263, 162, 172, 17, 1, 0, UIMSG_ChangeSoundVolume, 0, 0, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
569
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
570 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 216, 16, 16, 1, 0, UIMSG_ChangeMusicVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
571 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 216, 16, 16, 1, 0, UIMSG_ChangeMusicVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
572 pGUIWindow_CurrentMenu->CreateButton(263, 216, 172, 17, 1, 0, UIMSG_ChangeMusicVolume, 0, 0, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
573
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
574 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 270, 16, 16, 1, 0, UIMSG_ChangeVoiceVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
575 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 270, 16, 16, 1, 0, UIMSG_ChangeVoiceVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
576 pGUIWindow_CurrentMenu->CreateButton(263, 270, 172, 17, 1, 0, UIMSG_ChangeVoiceVolume, 0, 0, "", 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
577
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
578 pGUIWindow_CurrentMenu->CreateButton(241, 302, 214, 40, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[619], 0); // "Return to Game"
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
579 pGUIWindow_CurrentMenu->CreateButton( 19, 140, 214, 40, 1, 0, UIMSG_OpenKeyMappingOptions, 0, 0x4Bu, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
580 pGUIWindow_CurrentMenu->CreateButton( 19, 194, 214, 40, 1, 0, UIMSG_OpenVideoOptions, 0, 86, "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
581 continue;
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
582
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
583 case UIMSG_OpenKeyMappingOptions://Open
0
Ritor1
parents:
diff changeset
584 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
585 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
586 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
587 viewparams->field_48 = 1;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
588 pCurrentScreen = SCREEN_KEYBOARD_OPTIONS;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
589 uTextureID_Optkb[0] = pIcons_LOD->LoadTexture("optkb", TEXTURE_16BIT_PALETTE);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
590 uTextureID_Optkb[1] = pIcons_LOD->LoadTexture("optkb_h", TEXTURE_16BIT_PALETTE);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
591 uTextureID_Optkb[2] = pIcons_LOD->LoadTexture("resume1", TEXTURE_16BIT_PALETTE);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
592 uTextureID_Optkb[3] = pIcons_LOD->LoadTexture("optkb_1", TEXTURE_16BIT_PALETTE);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
593 uTextureID_Optkb[4] = pIcons_LOD->LoadTexture("optkb_2", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
594 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_KeyMappingOptions, 0, 0);
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
595 pGUIWindow_CurrentMenu->CreateButton(0xF1u, 0x12Eu, 0xD6u, 0x28u, 1, 0, UIMSG_Escape, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
596 pGUIWindow_CurrentMenu->CreateButton(19u, 0x12Eu, 0x6Cu, 0x14u, 1, 0, UIMSG_SelectKeyPage1, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
597 pGUIWindow_CurrentMenu->CreateButton(127u, 0x12Eu, 0x6Cu, 0x14u, 1, 0, UIMSG_SelectKeyPage2, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
598 pGUIWindow_CurrentMenu->CreateButton(127u, 0x144u, 0x6Cu, 0x14u, 1, 0, UIMSG_ResetKeyMapping, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
599 pGUIWindow_CurrentMenu->CreateButton(19u, 0x144u, 0x6Cu, 0x14u, 1, 0, UIMSG_Game_OpenOptionsDialog, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
600 pGUIWindow_CurrentMenu->CreateButton(129u, 0x94u, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
601 pGUIWindow_CurrentMenu->CreateButton(129u, 0xA7u, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 1u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
602 pGUIWindow_CurrentMenu->CreateButton(129u, 0xBAu, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 2u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
603 pGUIWindow_CurrentMenu->CreateButton(129u, 0xCDu, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 3u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
604 pGUIWindow_CurrentMenu->CreateButton(129u, 224u, 70u, 19u, 1, 0, UIMSG_ChangeKeyButton, 4u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
605 pGUIWindow_CurrentMenu->CreateButton(129u, 243u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 5u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
606 pGUIWindow_CurrentMenu->CreateButton(129u, 262u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 6u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
607 pGUIWindow_CurrentMenu->CreateButton(350u, 148u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 7u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
608 pGUIWindow_CurrentMenu->CreateButton(350u, 167u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 8u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
609 pGUIWindow_CurrentMenu->CreateButton(350u, 186u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 9u, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
610 pGUIWindow_CurrentMenu->CreateButton(350u, 205u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xAu, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
611 pGUIWindow_CurrentMenu->CreateButton(350u, 224u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xBu, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
612 pGUIWindow_CurrentMenu->CreateButton(350u, 243u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xCu, 0, "", 0);
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
613 pGUIWindow_CurrentMenu->CreateButton(350u, 262u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xDu, 0, "", 0);
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
614 uGameMenuUI_CurentlySelectedKeyIdx = -1;
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
615 KeyboardPageNum = 1;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
616 memset(GameMenuUI_InvaligKeyBindingsFlags.data(), 0, sizeof(GameMenuUI_InvaligKeyBindingsFlags));
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
617 //*(_WORD *)KeyButtonArray[28] = 0;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
618 memcpy(pPrevVirtualCidesMapping.data(), pKeyActionMap->pVirtualKeyCodesMapping, 0x78u);
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
619 //v1 = "";
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
620 //v0 = 1;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
621 continue;
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
622 case UIMSG_ChangeKeyButton:
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
623 if ( uGameMenuUI_CurentlySelectedKeyIdx != -1 )
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
624 {
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
625 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
626 continue;
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
627 }
0
Ritor1
parents:
diff changeset
628 v14 = uMessageParam;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
629 if ( KeyboardPageNum != 1 )
0
Ritor1
parents:
diff changeset
630 v14 = uMessageParam + 14;
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
631 uGameMenuUI_CurentlySelectedKeyIdx = v14;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
632 pKeyActionMap->EnterText(0, 1, pGUIWindow_CurrentMenu);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
633 continue;
0
Ritor1
parents:
diff changeset
634 case UIMSG_ResetKeyMapping:
Ritor1
parents:
diff changeset
635 v197 = 1;
Ritor1
parents:
diff changeset
636 pKeyActionMap->SetDefaultMapping();
Ritor1
parents:
diff changeset
637 uAction = 0;
Ritor1
parents:
diff changeset
638 do
Ritor1
parents:
diff changeset
639 {
Ritor1
parents:
diff changeset
640 v15 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
Ritor1
parents:
diff changeset
641 if ( v15 != pPrevVirtualCidesMapping[uAction] )
Ritor1
parents:
diff changeset
642 {
Ritor1
parents:
diff changeset
643 if ( v197 )
Ritor1
parents:
diff changeset
644 {
Ritor1
parents:
diff changeset
645 v16 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
646 GUI_ReplaceHotkey(LOBYTE(pPrevVirtualCidesMapping[uAction]), v16, 1);
0
Ritor1
parents:
diff changeset
647 v197 = 0;
Ritor1
parents:
diff changeset
648 }
Ritor1
parents:
diff changeset
649 else
Ritor1
parents:
diff changeset
650 {
Ritor1
parents:
diff changeset
651 v17 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
Ritor1
parents:
diff changeset
652 GUI_ReplaceHotkey(LOBYTE(pPrevVirtualCidesMapping[uAction]), v17, 0);
Ritor1
parents:
diff changeset
653 }
Ritor1
parents:
diff changeset
654 }
Ritor1
parents:
diff changeset
655 pPrevVirtualCidesMapping[uAction] = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
Ritor1
parents:
diff changeset
656 v18 = uAction++;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
657 v13 = uAction > 28;
0
Ritor1
parents:
diff changeset
658 v12 = uAction - 28 < 0;
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
659 GameMenuUI_InvaligKeyBindingsFlags[v18] = 0;
0
Ritor1
parents:
diff changeset
660 }
Ritor1
parents:
diff changeset
661 while ( v12 ^ v13 );
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
662 pAudioPlayer->PlaySound((SoundID)219, 0, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
663 continue;
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
664 case UIMSG_SelectKeyPage1:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
665 KeyboardPageNum = 1;
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
666 continue;
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
667 case UIMSG_SelectKeyPage2:
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
668 KeyboardPageNum = 2;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
669 continue;
0
Ritor1
parents:
diff changeset
670 case UIMSG_OpenVideoOptions:
Ritor1
parents:
diff changeset
671 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
672 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
673 pGUIWindow_CurrentMenu->Release();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
674 viewparams->field_48 = 1;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
675 pCurrentScreen = SCREEN_VIDEO_OPTIONS;
1676
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
676 optvid_base_texture_id = pIcons_LOD->LoadTexture("optvid", TEXTURE_16BIT_PALETTE);
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
677 bloodsplats_texture_id = pIcons_LOD->LoadTexture("opvdH-bs", TEXTURE_16BIT_PALETTE);
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
678 us_colored_lights_texture_id = pIcons_LOD->LoadTexture("opvdH-cl", TEXTURE_16BIT_PALETTE);
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
679 tinting_texture_id = pIcons_LOD->LoadTexture("opvdH-tn", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
680 uTextureID_507C20 = pIcons_LOD->LoadTexture("con_ArrL", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
681 uTextureID_507C24 = pIcons_LOD->LoadTexture("con_ArrR", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
682 pTextureIDs_GammaPositions[0] = pIcons_LOD->LoadTexture("convol10", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
683 pTextureIDs_GammaPositions[1] = pIcons_LOD->LoadTexture("convol20", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
684 pTextureIDs_GammaPositions[2] = pIcons_LOD->LoadTexture("convol30", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
685 pTextureIDs_GammaPositions[3] = pIcons_LOD->LoadTexture("convol40", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
686 pTextureIDs_GammaPositions[4] = pIcons_LOD->LoadTexture("convol50", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
687 pTextureIDs_GammaPositions[5] = pIcons_LOD->LoadTexture("convol60", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
688 pTextureIDs_GammaPositions[6] = pIcons_LOD->LoadTexture("convol70", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
689 pTextureIDs_GammaPositions[7] = pIcons_LOD->LoadTexture("convol80", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
690 pTextureIDs_GammaPositions[8] = pIcons_LOD->LoadTexture("convol90", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
691 pTextureIDs_GammaPositions[9] = pIcons_LOD->LoadTexture("convol00", TEXTURE_16BIT_PALETTE);
1676
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
692 not_available_bloodsplats_texture_id = pIcons_LOD->LoadTexture("opvdG-bs", TEXTURE_16BIT_PALETTE);
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
693 not_available_us_colored_lights_texture_id = pIcons_LOD->LoadTexture("opvdG-cl", TEXTURE_16BIT_PALETTE);
483cc7f0d86c GameMenuUI_DrawKeyBindings() and GameMenuUI_DrawVideoOptions() cleared
Ritor1
parents: 1643
diff changeset
694 not_available_tinting_texture_id = pIcons_LOD->LoadTexture("opvdG-tn", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
695 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_VideoOptions, 0, 0);
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
696 pGUIWindow_CurrentMenu->CreateButton(0xF1u, 0x12Eu, 0xD6u, 0x28u, 1, 0, UIMSG_Escape, 0, 0, "", 0);
0
Ritor1
parents:
diff changeset
697 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
698 {
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
699 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x118u, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleBloodsplats, 0, 0, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
700 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x12Eu, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleColoredLights, 0, 0, "", 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
701 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x144u, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleTint, 0, 0, "", 0);
0
Ritor1
parents:
diff changeset
702 }
Ritor1
parents:
diff changeset
703 if ( !pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
704 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
705 //v0 = 1;
0
Ritor1
parents:
diff changeset
706 if ( GammaController::IsGammaSupported() )
Ritor1
parents:
diff changeset
707 {
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
708 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(0x15u, 0xA1u, 0x10u, 0x10u, 1, 0, UIMSG_1A9, 4u, 0, "", pIcons_LOD->GetTexture(uTextureID_507C20), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
709 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(0xD5u, 0xA1u, 0x10u, 0x10u, 1, 0, UIMSG_1A9, 5u, 0, "", pIcons_LOD->GetTexture(uTextureID_507C24), 0);
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
710 pGUIWindow_CurrentMenu->CreateButton(42, 162, 170, 18, 1, 0, UIMSG_1A9, 0, 0, "", 0);
0
Ritor1
parents:
diff changeset
711 }
Ritor1
parents:
diff changeset
712 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
713 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
714 case UIMSG_1A9:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
715 __debugbreak();
0
Ritor1
parents:
diff changeset
716 if ( uMessageParam == 4 )
Ritor1
parents:
diff changeset
717 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
718 //--uGammaPos;
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
719 if ( (uGammaPos -- -1) < 0 )
0
Ritor1
parents:
diff changeset
720 {
Ritor1
parents:
diff changeset
721 uGammaPos = 0;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
722 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
723 continue;
0
Ritor1
parents:
diff changeset
724 }
Ritor1
parents:
diff changeset
725 v19 = (double)(signed int)uGammaPos * 0.1 + 0.6;
Ritor1
parents:
diff changeset
726 pGame->pGammaController->Initialize(v19);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
727 GUIWindow::Create(21, 161, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1);
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
728 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
729 continue;
0
Ritor1
parents:
diff changeset
730 }
Ritor1
parents:
diff changeset
731 if ( uMessageParam == 5 )
Ritor1
parents:
diff changeset
732 {
Ritor1
parents:
diff changeset
733 ++uGammaPos;
Ritor1
parents:
diff changeset
734 if ( (signed int)uGammaPos <= 9 )
Ritor1
parents:
diff changeset
735 {
Ritor1
parents:
diff changeset
736 v21 = (double)(signed int)uGammaPos * 0.1 + 0.6;
Ritor1
parents:
diff changeset
737 pGame->pGammaController->Initialize(v21);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
738 GUIWindow::Create(213, 161, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1);
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
739 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
740 continue;
0
Ritor1
parents:
diff changeset
741 }
Ritor1
parents:
diff changeset
742 uGammaPos = 9;
Ritor1
parents:
diff changeset
743 }
Ritor1
parents:
diff changeset
744 else
Ritor1
parents:
diff changeset
745 {
Ritor1
parents:
diff changeset
746 uGammaPos = (pMouse->GetCursorPos(&a2)->x - 42) / 17;
Ritor1
parents:
diff changeset
747 v22 = (double)(signed int)uGammaPos * 0.1 + 0.6;
Ritor1
parents:
diff changeset
748 pGame->pGammaController->Initialize(v22);
Ritor1
parents:
diff changeset
749 }
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
750 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
751 continue;
0
Ritor1
parents:
diff changeset
752 case UIMSG_ToggleBloodsplats:
Ritor1
parents:
diff changeset
753 pGame->ToggleFlags2(0x20u);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
754 continue;
0
Ritor1
parents:
diff changeset
755 case UIMSG_ToggleColoredLights:
Ritor1
parents:
diff changeset
756 pRenderer->bUseColoredLights = pRenderer->bUseColoredLights == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
757 continue;
0
Ritor1
parents:
diff changeset
758 case UIMSG_ToggleTint:
Ritor1
parents:
diff changeset
759 pRenderer->bTinting = pRenderer->bTinting == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
760 continue;
0
Ritor1
parents:
diff changeset
761 case UIMSG_ChangeMusicVolume:
Ritor1
parents:
diff changeset
762 if ( uMessageParam == 4 )
Ritor1
parents:
diff changeset
763 {
Ritor1
parents:
diff changeset
764 --uMusicVolimeMultiplier;
Ritor1
parents:
diff changeset
765 if ( (char)uMusicVolimeMultiplier < 1 )
Ritor1
parents:
diff changeset
766 uMusicVolimeMultiplier = 0;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
767 GUIWindow::Create(243, 0xD8u, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
768 if ( uMusicVolimeMultiplier )
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
769 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[(char)uMusicVolimeMultiplier] * 64.0f, 0);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
770 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[(char)uMusicVolimeMultiplier] * 64.0f);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
771 continue;
0
Ritor1
parents:
diff changeset
772 }
Ritor1
parents:
diff changeset
773 if ( uMessageParam == 5 )
Ritor1
parents:
diff changeset
774 {
Ritor1
parents:
diff changeset
775 ++uMusicVolimeMultiplier;
Ritor1
parents:
diff changeset
776 if ( (char)uMusicVolimeMultiplier > 9 )
Ritor1
parents:
diff changeset
777 uMusicVolimeMultiplier = 9;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
778 GUIWindow::Create(435, 0xD8u, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
779 if ( uMusicVolimeMultiplier )
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
780 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[(char)uMusicVolimeMultiplier] * 64.0f, 0);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
781 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[(char)uMusicVolimeMultiplier] * 64.0f);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
782 continue;
0
Ritor1
parents:
diff changeset
783 }
Ritor1
parents:
diff changeset
784 uMusicVolimeMultiplier = (pMouse->GetCursorPos(&v202)->x - 263) / 17;
Ritor1
parents:
diff changeset
785 if ( (char)uMusicVolimeMultiplier > 9 )
Ritor1
parents:
diff changeset
786 uMusicVolimeMultiplier = 9;
Ritor1
parents:
diff changeset
787 if ( uMusicVolimeMultiplier )
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
788 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f, 0);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
789 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
790 continue;
0
Ritor1
parents:
diff changeset
791 case UIMSG_ChangeSoundVolume:
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
792 if ( uMessageParam == 4 )//reduce sound level button left
0
Ritor1
parents:
diff changeset
793 {
Ritor1
parents:
diff changeset
794 --uSoundVolumeMultiplier;
Ritor1
parents:
diff changeset
795 if ( (char)uSoundVolumeMultiplier < 1 )
Ritor1
parents:
diff changeset
796 uSoundVolumeMultiplier = 0;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
797 GUIWindow::Create(243, 162, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1);
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
798 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
799 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
800 continue;
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
801 }
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
802 if ( uMessageParam == 5 )//Increase sound level button right
0
Ritor1
parents:
diff changeset
803 {
Ritor1
parents:
diff changeset
804 ++uSoundVolumeMultiplier;
Ritor1
parents:
diff changeset
805 if ( (char)uSoundVolumeMultiplier > 8 )
Ritor1
parents:
diff changeset
806 uSoundVolumeMultiplier = 9;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
807 //v168 = 1;
0
Ritor1
parents:
diff changeset
808 v24 = 435;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
809 //v154 = (int)pBtn_SliderRight;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
810 GUIWindow::Create(v24, 0xA2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1);
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
811 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f);
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
812 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
813 continue;
0
Ritor1
parents:
diff changeset
814 }
Ritor1
parents:
diff changeset
815 uSoundVolumeMultiplier = (pMouse->GetCursorPos(&v207)->x - 263) / 17;
Ritor1
parents:
diff changeset
816 if ( (char)uSoundVolumeMultiplier > 8 )
Ritor1
parents:
diff changeset
817 uSoundVolumeMultiplier = 9;
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
818 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f);
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
819 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
820 continue;
0
Ritor1
parents:
diff changeset
821 case UIMSG_ToggleFlipOnExit:
Ritor1
parents:
diff changeset
822 bFlipOnExit = bFlipOnExit == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
823 continue;
0
Ritor1
parents:
diff changeset
824 case UIMSG_ToggleAlwaysRun:
Ritor1
parents:
diff changeset
825 bAlwaysRun = bAlwaysRun == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
826 continue;
0
Ritor1
parents:
diff changeset
827 case UIMSG_ToggleWalkSound:
Ritor1
parents:
diff changeset
828 bWalkSound = bWalkSound == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
829 continue;
0
Ritor1
parents:
diff changeset
830 case UIMSG_ToggleShowDamage:
Ritor1
parents:
diff changeset
831 bShowDamage = bShowDamage == 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
832 continue;
0
Ritor1
parents:
diff changeset
833 case UIMSG_ChangeVoiceVolume:
Ritor1
parents:
diff changeset
834 if ( uMessageParam == 4 )
Ritor1
parents:
diff changeset
835 {
Ritor1
parents:
diff changeset
836 --uVoicesVolumeMultiplier;
Ritor1
parents:
diff changeset
837 if ( (char)uVoicesVolumeMultiplier < 1 )
Ritor1
parents:
diff changeset
838 uVoicesVolumeMultiplier = 0;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
839 GUIWindow::Create(243, 270, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
840 if ( !uVoicesVolumeMultiplier )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
841 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
842 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
843 continue;
0
Ritor1
parents:
diff changeset
844 }
Ritor1
parents:
diff changeset
845 if ( uMessageParam == 5 )
Ritor1
parents:
diff changeset
846 {
Ritor1
parents:
diff changeset
847 ++uVoicesVolumeMultiplier;
Ritor1
parents:
diff changeset
848 if ( (char)uVoicesVolumeMultiplier > 8 )
Ritor1
parents:
diff changeset
849 uVoicesVolumeMultiplier = 9;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
850 GUIWindow::Create(435, 270, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
851 if ( !uVoicesVolumeMultiplier )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
852 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
853 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
854 continue;
0
Ritor1
parents:
diff changeset
855 }
Ritor1
parents:
diff changeset
856 uVoicesVolumeMultiplier = (pMouse->GetCursorPos(&v205)->x - 263) / 17;
Ritor1
parents:
diff changeset
857 if ( (char)uVoicesVolumeMultiplier > 8 )
Ritor1
parents:
diff changeset
858 uVoicesVolumeMultiplier = 9;
Ritor1
parents:
diff changeset
859 if ( !uVoicesVolumeMultiplier )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
860 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
861 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0);
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
862 continue;
0
Ritor1
parents:
diff changeset
863 case UIMSG_SetTurnSpeed:
Ritor1
parents:
diff changeset
864 if ( uMessageParam )
Ritor1
parents:
diff changeset
865 pParty->sRotationY = uMessageParam * pParty->sRotationY / uMessageParam;
Ritor1
parents:
diff changeset
866 uTurnSpeed = uMessageParam;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
867 continue;
0
Ritor1
parents:
diff changeset
868 case UIMSG_SetGraphicsMode:
Ritor1
parents:
diff changeset
869 if ( !bUseLoResSprites )
Ritor1
parents:
diff changeset
870 {
Ritor1
parents:
diff changeset
871 byte_6BE388_graphicsmode = uMessageParam;
Ritor1
parents:
diff changeset
872 MM7Initialization();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
873 continue;
0
Ritor1
parents:
diff changeset
874 }
Ritor1
parents:
diff changeset
875 if ( uMessageParam )
Ritor1
parents:
diff changeset
876 {
Ritor1
parents:
diff changeset
877 if ( uMessageParam == 1 )
Ritor1
parents:
diff changeset
878 {
Ritor1
parents:
diff changeset
879 byte_6BE388_graphicsmode = 0;
Ritor1
parents:
diff changeset
880 }
Ritor1
parents:
diff changeset
881 else
Ritor1
parents:
diff changeset
882 {
Ritor1
parents:
diff changeset
883 if ( uMessageParam != 2 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
884 continue;
0
Ritor1
parents:
diff changeset
885 byte_6BE388_graphicsmode = 1;
Ritor1
parents:
diff changeset
886 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
887 MM7Initialization();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
888 continue;
0
Ritor1
parents:
diff changeset
889 }
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
890 ModalWindow(pNPCTopics[453].pText, UIMSG_0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
891 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
892 case UIMSG_GameMenu_ReturnToGame:
0
Ritor1
parents:
diff changeset
893 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
894 pEventTimer->Resume();
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
895 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
896 viewparams->bRedrawGameUI = 1;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
897 stru_506E40.Release();
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
898 continue;
0
Ritor1
parents:
diff changeset
899 case UIMSG_OpenQuestBook:
Ritor1
parents:
diff changeset
900 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
901 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
902 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
903 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
904 pEventTimer->Pause();
Ritor1
parents:
diff changeset
905 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
906 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640u, 480u, WINDOW_Book, uMessage, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
907 pBooksWindow = GUIWindow::Create(493u, 355u, 0, 0, WINDOW_BooksWindow, (int)pBtn_Quests, 0);
0
Ritor1
parents:
diff changeset
908 bFlashQuestBook = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
909 continue;
0
Ritor1
parents:
diff changeset
910 case UIMSG_OpenAutonotes:
Ritor1
parents:
diff changeset
911 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
912 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
913 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
914 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
915 pEventTimer->Pause();
Ritor1
parents:
diff changeset
916 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
917 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640u, 480u, WINDOW_Book, uMessage, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
918 pBooksWindow = GUIWindow::Create(527u, 353u, 0, 0, WINDOW_BooksWindow, (int)pBtn_Autonotes, 0);
0
Ritor1
parents:
diff changeset
919 bFlashAutonotesBook = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
920 continue;
0
Ritor1
parents:
diff changeset
921 case UIMSG_OpenMapBook:
Ritor1
parents:
diff changeset
922 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
923 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
924 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
925 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
926 pEventTimer->Pause();
693
e0a1fccc89b1 map render fixes
Gloval
parents: 690
diff changeset
927 viewparams->sViewCenterX = pParty->vPosition.x;
e0a1fccc89b1 map render fixes
Gloval
parents: 690
diff changeset
928 viewparams->sViewCenterY = pParty->vPosition.y;
0
Ritor1
parents:
diff changeset
929 pAudioPlayer->StopChannels(-1, -1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
930 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Book, uMessage, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
931 pBooksWindow = GUIWindow::Create(546, 353, 0, 0, WINDOW_BooksWindow, (int)pBtn_Maps, 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
932 continue;
0
Ritor1
parents:
diff changeset
933 case UIMSG_OpenCalendar:
Ritor1
parents:
diff changeset
934 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
935 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
936 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
937 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
938 pEventTimer->Pause();
Ritor1
parents:
diff changeset
939 pAudioPlayer->StopChannels(-1, -1);
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
940 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Book, uMessage, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
941 pBooksWindow = GUIWindow::Create(570, 354, 0, 0, WINDOW_BooksWindow, (int)pBtn_Calendar, 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
942 continue;
0
Ritor1
parents:
diff changeset
943 case UIMSG_OpenHistoryBook:
Ritor1
parents:
diff changeset
944 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
945 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
946 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
947 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
948 pEventTimer->Pause();
Ritor1
parents:
diff changeset
949 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
950 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Book, uMessage, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
951 pBooksWindow = GUIWindow::Create(0x258u, 0x169u, 0, 0, WINDOW_BooksWindow, (int)pBtn_History, 0);
0
Ritor1
parents:
diff changeset
952 bFlashHistoryBook = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
953 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
954 case UIMSG_Escape:// íàæàòèå Escape and return to game
0
Ritor1
parents:
diff changeset
955 back_to_game();
Ritor1
parents:
diff changeset
956 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
957 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
958 switch ( pCurrentScreen )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
959 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
960 case SCREEN_E:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
961 __debugbreak();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
962 case SCREEN_NPC_DIALOGUE:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
963 case SCREEN_CHEST:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
964 case SCREEN_CHEST_INVENTORY:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
965 case SCREEN_CHANGE_LOCATION:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
966 case SCREEN_INPUT_BLV:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
967 case SCREEN_QUICK_REFERENCE:
0
Ritor1
parents:
diff changeset
968 if ( dword_50CDC8 )
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
969 break;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
970 CloseWindowBackground();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
971 uMessageParam = 1;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
972 break;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
973 case SCREEN_HOUSE:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
974 if ( !dword_50CDC8 && !dword_5C35C8 )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
975 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
976 CloseWindowBackground();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
977 dword_5C35C8 = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
978 uMessageParam = 1;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
979 break;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
980 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
981 break;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
982 }
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
983 if ( !pModalWindow )
0
Ritor1
parents:
diff changeset
984 {
Ritor1
parents:
diff changeset
985 pRenderer->ClearZBuffer(0, 479);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
986 viewparams->bRedrawGameUI = 1;
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
987 viewparams->field_48 = 1;
0
Ritor1
parents:
diff changeset
988 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
989 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
990 if ( pCurrentScreen > SCREEN_67 )
0
Ritor1
parents:
diff changeset
991 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
992 if ( pCurrentScreen == SCREEN_QUICK_REFERENCE )
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
993 {
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
994 pIcons_LOD->RemoveTexturesPackFromTextureList();
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
995 if ( pGUIWindow_Settings )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
996 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
997 if ( pCurrentScreen == SCREEN_CHARACTERS )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
998 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
999 pMouse->SetCursorBitmap("MICON2");
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1000 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1001 else
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1002 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1003 pGUIWindow_Settings->Release();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1004 pGUIWindow_Settings = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1005 pMouse->SetCursorBitmap("MICON1");
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1006 GameUI_Footer_TimeLeft = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1007 unk_50C9A0 = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1008 back_to_game();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1009 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1010 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1011 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1012 uActiveCharacter = pParty->GetNextActiveCharacter();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1013 pGUIWindow_CurrentMenu->Release();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1014 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1015 window_SpeakInHouse = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1016 pGUIWindow_CurrentMenu = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1017 pEventTimer->Resume();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1018 pCurrentScreen = SCREEN_GAME;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1019 viewparams->bRedrawGameUI = 1;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1020 pIcons_LOD->RemoveTexturesFromTextureList();
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1021 continue;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1022 }
0
Ritor1
parents:
diff changeset
1023 }
Ritor1
parents:
diff changeset
1024 else
Ritor1
parents:
diff changeset
1025 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1026 if ( pCurrentScreen < SCREEN_64 )
0
Ritor1
parents:
diff changeset
1027 {
Ritor1
parents:
diff changeset
1028 switch ( pCurrentScreen )
Ritor1
parents:
diff changeset
1029 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1030 case SCREEN_CASTING:
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1031 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
1032 if ( some_active_character )
Ritor1
parents:
diff changeset
1033 {
Ritor1
parents:
diff changeset
1034 uActiveCharacter = some_active_character;
Ritor1
parents:
diff changeset
1035 uActiveCharacter = pParty->GetNextActiveCharacter();
Ritor1
parents:
diff changeset
1036 some_active_character = 0;
Ritor1
parents:
diff changeset
1037 if ( pParty->bTurnBasedModeOn )
1448
5a5d0c713d47 some turn engine renaming
Gloval
parents: 1361
diff changeset
1038 pTurnEngine->ApplyPlayerAction();
0
Ritor1
parents:
diff changeset
1039 dword_50C9D0 = 0;
Ritor1
parents:
diff changeset
1040 dword_50C9D4 = 0;
Ritor1
parents:
diff changeset
1041 dword_50C9D8 = 0;
Ritor1
parents:
diff changeset
1042 }
Ritor1
parents:
diff changeset
1043 if ( ptr_50C9A4 && ptr_50C9A4->uItemID )
Ritor1
parents:
diff changeset
1044 {
Ritor1
parents:
diff changeset
1045 LOBYTE(ptr_50C9A4->uAttributes) &= 0xFu;
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
1046 _50C9A8_item_enchantment_timer = 0;
0
Ritor1
parents:
diff changeset
1047 ptr_50C9A4 = 0;
Ritor1
parents:
diff changeset
1048 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1049 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1050 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1051 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1052 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1053 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1054 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1055 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1056 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1057 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1058 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1059 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1060 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1061 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1062 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1063 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1064 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1065 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1066 uActiveCharacter = pParty->GetNextActiveCharacter();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1067 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1068 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1069 window_SpeakInHouse = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1070 pGUIWindow_CurrentMenu = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1071 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1072 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1073 viewparams->bRedrawGameUI = 1;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1074 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1075 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1076 case SCREEN_BOOKS:
0
Ritor1
parents:
diff changeset
1077 pBooksWindow->Release();
Ritor1
parents:
diff changeset
1078 //crt_deconstruct_ptr_6A0118();
Ritor1
parents:
diff changeset
1079 pBooksWindow = 0;
Ritor1
parents:
diff changeset
1080 pEventTimer->Resume();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1081 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1082 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1083 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1084 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1085 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1086 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1087 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1088 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1089 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1090 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1091 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1092 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1093 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1094 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1095 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1096 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1097 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1098 uActiveCharacter = pParty->GetNextActiveCharacter();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1099 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1100 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1101 window_SpeakInHouse = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1102 pGUIWindow_CurrentMenu = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1103 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1104 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1105 viewparams->bRedrawGameUI = 1;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1106 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1107 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1108 case SCREEN_SAVEGAME:
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1109 case SCREEN_LOADGAME:
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1110 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
1111 //crt_deconstruct_ptr_6A0118();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1112 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1113 break;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1114 case SCREEN_CHEST_INVENTORY:
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1115 pCurrentScreen = SCREEN_CHEST;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1116 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1117 case SCREEN_CHEST:
0
Ritor1
parents:
diff changeset
1118 pWindow2 = pChestWindow;
Ritor1
parents:
diff changeset
1119 pWindow2->Release();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1120 pIcons_LOD->RemoveTexturesPackFromTextureList();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1121 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1122 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
1123 pEventTimer->Resume();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1124 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1125 case SCREEN_19:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1126 __debugbreak();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1127 pWindow2 = ptr_507BC8;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1128 pWindow2->Release();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1129 pIcons_LOD->RemoveTexturesPackFromTextureList();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1130 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1131 viewparams->bRedrawGameUI = 1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1132 pEventTimer->Resume();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1133 continue;
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
1134 case SCREEN_OPTIONS://Close
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 938
diff changeset
1135 options_menu_skin.Relaease();
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1136 pIcons_LOD->SyncLoadedFilesCount();
0
Ritor1
parents:
diff changeset
1137 WriteWindowsRegistryInt("soundflag", (char)uSoundVolumeMultiplier);
Ritor1
parents:
diff changeset
1138 WriteWindowsRegistryInt("musicflag", (char)uMusicVolimeMultiplier);
Ritor1
parents:
diff changeset
1139 WriteWindowsRegistryInt("CharVoices", (char)uVoicesVolumeMultiplier);
Ritor1
parents:
diff changeset
1140 WriteWindowsRegistryInt("WalkSound", bWalkSound);
Ritor1
parents:
diff changeset
1141 WriteWindowsRegistryInt("ShowDamage", bShowDamage);
Ritor1
parents:
diff changeset
1142 WriteWindowsRegistryInt("graphicsmode", (unsigned __int8)byte_6BE388_graphicsmode);
Ritor1
parents:
diff changeset
1143 WriteWindowsRegistryInt("valAlwaysRun", bAlwaysRun);
Ritor1
parents:
diff changeset
1144 WriteWindowsRegistryInt("FlipOnExit", bFlipOnExit);
Ritor1
parents:
diff changeset
1145 if ( !uTurnSpeed )
Ritor1
parents:
diff changeset
1146 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1147 WriteWindowsRegistryInt("TurnDelta", 3);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1148 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1149 break;
0
Ritor1
parents:
diff changeset
1150 }
Ritor1
parents:
diff changeset
1151 if ( uTurnSpeed == 64 )
Ritor1
parents:
diff changeset
1152 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1153 WriteWindowsRegistryInt("TurnDelta", 2);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1154 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1155 break;
0
Ritor1
parents:
diff changeset
1156 }
Ritor1
parents:
diff changeset
1157 if ( uTurnSpeed != 128 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1158 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1159 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1160 break;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1161 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1162 WriteWindowsRegistryInt("TurnDelta", 1);
0
Ritor1
parents:
diff changeset
1163 stru_506E40.Release();
Ritor1
parents:
diff changeset
1164 break;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1165 case SCREEN_MENU:
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1166 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1167 pIcons_LOD->RemoveTexturesPackFromTextureList();
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1168 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1169 pIcons_LOD->RemoveTexturesPackFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1170 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1171 break;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1172 case SCREEN_VIDEO_OPTIONS:
0
Ritor1
parents:
diff changeset
1173 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
1174 {
Ritor1
parents:
diff changeset
1175 WriteWindowsRegistryInt("Colored Lights", pRenderer->bUseColoredLights);
Ritor1
parents:
diff changeset
1176 WriteWindowsRegistryInt("Tinting", pRenderer->bTinting);
Ritor1
parents:
diff changeset
1177 WriteWindowsRegistryInt("Bloodsplats", (LOBYTE(pGame->uFlags2) >> 5) & 1);
Ritor1
parents:
diff changeset
1178 }
Ritor1
parents:
diff changeset
1179 if ( pRenderer->bWindowMode )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1180 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1181 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1182 break;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1183 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1184 //v30 = uGammaPos;
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1185 //v31 = "GammaPos";
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1186 WriteWindowsRegistryInt("GammaPos", uGammaPos);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1187 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1188 break;
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
1189
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
1190 case SCREEN_KEYBOARD_OPTIONS://Return to game
0
Ritor1
parents:
diff changeset
1191 v197 = 1;
Ritor1
parents:
diff changeset
1192 v32 = 0;
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
1193 while ( !GameMenuUI_InvaligKeyBindingsFlags[v32])
0
Ritor1
parents:
diff changeset
1194 {
Ritor1
parents:
diff changeset
1195 ++v32;
Ritor1
parents:
diff changeset
1196 if ( v32 >= 28 )
Ritor1
parents:
diff changeset
1197 {
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1198 thisb = (signed int)&uTextureID_Optkb;
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
1199 assert(false && "Invalid condition values");
0
Ritor1
parents:
diff changeset
1200 do
Ritor1
parents:
diff changeset
1201 {
Ritor1
parents:
diff changeset
1202 if ( *(int *)thisb )
Ritor1
parents:
diff changeset
1203 pIcons_LOD->pTextures[*(int *)thisb].Release();
Ritor1
parents:
diff changeset
1204 thisb += 4;
Ritor1
parents:
diff changeset
1205 }
1031
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
1206 while ( thisb < (signed int)0x00507C08 );
f93d17337113 UI stuff.
Nomad
parents: 1029
diff changeset
1207
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1208 memset(&uTextureID_Optkb, 0, 0x14u);
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1209 pIcons_LOD->SyncLoadedFilesCount();
0
Ritor1
parents:
diff changeset
1210 uAction = 0;
Ritor1
parents:
diff changeset
1211 do
Ritor1
parents:
diff changeset
1212 {
Ritor1
parents:
diff changeset
1213 v33 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
Ritor1
parents:
diff changeset
1214 if ( v33 != pPrevVirtualCidesMapping[uAction] )
Ritor1
parents:
diff changeset
1215 {
Ritor1
parents:
diff changeset
1216 if ( v197 )
Ritor1
parents:
diff changeset
1217 {
Ritor1
parents:
diff changeset
1218 v34 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1219 GUI_ReplaceHotkey(v34, LOBYTE(pPrevVirtualCidesMapping[uAction]), 1);
0
Ritor1
parents:
diff changeset
1220 v197 = 0;
Ritor1
parents:
diff changeset
1221 }
Ritor1
parents:
diff changeset
1222 else
Ritor1
parents:
diff changeset
1223 {
Ritor1
parents:
diff changeset
1224 v35 = pKeyActionMap->GetActionVKey((enum InputAction)uAction);
Ritor1
parents:
diff changeset
1225 GUI_ReplaceHotkey(v35, LOBYTE(pPrevVirtualCidesMapping[uAction]), 0);
Ritor1
parents:
diff changeset
1226 }
Ritor1
parents:
diff changeset
1227 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1228 if ( uAction && uAction != 2 && uAction != 3 && uAction != 1 && uAction != 25 && uAction != 26 )
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1229 pKeyToggleType = (KeyToggleType)1;
0
Ritor1
parents:
diff changeset
1230 else
Ritor1
parents:
diff changeset
1231 pKeyToggleType = (KeyToggleType)0;
Ritor1
parents:
diff changeset
1232 pKeyActionMap->SetKeyMapping(uAction, pPrevVirtualCidesMapping[uAction], pKeyToggleType);
Ritor1
parents:
diff changeset
1233 ++uAction;
Ritor1
parents:
diff changeset
1234 }
Ritor1
parents:
diff changeset
1235 while ( uAction < 28 );
Ritor1
parents:
diff changeset
1236 pKeyActionMap->StoreMappings();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1237 stru_506E40.Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1238 break;
0
Ritor1
parents:
diff changeset
1239 }
Ritor1
parents:
diff changeset
1240 }
369
6e984a4a896f GameMenu fix
Ritor1
parents: 365
diff changeset
1241 break;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
1242 case SCREEN_REST://close rest screen
0
Ritor1
parents:
diff changeset
1243 if ( dword_506F14 )
Ritor1
parents:
diff changeset
1244 {
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
1245 Rest(_506F18_num_minutes_to_sleep);
1520
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1246 pParty->pPlayers[3].SetAsleep(false);
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1247 pParty->pPlayers[2].SetAsleep(false);
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1248 pParty->pPlayers[1].SetAsleep(false);
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1249 pParty->pPlayers[0].SetAsleep(false);
0
Ritor1
parents:
diff changeset
1250 }
Ritor1
parents:
diff changeset
1251 pTexture_RestUI_CurrentSkyFrame->Release();
Ritor1
parents:
diff changeset
1252 pTexture_RestUI_CurrentHourglassFrame->Release();
Ritor1
parents:
diff changeset
1253 pTexture_RestUI_CurrentHourglassFrame = 0;
Ritor1
parents:
diff changeset
1254 pTexture_RestUI_CurrentSkyFrame = 0;
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1255 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1256 pIcons_LOD->RemoveTexturesPackFromTextureList();
1520
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1257 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor)
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1258 {
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1259 pOutdoor->UpdateSunlightVectors();
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1260 pOutdoor->UpdateFog();
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1261 }
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
1262 _506F18_num_minutes_to_sleep = 0;
0
Ritor1
parents:
diff changeset
1263 dword_506F14 = 0;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1264 dword_507B94 = 1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1265 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1266 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1267 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1268 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1269 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1270 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1271 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1272 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1273 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1274 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1275 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1276 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1277 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1278 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1279 }
1520
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1280 }
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1281 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1282 uActiveCharacter = pParty->GetNextActiveCharacter();
1520
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1283 pGUIWindow_CurrentMenu->Release();
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1284 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1285 window_SpeakInHouse = 0;
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1286 pGUIWindow_CurrentMenu = 0;
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1287 pEventTimer->Resume();
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1288 pCurrentScreen = SCREEN_GAME;
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1289 viewparams->bRedrawGameUI = 1;
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1290 pIcons_LOD->RemoveTexturesFromTextureList();
d023247ae118 Fixed #62
yoctozepto
parents: 1519
diff changeset
1291 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1292 case SCREEN_E:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1293 __debugbreak();
0
Ritor1
parents:
diff changeset
1294 pGUIWindow_CurrentMenu->Release();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1295 pCurrentScreen = SCREEN_HOUSE;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1296 pIcons_LOD->RemoveTexturesPackFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1297 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1298 case SCREEN_HOUSE:
0
Ritor1
parents:
diff changeset
1299 if ( uDialogueType )
Ritor1
parents:
diff changeset
1300 uDialogueType = 0;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1301 if ( uGameState == GAME_STATE_2 )
0
Ritor1
parents:
diff changeset
1302 {
Ritor1
parents:
diff changeset
1303 while ( sub_4BD8B5() )
Ritor1
parents:
diff changeset
1304 ;
Ritor1
parents:
diff changeset
1305 }
Ritor1
parents:
diff changeset
1306 else
Ritor1
parents:
diff changeset
1307 {
Ritor1
parents:
diff changeset
1308 if ( sub_4BD8B5() )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1309 continue;
0
Ritor1
parents:
diff changeset
1310 }
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1405
diff changeset
1311 GetHouseGoodbyeSpeech();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1312 pAudioPlayer->PlaySound(SOUND_7, 814, 0, -1, 0, 0, 0, 0);
0
Ritor1
parents:
diff changeset
1313 pVideoPlayer->Unload();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1314 pGUIWindow_CurrentMenu = window_SpeakInHouse;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1315 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1316 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1317 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1318 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1319 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1320 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1321 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1322 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1323 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1324 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1325 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1326 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1327 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1328 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1329 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1330 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1331 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1332 uActiveCharacter = pParty->GetNextActiveCharacter();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1333 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1334 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1335 window_SpeakInHouse = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1336 pGUIWindow_CurrentMenu = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1337 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1338 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1339 viewparams->bRedrawGameUI = true;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1340 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1341 continue;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1342 case SCREEN_INPUT_BLV://click escape
0
Ritor1
parents:
diff changeset
1343 if ( uCurrentHouse_Animation == 153 )
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 731
diff changeset
1344 PlayHouseSound(0x99u, HouseSound_Greeting_2);
0
Ritor1
parents:
diff changeset
1345 pVideoPlayer->Unload();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1346 if ( dword_5B65CC )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1347 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1348 pParty->field_709 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1349 LOBYTE(pNPCStats->pNewNPCData[dword_5B65CC].uFlags) &= 0x7Fu;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1350 pParty->CountHirelings();
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1351 viewparams->bRedrawGameUI = true;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1352 dword_5B65CC = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1353 }
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1354 DialogueEnding();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1355 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1356 viewparams->bRedrawGameUI = true;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1357 continue;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1358 case SCREEN_NPC_DIALOGUE://click escape
0
Ritor1
parents:
diff changeset
1359 if ( dword_5B65CC )
Ritor1
parents:
diff changeset
1360 {
Ritor1
parents:
diff changeset
1361 pParty->field_709 = 0;
Ritor1
parents:
diff changeset
1362 LOBYTE(pNPCStats->pNewNPCData[dword_5B65CC].uFlags) &= 0x7Fu;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1363 pParty->CountHirelings();
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1364 viewparams->bRedrawGameUI = true;
0
Ritor1
parents:
diff changeset
1365 dword_5B65CC = 0;
Ritor1
parents:
diff changeset
1366 }
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1367 //goto LABEL_317;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1368 DialogueEnding();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1369 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1370 viewparams->bRedrawGameUI = true;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1371 continue;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1372 case SCREEN_BRANCHLESS_NPC_DIALOG://click escape
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1373 memset(GameUI_Footer_TimedString.data(), 0, 0xC8u);
0
Ritor1
parents:
diff changeset
1374 sub_4452BB();
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1375 DialogueEnding();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1376 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1377 viewparams->bRedrawGameUI = true;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1378 continue;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1379 case SCREEN_CHANGE_LOCATION://click escape
0
Ritor1
parents:
diff changeset
1380 if ( pParty->vPosition.x < -22528 )
Ritor1
parents:
diff changeset
1381 pParty->vPosition.x = -22528;
Ritor1
parents:
diff changeset
1382 if ( pParty->vPosition.x > 22528 )
Ritor1
parents:
diff changeset
1383 pParty->vPosition.x = 22528;
Ritor1
parents:
diff changeset
1384 if ( pParty->vPosition.y < -22528 )
Ritor1
parents:
diff changeset
1385 pParty->vPosition.y = -22528;
Ritor1
parents:
diff changeset
1386 if ( pParty->vPosition.y > 22528 )
Ritor1
parents:
diff changeset
1387 pParty->vPosition.y = 22528;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1388 DialogueEnding();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1389 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1390 viewparams->bRedrawGameUI = true;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1391 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1392 case SCREEN_VIDEO:
0
Ritor1
parents:
diff changeset
1393 pVideoPlayer->Unload();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1394 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1395 case SCREEN_CHARACTERS:
992
Nomad
parents: 991 990
diff changeset
1396 CharacterUI_ReleaseButtons();
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
1397 ReleaseAwardsScrollBar();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1398 pIcons_LOD->RemoveTexturesPackFromTextureList();
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1399 if ( pGUIWindow_Settings )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1400 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1401 if ( pCurrentScreen == SCREEN_CHARACTERS )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1402 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1403 pMouse->SetCursorBitmap("MICON2");
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1404 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1405 else
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1406 {
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1407 pGUIWindow_Settings->Release();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1408 pGUIWindow_Settings = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1409 pMouse->SetCursorBitmap("MICON1");
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1410 GameUI_Footer_TimeLeft = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1411 unk_50C9A0 = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1412 back_to_game();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1413 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1414 }
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1415 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1416 uActiveCharacter = pParty->GetNextActiveCharacter();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1417 pGUIWindow_CurrentMenu->Release();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1418 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1419 window_SpeakInHouse = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1420 pGUIWindow_CurrentMenu = 0;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1421 pEventTimer->Resume();
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1422 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1423 viewparams->bRedrawGameUI = true;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1424 pIcons_LOD->RemoveTexturesFromTextureList();
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1425 continue;
0
Ritor1
parents:
diff changeset
1426 default:
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1427 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1428 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1429 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1430 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1431 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1432 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1433 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1434 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1435 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1436 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1437 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1438 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1439 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1440 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1441 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1442 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1443 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1444 uActiveCharacter = pParty->GetNextActiveCharacter();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1445 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1446 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1447 window_SpeakInHouse = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1448 pGUIWindow_CurrentMenu = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1449 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1450 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1451 viewparams->bRedrawGameUI = 1;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1452 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1453 continue;
0
Ritor1
parents:
diff changeset
1454 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1455 if ( pGUIWindow_Settings )
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1456 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1457 if ( pCurrentScreen == SCREEN_CHARACTERS )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1458 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1459 pMouse->SetCursorBitmap("MICON2");
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1460 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1461 else
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1462 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1463 pGUIWindow_Settings->Release();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1464 pGUIWindow_Settings = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1465 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1466 GameUI_Footer_TimeLeft = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1467 unk_50C9A0 = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1468 back_to_game();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1469 }
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1470 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1471 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1472 uActiveCharacter = pParty->GetNextActiveCharacter();
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1473 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1474 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1475 window_SpeakInHouse = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1476 pGUIWindow_CurrentMenu = 0;
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1477 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1478 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1479 viewparams->bRedrawGameUI = true;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1480 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1481 continue;
0
Ritor1
parents:
diff changeset
1482 }
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
1483 CharacterUI_ReleaseButtons();
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
1484 ReleaseAwardsScrollBar();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1485 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
1486 }
Ritor1
parents:
diff changeset
1487 if ( pGUIWindow_Settings )
Ritor1
parents:
diff changeset
1488 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1489 if ( pCurrentScreen == SCREEN_CHARACTERS )
0
Ritor1
parents:
diff changeset
1490 {
Ritor1
parents:
diff changeset
1491 pMouse->SetCursorBitmap("MICON2");
Ritor1
parents:
diff changeset
1492 }
Ritor1
parents:
diff changeset
1493 else
Ritor1
parents:
diff changeset
1494 {
Ritor1
parents:
diff changeset
1495 pGUIWindow_Settings->Release();
Ritor1
parents:
diff changeset
1496 pGUIWindow_Settings = 0;
Ritor1
parents:
diff changeset
1497 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1498 GameUI_Footer_TimeLeft = 0;
0
Ritor1
parents:
diff changeset
1499 unk_50C9A0 = 0;
Ritor1
parents:
diff changeset
1500 back_to_game();
Ritor1
parents:
diff changeset
1501 }
Ritor1
parents:
diff changeset
1502 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1503 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 )
0
Ritor1
parents:
diff changeset
1504 uActiveCharacter = pParty->GetNextActiveCharacter();
Ritor1
parents:
diff changeset
1505 pGUIWindow_CurrentMenu->Release();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1506 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1507 window_SpeakInHouse = 0;
0
Ritor1
parents:
diff changeset
1508 pGUIWindow_CurrentMenu = 0;
Ritor1
parents:
diff changeset
1509 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1510 pCurrentScreen = SCREEN_GAME;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1511 viewparams->bRedrawGameUI = true;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
1512 pIcons_LOD->RemoveTexturesFromTextureList();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1513 continue;
0
Ritor1
parents:
diff changeset
1514 }
Ritor1
parents:
diff changeset
1515 if ( !pGUIWindow_Settings )//Draw Menu
Ritor1
parents:
diff changeset
1516 {
Ritor1
parents:
diff changeset
1517 dword_6BE138 = -1;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
1518 GUIWindow::Create(0x25Au, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_GameSettings, (char *)1);
0
Ritor1
parents:
diff changeset
1519 pEventTimer->Pause();
Ritor1
parents:
diff changeset
1520 pAudioPlayer->StopChannels(-1, -1);
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1521 pCurrentScreen = SCREEN_MENU;
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1522
0
Ritor1
parents:
diff changeset
1523 ++pIcons_LOD->uTexturePacksCount;
Ritor1
parents:
diff changeset
1524 if ( !pIcons_LOD->uNumPrevLoadedFiles )
Ritor1
parents:
diff changeset
1525 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1526
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1527 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_OptionsButtons, 0, 0);
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1528 uTextureID_Options = pIcons_LOD->LoadTexture("options", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1529 uTextureID_New1 = pIcons_LOD->LoadTexture("new1", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1530 uTextureID_Load1 = pIcons_LOD->LoadTexture("load1", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1531 uTextureID_Save1 = pIcons_LOD->LoadTexture("save1", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1532 uTextureID_Controls1 = pIcons_LOD->LoadTexture("controls1", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1533 uTextureID_Resume1 = pIcons_LOD->LoadTexture("resume1", TEXTURE_16BIT_PALETTE);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
1534 uTextureID_Quit1 = pIcons_LOD->LoadTexture("quit1", TEXTURE_16BIT_PALETTE);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1535 pBtn_NewGame = pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x9Bu, 0xD6u, 0x28u, 1, 0, UIMSG_StartNewGame, 0, 0x4Eu,
0
Ritor1
parents:
diff changeset
1536 pGlobalTXT_LocalizationStrings[614],// "New Game"
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1537 pIcons_LOD->GetTexture(uTextureID_New1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1538 pBtn_SaveGame = pGUIWindow_CurrentMenu->CreateButton(0x13u, 0xD1u, 0xD6u, 0x28u, 1, 0, UIMSG_Game_OpenSaveGameDialog, 0, 0x53u,
0
Ritor1
parents:
diff changeset
1539 pGlobalTXT_LocalizationStrings[615],// "Save Game"
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1540 pIcons_LOD->GetTexture(uTextureID_Save1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1541 pBtn_LoadGame = pGUIWindow_CurrentMenu->CreateButton(19, 263, 0xD6u, 0x28u, 1, 0, UIMSG_Game_OpenLoadGameDialog, 0, 0x4Cu,
0
Ritor1
parents:
diff changeset
1542 pGlobalTXT_LocalizationStrings[616],// "Load Game"
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1543 pIcons_LOD->GetTexture(uTextureID_Load1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1544 pBtn_GameControls = pGUIWindow_CurrentMenu->CreateButton(241, 155, 214, 40, 1, 0, UIMSG_Game_OpenOptionsDialog, 0, 0x43u,
0
Ritor1
parents:
diff changeset
1545 pGlobalTXT_LocalizationStrings[617],// ""Sound, Keyboard, Game Options:""
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1546 pIcons_LOD->GetTexture(uTextureID_Controls1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1547 pBtn_QuitGame = pGUIWindow_CurrentMenu->CreateButton(241, 209, 214, 40, 1, 0, UIMSG_Quit, 0, 0x51u,
0
Ritor1
parents:
diff changeset
1548 pGlobalTXT_LocalizationStrings[618],// "Quit"
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1549 pIcons_LOD->GetTexture(uTextureID_Quit1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1550 pBtn_Resume = pGUIWindow_CurrentMenu->CreateButton(241, 263, 214, 40, 1, 0, UIMSG_GameMenu_ReturnToGame, 0, 0x52u,
0
Ritor1
parents:
diff changeset
1551 pGlobalTXT_LocalizationStrings[619],// "Return to Game"
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1552 pIcons_LOD->GetTexture(uTextureID_Resume1), 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1553 pGUIWindow_CurrentMenu->_41D08F_set_keyboard_control_group(6, 1, 0, 0);
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1554 viewparams->field_48 = 1;
0
Ritor1
parents:
diff changeset
1555 stru_506E40.Release();
Ritor1
parents:
diff changeset
1556 uNumSeconds = (unsigned int)MakeScreenshot(155, 117);
Ritor1
parents:
diff changeset
1557 pRenderer->SavePCXImage("gamma.pcx", (char *)uNumSeconds, 155, 117);
Ritor1
parents:
diff changeset
1558 free((void *)uNumSeconds);
Ritor1
parents:
diff changeset
1559 stru_506E40._40E55E("gamma.pcx", 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1560 continue;
0
Ritor1
parents:
diff changeset
1561 }
1000
Ritor1
parents: 999
diff changeset
1562 pGUIWindow_Settings->Release();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1563 pGUIWindow_Settings = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1564 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1565 GameUI_Footer_TimeLeft = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1566 unk_50C9A0 = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1567 back_to_game();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1568 continue;
0
Ritor1
parents:
diff changeset
1569 }
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
1570 ModalWindow_Release();
0
Ritor1
parents:
diff changeset
1571 continue;
111
bf7ea4c330b3 Paperdoll fixed
Ritor1
parents: 110
diff changeset
1572 case UIMSG_ScrollNPCPanel://Right and Left button for NPCPanel
0
Ritor1
parents:
diff changeset
1573 if ( uMessageParam )
Ritor1
parents:
diff changeset
1574 {
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1575 GUIWindow::Create(626, 179, 0, 0, WINDOW_PressedButton2, (int)pBtn_NPCRight, 0);
0
Ritor1
parents:
diff changeset
1576 v37 = (pParty->pHirelings[0].pName != 0) + (pParty->pHirelings[1].pName != 0) + (unsigned __int8)pParty->field_70A - 2;
Ritor1
parents:
diff changeset
1577 if ( (unsigned __int8)pParty->field_709 < v37 )
Ritor1
parents:
diff changeset
1578 {
111
bf7ea4c330b3 Paperdoll fixed
Ritor1
parents: 110
diff changeset
1579 ++pParty->field_709;//??? maybe number of the first cell???
0
Ritor1
parents:
diff changeset
1580 if ( (unsigned __int8)pParty->field_709 >= v37 )
Ritor1
parents:
diff changeset
1581 pParty->field_709 = (pParty->pHirelings[0].pName != 0) + (pParty->pHirelings[1].pName != 0) + pParty->field_70A - 2;
Ritor1
parents:
diff changeset
1582 }
Ritor1
parents:
diff changeset
1583 }
Ritor1
parents:
diff changeset
1584 else
Ritor1
parents:
diff changeset
1585 {
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1586 GUIWindow::Create(469, 179, 0, 0, WINDOW_PressedButton2, (int)pBtn_NPCLeft, 0);
0
Ritor1
parents:
diff changeset
1587 if ( pParty->field_709 )
Ritor1
parents:
diff changeset
1588 {
Ritor1
parents:
diff changeset
1589 --pParty->field_709;
Ritor1
parents:
diff changeset
1590 if ( pParty->field_709 < 1 )
Ritor1
parents:
diff changeset
1591 pParty->field_709 = 0;
Ritor1
parents:
diff changeset
1592 }
Ritor1
parents:
diff changeset
1593 }
994
3431f6abc786 GameUI clean
Nomad
parents: 992
diff changeset
1594 GameUI_DrawHiredNPCs();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1595 continue;
434
137c59c3dbc4 Temple of Moon and Dragon Lair can now be entered.
Nomad
parents: 430
diff changeset
1596 case UIMSG_TransitionUI_Confirm:
0
Ritor1
parents:
diff changeset
1597 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
1598 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1599 dword_50CDC8 = 1;
0
Ritor1
parents:
diff changeset
1600 sub_42FBDD();
758
9f7db515a8d7 Training Hall & levelling up fixed
Nomad
parents: 735
diff changeset
1601 PlayHouseSound(uCurrentHouse_Animation, HouseSound_NotEnoughMoney_TrainingSuccessful);
0
Ritor1
parents:
diff changeset
1602 pVideoPlayer->Unload();
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
1603 DialogueEnding();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1604 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
1605 if ( dword_59117C_teleportx | dword_591178_teleporty | dword_591174_teleportz | dword_591170_teleport_directiony | dword_59116C_teleport_directionx | dword_591168_teleport_speedz )
Ritor1
parents:
diff changeset
1606 {
Ritor1
parents:
diff changeset
1607 if ( dword_59117C_teleportx )
Ritor1
parents:
diff changeset
1608 {
Ritor1
parents:
diff changeset
1609 pParty->vPosition.x = dword_59117C_teleportx;
Ritor1
parents:
diff changeset
1610 _5B65A8_npcdata_uflags_or_other = dword_59117C_teleportx;
Ritor1
parents:
diff changeset
1611 }
Ritor1
parents:
diff changeset
1612 if ( dword_591178_teleporty )
Ritor1
parents:
diff changeset
1613 {
Ritor1
parents:
diff changeset
1614 pParty->vPosition.y = dword_591178_teleporty;
Ritor1
parents:
diff changeset
1615 _5B65AC_npcdata_fame_or_other = dword_591178_teleporty;
Ritor1
parents:
diff changeset
1616 }
Ritor1
parents:
diff changeset
1617 if ( dword_591174_teleportz )
Ritor1
parents:
diff changeset
1618 {
Ritor1
parents:
diff changeset
1619 pParty->vPosition.z = dword_591174_teleportz;
Ritor1
parents:
diff changeset
1620 _5B65B0_npcdata_rep_or_other = dword_591174_teleportz;
Ritor1
parents:
diff changeset
1621 pParty->uFallStartY = dword_591174_teleportz;
Ritor1
parents:
diff changeset
1622 }
Ritor1
parents:
diff changeset
1623 if ( dword_591170_teleport_directiony )
Ritor1
parents:
diff changeset
1624 {
Ritor1
parents:
diff changeset
1625 pParty->sRotationY = dword_591170_teleport_directiony;
Ritor1
parents:
diff changeset
1626 _5B65B4_npcdata_loword_house_or_other = dword_591170_teleport_directiony;
Ritor1
parents:
diff changeset
1627 }
Ritor1
parents:
diff changeset
1628 if ( dword_59116C_teleport_directionx )
Ritor1
parents:
diff changeset
1629 {
Ritor1
parents:
diff changeset
1630 pParty->sRotationX = dword_59116C_teleport_directionx;
Ritor1
parents:
diff changeset
1631 _5B65B8_npcdata_hiword_house_or_other = dword_59116C_teleport_directionx;
Ritor1
parents:
diff changeset
1632 v38 = dword_591168_teleport_speedz;
Ritor1
parents:
diff changeset
1633 pParty->uFallSpeed = dword_591168_teleport_speedz;
Ritor1
parents:
diff changeset
1634 dword_5B65BC = dword_591168_teleport_speedz;
Ritor1
parents:
diff changeset
1635 }
Ritor1
parents:
diff changeset
1636 else
Ritor1
parents:
diff changeset
1637 {
Ritor1
parents:
diff changeset
1638 v38 = dword_5B65BC;
Ritor1
parents:
diff changeset
1639 }
Ritor1
parents:
diff changeset
1640 if ( *dword_591164_teleport_map_name != 48 )
Ritor1
parents:
diff changeset
1641 {
Ritor1
parents:
diff changeset
1642 pGameLoadingUI_ProgressBar->uType = (GUIProgressBar::Type)2;
Ritor1
parents:
diff changeset
1643 dword_5B65C0 = _5B65A8_npcdata_uflags_or_other | _5B65AC_npcdata_fame_or_other | _5B65B0_npcdata_rep_or_other | _5B65B4_npcdata_loword_house_or_other | _5B65B8_npcdata_hiword_house_or_other | v38;
Ritor1
parents:
diff changeset
1644 OnMapLeave();
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1645 sub_44987B(dword_591164_teleport_map_name, MapStartPoint_Party);
0
Ritor1
parents:
diff changeset
1646 }
Ritor1
parents:
diff changeset
1647 }
Ritor1
parents:
diff changeset
1648 else
Ritor1
parents:
diff changeset
1649 {
1052
d48c762de563 -nomarg
Nomad
parents: 1051
diff changeset
1650 EventProcessor(dword_5C3418, 0, 1, dword_5C341C);
d48c762de563 -nomarg
Nomad
parents: 1051
diff changeset
1651 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1652 if ( !_stricmp(byte_6BE3B0.data(), "d05.blv") )
0
Ritor1
parents:
diff changeset
1653 pParty->uTimePlayed += 1474560i64;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1654 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
1655 case UIMSG_TransitionWindowCloseBtn:
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1656 CloseWindowBackground();
0
Ritor1
parents:
diff changeset
1657 pVideoPlayer->Unload();
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
1658 DialogueEnding();
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1659 viewparams->bRedrawGameUI = true;
910
Ritor1
parents: 907
diff changeset
1660 continue;
0
Ritor1
parents:
diff changeset
1661 case UIMSG_CycleCharacters:
Ritor1
parents:
diff changeset
1662 v39 = GetAsyncKeyState(VK_SHIFT);
910
Ritor1
parents: 907
diff changeset
1663 uActiveCharacter = CycleCharacter(v39);
1035
306ec23b37df 004C1EE5 & other stuff
Nomad
parents: 1033
diff changeset
1664 viewparams->bRedrawGameUI = true;
910
Ritor1
parents: 907
diff changeset
1665 continue;
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1666 case UIMSG_OnTravelByFoot:
0
Ritor1
parents:
diff changeset
1667 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
1668 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1669 dword_50CDC8 = 1;
0
Ritor1
parents:
diff changeset
1670 sub_42FBDD();
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1671 //pNPCData4 = (NPCData *)GetTravelTime();
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1672 strcpy(pOutdoor->pLevelFilename, pCurrentMapName);
0
Ritor1
parents:
diff changeset
1673 if ( bUnderwater != 1 && pParty->bFlying
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1674 || pOutdoor->GetTravelDestination(pParty->vPosition.x, pParty->vPosition.y, pOut, 20) != 1 )
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1675 {
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1676 viewparams->bRedrawGameUI = 1;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1677 CloseWindowBackground();
0
Ritor1
parents:
diff changeset
1678 if ( pParty->vPosition.x < -22528 )
Ritor1
parents:
diff changeset
1679 pParty->vPosition.x = -22528;
Ritor1
parents:
diff changeset
1680 if ( pParty->vPosition.x > 22528 )
Ritor1
parents:
diff changeset
1681 pParty->vPosition.x = 22528;
Ritor1
parents:
diff changeset
1682 if ( pParty->vPosition.y < -22528 )
Ritor1
parents:
diff changeset
1683 pParty->vPosition.y = -22528;
Ritor1
parents:
diff changeset
1684 if ( pParty->vPosition.y > 22528 )
Ritor1
parents:
diff changeset
1685 pParty->vPosition.y = 22528;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
1686 DialogueEnding();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1687 pCurrentScreen = SCREEN_GAME;
0
Ritor1
parents:
diff changeset
1688 }
Ritor1
parents:
diff changeset
1689 else
Ritor1
parents:
diff changeset
1690 {
Ritor1
parents:
diff changeset
1691 pParty->field_6E4 = 0;
Ritor1
parents:
diff changeset
1692 pParty->field_6E0 = 0;
1517
c3da3c2985b8 Clean CastSpellInfo. (1)
yoctozepto
parents: 1514
diff changeset
1693 CastSpellInfoHelpers::_427D48();
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
1694 DialogueEnding();
0
Ritor1
parents:
diff changeset
1695 pEventTimer->Pause();
434
137c59c3dbc4 Temple of Moon and Dragon Lair can now be entered.
Nomad
parents: 430
diff changeset
1696 pGameLoadingUI_ProgressBar->Initialize(GUIProgressBar::TYPE_Box);
0
Ritor1
parents:
diff changeset
1697 ++pGameLoadingUI_ProgressBar->uProgressMax;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1698 SaveGame(1, 0);
0
Ritor1
parents:
diff changeset
1699 pGameLoadingUI_ProgressBar->Progress();
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1700 RestAndHeal(1440 * (signed int)GetTravelTime());
0
Ritor1
parents:
diff changeset
1701 if ( pParty->uNumFoodRations )
Ritor1
parents:
diff changeset
1702 {
Ritor1
parents:
diff changeset
1703 pParty->RestAndHeal();
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1704 if ( ((pParty->uNumFoodRations - (signed int)GetTravelTime()) & 0x80000000u) != 0 )
0
Ritor1
parents:
diff changeset
1705 {
Ritor1
parents:
diff changeset
1706 pPlayer7 = pParty->pPlayers;
Ritor1
parents:
diff changeset
1707 do
Ritor1
parents:
diff changeset
1708 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1709 pPlayer7->SetCondition(1, 0);
0
Ritor1
parents:
diff changeset
1710 ++pPlayer7;
Ritor1
parents:
diff changeset
1711 }
Ritor1
parents:
diff changeset
1712 while ( (signed int)pPlayer7 < (signed int)pParty->pHirelings );
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
1713 ++pParty->days_played_without_rest;
0
Ritor1
parents:
diff changeset
1714 }
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1715 Party::TakeFood((unsigned int)GetTravelTime());
0
Ritor1
parents:
diff changeset
1716 }
Ritor1
parents:
diff changeset
1717 else
Ritor1
parents:
diff changeset
1718 {
Ritor1
parents:
diff changeset
1719 pPlayer8 = pParty->pPlayers;
Ritor1
parents:
diff changeset
1720 do
Ritor1
parents:
diff changeset
1721 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1722 pPlayer8->SetCondition(1, 0);
0
Ritor1
parents:
diff changeset
1723 ++pPlayer8;
Ritor1
parents:
diff changeset
1724 }
Ritor1
parents:
diff changeset
1725 while ( (signed int)pPlayer8 < (signed int)pParty->pHirelings );
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
1726 ++pParty->days_played_without_rest;
0
Ritor1
parents:
diff changeset
1727 }
Ritor1
parents:
diff changeset
1728 pPaletteManager->ResetNonLocked();
Ritor1
parents:
diff changeset
1729 pSpriteFrameTable->ResetSomeSpriteFlags();
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1730 strcpy(pCurrentMapName, pOut);
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1731 strcpy(pLevelName, pCurrentMapName);
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1732 v41 = strtok(pLevelName, ".");
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1733 strcpy(pLevelName, v41);
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1734 Level_LoadEvtAndStr(pLevelName);
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1735 pDecalBuilder->Reset(0);
0
Ritor1
parents:
diff changeset
1736 LoadLevel_InitializeLevelEvt();
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1737 uLevelMapStatsID = pMapStats->GetMapInfo(pCurrentMapName);
0
Ritor1
parents:
diff changeset
1738 bUnderwater = 0;
Ritor1
parents:
diff changeset
1739 bNoNPCHiring = 0;
Ritor1
parents:
diff changeset
1740 pGame->uFlags2 &= 0xFFFFFFF7u;
Ritor1
parents:
diff changeset
1741 if ( Is_out15odm_underwater() )
Ritor1
parents:
diff changeset
1742 {
Ritor1
parents:
diff changeset
1743 bUnderwater = 1;
Ritor1
parents:
diff changeset
1744 pGame->uFlags2 |= 8u;
Ritor1
parents:
diff changeset
1745 }
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1746 if ( !_stricmp(pCurrentMapName, "out15.odm") || !_stricmp(pCurrentMapName, "d47.blv") )
0
Ritor1
parents:
diff changeset
1747 bNoNPCHiring = 1;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1616
diff changeset
1748 PrepareToLoadODM(1u, (ODMRenderParams *)1);
0
Ritor1
parents:
diff changeset
1749 pAudioPlayer->SetMapEAX();
Ritor1
parents:
diff changeset
1750 bDialogueUI_InitializeActor_NPC_ID = 0;
Ritor1
parents:
diff changeset
1751 OnMapLoad();
Ritor1
parents:
diff changeset
1752 pOutdoor->SetFog();
Ritor1
parents:
diff changeset
1753 TeleportToStartingPoint(uLevel_StartingPointType);
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1754 pParty->vPosition.z = GetTerrainHeightsAroundParty2(pParty->vPosition.x, pParty->vPosition.y, &v213, 0);
0
Ritor1
parents:
diff changeset
1755 pParty->uFallStartY = pParty->vPosition.z;
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
1756 _461103_load_level_sub();
0
Ritor1
parents:
diff changeset
1757 pEventTimer->Resume();
Ritor1
parents:
diff changeset
1758 viewparams->bRedrawGameUI = 1;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
1759 pCurrentScreen = SCREEN_GAME;
0
Ritor1
parents:
diff changeset
1760 pGameLoadingUI_ProgressBar->Release();
Ritor1
parents:
diff changeset
1761 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1762 viewparams->bRedrawGameUI = 1;
910
Ritor1
parents: 907
diff changeset
1763 continue;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1764 case UIMSG_CHANGE_LOCATION_ClickCencelBtn:
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1765 CloseWindowBackground();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1766 if ( pParty->vPosition.x < -22528 )
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1767 pParty->vPosition.x = -22528;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1768 if ( pParty->vPosition.x > 22528 )
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1769 pParty->vPosition.x = 22528;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1770 if ( pParty->vPosition.y < -22528 )
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1771 pParty->vPosition.y = -22528;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1772 if ( pParty->vPosition.y > 22528 )
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1773 pParty->vPosition.y = 22528;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1774 DialogueEnding();
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1775 pCurrentScreen = SCREEN_GAME;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1776 viewparams->bRedrawGameUI = 1;
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1777 continue;
1326
e70fe5d77928 UIMSG_CastSpell_Telekinesis
Ritor1
parents: 1299
diff changeset
1778 case UIMSG_CastSpell_Telekinesis:
0
Ritor1
parents:
diff changeset
1779 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
1780 LOWORD(v42) = pGame->pVisInstance->get_picked_object_zbuf_val();
Ritor1
parents:
diff changeset
1781 else
Ritor1
parents:
diff changeset
1782 {
Ritor1
parents:
diff changeset
1783 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v210);
Ritor1
parents:
diff changeset
1784 pPoint = pMouse->GetCursorPos(&v208);
Ritor1
parents:
diff changeset
1785 v42 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint->y]];
Ritor1
parents:
diff changeset
1786 }
Ritor1
parents:
diff changeset
1787 v44 = (unsigned __int16)v42;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
1788 v45 = PID_TYPE(v44);
0
Ritor1
parents:
diff changeset
1789 uNumSeconds = v44;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
1790 v46 = PID_ID(v44);
0
Ritor1
parents:
diff changeset
1791 if ( v45 == 3 )
Ritor1
parents:
diff changeset
1792 {
Ritor1
parents:
diff changeset
1793 v47 = pActors[v46].uAIState == Dead;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1794 if ( !v47 )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1795 continue;
1000
Ritor1
parents: 999
diff changeset
1796 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1797 pSpellInfo->uFlags &= ~0x40u;
1000
Ritor1
parents: 999
diff changeset
1798 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
1799 pSpellInfo->spell_target_pid = v44;
Ritor1
parents: 999
diff changeset
1800 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
Ritor1
parents: 999
diff changeset
1801 pGUIWindow_Settings->Release();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1802 pGUIWindow_Settings = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1803 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1804 GameUI_Footer_TimeLeft = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1805 unk_50C9A0 = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1806 back_to_game();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1807 continue;
0
Ritor1
parents:
diff changeset
1808 }
Ritor1
parents:
diff changeset
1809 if ( v45 == 2 )
Ritor1
parents:
diff changeset
1810 {
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
1811 v47 = (pObjectList->pObjects[pSpriteObjects[v46].uObjectDescID].uFlags & 0x10) == 0;
0
Ritor1
parents:
diff changeset
1812 if ( !v47 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1813 continue;
1000
Ritor1
parents: 999
diff changeset
1814 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1815 pSpellInfo->uFlags &= ~0x40u;
1000
Ritor1
parents: 999
diff changeset
1816 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
1817 pSpellInfo->spell_target_pid = v44;
Ritor1
parents: 999
diff changeset
1818 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
Ritor1
parents: 999
diff changeset
1819 pGUIWindow_Settings->Release();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1820 pGUIWindow_Settings = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1821 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1822 GameUI_Footer_TimeLeft = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1823 unk_50C9A0 = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1824 back_to_game();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1825 continue;
0
Ritor1
parents:
diff changeset
1826 }
Ritor1
parents:
diff changeset
1827 if ( v45 == 5 )
Ritor1
parents:
diff changeset
1828 {
1514
965af46e8793 Rename LevelDecoration::field_16_event_id to LevelDecoration::uEventID.
yoctozepto
parents: 1504
diff changeset
1829 v48 = pLevelDecorations[v46].uEventID == 0;
0
Ritor1
parents:
diff changeset
1830 }
Ritor1
parents:
diff changeset
1831 else
Ritor1
parents:
diff changeset
1832 {
Ritor1
parents:
diff changeset
1833 if ( v45 != 6 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1834 continue;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1835 if ( uCurrentlyLoadedLevelType != 1 )
0
Ritor1
parents:
diff changeset
1836 {
Ritor1
parents:
diff changeset
1837 pODMFace = &pOutdoor->pBModels[v44 >> 9].pFaces[v46 & 0x3F];
Ritor1
parents:
diff changeset
1838 if ( !(pODMFace->uAttributes & 0x02000000) || !pODMFace->sCogTriggeredID )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1839 continue;
0
Ritor1
parents:
diff changeset
1840 v44 = uNumSeconds;
1000
Ritor1
parents: 999
diff changeset
1841 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1842 pSpellInfo->uFlags &= ~0x40u;
1000
Ritor1
parents: 999
diff changeset
1843 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
1844 pSpellInfo->spell_target_pid = v44;
Ritor1
parents: 999
diff changeset
1845 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
Ritor1
parents: 999
diff changeset
1846 pGUIWindow_Settings->Release();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1847 pGUIWindow_Settings = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1848 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1849 GameUI_Footer_TimeLeft = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1850 unk_50C9A0 = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1851 back_to_game();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1852 continue;
0
Ritor1
parents:
diff changeset
1853 }
Ritor1
parents:
diff changeset
1854 pBLVFace = &pIndoor->pFaces[v46];
Ritor1
parents:
diff changeset
1855 if ( !(BYTE3(pBLVFace->uAttributes) & 2) )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1856 continue;
0
Ritor1
parents:
diff changeset
1857 v48 = pIndoor->pFaceExtras[pBLVFace->uFaceExtraID].uEventID == 0;
Ritor1
parents:
diff changeset
1858 }
Ritor1
parents:
diff changeset
1859 if ( v48 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1860 continue;
1000
Ritor1
parents: 999
diff changeset
1861 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1862 pSpellInfo->uFlags &= ~0x40u;
1000
Ritor1
parents: 999
diff changeset
1863 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
1864 pSpellInfo->spell_target_pid = v44;
Ritor1
parents: 999
diff changeset
1865 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
Ritor1
parents: 999
diff changeset
1866 pGUIWindow_Settings->Release();
0
Ritor1
parents:
diff changeset
1867 pGUIWindow_Settings = 0;
Ritor1
parents:
diff changeset
1868 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1869 GameUI_Footer_TimeLeft = 0;
0
Ritor1
parents:
diff changeset
1870 unk_50C9A0 = 0;
Ritor1
parents:
diff changeset
1871 back_to_game();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1872 continue;
1000
Ritor1
parents: 999
diff changeset
1873 case UIMSG_CastSpell_Character_Big_Improvement://Preservation and blessing, treatment paralysis, hand hammers(individual upgrade)
Ritor1
parents: 999
diff changeset
1874 case UIMSG_CastSpell_Character_Small_Improvement://Fate, cure
Ritor1
parents: 999
diff changeset
1875 case UIMSG_HiredNPC_CastSpell:
0
Ritor1
parents:
diff changeset
1876 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
1877 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
1878 if ( unk_50C9A0 )
Ritor1
parents:
diff changeset
1879 {
910
Ritor1
parents: 907
diff changeset
1880 uActiveCharacter = uMessageParam;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1881 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
1882 }
Ritor1
parents:
diff changeset
1883 else
Ritor1
parents:
diff changeset
1884 {
Ritor1
parents:
diff changeset
1885 if ( pGUIWindow_Settings )
Ritor1
parents:
diff changeset
1886 {
1000
Ritor1
parents: 999
diff changeset
1887 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
0
Ritor1
parents:
diff changeset
1888 switch ( uMessage )
Ritor1
parents:
diff changeset
1889 {
1000
Ritor1
parents: 999
diff changeset
1890 case UIMSG_CastSpell_Character_Big_Improvement:
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1891 pSpellInfo->uFlags &= ~0x02u;
0
Ritor1
parents:
diff changeset
1892 break;
1000
Ritor1
parents: 999
diff changeset
1893 case UIMSG_CastSpell_Character_Small_Improvement:
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1894 pSpellInfo->uFlags &= ~0x0100u;
0
Ritor1
parents:
diff changeset
1895 break;
1000
Ritor1
parents: 999
diff changeset
1896 case UIMSG_HiredNPC_CastSpell:
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
1897 pSpellInfo->uFlags &= ~0x0200u;
0
Ritor1
parents:
diff changeset
1898 break;
Ritor1
parents:
diff changeset
1899 }
1000
Ritor1
parents: 999
diff changeset
1900 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
1901 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
0
Ritor1
parents:
diff changeset
1902 pGUIWindow_Settings->Release();
Ritor1
parents:
diff changeset
1903 pGUIWindow_Settings = 0;
Ritor1
parents:
diff changeset
1904 pEventTimer->Resume();
Ritor1
parents:
diff changeset
1905 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
1906 GameUI_Footer_TimeLeft = 0;
0
Ritor1
parents:
diff changeset
1907 unk_50C9A0 = 0;
Ritor1
parents:
diff changeset
1908 }
Ritor1
parents:
diff changeset
1909 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1910 continue;
0
Ritor1
parents:
diff changeset
1911 case UIMSG_BF:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1912 __debugbreak();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1913 dword_50CDC8 = 1;
0
Ritor1
parents:
diff changeset
1914 sub_42FBDD();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1915 SaveGame(1, 0);
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1916 strcpy(pCurrentMapName, pMapStats->pInfos[uHouse_ExitPic].pFilename);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1917 dword_6BE364_game_settings_1 |= 1;
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1918 uGameState = GAME_STATE_2;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1919 //v53 = p2DEvents_minus1_::30[26 * (unsigned int)ptr_507BC0->ptr_1C];
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 328
diff changeset
1920 v53 = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1]._quest_related;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1921 if ( v53 < 0 )
0
Ritor1
parents:
diff changeset
1922 {
Ritor1
parents:
diff changeset
1923 v54 = abs(v53) - 1;
Ritor1
parents:
diff changeset
1924 _5B65B8_npcdata_hiword_house_or_other = 0;
Ritor1
parents:
diff changeset
1925 dword_5B65BC = 0;
Ritor1
parents:
diff changeset
1926 v55 = dword_4E4560[v54];
Ritor1
parents:
diff changeset
1927 _5B65AC_npcdata_fame_or_other = dword_4E4578[v54];
Ritor1
parents:
diff changeset
1928 v56 = dword_4E4590[v54];
Ritor1
parents:
diff changeset
1929 v57 = dword_4E45A8[v54];
Ritor1
parents:
diff changeset
1930 _5B65A8_npcdata_uflags_or_other = v55;
Ritor1
parents:
diff changeset
1931 _5B65B4_npcdata_loword_house_or_other = v57;
Ritor1
parents:
diff changeset
1932 _5B65B0_npcdata_rep_or_other = v56;
Ritor1
parents:
diff changeset
1933 dword_5B65C0 = v55 | _5B65AC_npcdata_fame_or_other | v56 | v57;
Ritor1
parents:
diff changeset
1934 }
Ritor1
parents:
diff changeset
1935 sub_4BD8B5();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1936 //goto LABEL_434;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
1937 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1938 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1939 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1940 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1941 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1942 ++pMessageQueue_50CBD0->uNumMessages;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
1943 }*/
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1944 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 1, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1945 continue;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1946
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1947 case UIMSG_OnCastTownPortal:
0
Ritor1
parents:
diff changeset
1948 pAudioPlayer->StopChannels(-1, -1);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
1949 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Book, WINDOW_TownPortal, (char *)uMessageParam);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1950 continue;
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1951
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1952 case UIMSG_OnCastLloydsBeacon:
0
Ritor1
parents:
diff changeset
1953 pAudioPlayer->StopChannels(-1, -1);
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1954 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_Book, WINDOW_LloydsBeacon, 0);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1955 continue;
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
1956
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1957 case UIMSG_LloydsBeacon_FlippingBtn:
0
Ritor1
parents:
diff changeset
1958 bRecallingBeacon = uMessageParam;
Ritor1
parents:
diff changeset
1959 v127 = uMessageParam + 204;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
1960 pAudioPlayer->PlaySound((SoundID)v127, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
1961 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1962 case UIMSG_HintBeaconSlot:
0
Ritor1
parents:
diff changeset
1963 if ( !pGUIWindow_CurrentMenu )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1964 continue;
0
Ritor1
parents:
diff changeset
1965 pPlayer = pPlayers[_506348_current_lloyd_playerid + 1];
Ritor1
parents:
diff changeset
1966 uNumSeconds = (unsigned int)&pPlayer->pInstalledBeacons[uMessageParam];
Ritor1
parents:
diff changeset
1967 if ( bRecallingBeacon )
Ritor1
parents:
diff changeset
1968 {
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1969 if ( !*((int *)&pSavegameThumbnails[10 * uMessageParam].pPixels ) )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
1970 continue;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1971 v173 = pMapStats->pInfos[sub_410D99_get_map_index(pPlayer->pInstalledBeacons[uMessageParam].SaveFileID)].pName;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1972 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[474], v173);// "Recall to %s"
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1973 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
1974 continue;
0
Ritor1
parents:
diff changeset
1975 }
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
1976 pMapNum = pMapStats->GetMapInfo(pCurrentMapName);
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1977 pMapName = "Not in Map Stats";
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1978 if ( pMapNum )
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1979 pMapName = pMapStats->pInfos[pMapNum].pName;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1980 if ( !*((int *)&pSavegameThumbnails[10 * uMessageParam].pPixels ) || !pMapNum )
0
Ritor1
parents:
diff changeset
1981 {
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1982 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[476], pMapName);// "Set to %s"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1983 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
1984 continue;
0
Ritor1
parents:
diff changeset
1985 }
Ritor1
parents:
diff changeset
1986 v174 = pMapStats->pInfos[sub_410D99_get_map_index(*(short *)(uNumSeconds + 26))].pName;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
1987 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[475], (unsigned int)pMapName, v174);// "Set %s over %s"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1988 GameUI_SetFooterString(pTmpBuf.data());
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1989 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1990 case UIMSG_CloseAfterInstallBeacon:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
1991 dword_50CDC8 = 1;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
1992 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0);
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
1993 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages >= 40 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1994 continue;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
1995 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1996 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1997 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
1998 ++pMessageQueue_50CBD0->uNumMessages;*/
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
1999 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2000 case UIMSG_InstallBeacon:
0
Ritor1
parents:
diff changeset
2001 pPlayer9 = pPlayers[_506348_current_lloyd_playerid + 1];
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2002 if ( !pPlayer9->pInstalledBeacons[uMessageParam].uBeaconTime && bRecallingBeacon )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2003 continue;
0
Ritor1
parents:
diff changeset
2004 byte_506360 = 1;
Ritor1
parents:
diff changeset
2005 pPlayer9->CanCastSpell(uRequiredMana);
Ritor1
parents:
diff changeset
2006 if ( pParty->bTurnBasedModeOn )
Ritor1
parents:
diff changeset
2007 {
Ritor1
parents:
diff changeset
2008 v60 = sRecoveryTime;
Ritor1
parents:
diff changeset
2009 pParty->pTurnBasedPlayerRecoveryTimes[_506348_current_lloyd_playerid] = sRecoveryTime;
Ritor1
parents:
diff changeset
2010 pPlayer9->SetRecoveryTime(v60);
1448
5a5d0c713d47 some turn engine renaming
Gloval
parents: 1361
diff changeset
2011 pTurnEngine->ApplyPlayerAction();
0
Ritor1
parents:
diff changeset
2012 }
Ritor1
parents:
diff changeset
2013 else
Ritor1
parents:
diff changeset
2014 {
Ritor1
parents:
diff changeset
2015 pPlayer9->SetRecoveryTime((signed __int64)(flt_6BE3A4_debug_recmod1 * (double)sRecoveryTime * 2.133333333333333));
Ritor1
parents:
diff changeset
2016 }
Ritor1
parents:
diff changeset
2017 pAudioPlayer->PlaySound((SoundID)word_4EE088_sound_ids[dword_506338], 0, 0, -1, 0, dword_50633C, 0, 0);
Ritor1
parents:
diff changeset
2018 if ( bRecallingBeacon )
Ritor1
parents:
diff changeset
2019 {
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2020 if ( _stricmp(pCurrentMapName, (const char *)&pGames_LOD->pSubIndices[pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID]) )
0
Ritor1
parents:
diff changeset
2021 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2022 SaveGame(1, 0);
0
Ritor1
parents:
diff changeset
2023 OnMapLeave();
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2024 strcpy(pCurrentMapName, (const char *)&pGames_LOD->pSubIndices[pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID]);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2025 dword_6BE364_game_settings_1 |= 1;
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2026 uGameState = GAME_STATE_2;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2027 _5B65A8_npcdata_uflags_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2028 _5B65AC_npcdata_fame_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2029 _5B65B0_npcdata_rep_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2030 _5B65B4_npcdata_loword_house_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2031 _5B65B8_npcdata_hiword_house_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2032 dword_5B65C0 = 1;
0
Ritor1
parents:
diff changeset
2033 }
Ritor1
parents:
diff changeset
2034 else
Ritor1
parents:
diff changeset
2035 {
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2036 pParty->vPosition.x = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2037 pParty->vPosition.y = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2038 pParty->vPosition.z = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z;
0
Ritor1
parents:
diff changeset
2039 pParty->uFallStartY = pParty->vPosition.z;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2040 pParty->sRotationY = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2041 pParty->sRotationX = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y;
0
Ritor1
parents:
diff changeset
2042 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2043 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 1, 0);
0
Ritor1
parents:
diff changeset
2044 pBooksWindow->Release();
Ritor1
parents:
diff changeset
2045 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
2046 pBooksWindow = 0;
Ritor1
parents:
diff changeset
2047 pGUIWindow_CurrentMenu = 0;
Ritor1
parents:
diff changeset
2048 }
Ritor1
parents:
diff changeset
2049 else
Ritor1
parents:
diff changeset
2050 {
Ritor1
parents:
diff changeset
2051 sprintf(a1, "data\\lloyd%d%d.pcx", _506348_current_lloyd_playerid + 1, uMessageParam + 1);
Ritor1
parents:
diff changeset
2052 SaveScreenshot(a1);
Ritor1
parents:
diff changeset
2053 LoadThumbnailLloydTexture(uMessageParam, _506348_current_lloyd_playerid + 1);
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2054 pPlayer9->pInstalledBeacons[uMessageParam].uBeaconTime = pParty->uTimePlayed + (signed __int64)((double)(qword_506350 << 7) * 0.033333335);
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2055 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X = pParty->vPosition.x;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2056 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y = pParty->vPosition.y;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2057 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z = pParty->vPosition.z;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2058 pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X = LOWORD(pParty->sRotationY);
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2059 pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y = LOWORD(pParty->sRotationX);
837
bebc19f3d2af Save/load work with some problems
Gloval
parents: 821
diff changeset
2060 if ( (signed int)pGames_LOD->uNumSubDirs / 2 <= 0 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2061 continue;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2062 for ( thisg = 0; thisg < (signed int)pGames_LOD->uNumSubDirs / 2; ++thisg )
0
Ritor1
parents:
diff changeset
2063 {
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2064 if ( !_stricmp((const char *)pGames_LOD->pSubIndices[thisg].pFilename, pCurrentMapName) )
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
2065 pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID = thisg;
0
Ritor1
parents:
diff changeset
2066 }
Ritor1
parents:
diff changeset
2067 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2068 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2069 case UIMSG_ClickTownInTP:
0
Ritor1
parents:
diff changeset
2070 if ( uMessageParam )
Ritor1
parents:
diff changeset
2071 {
Ritor1
parents:
diff changeset
2072 switch ( uMessageParam )
Ritor1
parents:
diff changeset
2073 {
Ritor1
parents:
diff changeset
2074 case 1:
Ritor1
parents:
diff changeset
2075 v63 = 208;
Ritor1
parents:
diff changeset
2076 break;
Ritor1
parents:
diff changeset
2077 case 2:
Ritor1
parents:
diff changeset
2078 v63 = 207;
Ritor1
parents:
diff changeset
2079 break;
Ritor1
parents:
diff changeset
2080 case 3:
Ritor1
parents:
diff changeset
2081 v63 = 211;
Ritor1
parents:
diff changeset
2082 break;
Ritor1
parents:
diff changeset
2083 case 4:
Ritor1
parents:
diff changeset
2084 v63 = 209;
Ritor1
parents:
diff changeset
2085 break;
Ritor1
parents:
diff changeset
2086 default:
Ritor1
parents:
diff changeset
2087 if ( uMessageParam != 5 )
Ritor1
parents:
diff changeset
2088 {
Ritor1
parents:
diff changeset
2089 LABEL_486:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2090 SaveGame(1, 0);
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2091 v64 = pMapStats->GetMapInfo(pCurrentMapName);
0
Ritor1
parents:
diff changeset
2092 v65 = uMessageParam;
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2093 if ( v64 == TownPortalList[uMessageParam].uMapInfoID )
0
Ritor1
parents:
diff changeset
2094 {
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2095 pParty->vPosition.x = TownPortalList[v65].pos.x;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2096 pParty->vPosition.y = TownPortalList[v65].pos.y;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2097 pParty->vPosition.z = TownPortalList[v65].pos.z;
0
Ritor1
parents:
diff changeset
2098 pParty->uFallStartY = pParty->vPosition.z;
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2099 pParty->sRotationY = TownPortalList[v65].rot_y;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2100 pParty->sRotationX = TownPortalList[v65].rot_x;
0
Ritor1
parents:
diff changeset
2101 }
Ritor1
parents:
diff changeset
2102 else
Ritor1
parents:
diff changeset
2103 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2104 SaveGame(1, 0);
0
Ritor1
parents:
diff changeset
2105 OnMapLeave();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2106 dword_6BE364_game_settings_1 |= 1;
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2107 uGameState = GAME_STATE_2;
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2108 strcpy(pCurrentMapName, pMapStats->pInfos[TownPortalList[uMessageParam].uMapInfoID].pFilename);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2109 dword_5B65C0 = 1;
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2110 _5B65A8_npcdata_uflags_or_other = TownPortalList[uMessageParam].pos.x;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2111 _5B65AC_npcdata_fame_or_other = TownPortalList[uMessageParam].pos.y;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2112 _5B65B0_npcdata_rep_or_other = TownPortalList[uMessageParam].pos.z;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2113 v66 = TownPortalList[uMessageParam].rot_x;
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 838
diff changeset
2114 _5B65B4_npcdata_loword_house_or_other = TownPortalList[uMessageParam].rot_y;
0
Ritor1
parents:
diff changeset
2115 _5B65B8_npcdata_hiword_house_or_other = v66;
Ritor1
parents:
diff changeset
2116 InitializeActors();
Ritor1
parents:
diff changeset
2117 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2118 v67 = (char*)pGUIWindow_CurrentMenu->Hint;
0
Ritor1
parents:
diff changeset
2119 if ( v67 )
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2120 *((int *)v67 + 17) = 1;
0
Ritor1
parents:
diff changeset
2121 else
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
2122 pParty->pPlayers[(unsigned __int8)town_portal_caster_id].CanCastSpell(0x14u);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2123 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0
Ritor1
parents:
diff changeset
2124 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2125 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
0
Ritor1
parents:
diff changeset
2126 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v0;
Ritor1
parents:
diff changeset
2127 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
Ritor1
parents:
diff changeset
2128 ++pMessageQueue_50CBD0->uNumMessages;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2129 }*/
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2130 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 1, 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2131 continue;
0
Ritor1
parents:
diff changeset
2132 }
Ritor1
parents:
diff changeset
2133 v63 = 210;
Ritor1
parents:
diff changeset
2134 break;
Ritor1
parents:
diff changeset
2135 }
Ritor1
parents:
diff changeset
2136 }
Ritor1
parents:
diff changeset
2137 else
Ritor1
parents:
diff changeset
2138 {
Ritor1
parents:
diff changeset
2139 v63 = 206;
Ritor1
parents:
diff changeset
2140 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 467
diff changeset
2141 if ( !(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, v63) )
0
Ritor1
parents:
diff changeset
2142 return;
Ritor1
parents:
diff changeset
2143 goto LABEL_486;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2144 case UIMSG_HintTownPortal:
0
Ritor1
parents:
diff changeset
2145 if ( uMessageParam )
Ritor1
parents:
diff changeset
2146 {
Ritor1
parents:
diff changeset
2147 switch ( uMessageParam )
Ritor1
parents:
diff changeset
2148 {
Ritor1
parents:
diff changeset
2149 case 1:
Ritor1
parents:
diff changeset
2150 v68 = 208;
Ritor1
parents:
diff changeset
2151 break;
Ritor1
parents:
diff changeset
2152 case 2:
Ritor1
parents:
diff changeset
2153 v68 = 207;
Ritor1
parents:
diff changeset
2154 break;
Ritor1
parents:
diff changeset
2155 case 3:
Ritor1
parents:
diff changeset
2156 v68 = 211;
Ritor1
parents:
diff changeset
2157 break;
Ritor1
parents:
diff changeset
2158 case 4:
Ritor1
parents:
diff changeset
2159 v68 = 209;
Ritor1
parents:
diff changeset
2160 break;
Ritor1
parents:
diff changeset
2161 default:
Ritor1
parents:
diff changeset
2162 if ( uMessageParam != 5 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2163 //goto LABEL_506;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2164 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2165 if ( uMessageParam )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2166 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2167 switch ( uMessageParam )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2168 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2169 case 1:
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2170 v69 = pMapStats->pInfos[4].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2171 break;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2172 case 2:
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2173 v69 = pMapStats->pInfos[3].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2174 break;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2175 case 3:
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2176 v69 = pMapStats->pInfos[10].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2177 break;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2178 case 4:
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2179 v69 = pMapStats->pInfos[7].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2180 break;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2181 default:
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2182 if ( uMessageParam != 5 )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2183 {
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1407
diff changeset
2184 __debugbreak(); // warning C4700: uninitialized local variable 'v200' used
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2185 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v200);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2186 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2187 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2188 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2189 v69 = pMapStats->pInfos[8].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2190 break;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2191 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2192 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2193 else
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2194 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2195 v69 = pMapStats->pInfos[21].pName;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2196 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2197 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v69);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2198 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2199 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2200 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2201 v68 = 210;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2202 break;
0
Ritor1
parents:
diff changeset
2203 }
Ritor1
parents:
diff changeset
2204 }
Ritor1
parents:
diff changeset
2205 else
Ritor1
parents:
diff changeset
2206 {
Ritor1
parents:
diff changeset
2207 v68 = 206;
Ritor1
parents:
diff changeset
2208 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 467
diff changeset
2209 if ( !(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, v68) )
0
Ritor1
parents:
diff changeset
2210 {
Ritor1
parents:
diff changeset
2211 pRenderer->DrawTextureRGB(0, 0x160u, pTexture_StatusBar);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2212 continue;
0
Ritor1
parents:
diff changeset
2213 }
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2214 //LABEL_506:
0
Ritor1
parents:
diff changeset
2215 if ( uMessageParam )
Ritor1
parents:
diff changeset
2216 {
Ritor1
parents:
diff changeset
2217 switch ( uMessageParam )
Ritor1
parents:
diff changeset
2218 {
Ritor1
parents:
diff changeset
2219 case 1:
Ritor1
parents:
diff changeset
2220 v69 = pMapStats->pInfos[4].pName;
Ritor1
parents:
diff changeset
2221 break;
Ritor1
parents:
diff changeset
2222 case 2:
Ritor1
parents:
diff changeset
2223 v69 = pMapStats->pInfos[3].pName;
Ritor1
parents:
diff changeset
2224 break;
Ritor1
parents:
diff changeset
2225 case 3:
Ritor1
parents:
diff changeset
2226 v69 = pMapStats->pInfos[10].pName;
Ritor1
parents:
diff changeset
2227 break;
Ritor1
parents:
diff changeset
2228 case 4:
Ritor1
parents:
diff changeset
2229 v69 = pMapStats->pInfos[7].pName;
Ritor1
parents:
diff changeset
2230 break;
Ritor1
parents:
diff changeset
2231 default:
Ritor1
parents:
diff changeset
2232 if ( uMessageParam != 5 )
Ritor1
parents:
diff changeset
2233 //goto LABEL_519;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2234 {
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2235 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v200);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2236 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2237 continue;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2238 }
0
Ritor1
parents:
diff changeset
2239 v69 = pMapStats->pInfos[8].pName;
Ritor1
parents:
diff changeset
2240 break;
Ritor1
parents:
diff changeset
2241 }
Ritor1
parents:
diff changeset
2242 }
Ritor1
parents:
diff changeset
2243 else
Ritor1
parents:
diff changeset
2244 {
Ritor1
parents:
diff changeset
2245 v69 = pMapStats->pInfos[21].pName;
Ritor1
parents:
diff changeset
2246 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2247 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v69);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2248 GameUI_SetFooterString(pTmpBuf.data());
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2249 continue;
0
Ritor1
parents:
diff changeset
2250 case UIMSG_ShowFinalWindow:
1412
182d58b2a34c Harmondale falling under terrain fixed
Nomad
parents: 1409
diff changeset
2251 sprintfex(pFinalMessage.data(), "%s\n \n%s\n \n%s", pGlobalTXT_LocalizationStrings[151],// "Congratulations Adventurer."
0
Ritor1
parents:
diff changeset
2252 pGlobalTXT_LocalizationStrings[118],// "We hope that you've enjoyed playing Might and Magic VII as much as we did making it. We have saved this screen as MM7_WIN.PCX in your MM7 directory. You can print it out as proof of your accomplishment."
Ritor1
parents:
diff changeset
2253 pGlobalTXT_LocalizationStrings[167]);// "- The Might and Magic VII Development Team."
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2254 ModalWindow(pFinalMessage.data(), UIMSG_OnFinalWindowClose);
0
Ritor1
parents:
diff changeset
2255 uGameState = GAME_STATE_FINAL_WINDOW;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2256 continue;
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2257 case UIMSG_OnFinalWindowClose:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
2258 __debugbreak();
982
08fd1436ef35 enums & lod
Nomad
parents: 980
diff changeset
2259 uGameState = GAME_STATE_PLAYING;
0
Ritor1
parents:
diff changeset
2260 strcpy((char *)pKeyActionMap->pPressedKeysBuffer, "2");
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2261 __debugbreak(); // missed break/continue?
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2262 case UIMSG_DD:
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2263 __debugbreak();
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2264 sprintf(pTmpBuf.data(), "%s", pKeyActionMap->pPressedKeysBuffer);
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
2265 memcpy(&v216, txt_file_frametable_parser((const char *)pKeyActionMap->pPressedKeysBuffer, &v218), sizeof(v216));
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 697
diff changeset
2266 if ( v216.uPropCount == 1 )
0
Ritor1
parents:
diff changeset
2267 {
837
bebc19f3d2af Save/load work with some problems
Gloval
parents: 821
diff changeset
2268 pNPCData4 = (NPCData *)((signed int)pGames_LOD->uNumSubDirs / 2);
0
Ritor1
parents:
diff changeset
2269 v70 = atoi(v216.pProperties[0]);
Ritor1
parents:
diff changeset
2270 if ( v70 <= 0 || v70 >= 77 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2271 continue;
0
Ritor1
parents:
diff changeset
2272 v71 = v70;
Ritor1
parents:
diff changeset
2273 strcpy(Str2, pMapStats->pInfos[v70].pFilename);
Ritor1
parents:
diff changeset
2274 pNPCData3 = 0;
Ritor1
parents:
diff changeset
2275 if ( (signed int)pNPCData4 > 0 )
Ritor1
parents:
diff changeset
2276 {
Ritor1
parents:
diff changeset
2277 thish = 0;
Ritor1
parents:
diff changeset
2278 do
Ritor1
parents:
diff changeset
2279 {
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1101
diff changeset
2280 if ( !_stricmp((const char *)&pGames_LOD->pSubIndices[thish], Str2) )
0
Ritor1
parents:
diff changeset
2281 break;
Ritor1
parents:
diff changeset
2282 ++thish;
Ritor1
parents:
diff changeset
2283 pNPCData3 = (NPCData *)((char *)pNPCData3 + 1);
Ritor1
parents:
diff changeset
2284 }
Ritor1
parents:
diff changeset
2285 while ( (signed int)pNPCData3 < (signed int)pNPCData4 );
Ritor1
parents:
diff changeset
2286 if ( (signed int)pNPCData3 < (signed int)pNPCData4 )
Ritor1
parents:
diff changeset
2287 {
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2288 strcpy(pCurrentMapName, (const char *)&pGames_LOD->pSubIndices[(int)pNPCData3]);
0
Ritor1
parents:
diff changeset
2289 dword_6BE364_game_settings_1 |= 1u;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2290 uGameState = GAME_STATE_2;
0
Ritor1
parents:
diff changeset
2291 OnMapLeave();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2292 continue;
0
Ritor1
parents:
diff changeset
2293 }
Ritor1
parents:
diff changeset
2294 }
Ritor1
parents:
diff changeset
2295 sprintf(Str2, "No map found for %s", pMapStats->pInfos[v71].pName);
Ritor1
parents:
diff changeset
2296 v73 = Str2;
Ritor1
parents:
diff changeset
2297 }
Ritor1
parents:
diff changeset
2298 else
Ritor1
parents:
diff changeset
2299 {
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 697
diff changeset
2300 if ( v216.uPropCount != 3 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2301 continue;
0
Ritor1
parents:
diff changeset
2302 v74 = atoi(v216.pProperties[0]);
Ritor1
parents:
diff changeset
2303 thisi = atoi(v216.pProperties[1]);
Ritor1
parents:
diff changeset
2304 v75 = atoi(v216.pProperties[2]);
Ritor1
parents:
diff changeset
2305 v76 = v75;
Ritor1
parents:
diff changeset
2306 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor)
Ritor1
parents:
diff changeset
2307 {
Ritor1
parents:
diff changeset
2308 if ( pIndoor->GetSector(v74, thisi, v75) )
Ritor1
parents:
diff changeset
2309 {
Ritor1
parents:
diff changeset
2310 v77 = thisi;
Ritor1
parents:
diff changeset
2311 pParty->vPosition.x = v74;
Ritor1
parents:
diff changeset
2312 pParty->vPosition.y = v77;
Ritor1
parents:
diff changeset
2313 pParty->vPosition.z = v76;
Ritor1
parents:
diff changeset
2314 pParty->uFallStartY = v76;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2315 continue;
0
Ritor1
parents:
diff changeset
2316 }
Ritor1
parents:
diff changeset
2317 }
Ritor1
parents:
diff changeset
2318 else
Ritor1
parents:
diff changeset
2319 {
Ritor1
parents:
diff changeset
2320 if ( v74 > -32768 )
Ritor1
parents:
diff changeset
2321 {
Ritor1
parents:
diff changeset
2322 if ( v74 < 32768 )
Ritor1
parents:
diff changeset
2323 {
Ritor1
parents:
diff changeset
2324 v77 = thisi;
Ritor1
parents:
diff changeset
2325 if ( thisi > -32768 )
Ritor1
parents:
diff changeset
2326 {
Ritor1
parents:
diff changeset
2327 if ( thisi < 32768 && v76 >= 0 && v76 < 10000 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2328 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2329 pParty->vPosition.x = v74;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2330 pParty->vPosition.y = v77;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2331 pParty->vPosition.z = v76;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2332 pParty->uFallStartY = v76;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2333 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2334 }
0
Ritor1
parents:
diff changeset
2335 }
Ritor1
parents:
diff changeset
2336 }
Ritor1
parents:
diff changeset
2337 }
Ritor1
parents:
diff changeset
2338 }
Ritor1
parents:
diff changeset
2339 pAudioPlayer->PlaySound(SOUND_27, 0, 0, -1, 0, 0, 0, 0);
Ritor1
parents:
diff changeset
2340 v73 = "Can't jump to that location!";
Ritor1
parents:
diff changeset
2341 }
Ritor1
parents:
diff changeset
2342 ShowStatusBarString(v73, 6u);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2343 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2344 case UIMSG_CastQuickSpell:
0
Ritor1
parents:
diff changeset
2345 if ( bUnderwater == 1 )
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2346 {
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2347 ShowStatusBarString(pGlobalTXT_LocalizationStrings[652], 2);// "You can not do that while you are underwater!"
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2348 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2349 continue;
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2350 }
0
Ritor1
parents:
diff changeset
2351 if ( !uActiveCharacter || (pPlayer2 = pPlayers[uActiveCharacter], pPlayer2->uTimeToRecovery) )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2352 continue;
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2353 _42777D_CastSpell_UseWand_ShootArrow(pPlayer2->uQuickSpell, uActiveCharacter - 1, 0, 0, uActiveCharacter);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2354 continue;
1000
Ritor1
parents: 999
diff changeset
2355 case UIMSG_CastSpell_Monster_Improvement:
Ritor1
parents: 999
diff changeset
2356 case UIMSG_CastSpell_Shoot_Monster://FireBlow, Lightning, Ice Lightning, Swarm,
0
Ritor1
parents:
diff changeset
2357 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
2358 {
Ritor1
parents:
diff changeset
2359 v81 = pGame->pVisInstance->get_picked_object_zbuf_val();
Ritor1
parents:
diff changeset
2360 }
Ritor1
parents:
diff changeset
2361 else
Ritor1
parents:
diff changeset
2362 {
Ritor1
parents:
diff changeset
2363 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v206);
Ritor1
parents:
diff changeset
2364 pPoint2 = pMouse->GetCursorPos(&v201);
Ritor1
parents:
diff changeset
2365 v81 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint2->y]];
Ritor1
parents:
diff changeset
2366 }
Ritor1
parents:
diff changeset
2367 v83 = v81;
Ritor1
parents:
diff changeset
2368 v44 = (unsigned __int16)v81;
Ritor1
parents:
diff changeset
2369 v84 = v83 >> 16;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
2370 if ( PID_TYPE(v44) != 3 || v84 >= 5120 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2371 continue;
1000
Ritor1
parents: 999
diff changeset
2372 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C;
Ritor1
parents: 999
diff changeset
2373 if ( uMessage == UIMSG_CastSpell_Shoot_Monster )
Ritor1
parents: 999
diff changeset
2374 {
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
2375 pSpellInfo->uFlags &= ~0x08;
0
Ritor1
parents:
diff changeset
2376 }
Ritor1
parents:
diff changeset
2377 else
Ritor1
parents:
diff changeset
2378 {
1000
Ritor1
parents: 999
diff changeset
2379 if ( uMessage == UIMSG_CastSpell_Monster_Improvement )
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
2380 pSpellInfo->uFlags &= ~0x0100u;
0
Ritor1
parents:
diff changeset
2381 else
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1517
diff changeset
2382 pSpellInfo->uFlags &= ~0x0200u;
1000
Ritor1
parents: 999
diff changeset
2383 }
Ritor1
parents: 999
diff changeset
2384 pSpellInfo->uPlayerID_2 = uMessageParam;
Ritor1
parents: 999
diff changeset
2385 pSpellInfo->spell_target_pid = v44;
Ritor1
parents: 999
diff changeset
2386 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300);
Ritor1
parents: 999
diff changeset
2387 pGUIWindow_Settings->Release();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2388 pGUIWindow_Settings = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2389 pMouse->SetCursorBitmap("MICON1");
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 766
diff changeset
2390 GameUI_Footer_TimeLeft = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2391 unk_50C9A0 = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2392 back_to_game();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2393 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2394 case UIMSG_1C:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
2395 __debugbreak();
0
Ritor1
parents:
diff changeset
2396 if ( !uActiveCharacter || pCurrentScreen )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2397 continue;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
2398 ptr_507BC8 = GUIWindow::Create(0, 0, 640, 480, WINDOW_68, uMessageParam, 0);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2399 pCurrentScreen = SCREEN_19;
0
Ritor1
parents:
diff changeset
2400 pEventTimer->Pause();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2401 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2402 case UIMSG_1B:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
2403 __debugbreak();
0
Ritor1
parents:
diff changeset
2404 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2405 continue;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2406 if ( pParty->bTurnBasedModeOn != 1 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2407 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2408 if ( pActors[uMessageParam].uAIState == 5 )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2409 stru_50C198.LootActor(&pActors[uMessageParam]);
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2410 else
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2411 Actor::StealFrom(uMessageParam);
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2412 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2413 }
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2414 if ( pTurnEngine->turn_stage == 1 || pTurnEngine->turn_stage == 3 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2415 continue;
1450
8ff3c675a726 more renaming TE
Gloval
parents: 1449
diff changeset
2416 if ( !(pTurnEngine->field_18 & TE_HAVE_PENDING_ACTIONS) )
0
Ritor1
parents:
diff changeset
2417 {
Ritor1
parents:
diff changeset
2418 if ( pActors[uMessageParam].uAIState == 5 )
Ritor1
parents:
diff changeset
2419 stru_50C198.LootActor(&pActors[uMessageParam]);
Ritor1
parents:
diff changeset
2420 else
Ritor1
parents:
diff changeset
2421 Actor::StealFrom(uMessageParam);
Ritor1
parents:
diff changeset
2422 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2423 continue;
271
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 264
diff changeset
2424
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 264
diff changeset
2425 case UIMSG_Attack:
0
Ritor1
parents:
diff changeset
2426 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2427 continue;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2428 if ( pParty->bTurnBasedModeOn != 1 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2429 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2430 _42ECB5_PlayerAttacksActor();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2431 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2432 }
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2433 if ( pTurnEngine->turn_stage == 1 || pTurnEngine->turn_stage == 3 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2434 continue;
1450
8ff3c675a726 more renaming TE
Gloval
parents: 1449
diff changeset
2435 if ( !(pTurnEngine->field_18 & TE_HAVE_PENDING_ACTIONS) )
0
Ritor1
parents:
diff changeset
2436 _42ECB5_PlayerAttacksActor();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2437 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2438 case UIMSG_ExitRest:
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2439 GUIWindow::Create(pButton_RestUI_Exit->uX, pButton_RestUI_Exit->uY, 0, 0, WINDOW_CloseRestWindowBtn, (int)pButton_RestUI_Exit, pGlobalTXT_LocalizationStrings[81]);// "Exit Rest"
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2440 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2441 case UIMSG_Wait5Minutes:
0
Ritor1
parents:
diff changeset
2442 if ( dword_506F14 == 2 )
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2443 {
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2444 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!"
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2445 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2446 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2447 }
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2448 GUIWindow::Create(pButton_RestUI_Wait5Minutes->uX, pButton_RestUI_Wait5Minutes->uY, 0, 0, WINDOW_PressedButton2,
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2449 (int)pButton_RestUI_Wait5Minutes, pGlobalTXT_LocalizationStrings[238]);// "Wait 5 Minutes"
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2450 dword_506F14 = 1;
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2451 _506F18_num_minutes_to_sleep = 5;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2452 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2453 case UIMSG_Wait1Hour:
0
Ritor1
parents:
diff changeset
2454 if ( dword_506F14 == 2 )
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2455 {
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2456 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!"
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2457 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2458 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2459 }
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2460 GUIWindow::Create(pButton_RestUI_Wait1Hour->uX, pButton_RestUI_Wait1Hour->uY, 0, 0, WINDOW_PressedButton2,
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2461 (int)pButton_RestUI_Wait1Hour, pGlobalTXT_LocalizationStrings[239]);// "Wait 1 Hour"
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2462 dword_506F14 = 1;
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2463 _506F18_num_minutes_to_sleep = 60;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2464 continue;
907
f3ccfc765502 RentRoom
Ritor1
parents: 899
diff changeset
2465 case UIMSG_RentRoom:
0
Ritor1
parents:
diff changeset
2466 dword_506F14 = 2;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
2467 RestUI_Load();
758
9f7db515a8d7 Training Hall & levelling up fixed
Nomad
parents: 735
diff changeset
2468 v86 = 60 * (_494820_training_time(pParty->uCurrentHour) + 1) - pParty->uCurrentMinute;
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2469 _506F18_num_minutes_to_sleep = v86;
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2470 if ( uMessageParam == 111 || uMessageParam == 114 || uMessageParam == 116 ) // 107 = Emerald Isle tavern
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2471 _506F18_num_minutes_to_sleep = v86 + 12 * 60;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2472 dword_506F14 = 2;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2473 pParty->RestAndHeal();
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
2474 pParty->days_played_without_rest = 0;
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2475 pParty->pPlayers[3].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2476 pParty->pPlayers[2].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2477 pParty->pPlayers[1].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2478 pParty->pPlayers[0].SetAsleep(1);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2479 continue;
907
f3ccfc765502 RentRoom
Ritor1
parents: 899
diff changeset
2480 case UIMSG_RestWindow:
0
Ritor1
parents:
diff changeset
2481 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
2482 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
2483 if ( pCurrentScreen )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2484 continue;
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2485 if ( _42F4DA_check_actor_proximity() )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2486 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2487 if ( pParty->bTurnBasedModeOn == 1 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2488 {
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2489 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!"
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2490 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2491 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2492 v88 = pGlobalTXT_LocalizationStrings[480];// "There are hostile enemies near!"
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2493 if ( pParty->uFlags & 0x88 )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2494 v88 = pGlobalTXT_LocalizationStrings[479];// "You can't rest here!"
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2495 ShowStatusBarString(v88, 2);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2496 if ( !uActiveCharacter )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2497 continue;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2498 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)13, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2499 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2500 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2501 if ( pParty->bTurnBasedModeOn == 1 )
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2502 {
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2503 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!"
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2504 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2505 }
0
Ritor1
parents:
diff changeset
2506 if ( !(pParty->uFlags & 0x88) )
Ritor1
parents:
diff changeset
2507 {
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
2508 RestUI_Load();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2509 continue;
0
Ritor1
parents:
diff changeset
2510 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2511 if ( pParty->bTurnBasedModeOn == 1 )
0
Ritor1
parents:
diff changeset
2512 {
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2513 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!"
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2514 continue;
0
Ritor1
parents:
diff changeset
2515 }
Ritor1
parents:
diff changeset
2516 v88 = pGlobalTXT_LocalizationStrings[480];// "There are hostile enemies near!"
Ritor1
parents:
diff changeset
2517 if ( pParty->uFlags & 0x88 )
Ritor1
parents:
diff changeset
2518 v88 = pGlobalTXT_LocalizationStrings[479];// "You can't rest here!"
Ritor1
parents:
diff changeset
2519 ShowStatusBarString(v88, 2u);
Ritor1
parents:
diff changeset
2520 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2521 continue;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2522 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)13, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2523 continue;
907
f3ccfc765502 RentRoom
Ritor1
parents: 899
diff changeset
2524 case UIMSG_Rest8Hour:
0
Ritor1
parents:
diff changeset
2525 if ( dword_506F14 )
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2526 {
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2527 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!"
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2528 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2529 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2530 }
0
Ritor1
parents:
diff changeset
2531 if ( pParty->uNumFoodRations < uRestUI_FoodRequiredToRest )
Ritor1
parents:
diff changeset
2532 {
Ritor1
parents:
diff changeset
2533 ShowStatusBarString(pGlobalTXT_LocalizationStrings[482], 2u);// "You don't have enough food to rest"
Ritor1
parents:
diff changeset
2534 if ( uActiveCharacter && pPlayers[uActiveCharacter]->CanAct() )
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2535 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_108, 0);
0
Ritor1
parents:
diff changeset
2536 }
Ritor1
parents:
diff changeset
2537 else
Ritor1
parents:
diff changeset
2538 {
Ritor1
parents:
diff changeset
2539 pParty->pPlayers[3].pConditions[2] = pParty->uTimePlayed;
Ritor1
parents:
diff changeset
2540 pParty->pPlayers[2].pConditions[2] = pParty->uTimePlayed;
Ritor1
parents:
diff changeset
2541 pParty->pPlayers[1].pConditions[2] = pParty->uTimePlayed;
Ritor1
parents:
diff changeset
2542 pParty->pPlayers[0].pConditions[2] = pParty->uTimePlayed;
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1473
diff changeset
2543 v90 = pMapStats->GetMapInfo(pCurrentMapName);
0
Ritor1
parents:
diff changeset
2544 if ( !v90 )
Ritor1
parents:
diff changeset
2545 v90 = rand() % (signed int)pMapStats->uNumMaps + 1;
Ritor1
parents:
diff changeset
2546 pMapInfo = &pMapStats->pInfos[v90];
237
2799737f8a74 more text parsers refactor
Gloval
parents: 234
diff changeset
2547 if ( rand() % 100 + 1 <= pMapInfo->Encounter_percent )
0
Ritor1
parents:
diff changeset
2548 {
Ritor1
parents:
diff changeset
2549 v91 = rand() % 100;
237
2799737f8a74 more text parsers refactor
Gloval
parents: 234
diff changeset
2550 v92 = pMapInfo->EncM1percent;
0
Ritor1
parents:
diff changeset
2551 v93 = v91 + 1;
Ritor1
parents:
diff changeset
2552 if ( v93 > v92 )
237
2799737f8a74 more text parsers refactor
Gloval
parents: 234
diff changeset
2553 pNPCData4 = (NPCData *)((v93 > v92 + pMapInfo->EncM2percent) + 2);
0
Ritor1
parents:
diff changeset
2554 else
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2555 pNPCData4 = (NPCData *)1;
1415
ff495bf260d9 LevelDecoration::GetGlobalEvent
Nomad
parents: 1412
diff changeset
2556 if ( !_45063B_spawn_some_monster(pMapInfo, (int)pNPCData4) )
0
Ritor1
parents:
diff changeset
2557 pNPCData4 = 0;
Ritor1
parents:
diff changeset
2558 if ( pNPCData4 )
Ritor1
parents:
diff changeset
2559 {
Ritor1
parents:
diff changeset
2560 pPlayerNum = rand() % 4;
Ritor1
parents:
diff changeset
2561 LODWORD(pParty->pPlayers[pPlayerNum].pConditions[2]) = 0;
Ritor1
parents:
diff changeset
2562 HIDWORD(pParty->pPlayers[pPlayerNum].pConditions[2]) = 0;
Ritor1
parents:
diff changeset
2563 v95 = rand();
Ritor1
parents:
diff changeset
2564 Rest(v95 % 6 + 60);
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2565 _506F18_num_minutes_to_sleep = 0;
0
Ritor1
parents:
diff changeset
2566 dword_506F14 = 0;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2567 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0
Ritor1
parents:
diff changeset
2568 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2569 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
0
Ritor1
parents:
diff changeset
2570 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
Ritor1
parents:
diff changeset
2571 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
Ritor1
parents:
diff changeset
2572 ++pMessageQueue_50CBD0->uNumMessages;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2573 }*/
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2574 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0);
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2575 ShowStatusBarString(pGlobalTXT_LocalizationStrings[481], 2);// "Encounter!"
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2576 pAudioPlayer->PlaySound((SoundID)227, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2577 continue;
0
Ritor1
parents:
diff changeset
2578 }
Ritor1
parents:
diff changeset
2579 }
Ritor1
parents:
diff changeset
2580 Party::TakeFood(uRestUI_FoodRequiredToRest);
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2581 _506F18_num_minutes_to_sleep = 480;
0
Ritor1
parents:
diff changeset
2582 dword_506F14 = 2;
Ritor1
parents:
diff changeset
2583 pParty->RestAndHeal();
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
2584 pParty->days_played_without_rest = 0;
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2585 pParty->pPlayers[3].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2586 pParty->pPlayers[2].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2587 pParty->pPlayers[1].SetAsleep(1);
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents: 1358
diff changeset
2588 pParty->pPlayers[0].SetAsleep(1);
0
Ritor1
parents:
diff changeset
2589 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2590 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2591 case UIMSG_AlreadyResting:
0
Ritor1
parents:
diff changeset
2592 if ( dword_506F14 == 2 )
Ritor1
parents:
diff changeset
2593 {
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2594 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!"
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2595 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2596 continue;
0
Ritor1
parents:
diff changeset
2597 }
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2598 GUIWindow::Create(pButton_RestUI_WaitUntilDawn->uX, pButton_RestUI_WaitUntilDawn->uY, 0, 0, WINDOW_PressedButton2,
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2599 (int)pButton_RestUI_WaitUntilDawn, pGlobalTXT_LocalizationStrings[237]);// "Wait until Dawn"
758
9f7db515a8d7 Training Hall & levelling up fixed
Nomad
parents: 735
diff changeset
2600 v97 = _494820_training_time(pParty->uCurrentHour);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2601 dword_506F14 = 1;
1396
e6908823897f Research on #62
Nomad
parents: 1393
diff changeset
2602 _506F18_num_minutes_to_sleep = 60 * v97 - pParty->uCurrentMinute;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2603 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2604 case UIMSG_HintSelectRemoveQuickSpellBtn:
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2605 if ( quick_spell_at_page && byte_506550 )
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2606 {
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2607 v173 = pSpellStats->pInfos[quick_spell_at_page + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage].pName;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2608 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[483], v173);
0
Ritor1
parents:
diff changeset
2609 }
Ritor1
parents:
diff changeset
2610 else
Ritor1
parents:
diff changeset
2611 {
Ritor1
parents:
diff changeset
2612 if ( pPlayers[uActiveCharacter]->uQuickSpell )
Ritor1
parents:
diff changeset
2613 v177 = pGlobalTXT_LocalizationStrings[584];// "Click here to remove your Quick Spell"
Ritor1
parents:
diff changeset
2614 else
Ritor1
parents:
diff changeset
2615 v177 = pGlobalTXT_LocalizationStrings[484];// "Select a spell then click here to set a QuickSpell"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2616 strcpy(pTmpBuf.data(), v177);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2617 }
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2618 GameUI_SetFooterString(pTmpBuf.data());
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2619 continue;
370
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2620 case UIMSG_SPellbook_ShowHightlightedSpellInfo:
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2621 if ( !uActiveCharacter || (uNumSeconds = (unsigned int)pPlayers[uActiveCharacter],
0
Ritor1
parents:
diff changeset
2622 !*(char *)(uNumSeconds + 11 * *(char *)(uNumSeconds + 6734) + uMessageParam + 402)) )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2623 continue;
0
Ritor1
parents:
diff changeset
2624 if ( sub_4637E0_is_there_popup_onscreen() )
Ritor1
parents:
diff changeset
2625 dword_507B00_spell_info_to_draw_in_popup = uMessageParam + 1;
Ritor1
parents:
diff changeset
2626 v98 = *(char *)(uNumSeconds + 6734);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2627 if ( quick_spell_at_page - 1 == uMessageParam )
0
Ritor1
parents:
diff changeset
2628 {
Ritor1
parents:
diff changeset
2629 v178 = pSpellStats->pInfos[uMessageParam + 11 * v98 + 1].pName;
Ritor1
parents:
diff changeset
2630 v161 = pGlobalTXT_LocalizationStrings[485];
Ritor1
parents:
diff changeset
2631 }
Ritor1
parents:
diff changeset
2632 else
Ritor1
parents:
diff changeset
2633 {
Ritor1
parents:
diff changeset
2634 v178 = pSpellStats->pInfos[uMessageParam + 11 * v98 + 1].pName;
Ritor1
parents:
diff changeset
2635 v161 = pGlobalTXT_LocalizationStrings[486];
Ritor1
parents:
diff changeset
2636 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2637 sprintfex(pTmpBuf.data(), v161, v178);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2638 GameUI_SetFooterString(pTmpBuf.data());
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2639 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2640 case UIMSG_ClickInstallRemoveQuickSpellBtn:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2641 GUIWindow::Create(pBtn_InstallRemoveSpell->uX, pBtn_InstallRemoveSpell->uY, 0, 0, WINDOW_PressedButton2, (int)pBtn_InstallRemoveSpell, 0);
0
Ritor1
parents:
diff changeset
2642 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2643 continue;
0
Ritor1
parents:
diff changeset
2644 pPlayer10 = pPlayers[uActiveCharacter];
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2645 if ( !byte_506550 || !quick_spell_at_page )
0
Ritor1
parents:
diff changeset
2646 {
Ritor1
parents:
diff changeset
2647 pPlayer10->uQuickSpell = 0;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2648 quick_spell_at_page = 0;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2649 pAudioPlayer->PlaySound((SoundID)203, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2650 continue;
0
Ritor1
parents:
diff changeset
2651 }
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2652 v99 = quick_spell_at_page + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage;
0
Ritor1
parents:
diff changeset
2653 pPlayers[uActiveCharacter]->uQuickSpell = v99;
1397
eb02a65e5c82 Quick Spell fixed.
Nomad
parents: 1396
diff changeset
2654 stru_AA1058[uActiveCharacter - 1]._494836(v99, uActiveCharacter);
0
Ritor1
parents:
diff changeset
2655 if ( uActiveCharacter )
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
2656 pPlayer10->PlaySound(SPEECH_12, 0);
0
Ritor1
parents:
diff changeset
2657 byte_506550 = 0;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2658 continue;
1118
ca415f6bac1c UIMSG_SpellBook_PressTab
zipi
parents: 1110
diff changeset
2659 case UIMSG_SpellBook_PressTab:
ca415f6bac1c UIMSG_SpellBook_PressTab
zipi
parents: 1110
diff changeset
2660 //__debugbreak();
0
Ritor1
parents:
diff changeset
2661 if ( !uActiveCharacter )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2662 continue;
0
Ritor1
parents:
diff changeset
2663 pPlayer3 = pPlayers[uActiveCharacter];
Ritor1
parents:
diff changeset
2664 pNPCData4 = 0;
Ritor1
parents:
diff changeset
2665 uAction = 0;
Ritor1
parents:
diff changeset
2666 v101 = 0;
Ritor1
parents:
diff changeset
2667 thisl = (int)&pPlayer3->pActiveSkills[12];
Ritor1
parents:
diff changeset
2668 do
Ritor1
parents:
diff changeset
2669 {
Ritor1
parents:
diff changeset
2670 if ( *(short *)thisl )
Ritor1
parents:
diff changeset
2671 {
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 191
diff changeset
2672 if ( pPlayer3->lastOpenedSpellbookPage == v101 )
0
Ritor1
parents:
diff changeset
2673 uAction = (int)pNPCData4;
Ritor1
parents:
diff changeset
2674 v102 = (int)pNPCData4;
Ritor1
parents:
diff changeset
2675 pNPCData4 = (NPCData *)((char *)pNPCData4 + 1);
Ritor1
parents:
diff changeset
2676 v217[v102] = v101;
Ritor1
parents:
diff changeset
2677 }
Ritor1
parents:
diff changeset
2678 thisl += 2;
Ritor1
parents:
diff changeset
2679 ++v101;
Ritor1
parents:
diff changeset
2680 }
Ritor1
parents:
diff changeset
2681 while ( v101 < 9 );
Ritor1
parents:
diff changeset
2682 if ( !pNPCData4 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2683 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2684 v127 = rand() % 2 + 204;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2685 pAudioPlayer->PlaySound((SoundID)v127, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2686 continue;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2687 }
0
Ritor1
parents:
diff changeset
2688 if ( GetAsyncKeyState(16) )
Ritor1
parents:
diff changeset
2689 {
Ritor1
parents:
diff changeset
2690 --uAction;
Ritor1
parents:
diff changeset
2691 if ( uAction < 0 )
Ritor1
parents:
diff changeset
2692 uAction = (int)((char *)pNPCData4 - 1);
Ritor1
parents:
diff changeset
2693 }
Ritor1
parents:
diff changeset
2694 else
Ritor1
parents:
diff changeset
2695 {
Ritor1
parents:
diff changeset
2696 ++uAction;
Ritor1
parents:
diff changeset
2697 if ( uAction >= (signed int)pNPCData4 )
Ritor1
parents:
diff changeset
2698 uAction = 0;
Ritor1
parents:
diff changeset
2699 }
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1397
diff changeset
2700 OnCloseSpellBookPage();
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 191
diff changeset
2701 pPlayers[uActiveCharacter]->lastOpenedSpellbookPage = LOBYTE(v217[uAction]);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2702 pGUIWindow_CurrentMenu->OpenSpellBook();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2703 v127 = rand() % 2 + 204;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2704 pAudioPlayer->PlaySound((SoundID)v127, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2705 continue;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 828
diff changeset
2706 case UIMSG_OpenSpellbookPage:
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2707 if ( pTurnEngine->turn_stage == 3 || !uActiveCharacter || uMessageParam == pPlayers[uActiveCharacter]->lastOpenedSpellbookPage )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2708 continue;
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1397
diff changeset
2709 OnCloseSpellBookPage();
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 191
diff changeset
2710 pPlayers[uActiveCharacter]->lastOpenedSpellbookPage = uMessageParam;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2711 pGUIWindow_CurrentMenu->OpenSpellBook();
0
Ritor1
parents:
diff changeset
2712 v127 = rand() % 2 + 204;
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2713 pAudioPlayer->PlaySound((SoundID)v127, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2714 continue;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2715 case UIMSG_SelectSpell:
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2716 {
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2717 if (pTurnEngine->turn_stage == 3)
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2718 continue;
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2719 if (!uActiveCharacter)
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2720 continue;
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2721
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2722 // uNumSeconds = (unsigned int)pPlayers[uActiveCharacter];
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2723 auto player = pPlayers[uActiveCharacter];
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2724 if (player->spellbook.pChapters[player->lastOpenedSpellbookPage].bIsSpellAvailable[uMessageParam])
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2725 //if ( *(char *)(uNumSeconds + 11 * *(char *)(uNumSeconds + &lastOpenedSpellbookPage) + uMessageParam + 402) )
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2726 {
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2727 if ( quick_spell_at_page - 1 == uMessageParam )
0
Ritor1
parents:
diff changeset
2728 {
Ritor1
parents:
diff changeset
2729 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
2730 pEventTimer->Resume();
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2731 viewparams->bRedrawGameUI = 1;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2732 pCurrentScreen = SCREEN_GAME;
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
2733 pIcons_LOD->RemoveTexturesPackFromTextureList();
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2734 v103 = quick_spell_at_page + 11 * player->lastOpenedSpellbookPage;
1000
Ritor1
parents: 999
diff changeset
2735 /*if ( dword_50C9E8 < 40 )
0
Ritor1
parents:
diff changeset
2736 {
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2737 dword_50C9EC[3 * dword_50C9E8] = UIMSG_CastSpellFromBook;
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2738 dword_50C9EC[3 * dword_50C9E8 + 1] = v103;
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2739 dword_50C9EC[3 * dword_50C9E8 + 2] = uActiveCharacter - 1;
0
Ritor1
parents:
diff changeset
2740 ++dword_50C9E8;
1000
Ritor1
parents: 999
diff changeset
2741 }*/
1012
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
2742 pMessageQueue_50C9E8->AddMessage(UIMSG_CastSpellFromBook, v103, uActiveCharacter - 1);
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
2743 // pMessageQueue_50CBD0->AddMessage(UIMSG_CastSpellFromBook, v103, uActiveCharacter - 1);
0
Ritor1
parents:
diff changeset
2744 }
Ritor1
parents:
diff changeset
2745 else
Ritor1
parents:
diff changeset
2746 {
Ritor1
parents:
diff changeset
2747 byte_506550 = 1;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
2748 quick_spell_at_page = uMessageParam + 1;
0
Ritor1
parents:
diff changeset
2749 }
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2750 }
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2751 }
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2752 continue;
370
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2753
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2754 case UIMSG_CastSpellFromBook:
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2755 if ( pTurnEngine->turn_stage != 3 )
370
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2756 _42777D_CastSpell_UseWand_ShootArrow(uMessageParam, v199, 0, 0, 0);
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2757 continue;
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 365
diff changeset
2758
1019
32ec62bbaa2c player use item part cleanup
Gloval
parents: 1014
diff changeset
2759 case UIMSG_SpellScrollUse:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
2760 __debugbreak();
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2761 if ( pTurnEngine->turn_stage != 3 )
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2762 _42777D_CastSpell_UseWand_ShootArrow(uMessageParam, v199, 133, 1, 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2763 continue;
907
f3ccfc765502 RentRoom
Ritor1
parents: 899
diff changeset
2764 case UIMSG_SpellBookWindow:
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1339
diff changeset
2765 if ( pTurnEngine->turn_stage == 3 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2766 continue;
0
Ritor1
parents:
diff changeset
2767 if ( bUnderwater == 1 )
Ritor1
parents:
diff changeset
2768 {
362
38bfbee60146 Menu options
Ritor1
parents: 359
diff changeset
2769 ShowStatusBarString(pGlobalTXT_LocalizationStrings[652], 2);// "You can not do that while you are underwater!"
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2770 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0);
0
Ritor1
parents:
diff changeset
2771 }
Ritor1
parents:
diff changeset
2772 else
Ritor1
parents:
diff changeset
2773 {
Ritor1
parents:
diff changeset
2774 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
2775 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
2776 if ( uActiveCharacter && !pPlayers[uActiveCharacter]->uTimeToRecovery )
Ritor1
parents:
diff changeset
2777 {
Ritor1
parents:
diff changeset
2778 if ( !pCurrentScreen )
Ritor1
parents:
diff changeset
2779 {
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2780 GUIWindow::Create(0x1DCu, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_CastSpell, 0);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2781 pCurrentScreen = SCREEN_SPELL_BOOK;
0
Ritor1
parents:
diff changeset
2782 pEventTimer->Pause();
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
2783 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_SpellBook, 0, 0);
0
Ritor1
parents:
diff changeset
2784 pAudioPlayer->PlaySound((SoundID)48, 0, 0, -1, 0, 0, 0, 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2785 viewparams->field_48 = 1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2786 continue;
0
Ritor1
parents:
diff changeset
2787 }
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2788 if ( pCurrentScreen != SCREEN_REST
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2789 && pCurrentScreen != SCREEN_CHARACTERS
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2790 && (pCurrentScreen <= SCREEN_63
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2791 || pCurrentScreen > SCREEN_67) )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2792 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2793 pGUIWindow_CurrentMenu->Release();
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2794 GUIWindow::Create(0x1DCu, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_CastSpell, 0);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2795 pCurrentScreen = SCREEN_SPELL_BOOK;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2796 pEventTimer->Pause();
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
2797 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_SpellBook, 0, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2798 pAudioPlayer->PlaySound((SoundID)48, 0, 0, -1, 0, 0, 0, 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2799 viewparams->field_48 = 1;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2800 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2801 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2802 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2803 }
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2804 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2805 case UIMSG_QuickReference:
0
Ritor1
parents:
diff changeset
2806 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
2807 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
2808 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
2809 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
2810 ++pIcons_LOD->uTexturePacksCount;
Ritor1
parents:
diff changeset
2811 if ( !pIcons_LOD->uNumPrevLoadedFiles )
Ritor1
parents:
diff changeset
2812 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2813 GUIWindow::Create(0x230u, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_QuickReference, 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2814 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
2815 pEventTimer->Pause();
Ritor1
parents:
diff changeset
2816 pAudioPlayer->StopChannels(-1, -1);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2817 pCurrentScreen = SCREEN_QUICK_REFERENCE;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
2818 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_QuickReference, 5, 0);
0
Ritor1
parents:
diff changeset
2819 papredoll_dbrds[2] = pIcons_LOD->LoadTexture("BUTTEXI1", TEXTURE_16BIT_PALETTE);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2820 pBtn_ExitCancel = pGUIWindow_CurrentMenu->CreateButton(0x187u, 0x13Cu, 0x4Bu, 0x21u, 1, 0, UIMSG_Escape, 0, 0,
0
Ritor1
parents:
diff changeset
2821 pGlobalTXT_LocalizationStrings[79],// "Exit"
973
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
2822 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0); //, v179);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2823 continue;
358
4a236657a0be GameMenuButton fix
Ritor1
parents: 339
diff changeset
2824 case UIMSG_GameMenuButton:
0
Ritor1
parents:
diff changeset
2825 if ( pCurrentScreen )
Ritor1
parents:
diff changeset
2826 {
Ritor1
parents:
diff changeset
2827 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
2828 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
2829 pCurrentScreen = SCREEN_GAME;
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2830 viewparams->bRedrawGameUI = 1;
0
Ritor1
parents:
diff changeset
2831 }
Ritor1
parents:
diff changeset
2832 stru_506E40.Release();
Ritor1
parents:
diff changeset
2833 uNumSeconds = (unsigned int)MakeScreenshot(155, 117);
Ritor1
parents:
diff changeset
2834 pRenderer->SavePCXImage("gamma.pcx", (char *)uNumSeconds, 155, 117);
Ritor1
parents:
diff changeset
2835 free((void *)uNumSeconds);
Ritor1
parents:
diff changeset
2836 stru_506E40._40E55E("gamma.pcx", 0);
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2837 GUIWindow::Create(0x25Au, 0x1C2u, 0, 0, WINDOW_PressedButton, (int)pBtn_GameSettings, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2838 //LABEL_453:
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2839 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages >= 40 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2840 continue;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2841 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2842 //goto LABEL_770;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2843 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2844 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2845 ++pMessageQueue_50CBD0->uNumMessages;*/
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
2846 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2847 continue;
1101
3e5d70cfe20e Award order fix, changed UIMSG_C0 to UIMSG_ClickAwardScrollBar
Grumpy7
parents: 1091
diff changeset
2848 case UIMSG_ClickAwardScrollBar:
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
2849 books_page_number = 1;
0
Ritor1
parents:
diff changeset
2850 if ( pMouse->GetCursorPos(&v211)->y > 178 )
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
2851 books_page_number = -1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2852 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2853 case UIMSG_ClickAwardsUpBtn:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2854 GUIWindow::Create(pBtn_Up->uX, pBtn_Up->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pBtn_Up, 0);
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2855 BtnUp_flag = 1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2856 continue;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
2857 case UIMSG_ClickAwardsDownBtn:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2858 GUIWindow::Create(pBtn_Down->uX, pBtn_Down->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pBtn_Down, 0);
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2859 BtnDown_flag = 1;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2860 continue;
910
Ritor1
parents: 907
diff changeset
2861 case UIMSG_ChangeDetaliz:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2862 bRingsShownInCharScreen ^= 1;
910
Ritor1
parents: 907
diff changeset
2863 pCharacterScreen_DetalizBtn->Release();
697
2dfb67633b01 GUIButton Release
zipi
parents: 693
diff changeset
2864 pCharacterScreen_DollBtn->Release();
0
Ritor1
parents:
diff changeset
2865 if ( bRingsShownInCharScreen )
Ritor1
parents:
diff changeset
2866 {
973
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
2867 v128 = pIcons_LOD->GetTexture(uTextureID_detaliz_close_button)->uTextureHeight;
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
2868 v125 = pIcons_LOD->GetTexture(uTextureID_detaliz_close_button)->uTextureWidth;
0
Ritor1
parents:
diff changeset
2869 v123 = 445;
Ritor1
parents:
diff changeset
2870 v121 = 470;
Ritor1
parents:
diff changeset
2871 }
Ritor1
parents:
diff changeset
2872 else
Ritor1
parents:
diff changeset
2873 {
Ritor1
parents:
diff changeset
2874 v128 = 30;
Ritor1
parents:
diff changeset
2875 v125 = 30;
Ritor1
parents:
diff changeset
2876 v123 = 300;
Ritor1
parents:
diff changeset
2877 v121 = 600;
Ritor1
parents:
diff changeset
2878 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2879 pCharacterScreen_DetalizBtn = pGUIWindow_CurrentMenu->CreateButton(v121, v123, v125, v128, 1, 0, UIMSG_ChangeDetaliz, 0, 0,
0
Ritor1
parents:
diff changeset
2880 pGlobalTXT_LocalizationStrings[64],// "Detail Toggle"
Ritor1
parents:
diff changeset
2881 0);
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
2882 pCharacterScreen_DollBtn = pGUIWindow_CurrentMenu->CreateButton(0x1DCu, 0, 0xA4u, 0x159u, 1, 0, UIMSG_ClickPaperdoll, 0, 0, "", 0);
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
2883 viewparams->bRedrawGameUI = 1;
910
Ritor1
parents: 907
diff changeset
2884 continue;
Ritor1
parents: 907
diff changeset
2885 case UIMSG_ClickPaperdoll:
0
Ritor1
parents:
diff changeset
2886 OnPaperdollLeftClick();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2887 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2888 case UIMSG_ClickStatsBtn:
0
Ritor1
parents:
diff changeset
2889 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 100;
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
2890 CharacterUI_ReleaseButtons();
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2891 ReleaseAwardsScrollBar();
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2892 GUIWindow::Create(pCharacterScreen_StatsBtn->uX, pCharacterScreen_StatsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_StatsBtn, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2893 continue;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2894 case UIMSG_ClickSkillsBtn:
0
Ritor1
parents:
diff changeset
2895 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 101;
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
2896 CharacterUI_ReleaseButtons();
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2897 ReleaseAwardsScrollBar();
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
2898 CharacterUI_SkillsTab_CreateButtons();
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2899 GUIWindow::Create(pCharacterScreen_SkillsBtn->uX, pCharacterScreen_SkillsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_SkillsBtn, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2900 continue;
0
Ritor1
parents:
diff changeset
2901 case UIMSG_SkillUp:
Ritor1
parents:
diff changeset
2902 pPlayer4 = pPlayers[uActiveCharacter];
Ritor1
parents:
diff changeset
2903 v105 = (int)&pPlayer4->pActiveSkills[uMessageParam];
Ritor1
parents:
diff changeset
2904 LOWORD(v2) = *(short *)v105;
Ritor1
parents:
diff changeset
2905 uNumSeconds = v2;
Ritor1
parents:
diff changeset
2906 if ( pPlayer4->uSkillPoints < (v2 & 0x3F) + 1 )
Ritor1
parents:
diff changeset
2907 {
Ritor1
parents:
diff changeset
2908 v87 = pGlobalTXT_LocalizationStrings[488];// "You don't have enough skill points!"
Ritor1
parents:
diff changeset
2909 }
Ritor1
parents:
diff changeset
2910 else
Ritor1
parents:
diff changeset
2911 {
Ritor1
parents:
diff changeset
2912 if ( (uNumSeconds & 0x3F) < 0x3C )
Ritor1
parents:
diff changeset
2913 {
Ritor1
parents:
diff changeset
2914 *(short *)v105 = uNumSeconds + 1;
Ritor1
parents:
diff changeset
2915 pPlayer4->uSkillPoints -= pPlayer4->pActiveSkills[uMessageParam] & 0x3F;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
2916 pPlayer4->PlaySound(SPEECH_14, 0);
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2917 pAudioPlayer->PlaySound((SoundID)20001, 0, 0, -1, 0, 0, 0, 0);
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2918 continue;
0
Ritor1
parents:
diff changeset
2919 }
Ritor1
parents:
diff changeset
2920 v87 = pGlobalTXT_LocalizationStrings[487];// "You have already mastered this skill!"
Ritor1
parents:
diff changeset
2921 }
916
897b10712a1a UIShop_Buy_Identify_Repair little clean and rename
Ritor1
parents: 910
diff changeset
2922 ShowStatusBarString(v87, 2);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2923 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2924 case UIMSG_ClickInventoryBtn:
0
Ritor1
parents:
diff changeset
2925 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103;
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2926 ReleaseAwardsScrollBar();
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
2927 CharacterUI_ReleaseButtons();
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2928 GUIWindow::Create(pCharacterScreen_InventoryBtn->uX, pCharacterScreen_InventoryBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_InventoryBtn, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2929 continue;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2930 case UIMSG_ClickExitCharacterWindowBtn:
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2931 GUIWindow::Create(pCharacterScreen_ExitBtn->uX, pCharacterScreen_ExitBtn->uY, 0, 0, WINDOW_ExitCharacterWindow, (int)pCharacterScreen_ExitBtn, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2932 continue;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
2933 case UIMSG_ClickAwardsBtn:
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
2934 ReleaseAwardsScrollBar();
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 984
diff changeset
2935 CharacterUI_ReleaseButtons();
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1450
diff changeset
2936 CreateAwardsScrollBar();
0
Ritor1
parents:
diff changeset
2937 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 102;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
2938 GUIWindow::Create(pCharacterScreen_AwardsBtn->uX, pCharacterScreen_AwardsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_AwardsBtn, 0);
521
663c4f618f56 Awards tab corrrection
Gloval
parents: 515
diff changeset
2939 FillAwardsData();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2940 continue;
1000
Ritor1
parents: 999
diff changeset
2941 case UIMSG_ClickBooksBtn:
0
Ritor1
parents:
diff changeset
2942 switch ( uMessageParam )
Ritor1
parents:
diff changeset
2943 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2944 case 11://Page UP
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2945 BtnUp_flag = 1;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2946 pButton = pBtn_Book_2;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2947 break;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2948 case 10://Page DOWN
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2949 BtnDown_flag = 1;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2950 pButton = pBtn_Book_1;
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2951 break;
1000
Ritor1
parents: 999
diff changeset
2952 case 0://Zoom plus
0
Ritor1
parents:
diff changeset
2953 pButton = pBtn_Book_1;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2954 BtnDown_flag = 1;
0
Ritor1
parents:
diff changeset
2955 break;
1000
Ritor1
parents: 999
diff changeset
2956 case 1://Zoom minus
Ritor1
parents: 999
diff changeset
2957 pButton = pBtn_Book_2;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2958 BtnUp_flag = 1;
0
Ritor1
parents:
diff changeset
2959 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2960 case 2://Potions
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2961 Book_PageBtn3_flag = 1;
0
Ritor1
parents:
diff changeset
2962 if ( dword_506364 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2963 continue;
0
Ritor1
parents:
diff changeset
2964 pButton = pBtn_Book_3;
Ritor1
parents:
diff changeset
2965 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2966 case 3://fountains
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2967 Book_PageBtn4_flag = 1;
0
Ritor1
parents:
diff changeset
2968 if ( dword_506364 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2969 continue;
0
Ritor1
parents:
diff changeset
2970 pButton = pBtn_Book_4;
Ritor1
parents:
diff changeset
2971 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2972 case 4://obelisks
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2973 Book_PageBtn5_flag = 1;//Autonotes_Obelisks_page_flag
0
Ritor1
parents:
diff changeset
2974 if ( dword_506364 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2975 continue;
0
Ritor1
parents:
diff changeset
2976 pButton = pBtn_Book_5;
Ritor1
parents:
diff changeset
2977 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2978 case 5://seer
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2979 Book_PageBtn6_flag = 1;//Autonotes_Seer_page_flag
0
Ritor1
parents:
diff changeset
2980 if ( dword_506364 )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
2981 continue;
0
Ritor1
parents:
diff changeset
2982 pButton = pBtn_Book_6;
Ritor1
parents:
diff changeset
2983 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2984 case 6://misc
0
Ritor1
parents:
diff changeset
2985 pButton = pBtn_Autonotes_Misc;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2986 Autonotes_Misc_page_flag = 1;
0
Ritor1
parents:
diff changeset
2987 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2988 case 7://Instructors
0
Ritor1
parents:
diff changeset
2989 pButton = pBtn_Autonotes_Instructors;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2990 Autonotes_Instructors_page_flag = 1;
0
Ritor1
parents:
diff changeset
2991 break;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2992 default:
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
2993 continue;
0
Ritor1
parents:
diff changeset
2994 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
2995 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
2996 continue;
0
Ritor1
parents:
diff changeset
2997 case UIMSG_SelectCharacter:
Ritor1
parents:
diff changeset
2998 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
2999 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
3000 GameUI_OnPlayerPortraitLeftClick(uMessageParam);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3001 continue;
0
Ritor1
parents:
diff changeset
3002 case UIMSG_ShowStatus_Funds:
Ritor1
parents:
diff changeset
3003 v174 = (char *)pParty->uNumGoldInBank;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
3004 //v158 = pParty->uNumGold + pParty->uNumGoldInBank;
71a2cf416478 LloydBeacons
Ritor1
parents: 1419
diff changeset
3005 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[489], pParty->uNumGold + pParty->uNumGoldInBank, v174);// "You have %d total gold, %d in the Bank"
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3006 GameUI_SetFooterString(pTmpBuf.data());
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3007 continue;
0
Ritor1
parents:
diff changeset
3008 case UIMSG_ShowStatus_DateTime:
Ritor1
parents:
diff changeset
3009 pNPCData4 = (NPCData *)pParty->uCurrentHour;
Ritor1
parents:
diff changeset
3010 if ( (signed int)pParty->uCurrentHour <= 12 )
Ritor1
parents:
diff changeset
3011 {
Ritor1
parents:
diff changeset
3012 if ( !pNPCData4 )
Ritor1
parents:
diff changeset
3013 pNPCData4 = (NPCData *)12;
Ritor1
parents:
diff changeset
3014 }
Ritor1
parents:
diff changeset
3015 else
Ritor1
parents:
diff changeset
3016 {
Ritor1
parents:
diff changeset
3017 pNPCData4 = (NPCData *)((char *)pNPCData4 - 12);
Ritor1
parents:
diff changeset
3018 }
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
3019 if ( pParty->uCurrentHour < 0xC || (uNumSeconds = 1, pParty->uCurrentHour >= 0x18) )
0
Ritor1
parents:
diff changeset
3020 uNumSeconds = 0;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3021 sprintf(pTmpBuf.data(), "%d:%02d%s %s %d %s %d", pNPCData4, pParty->uCurrentMinute, aAMPMNames[uNumSeconds], aDayNames[pParty->uDaysPlayed % 7],
0
Ritor1
parents:
diff changeset
3022 7 * pParty->uCurrentMonthWeek + pParty->uDaysPlayed % 7 + 1, aMonthNames[pParty->uCurrentMonth], pParty->uCurrentYear);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3023 GameUI_SetFooterString(pTmpBuf.data());
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3024 continue;
0
Ritor1
parents:
diff changeset
3025 case UIMSG_ShowStatus_Food:
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3026 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[501], pParty->uNumFoodRations); // "You have %lu food"
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3027 GameUI_SetFooterString(pTmpBuf.data());
306
e33f5a1cdc46 Food status
Nomad
parents: 305
diff changeset
3028 continue;
0
Ritor1
parents:
diff changeset
3029 case UIMSG_ShowStatus_Player:
Ritor1
parents:
diff changeset
3030 pPlayer5 = pPlayers[uMessageParam];
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3031 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], pPlayer5->pName, pClassNames[pPlayer5->classType]);// "%s the %s"
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3032 strcat(pTmpBuf.data(), ": ");
0
Ritor1
parents:
diff changeset
3033 v107 = pPlayer5->GetMajorConditionIdx();
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3034 strcat(pTmpBuf.data(), aCharacterConditionNames[v107]);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3035 GameUI_SetFooterString(pTmpBuf.data());
0
Ritor1
parents:
diff changeset
3036 v108 = 8 * uMessageParam - 8;
Ritor1
parents:
diff changeset
3037 LOBYTE(v108) = v108 | 4;
888
abf7b7d2c8f7 small fixes
zipi
parents: 884
diff changeset
3038 pMouse->uPointingObjectID = PID(OBJECT_Player,v108);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3039 continue;
0
Ritor1
parents:
diff changeset
3040 case UIMSG_ShowStatus_ManaHP:
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3041 sprintf(pTmpBuf.data(), "%d / %d %s %d / %d %s", pPlayers[uMessageParam]->sHealth, pPlayers[uMessageParam]->GetMaxHealth(),
1000
Ritor1
parents: 999
diff changeset
3042 pGlobalTXT_LocalizationStrings[108], pPlayers[uMessageParam]->sMana, pPlayers[uMessageParam]->GetMaxMana(),
Ritor1
parents: 999
diff changeset
3043 pGlobalTXT_LocalizationStrings[212]);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
3044 GameUI_SetFooterString(pTmpBuf.data());
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3045 continue;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3046 case UIMSG_CHEST_ClickItem:
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3047 if ( pCurrentScreen == SCREEN_CHEST_INVENTORY )
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3048 {
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3049 OnInventoryLeftClick();
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3050 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3051 }
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3052 OnChestLeftClick();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3053 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3054 case UIMSG_InventoryLeftClick:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3055 OnInventoryLeftClick();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3056 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3057 case UIMSG_MouseLeftClickInGame:
0
Ritor1
parents:
diff changeset
3058 if ( !pRenderer->pRenderD3D )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3059 {
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3060 if ( pMessageQueue_50CBD0->uNumMessages )
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3061 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3062 OnGameViewportClick();
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3063 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3064 }
0
Ritor1
parents:
diff changeset
3065 v115 = pMessageQueue_50CBD0->uNumMessages;
Ritor1
parents:
diff changeset
3066 if ( !pMessageQueue_50CBD0->uNumMessages )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3067 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3068 pMessageQueue_50CBD0->AddMessage(UIMSG_MouseLeftClickInScreen, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3069 /*if ( (signed int)v115 < 40 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3070 //goto LABEL_769;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3071 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3072 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3073 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3074 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3075 ++pMessageQueue_50CBD0->uNumMessages;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3076 continue;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3077 }*/
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3078 continue;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3079 }
0
Ritor1
parents:
diff changeset
3080 if ( pMessageQueue_50CBD0->pMessages[0].field_8 )
Ritor1
parents:
diff changeset
3081 {
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
3082 pMessageQueue_50CBD0->uNumMessages = 1;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3083 pMessageQueue_50CBD0->AddMessage(UIMSG_MouseLeftClickInScreen, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3084 /*v115 = v0;
0
Ritor1
parents:
diff changeset
3085 pMessageQueue_50CBD0->uNumMessages = v0;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3086 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen;
0
Ritor1
parents:
diff changeset
3087 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3088 //goto LABEL_771;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3089 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3090 ++pMessageQueue_50CBD0->uNumMessages;*/
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3091 continue;
0
Ritor1
parents:
diff changeset
3092 }
Ritor1
parents:
diff changeset
3093 v115 = 0;
Ritor1
parents:
diff changeset
3094 pMessageQueue_50CBD0->uNumMessages = 0;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3095 pMessageQueue_50CBD0->AddMessage(UIMSG_MouseLeftClickInScreen, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3096 /*if ( (signed int)v115 < 40 )
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3097 //goto LABEL_769;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3098 {
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3099 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen;
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3100 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3101 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3102 ++pMessageQueue_50CBD0->uNumMessages;
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3103 continue;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3104 }*/
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3105 continue;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3106 case UIMSG_MouseLeftClickInScreen://ñðàáàòûâàåò ïðè íàæàòèè íà ïðàâóþ êíîïêó ìûøè ïîñëå UIMSG_MouseLeftClickInGame
0
Ritor1
parents:
diff changeset
3107 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
3108 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
3109 OnGameViewportClick();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3110 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3111 case UIMSG_F:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3112 __debugbreak();
0
Ritor1
parents:
diff changeset
3113 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
3114 {
Ritor1
parents:
diff changeset
3115 LOWORD(v116) = pGame->pVisInstance->get_picked_object_zbuf_val();
Ritor1
parents:
diff changeset
3116 }
Ritor1
parents:
diff changeset
3117 else
Ritor1
parents:
diff changeset
3118 {
Ritor1
parents:
diff changeset
3119 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v209);
Ritor1
parents:
diff changeset
3120 pPoint3 = pMouse->GetCursorPos(&v204);
Ritor1
parents:
diff changeset
3121 v116 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint3->y]];
Ritor1
parents:
diff changeset
3122 }
Ritor1
parents:
diff changeset
3123 pButton2 = (GUIButton *)(unsigned __int16)v116;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3124 GUIWindow::Create(0, 0, 0, 0, WINDOW_F, (int)pButton2, 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 4
diff changeset
3125 continue;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3126 case UIMSG_54:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
3127 __debugbreak();
0
Ritor1
parents:
diff changeset
3128 pButton2 = (GUIButton *)uMessageParam;
990
087a9af8e0ec MessageParam
Ritor1
parents: 987
diff changeset
3129 GUIWindow::Create(0, 0, 0, 0, WINDOW_22, (int)pButton2, 0);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3130 continue;
201
30aa44013f7a On Items
Nomad
parents: 199
diff changeset
3131 case UIMSG_Game_Action:
0
Ritor1
parents:
diff changeset
3132 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
3133 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
3134 OnPressSpace();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3135 continue;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3136 case UIMSG_ClickZoomOutBtn:
0
Ritor1
parents:
diff changeset
3137 if ( pCurrentScreen )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3138 continue;
0
Ritor1
parents:
diff changeset
3139 pParty->uFlags |= 2u;
1000
Ritor1
parents: 999
diff changeset
3140 GUIWindow::Create(519, 136, 0, 0, WINDOW_PressedButton2, (int)pBtn_ZoomOut, 0);
0
Ritor1
parents:
diff changeset
3141 uNumSeconds = 131072;
Ritor1
parents:
diff changeset
3142 v118 = 2 * viewparams->uMinimapZoom;
Ritor1
parents:
diff changeset
3143 ++viewparams->field_28;
Ritor1
parents:
diff changeset
3144 viewparams->uMinimapZoom *= 2;
Ritor1
parents:
diff changeset
3145 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor)
Ritor1
parents:
diff changeset
3146 {
Ritor1
parents:
diff changeset
3147 if ( (signed int)v118 > 4096 )
Ritor1
parents:
diff changeset
3148 {
Ritor1
parents:
diff changeset
3149 viewparams->uMinimapZoom = 4096;
Ritor1
parents:
diff changeset
3150 viewparams->field_28 = 12;
Ritor1
parents:
diff changeset
3151 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3152 continue;
0
Ritor1
parents:
diff changeset
3153 }
Ritor1
parents:
diff changeset
3154 v119 = 2048;
Ritor1
parents:
diff changeset
3155 if ( (signed int)v118 <= 2048 )
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3156 {
1051
05c62d166182 004C1D2B cleaned
Nomad
parents: 1048
diff changeset
3157 _576E2C_current_minimap_zoom = v118;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3158 dword_576E28 = viewparams->field_28;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3159 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3160 }
0
Ritor1
parents:
diff changeset
3161 viewparams->field_28 = 11;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3162 viewparams->uMinimapZoom = v119;
1051
05c62d166182 004C1D2B cleaned
Nomad
parents: 1048
diff changeset
3163 _576E2C_current_minimap_zoom = v119;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3164 dword_576E28 = viewparams->field_28;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3165 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3166 case UIMSG_ClickZoomInBtn:
0
Ritor1
parents:
diff changeset
3167 if ( pCurrentScreen )
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3168 continue;
0
Ritor1
parents:
diff changeset
3169 pParty->uFlags |= 2u;
1000
Ritor1
parents: 999
diff changeset
3170 GUIWindow::Create(574, 136, 0, 0, WINDOW_PressedButton2, (int)pBtn_ZoomIn, 0);
0
Ritor1
parents:
diff changeset
3171 uNumSeconds = 32768;
Ritor1
parents:
diff changeset
3172 v118 = (unsigned __int64)((signed __int64)(signed int)viewparams->uMinimapZoom << 15) >> 16;
Ritor1
parents:
diff changeset
3173 --viewparams->field_28;
Ritor1
parents:
diff changeset
3174 viewparams->uMinimapZoom = (unsigned __int64)((signed __int64)(signed int)viewparams->uMinimapZoom << 15) >> 16;
Ritor1
parents:
diff changeset
3175 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor)
Ritor1
parents:
diff changeset
3176 {
Ritor1
parents:
diff changeset
3177 v119 = 512;
Ritor1
parents:
diff changeset
3178 if ( (signed int)v118 < 512 )
Ritor1
parents:
diff changeset
3179 {
Ritor1
parents:
diff changeset
3180 viewparams->field_28 = 9;
Ritor1
parents:
diff changeset
3181 v118 = v119;
Ritor1
parents:
diff changeset
3182 viewparams->uMinimapZoom = v119;
Ritor1
parents:
diff changeset
3183 }
1051
05c62d166182 004C1D2B cleaned
Nomad
parents: 1048
diff changeset
3184 _576E2C_current_minimap_zoom = v118;
0
Ritor1
parents:
diff changeset
3185 dword_576E28 = viewparams->field_28;
Ritor1
parents:
diff changeset
3186 }
Ritor1
parents:
diff changeset
3187 else
Ritor1
parents:
diff changeset
3188 {
Ritor1
parents:
diff changeset
3189 if ( (signed int)v118 < 256 )
Ritor1
parents:
diff changeset
3190 {
Ritor1
parents:
diff changeset
3191 viewparams->uMinimapZoom = 256;
Ritor1
parents:
diff changeset
3192 viewparams->field_28 = 8;
Ritor1
parents:
diff changeset
3193 }
Ritor1
parents:
diff changeset
3194 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3195 default:
8e33efd39355 15.01.13(work)
Ritor1
parents: 3
diff changeset
3196 continue;
0
Ritor1
parents:
diff changeset
3197 }
Ritor1
parents:
diff changeset
3198 }
Ritor1
parents:
diff changeset
3199 }
1012
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3200 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50C9E8->uNumMessages;//dword_50C9E8;
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3201 memcpy(pMessageQueue_50CBD0->pMessages, pMessageQueue_50C9E8->pMessages, sizeof(GUIMessage) * pMessageQueue_50C9E8->uNumMessages);
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3202 //memcpy(pMessageQueue_50CBD0->pMessages, dword_50C9EC, 12 * dword_50C9E8);
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3203 //dword_50C9E8 = 0;
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3204
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3205
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
3206 pMessageQueue_50C9E8->uNumMessages=0;
0
Ritor1
parents:
diff changeset
3207 if ( dword_50C9DC )
Ritor1
parents:
diff changeset
3208 {
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3209 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0
Ritor1
parents:
diff changeset
3210 {
Ritor1
parents:
diff changeset
3211 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = (UIMessageType)dword_50C9DC;
Ritor1
parents:
diff changeset
3212 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = (int)ptr_50C9E0;
Ritor1
parents:
diff changeset
3213 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
Ritor1
parents:
diff changeset
3214 ++pMessageQueue_50CBD0->uNumMessages;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3215 }*/
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3216 pMessageQueue_50CBD0->AddMessage((UIMessageType)dword_50C9DC, (int)ptr_50C9E0, 0);
0
Ritor1
parents:
diff changeset
3217 dword_50C9DC = 0;
Ritor1
parents:
diff changeset
3218 }
Ritor1
parents:
diff changeset
3219 else
Ritor1
parents:
diff changeset
3220 {
Ritor1
parents:
diff changeset
3221 if ( dword_50C9D0 > 0 )
Ritor1
parents:
diff changeset
3222 {
Ritor1
parents:
diff changeset
3223 dword_50C9D8 -= pEventTimer->uTimeElapsed;
Ritor1
parents:
diff changeset
3224 if ( dword_50C9D8 <= 0 )
Ritor1
parents:
diff changeset
3225 {
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3226 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0
Ritor1
parents:
diff changeset
3227 {
Ritor1
parents:
diff changeset
3228 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = (UIMessageType)dword_50C9D0;
Ritor1
parents:
diff changeset
3229 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = dword_50C9D4;
Ritor1
parents:
diff changeset
3230 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
Ritor1
parents:
diff changeset
3231 ++pMessageQueue_50CBD0->uNumMessages;
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3232 }*/
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3233 pMessageQueue_50CBD0->AddMessage((UIMessageType)dword_50C9D0, dword_50C9D4, 0);
0
Ritor1
parents:
diff changeset
3234 dword_50C9D0 = 0;
Ritor1
parents:
diff changeset
3235 dword_50C9D4 = 0;
Ritor1
parents:
diff changeset
3236 dword_50C9D8 = 0;
Ritor1
parents:
diff changeset
3237 }
Ritor1
parents:
diff changeset
3238 }
Ritor1
parents:
diff changeset
3239 }
1517
c3da3c2985b8 Clean CastSpellInfo. (1)
yoctozepto
parents: 1514
diff changeset
3240 CastSpellInfoHelpers::_427E01_cast_spell();
0
Ritor1
parents:
diff changeset
3241 }
Ritor1
parents:
diff changeset
3242
Ritor1
parents:
diff changeset
3243 //----- (004356FF) --------------------------------------------------------
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
3244 void back_to_game()
0
Ritor1
parents:
diff changeset
3245 {
Ritor1
parents:
diff changeset
3246 dword_507BF0_is_there_popup_onscreen = 0;
Ritor1
parents:
diff changeset
3247 dword_4E455C = 1;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
3248
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
3249 extern int no_rightlick_in_inventory;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
3250 no_rightlick_in_inventory = false;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
3251
0
Ritor1
parents:
diff changeset
3252 if ( pGUIWindow_ScrollWindow )
Ritor1
parents:
diff changeset
3253 free_book_subwindow();
Ritor1
parents:
diff changeset
3254 if ( !pCurrentScreen && !pGUIWindow_Settings )
Ritor1
parents:
diff changeset
3255 pEventTimer->Resume();
Ritor1
parents:
diff changeset
3256 viewparams->bRedrawGameUI = 1;
Ritor1
parents:
diff changeset
3257 }
782
c47efaf23642 more tidy
zipi
parents: 766
diff changeset
3258
0
Ritor1
parents:
diff changeset
3259 //----- (00435748) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
3260 void GUI_MainMenuMessageProc()
0
Ritor1
parents:
diff changeset
3261 {
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3262 Player *pPlayer; // ebx@2
0
Ritor1
parents:
diff changeset
3263 void *v3; // edi@21
Ritor1
parents:
diff changeset
3264 signed int v4; // eax@29
Ritor1
parents:
diff changeset
3265 int v5; // ecx@29
821
5e3f4bf3b8e6 * UpdateActorAI clean
zipi
parents: 819
diff changeset
3266 PLAYER_SKILL_TYPE v6; // edi@37
0
Ritor1
parents:
diff changeset
3267 GUIWindow *pWindow; // eax@56
Ritor1
parents:
diff changeset
3268 GUIButton *pButton; // eax@59
Ritor1
parents:
diff changeset
3269 int v15; // edi@70
Ritor1
parents:
diff changeset
3270 char v20; // dl@116
Ritor1
parents:
diff changeset
3271 unsigned int v21; // eax@116
Ritor1
parents:
diff changeset
3272 unsigned int v25; // eax@120
Ritor1
parents:
diff changeset
3273 unsigned int v26; // ecx@127
Ritor1
parents:
diff changeset
3274 SoundID pSoundID; // [sp-2Ch] [bp-3Ch]@36
Ritor1
parents:
diff changeset
3275 signed int v41; // [sp-10h] [bp-20h]@29
971
Ritor1
parents: 970
diff changeset
3276 int pParam; // [sp+4h] [bp-Ch]@3
0
Ritor1
parents:
diff changeset
3277 UIMessageType pUIMessageType; // [sp+8h] [bp-8h]@3
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3278 int pSex; // [sp+Ch] [bp-4h]@3
0
Ritor1
parents:
diff changeset
3279
Ritor1
parents:
diff changeset
3280 if ( pMessageQueue_50CBD0->uNumMessages )
Ritor1
parents:
diff changeset
3281 {
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3282 pPlayer = pParty->pPlayers;
0
Ritor1
parents:
diff changeset
3283 do
Ritor1
parents:
diff changeset
3284 {
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3285 int param2;
971
Ritor1
parents: 970
diff changeset
3286 pMessageQueue_50CBD0->PopMessage(&pUIMessageType, &pParam, &param2);
Ritor1
parents: 970
diff changeset
3287 auto player = &pParty->pPlayers[pParam];
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3288
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3289 switch (pUIMessageType) // For buttons of window MainMenu
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3290 {
165
Ritor1
parents: 163
diff changeset
3291 case UIMSG_MainMenu_ShowPartyCreationWnd:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3292 GUIWindow::Create(495, 172, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnNew, 0);
0
Ritor1
parents:
diff changeset
3293 SetCurrentMenuID(MENU_NEWGAME);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3294 break;
165
Ritor1
parents: 163
diff changeset
3295 case UIMSG_MainMenu_ShowLoadWindow:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3296 GUIWindow::Create(495, 227, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnLoad, 0);
0
Ritor1
parents:
diff changeset
3297 SetCurrentMenuID(MENU_SAVELOAD);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3298 break;
165
Ritor1
parents: 163
diff changeset
3299 case UIMSG_ShowCredits:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3300 GUIWindow::Create(495, 282, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnCredits, 0);
0
Ritor1
parents:
diff changeset
3301 SetCurrentMenuID(MENU_CREDITS);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3302 break;
165
Ritor1
parents: 163
diff changeset
3303 case UIMSG_ExitToWindows:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3304 GUIWindow::Create(495, 337, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnExit, 0);
982
08fd1436ef35 enums & lod
Nomad
parents: 980
diff changeset
3305 SetCurrentMenuID(MENU_EXIT_GAME);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3306 break;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3307 case UIMSG_PlayerCreation_SelectAttribute:
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3308 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem)
971
Ritor1
parents: 970
diff changeset
3309 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam;
Ritor1
parents: 970
diff changeset
3310 uPlayerCreationUI_SelectedCharacter = pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3311 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3312 break;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3313 case UIMSG_PlayerCreation_VoicePrev:
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3314 pSex = player->GetSexByVoice();
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3315 do
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3316 {
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3317 if (player->uVoiceID == 0)
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3318 player->uVoiceID = 19;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3319 else --player->uVoiceID;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3320 }
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3321 while (player->GetSexByVoice() != pSex);
971
Ritor1
parents: 970
diff changeset
3322 pButton = pCreationUI_BtnPressLeft2[pParam];
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3323 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3324 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3325 player->PlaySound(SPEECH_PickMe, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3326 break;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3327 case UIMSG_PlayerCreation_VoiceNext:
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3328 pSex = player->GetSexByVoice();
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3329 do
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3330 {
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3331 player->uVoiceID = (player->uVoiceID + 1) % 20;
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3332 }
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3333 while (player->GetSexByVoice() != pSex);
971
Ritor1
parents: 970
diff changeset
3334 pButton = pCreationUI_BtnPressRight2[pParam];
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3335 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1);
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3336 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0);
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3337 player->PlaySound(SPEECH_PickMe, 0);
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3338 break;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3339 case UIMSG_PlayerCreation_FacePrev:
971
Ritor1
parents: 970
diff changeset
3340 pPlayer = &pParty->pPlayers[pParam];
1014
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3341 if (!pPlayer->uCurrentFace)
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3342 pPlayer->uCurrentFace = 19;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3343 else
1014
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3344 pPlayer->uCurrentFace -= 1;
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3345 pPlayer->uVoiceID = pPlayer->uCurrentFace;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3346 pPlayer->SetInitialStats();
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3347 pPlayer->SetSexByVoice();
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3348 pPlayer->RandomizeName();
971
Ritor1
parents: 970
diff changeset
3349 v25 = pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3350 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem)
971
Ritor1
parents: 970
diff changeset
3351 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3352 uPlayerCreationUI_SelectedCharacter = v25;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3353 GUIWindow::Create(pCreationUI_BtnPressLeft[v25]->uX, pCreationUI_BtnPressLeft[v25]->uY, 0, 0, WINDOW_PressedButton, (int)pCreationUI_BtnPressLeft[v25], (char *)1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3354 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0.0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3355 pPlayer->PlaySound(SPEECH_PickMe, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3356 break;
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
3357 case UIMSG_PlayerCreation_FaceNext:
971
Ritor1
parents: 970
diff changeset
3358 pPlayer = &pParty->pPlayers[pParam];
1014
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3359 v20 = (char)((int)pPlayer->uCurrentFace + 1) % 20;
a704435d3285 comtinue player cleaning
Gloval
parents: 1012
diff changeset
3360 pPlayer->uCurrentFace = v20;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3361 pPlayer->uVoiceID = v20;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3362 pPlayer->SetInitialStats();
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3363 pPlayer->SetSexByVoice();
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3364 pPlayer->RandomizeName();
971
Ritor1
parents: 970
diff changeset
3365 v21 = pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3366 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem)
971
Ritor1
parents: 970
diff changeset
3367 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3368 uPlayerCreationUI_SelectedCharacter = v21;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3369 GUIWindow::Create(pCreationUI_BtnPressRight[v21]->uX, pCreationUI_BtnPressRight[v21]->uY, 0, 0, WINDOW_PressedButton, (int)pCreationUI_BtnPressRight[v21], (char *)1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3370 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3371 pPlayer->PlaySound(SPEECH_PickMe, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3372 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3373 case UIMSG_PlayerCreationClickPlus:
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3374 GUIWindow::Create(613, 393, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnPlus, (char *)1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3375 pPlayer[uPlayerCreationUI_SelectedCharacter].IncreaseAttribute((pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) % 7);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3376 pAudioPlayer->PlaySound((SoundID)20, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3377 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3378 case UIMSG_PlayerCreationClickMinus:
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1264
diff changeset
3379 GUIWindow::Create(523, 393, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnMinus, (char *)1);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3380 pPlayer[uPlayerCreationUI_SelectedCharacter].DecreaseAttribute((pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) % 7);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3381 pAudioPlayer->PlaySound((SoundID)23, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3382 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3383 case UIMSG_PlayerCreationSelectActiveSkill:
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3384 pPlayer = &pPlayer[uPlayerCreationUI_SelectedCharacter];
971
Ritor1
parents: 970
diff changeset
3385 v6 = pPlayer->GetSkillIdxByOrder(pParam + 4);
967
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3386 if ( pPlayer->GetSkillIdxByOrder(3) == 37 )
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3387 pParty->pPlayers[0].pActiveSkills[v6 + 3486 * uPlayerCreationUI_SelectedCharacter] = 1;
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3388 pAudioPlayer->PlaySound((SoundID)24, 0, 0, -1, 0, 0, 0, 0);
e655624e4b7c GUI_MainMenuMessageProc()
Ritor1
parents: 962
diff changeset
3389 break;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3390 case UIMSG_PlayerCreationSelectClass:
971
Ritor1
parents: 970
diff changeset
3391 pPlayer[uPlayerCreationUI_SelectedCharacter].Reset((PLAYER_CLASS_TYPE)pParam);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3392 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3393 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3394 case UIMSG_PlayerCreationClickOK:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3395 GUIWindow::Create(580, 431, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnOK, 0);
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
3396 if ( PlayerCreation_GetUnspentAttributePointCount() || !PlayerCreation_Choose4Skills() )
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3397 GameUI_Footer_TimeLeft = GetTickCount() + 4000;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3398 else
982
08fd1436ef35 enums & lod
Nomad
parents: 980
diff changeset
3399 uGameState = GAME_STATE_STARTING_NEW_GAME;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3400 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3401 case UIMSG_PlayerCreationClickReset:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3402 GUIWindow::Create(527, 431, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnReset, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3403 pParty->Reset();
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3404 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3405 case UIMSG_PlayerCreationRemoveUpSkill:
971
Ritor1
parents: 970
diff changeset
3406 uPlayerCreationUI_SelectedCharacter = pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3407 v4 = pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3408 //int pSex = pGUIWindow_CurrentMenu->pStartingPosActiveItem;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3409 v41 = 2;
971
Ritor1
parents: 970
diff changeset
3410 v5 = v4 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3411 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = v5;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3412 pParty->pPlayers[0].pActiveSkills[(&pPlayer[uPlayerCreationUI_SelectedCharacter])->GetSkillIdxByOrder(v41)
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3413 + 3486 * uPlayerCreationUI_SelectedCharacter] = 0;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3414 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3415 case UIMSG_PlayerCreationChangeName:
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3416 pAudioPlayer->PlaySound((SoundID)24, 0, 0, -1, 0, 0, 0, 0);
971
Ritor1
parents: 970
diff changeset
3417 v3 = (void *)pParam;
Ritor1
parents: 970
diff changeset
3418 uPlayerCreationUI_SelectedCharacter = pParam;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3419 pKeyActionMap->EnterText(0, 15, pGUIWindow_CurrentMenu);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3420 pGUIWindow_CurrentMenu->ptr_1C = v3;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3421 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3422 case UIMSG_ChangeGameState:
978
9334a8c59c8d uGameState
Ritor1
parents: 977
diff changeset
3423 uGameState = GAME_FINISHED;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3424 break;
1412
182d58b2a34c Harmondale falling under terrain fixed
Nomad
parents: 1409
diff changeset
3425 case UIMSG_ChangeCursor:
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3426 pMouse->SetCursorBitmap("MICON2");
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3427 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3428 case UIMSG_3A:
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
3429 SetCurrentMenuID(MENU_DebugBLVLevel);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3430 break;
165
Ritor1
parents: 163
diff changeset
3431 case UIMSG_LoadGame:
0
Ritor1
parents:
diff changeset
3432 if (!pSavegameUsedSlots[uLoadGameUI_SelectedSlot])
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3433 break;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
3434 SetCurrentMenuID(MENU_LoadingProcInMainMenu);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3435 break;
165
Ritor1
parents: 163
diff changeset
3436 case UIMSG_SelectLoadSlot:
0
Ritor1
parents:
diff changeset
3437 //main menu save/load wnd clicking on savegame lines
1038
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
3438 if (pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
3439 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE);
971
Ritor1
parents: 970
diff changeset
3440 if ( pCurrentScreen != SCREEN_SAVEGAME || uLoadGameUI_SelectedSlot != pParam + pSaveListPosition )
0
Ritor1
parents:
diff changeset
3441 {
Ritor1
parents:
diff changeset
3442 //load clicked line
971
Ritor1
parents: 970
diff changeset
3443 v26 = pParam + pSaveListPosition;
Ritor1
parents: 970
diff changeset
3444 if ( dword_6BE138 == pParam + pSaveListPosition )
0
Ritor1
parents:
diff changeset
3445 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
3446 pMessageQueue_50CBD0->AddMessage(UIMSG_SaveLoadBtn, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3447 pMessageQueue_50CBD0->AddMessage(UIMSG_LoadGame, 0, 0);
0
Ritor1
parents:
diff changeset
3448 }
Ritor1
parents:
diff changeset
3449 uLoadGameUI_SelectedSlot = v26;
Ritor1
parents:
diff changeset
3450 dword_6BE138 = v26;
Ritor1
parents:
diff changeset
3451 }
Ritor1
parents:
diff changeset
3452 else
Ritor1
parents:
diff changeset
3453 {
Ritor1
parents:
diff changeset
3454 //typing in the line
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3455 pKeyActionMap->EnterText(0, 19, pGUIWindow_CurrentMenu);
0
Ritor1
parents:
diff changeset
3456 strcpy((char *)pKeyActionMap->pPressedKeysBuffer, pSavegameHeader[uLoadGameUI_SelectedSlot].pName);
Ritor1
parents:
diff changeset
3457 pKeyActionMap->uNumKeysPressed = strlen((const char *)pKeyActionMap->pPressedKeysBuffer);
Ritor1
parents:
diff changeset
3458 }
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3459 break;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
3460 case UIMSG_SaveLoadBtn:
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
3461 GUIWindow::Create(pGUIWindow_CurrentMenu->uFrameX + 241, pGUIWindow_CurrentMenu->uFrameY + 302, 61, 28, WINDOW_SaveLoadBtn, (int)pBtnLoadSlot, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3462 break;
165
Ritor1
parents: 163
diff changeset
3463 case UIMSG_DownArrow:
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3464 ++pSaveListPosition;
971
Ritor1
parents: 970
diff changeset
3465 if ( pSaveListPosition >= pParam )
Ritor1
parents: 970
diff changeset
3466 pSaveListPosition = pParam - 1;
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3467 if ( pSaveListPosition < 1 )
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3468 pSaveListPosition = 0;
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3469 pWindow = pGUIWindow_CurrentMenu;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3470 GUIWindow::Create(pWindow->uFrameX + 215, pGUIWindow_CurrentMenu->uFrameY + 323, 0, 0, WINDOW_PressedButton2, (int)pBtnDownArrow, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3471 break;
165
Ritor1
parents: 163
diff changeset
3472 case UIMSG_Cancel:
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3473 GUIWindow::Create(pGUIWindow_CurrentMenu->uFrameX + 350, pGUIWindow_CurrentMenu->uFrameY + 302, 61, 28, WINDOW_LoadGame_CancelBtn, (int)pBtnCancel, 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3474 break;
165
Ritor1
parents: 163
diff changeset
3475 case UIMSG_ArrowUp:
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3476 --pSaveListPosition;
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3477 if ( pSaveListPosition < 0 )
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3478 pSaveListPosition = 0;
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 2
diff changeset
3479 pWindow = pGUIWindow_CurrentMenu;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3480 GUIWindow::Create(pWindow->uFrameX + 215, pGUIWindow_CurrentMenu->uFrameY + 197, 0, 0, WINDOW_PressedButton2, (int)pBtnArrowUp, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3481 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3482 case UIMSG_AD:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3483 GUIWindow::Create(pMainMenu_BtnNew->uX, pMainMenu_BtnNew->uY, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnNew, 0);
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
3484 SetCurrentMenuID(MENU_LoadingProcInMainMenu);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3485 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3486 case UIMSG_AE:
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
3487 GUIWindow::Create(pMainMenu_BtnExit->uX, pMainMenu_BtnExit->uY, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnExit, 0);
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
3488 SetCurrentMenuID(MENU_DebugBLVLevel);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3489 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3490 case UIMSG_Escape:
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
3491 if ( pModalWindow )
0
Ritor1
parents:
diff changeset
3492 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
3493 ModalWindow_Release();
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3494 break;
0
Ritor1
parents:
diff changeset
3495 }
Ritor1
parents:
diff changeset
3496 if ( !(BYTE1(dword_6BE364_game_settings_1) & 0x40) )
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3497 break;
0
Ritor1
parents:
diff changeset
3498 v15 = 1;
Ritor1
parents:
diff changeset
3499 pVideoPlayer->bStopBeforeSchedule = 1;
Ritor1
parents:
diff changeset
3500 viewparams->bRedrawGameUI = 1;
Ritor1
parents:
diff changeset
3501 viewparams->field_48 = 1;
165
Ritor1
parents: 163
diff changeset
3502 if ( !GetCurrentMenuID() || GetCurrentMenuID() == MENU_CREATEPARTY || GetCurrentMenuID() == MENU_NAMEPANELESC )
Ritor1
parents: 163
diff changeset
3503 {
Ritor1
parents: 163
diff changeset
3504 if ( pCurrentScreen == SCREEN_VIDEO )
Ritor1
parents: 163
diff changeset
3505 pVideoPlayer->FastForwardToFrame(pVideoPlayer->pResetflag);
Ritor1
parents: 163
diff changeset
3506 if (GetCurrentMenuID() == MENU_NAMEPANELESC)
Ritor1
parents: 163
diff changeset
3507 {
Ritor1
parents: 163
diff changeset
3508 SetCurrentMenuID(MENU_CREATEPARTY);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3509 break;
0
Ritor1
parents:
diff changeset
3510 }
165
Ritor1
parents: 163
diff changeset
3511 if (GetCurrentMenuID() == MENU_CREDITSPROC)
Ritor1
parents: 163
diff changeset
3512 {
Ritor1
parents: 163
diff changeset
3513 SetCurrentMenuID(MENU_CREDITSCLOSE);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3514 break;
0
Ritor1
parents:
diff changeset
3515 }
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
3516 pMessageQueue_50CBD0->AddMessage(UIMSG_ChangeGameState, 0, 0);
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3517 break;
0
Ritor1
parents:
diff changeset
3518 }
971
Ritor1
parents: 970
diff changeset
3519 if ( GetCurrentMenuID() == MENU_CREDITSPROC && !pCurrentScreen )
Ritor1
parents: 970
diff changeset
3520 {
Ritor1
parents: 970
diff changeset
3521 if ( pCurrentScreen == SCREEN_VIDEO )
Ritor1
parents: 970
diff changeset
3522 pVideoPlayer->FastForwardToFrame(pVideoPlayer->pResetflag);
Ritor1
parents: 970
diff changeset
3523 if (GetCurrentMenuID() == MENU_NAMEPANELESC)
Ritor1
parents: 970
diff changeset
3524 {
Ritor1
parents: 970
diff changeset
3525 SetCurrentMenuID(MENU_CREATEPARTY);
Ritor1
parents: 970
diff changeset
3526 break;
Ritor1
parents: 970
diff changeset
3527 }
Ritor1
parents: 970
diff changeset
3528 if (GetCurrentMenuID() == MENU_CREDITSPROC)
Ritor1
parents: 970
diff changeset
3529 {
Ritor1
parents: 970
diff changeset
3530 SetCurrentMenuID(MENU_CREDITSCLOSE);
Ritor1
parents: 970
diff changeset
3531 break;
Ritor1
parents: 970
diff changeset
3532 }
Ritor1
parents: 970
diff changeset
3533 pMessageQueue_50CBD0->AddMessage(UIMSG_ChangeGameState, 0, 0);
Ritor1
parents: 970
diff changeset
3534 break;
Ritor1
parents: 970
diff changeset
3535 }
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3536 if ( pCurrentScreen == SCREEN_LOADGAME )
0
Ritor1
parents:
diff changeset
3537 {
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
3538 pIcons_LOD->RemoveTexturesPackFromTextureList();
0
Ritor1
parents:
diff changeset
3539 //crt_deconstruct_ptr_6A0118();
Ritor1
parents:
diff changeset
3540 pTexture_PCX.Release();
Ritor1
parents:
diff changeset
3541 pTexture_PCX.Load("title.pcx", 0);
Ritor1
parents:
diff changeset
3542 SetCurrentMenuID(MENU_MAIN);
Ritor1
parents:
diff changeset
3543 v15 = 1;
Ritor1
parents:
diff changeset
3544 pGUIWindow_CurrentMenu->Release();
Ritor1
parents:
diff changeset
3545 pGUIWindow2->Release();
Ritor1
parents:
diff changeset
3546 pGUIWindow2 = 0;
Ritor1
parents:
diff changeset
3547 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3548 pCurrentScreen = SCREEN_GAME;
0
Ritor1
parents:
diff changeset
3549 viewparams->bRedrawGameUI = v15;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3550 break;
0
Ritor1
parents:
diff changeset
3551 }
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3552 if ( pCurrentScreen == SCREEN_VIDEO )
0
Ritor1
parents:
diff changeset
3553 {
Ritor1
parents:
diff changeset
3554 pVideoPlayer->Unload();
Ritor1
parents:
diff changeset
3555 }
Ritor1
parents:
diff changeset
3556 else
Ritor1
parents:
diff changeset
3557 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3558 if ( pCurrentScreen != SCREEN_1B )
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3559 {
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3560 pGUIWindow_CurrentMenu->Release();
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3561 pGUIWindow2->Release();
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3562 pGUIWindow2 = 0;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3563 pEventTimer->Resume();
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
3564 pCurrentScreen = SCREEN_GAME;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3565 viewparams->bRedrawGameUI = v15;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3566 break;
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 1
diff changeset
3567 }
0
Ritor1
parents:
diff changeset
3568 //VideoPlayer::dtor();
Ritor1
parents:
diff changeset
3569 }
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3570 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3571 case UIMSG_PlayerCreationRemoveDownSkill:
971
Ritor1
parents: 970
diff changeset
3572 uPlayerCreationUI_SelectedCharacter = pParam;
1677
a699ecd7aeb3 PlayerCreationUI_Draw()
Ritor1
parents: 1676
diff changeset
3573 //__debugbreak();
165
Ritor1
parents: 163
diff changeset
3574 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) % 7
971
Ritor1
parents: 970
diff changeset
3575 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam;
165
Ritor1
parents: 163
diff changeset
3576 pParty->pPlayers[0].pActiveSkills[(&pPlayer[uPlayerCreationUI_SelectedCharacter])->GetSkillIdxByOrder(3)
0
Ritor1
parents:
diff changeset
3577 + 3486 * uPlayerCreationUI_SelectedCharacter] = 0;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3578 break;
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3579 default:
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 959
diff changeset
3580 break;
0
Ritor1
parents:
diff changeset
3581 }
Ritor1
parents:
diff changeset
3582 }
Ritor1
parents:
diff changeset
3583 while ( pMessageQueue_50CBD0->uNumMessages );
Ritor1
parents:
diff changeset
3584 }
Ritor1
parents:
diff changeset
3585 }
Ritor1
parents:
diff changeset
3586
Ritor1
parents:
diff changeset
3587 //----- (0043648F) --------------------------------------------------------
Ritor1
parents:
diff changeset
3588 void Vec3_short__to_RenderVertexSoft(RenderVertexSoft *_this, Vec3_short_ *a2)
Ritor1
parents:
diff changeset
3589 {
Ritor1
parents:
diff changeset
3590 _this->flt_2C = 0.0;
Ritor1
parents:
diff changeset
3591
Ritor1
parents:
diff changeset
3592 _this->vWorldPosition.x = a2->x;
Ritor1
parents:
diff changeset
3593 _this->vWorldPosition.y = a2->y;
Ritor1
parents:
diff changeset
3594 _this->vWorldPosition.z = a2->z;
Ritor1
parents:
diff changeset
3595 }
Ritor1
parents:
diff changeset
3596
Ritor1
parents:
diff changeset
3597 //----- (004369DB) --------------------------------------------------------
Ritor1
parents:
diff changeset
3598 void Vec3_float_::Normalize()
Ritor1
parents:
diff changeset
3599 {
1025
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
3600 this->x = (1.0 / sqrt(this->x * this->x + this->y * this->y + this->z * this->z)) * this->x;
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
3601 this->y = (1.0 / sqrt(this->x * this->x + this->y * this->y + this->z * this->z)) * this->y;
8b492d4722d4 Intersection
Ritor1
parents: 1023
diff changeset
3602 this->z = (1.0 / sqrt(this->x * this->x + this->y * this->y + this->z * this->z)) * this->z;
0
Ritor1
parents:
diff changeset
3603 }
Ritor1
parents:
diff changeset
3604
Ritor1
parents:
diff changeset
3605 //----- (00438F8F) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1384
diff changeset
3606 void area_of_effect__damage_evaluate()
0
Ritor1
parents:
diff changeset
3607 {
Ritor1
parents:
diff changeset
3608 int v0; // edx@1
Ritor1
parents:
diff changeset
3609 char *v1; // esi@2
Ritor1
parents:
diff changeset
3610 int v2; // ecx@3
Ritor1
parents:
diff changeset
3611 signed int v3; // eax@3
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
3612 SpriteObject *v4; // eax@4
0
Ritor1
parents:
diff changeset
3613 signed int v5; // eax@4
Ritor1
parents:
diff changeset
3614 signed int v6; // eax@6
Ritor1
parents:
diff changeset
3615 unsigned int v7; // edi@6
Ritor1
parents:
diff changeset
3616 int v8; // eax@6
Ritor1
parents:
diff changeset
3617 __int16 v9; // bx@8
Ritor1
parents:
diff changeset
3618 int v10; // edi@8
Ritor1
parents:
diff changeset
3619 Vec3_int_ v11; // ST04_12@9
Ritor1
parents:
diff changeset
3620 int v12; // ST0C_4@10
Ritor1
parents:
diff changeset
3621 Actor *v13; // edi@11
Ritor1
parents:
diff changeset
3622 int v14; // edx@15
Ritor1
parents:
diff changeset
3623 int v15; // edx@15
Ritor1
parents:
diff changeset
3624 int v16; // ebx@15
Ritor1
parents:
diff changeset
3625 signed int v17; // eax@15
Ritor1
parents:
diff changeset
3626 int v18; // edi@15
Ritor1
parents:
diff changeset
3627 int v19; // edi@15
Ritor1
parents:
diff changeset
3628 Vec3_int_ v20; // ST04_12@16
Ritor1
parents:
diff changeset
3629 Vec3_int_ *v21; // eax@17
Ritor1
parents:
diff changeset
3630 unsigned int v22; // edx@17
Ritor1
parents:
diff changeset
3631 int v23; // edx@18
Ritor1
parents:
diff changeset
3632 int v24; // eax@18
Ritor1
parents:
diff changeset
3633 Vec3_int_ v25; // ST04_12@19
Ritor1
parents:
diff changeset
3634 unsigned int v26; // ebx@20
89
98cd93e14777 pointer fixes
zipi
parents: 82
diff changeset
3635 Player *v27; // edi@20
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3636 Actor *v28; // edi@27
0
Ritor1
parents:
diff changeset
3637 int v29; // ebx@29
Ritor1
parents:
diff changeset
3638 int v30; // eax@29
Ritor1
parents:
diff changeset
3639 int v31; // edx@29
Ritor1
parents:
diff changeset
3640 int v32; // eax@29
Ritor1
parents:
diff changeset
3641 int v33; // ST24_4@29
Ritor1
parents:
diff changeset
3642 Vec3_int_ v34; // ST04_12@30
Ritor1
parents:
diff changeset
3643 Vec3_int_ *v35; // eax@31
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
3644 SpriteObject *v36; // [sp+0h] [bp-28h]@0
0
Ritor1
parents:
diff changeset
3645 signed int v37; // [sp+4h] [bp-24h]@5
Ritor1
parents:
diff changeset
3646 int v38; // [sp+4h] [bp-24h]@15
Ritor1
parents:
diff changeset
3647 signed int v39; // [sp+8h] [bp-20h]@3
Ritor1
parents:
diff changeset
3648 int v40; // [sp+8h] [bp-20h]@15
Ritor1
parents:
diff changeset
3649 int v41; // [sp+Ch] [bp-1Ch]@5
Ritor1
parents:
diff changeset
3650 int v42; // [sp+Ch] [bp-1Ch]@15
Ritor1
parents:
diff changeset
3651 int v43; // [sp+10h] [bp-18h]@1
Ritor1
parents:
diff changeset
3652 int v44; // [sp+14h] [bp-14h]@15
Ritor1
parents:
diff changeset
3653 unsigned int uActorID; // [sp+18h] [bp-10h]@6
Ritor1
parents:
diff changeset
3654 Vec3_int_ *pVelocity; // [sp+1Ch] [bp-Ch]@2
Ritor1
parents:
diff changeset
3655 int a1; // [sp+20h] [bp-8h]@8
Ritor1
parents:
diff changeset
3656 int v48; // [sp+24h] [bp-4h]@8
Ritor1
parents:
diff changeset
3657
Ritor1
parents:
diff changeset
3658 v0 = 0;
Ritor1
parents:
diff changeset
3659 v43 = 0;
Ritor1
parents:
diff changeset
3660 if ( stru_50FE08.count > 0 )
Ritor1
parents:
diff changeset
3661 {
Ritor1
parents:
diff changeset
3662 pVelocity = &stru_50FE08.vec_4B4;
Ritor1
parents:
diff changeset
3663 v1 = (char *)stru_50FE08.pZs;
Ritor1
parents:
diff changeset
3664 do
Ritor1
parents:
diff changeset
3665 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3666 v2 = PID_TYPE(*((short *)v1 - 300));
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3667 v3 = PID_ID((signed int)*((short *)v1 - 300));
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3668 v39 = PID_ID((signed int)*((short *)v1 - 300));
0
Ritor1
parents:
diff changeset
3669 if ( v2 == 2 )
Ritor1
parents:
diff changeset
3670 {
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
3671 v4 = &pSpriteObjects[v3];
0
Ritor1
parents:
diff changeset
3672 v36 = v4;
822
c232f160e6f3 Named SpriteObject spell-related fields.
Nomad
parents: 819
diff changeset
3673 v5 = v4->spell_caster_pid;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3674 v2 = PID_TYPE(v5);
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3675 v3 = PID_ID(v5);
0
Ritor1
parents:
diff changeset
3676 }
Ritor1
parents:
diff changeset
3677 v41 = v2;
Ritor1
parents:
diff changeset
3678 v37 = v3;
Ritor1
parents:
diff changeset
3679 if ( stru_50FE08.field_3EC[v0] & 1 )
Ritor1
parents:
diff changeset
3680 {
417
55684f4eda73 Actor::SelectTarget & ai_near_actors_targets_pid
Nomad
parents: 414
diff changeset
3681 v6 = ai_near_actors_targets_pid[v3];
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3682 v7 = PID_ID(v6);
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3683 v8 = PID_TYPE(v6) - 3;
0
Ritor1
parents:
diff changeset
3684 uActorID = v7;
Ritor1
parents:
diff changeset
3685 if ( v8 )
Ritor1
parents:
diff changeset
3686 {
Ritor1
parents:
diff changeset
3687 if ( v8 == 1 )
Ritor1
parents:
diff changeset
3688 {
Ritor1
parents:
diff changeset
3689 v9 = *(short *)v1;
Ritor1
parents:
diff changeset
3690 v10 = pParty->vPosition.y - *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3691 a1 = pParty->vPosition.x - *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3692 v48 = v10;
Ritor1
parents:
diff changeset
3693 if ( a1 * a1
Ritor1
parents:
diff changeset
3694 + v10 * v10
Ritor1
parents:
diff changeset
3695 + ((signed int)(pParty->vPosition.z + pParty->uPartyHeight) >> (1 - v9))
Ritor1
parents:
diff changeset
3696 * ((signed int)(pParty->vPosition.z + pParty->uPartyHeight) >> (1 - v9)) < (unsigned int)((*((short *)v1 + 100) + 32) * (*((short *)v1 + 100) + 32)) )
Ritor1
parents:
diff changeset
3697 {
Ritor1
parents:
diff changeset
3698 v11.z = *(short *)v1;
Ritor1
parents:
diff changeset
3699 v11.y = *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3700 v11.x = *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3701 if ( sub_407A1C(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z + pParty->sEyelevel, v11) )
Ritor1
parents:
diff changeset
3702 {
Ritor1
parents:
diff changeset
3703 v12 = stru_50C198.which_player_would_attack(&pActors[v39]);
Ritor1
parents:
diff changeset
3704 DamagePlayerFromMonster(*((short *)v1 - 300), stru_50FE08.field_450[v43], pVelocity, v12);
Ritor1
parents:
diff changeset
3705 }
Ritor1
parents:
diff changeset
3706 }
Ritor1
parents:
diff changeset
3707 }
Ritor1
parents:
diff changeset
3708 }
Ritor1
parents:
diff changeset
3709 else
Ritor1
parents:
diff changeset
3710 {
Ritor1
parents:
diff changeset
3711 v13 = &pActors[v7];
Ritor1
parents:
diff changeset
3712 if ( SHIDWORD(v13->pActorBuffs[6].uExpireTime) > 0
Ritor1
parents:
diff changeset
3713 || SHIDWORD(v13->pActorBuffs[6].uExpireTime) >= 0 && LODWORD(v13->pActorBuffs[6].uExpireTime)
Ritor1
parents:
diff changeset
3714 || v13->CanAct() )
Ritor1
parents:
diff changeset
3715 {
Ritor1
parents:
diff changeset
3716 v14 = v13->vPosition.y;
Ritor1
parents:
diff changeset
3717 v40 = v13->vPosition.x;
Ritor1
parents:
diff changeset
3718 v38 = v14;
Ritor1
parents:
diff changeset
3719 v15 = v14 - *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3720 v16 = *(short *)v1;
Ritor1
parents:
diff changeset
3721 v42 = v13->vPosition.z;
Ritor1
parents:
diff changeset
3722 a1 = v40 - *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3723 v17 = v13->uActorHeight;
Ritor1
parents:
diff changeset
3724 v18 = v13->uActorRadius;
Ritor1
parents:
diff changeset
3725 v44 = v42;
Ritor1
parents:
diff changeset
3726 v19 = *((short *)v1 + 100) + v18;
Ritor1
parents:
diff changeset
3727 v48 = v15;
Ritor1
parents:
diff changeset
3728 if ( a1 * a1 + v15 * v15 + (v42 + (v17 >> 1) - v16) * (v42 + (v17 >> 1) - v16) < (unsigned int)(v19 * v19) )
Ritor1
parents:
diff changeset
3729 {
Ritor1
parents:
diff changeset
3730 v20.z = *(short *)v1;
Ritor1
parents:
diff changeset
3731 v20.y = *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3732 v20.x = *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3733 if ( sub_407A1C(v40, v38, v42 + 50, v20) )
Ritor1
parents:
diff changeset
3734 {
Ritor1
parents:
diff changeset
3735 Vec3_int_::Normalize(&a1, &v48, &v44);
Ritor1
parents:
diff changeset
3736 v21 = pVelocity;
Ritor1
parents:
diff changeset
3737 v22 = uActorID;
Ritor1
parents:
diff changeset
3738 pVelocity->x = a1;
Ritor1
parents:
diff changeset
3739 v21->y = v48;
Ritor1
parents:
diff changeset
3740 v21->z = v44;
Ritor1
parents:
diff changeset
3741 sub_43B1B0(*((short *)v1 - 300), v22, v21, stru_50FE08.field_450[v43]);
Ritor1
parents:
diff changeset
3742 }
Ritor1
parents:
diff changeset
3743 }
Ritor1
parents:
diff changeset
3744 }
Ritor1
parents:
diff changeset
3745 }
Ritor1
parents:
diff changeset
3746 }
Ritor1
parents:
diff changeset
3747 else
Ritor1
parents:
diff changeset
3748 {
Ritor1
parents:
diff changeset
3749 v23 = pParty->vPosition.y - *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3750 v24 = ((signed int)pParty->uPartyHeight >> 1) - *(short *)v1;
Ritor1
parents:
diff changeset
3751 a1 = pParty->vPosition.x - *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3752 v48 = v23;
Ritor1
parents:
diff changeset
3753 if ( a1 * a1 + v23 * v23 + (pParty->vPosition.z + v24) * (pParty->vPosition.z + v24) < (unsigned int)((*((short *)v1 + 100) + 32) * (*((short *)v1 + 100) + 32)) )
Ritor1
parents:
diff changeset
3754 {
Ritor1
parents:
diff changeset
3755 v25.z = *(short *)v1;
Ritor1
parents:
diff changeset
3756 v25.y = *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3757 v25.x = *((short *)v1 - 200);
Ritor1
parents:
diff changeset
3758 if ( sub_407A1C(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z + pParty->sEyelevel, v25) )
Ritor1
parents:
diff changeset
3759 {
Ritor1
parents:
diff changeset
3760 v26 = 0;
89
98cd93e14777 pointer fixes
zipi
parents: 82
diff changeset
3761 v27 = pParty->pPlayers;//[0].pConditions[15];
0
Ritor1
parents:
diff changeset
3762 do
Ritor1
parents:
diff changeset
3763 {
89
98cd93e14777 pointer fixes
zipi
parents: 82
diff changeset
3764 if ( !(HIDWORD(v27->pConditions[14]) | LODWORD(v27->pConditions[14])) && !v27->pConditions[15] && !v27->pConditions[16] )
0
Ritor1
parents:
diff changeset
3765 DamagePlayerFromMonster(*((short *)v1 - 300), stru_50FE08.field_450[v43], pVelocity, v26);
89
98cd93e14777 pointer fixes
zipi
parents: 82
diff changeset
3766 ++v27;
0
Ritor1
parents:
diff changeset
3767 ++v26;
Ritor1
parents:
diff changeset
3768 }
89
98cd93e14777 pointer fixes
zipi
parents: 82
diff changeset
3769 while ( v27 <= &pParty->pPlayers[3] );
0
Ritor1
parents:
diff changeset
3770 }
Ritor1
parents:
diff changeset
3771 }
Ritor1
parents:
diff changeset
3772 uActorID = 0;
Ritor1
parents:
diff changeset
3773 if ( (signed int)uNumActors > 0 )
Ritor1
parents:
diff changeset
3774 {
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1184
diff changeset
3775 v28 = pActors.data();//[0].vPosition.z;
0
Ritor1
parents:
diff changeset
3776 do
Ritor1
parents:
diff changeset
3777 {
91
471b1354cc73 previous commit fix
zipi
parents: 90
diff changeset
3778 if ( v28->CanAct() )
0
Ritor1
parents:
diff changeset
3779 {
Ritor1
parents:
diff changeset
3780 v29 = *(short *)v1;
91
471b1354cc73 previous commit fix
zipi
parents: 90
diff changeset
3781 v30 = v28->vPosition.y - *((short *)v1 - 100);
471b1354cc73 previous commit fix
zipi
parents: 90
diff changeset
3782 a1 = v28->vPosition.x - *((short *)v1 - 200);
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3783 v31 = v28->vPosition.z;
0
Ritor1
parents:
diff changeset
3784 v48 = v30;
Ritor1
parents:
diff changeset
3785 v44 = v31;
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3786 v32 = (v28->uActorHeight >> 1) - v29;
91
471b1354cc73 previous commit fix
zipi
parents: 90
diff changeset
3787 v33 = v28->uActorRadius + *((short *)v1 + 100);
0
Ritor1
parents:
diff changeset
3788 if ( a1 * a1 + v48 * v48 + (v31 + v32) * (v31 + v32) < (unsigned int)(v33 * v33) )
Ritor1
parents:
diff changeset
3789 {
Ritor1
parents:
diff changeset
3790 v34.z = *(short *)v1;
Ritor1
parents:
diff changeset
3791 v34.y = *((short *)v1 - 100);
Ritor1
parents:
diff changeset
3792 v34.x = *((short *)v1 - 200);
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3793 if ( sub_407A1C(v28->vPosition.x, v28->vPosition.y, v28->vPosition.z + 50, v34) )
0
Ritor1
parents:
diff changeset
3794 {
Ritor1
parents:
diff changeset
3795 Vec3_int_::Normalize(&a1, &v48, &v44);
Ritor1
parents:
diff changeset
3796 v35 = pVelocity;
Ritor1
parents:
diff changeset
3797 pVelocity->x = a1;
Ritor1
parents:
diff changeset
3798 v35->y = v48;
Ritor1
parents:
diff changeset
3799 v35->z = v44;
Ritor1
parents:
diff changeset
3800 switch ( v41 )
Ritor1
parents:
diff changeset
3801 {
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3802 case OBJECT_Player:
0
Ritor1
parents:
diff changeset
3803 DamageMonsterFromParty(*((short *)v1 - 300), uActorID, v35);
Ritor1
parents:
diff changeset
3804 break;
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3805 case OBJECT_Actor:
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3806 if ( v36 && pActors[v37].GetActorsRelation(v28) )
0
Ritor1
parents:
diff changeset
3807 sub_43B1B0(*((short *)v1 - 300), uActorID, pVelocity, v36->field_61);
Ritor1
parents:
diff changeset
3808 break;
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3809 case OBJECT_Item:
0
Ritor1
parents:
diff changeset
3810 sub_43B057(*((short *)v1 - 300), uActorID, v35);
Ritor1
parents:
diff changeset
3811 break;
Ritor1
parents:
diff changeset
3812 }
Ritor1
parents:
diff changeset
3813 }
Ritor1
parents:
diff changeset
3814 }
Ritor1
parents:
diff changeset
3815 }
Ritor1
parents:
diff changeset
3816 ++uActorID;
90
d61f6bc04bf2 more pointer fixes
zipi
parents: 89
diff changeset
3817 ++v28;
0
Ritor1
parents:
diff changeset
3818 }
Ritor1
parents:
diff changeset
3819 while ( (signed int)uActorID < (signed int)uNumActors );
Ritor1
parents:
diff changeset
3820 }
Ritor1
parents:
diff changeset
3821 }
Ritor1
parents:
diff changeset
3822 ++pVelocity;
Ritor1
parents:
diff changeset
3823 v0 = v43 + 1;
Ritor1
parents:
diff changeset
3824 v1 += 2;
Ritor1
parents:
diff changeset
3825 ++v43;
Ritor1
parents:
diff changeset
3826 }
Ritor1
parents:
diff changeset
3827 while ( v43 < stru_50FE08.count );
Ritor1
parents:
diff changeset
3828 }
Ritor1
parents:
diff changeset
3829 stru_50FE08.count = 0;
Ritor1
parents:
diff changeset
3830 }
Ritor1
parents:
diff changeset
3831
Ritor1
parents:
diff changeset
3832
Ritor1
parents:
diff changeset
3833 //----- (0043A97E) --------------------------------------------------------
Ritor1
parents:
diff changeset
3834 void __fastcall sub_43A97E(unsigned int uLayingItemID, signed int a2)
Ritor1
parents:
diff changeset
3835 {
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1384
diff changeset
3836 if (PID_TYPE(a2) == OBJECT_BLVDoor)
828
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3837 {
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3838 layingitem_vel_50FDFC.x = pSpriteObjects[uLayingItemID].vVelocity.x;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3839 layingitem_vel_50FDFC.y = pSpriteObjects[uLayingItemID].vVelocity.y;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3840 layingitem_vel_50FDFC.z = pSpriteObjects[uLayingItemID].vVelocity.z;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3841
0
Ritor1
parents:
diff changeset
3842 Vec3_int_::Normalize(&layingitem_vel_50FDFC.x, &layingitem_vel_50FDFC.y, &layingitem_vel_50FDFC.z);
828
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3843 DamagePlayerFromMonster(PID(OBJECT_Item, uLayingItemID), pSpriteObjects[uLayingItemID].field_61, &layingitem_vel_50FDFC, 0xFFFFFFFFu);
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3844 }
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3845 else if (PID_TYPE(a2) == OBJECT_Actor)
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3846 {
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3847 layingitem_vel_50FDFC.x = pSpriteObjects[uLayingItemID].vVelocity.x;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3848 layingitem_vel_50FDFC.y = pSpriteObjects[uLayingItemID].vVelocity.y;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3849 layingitem_vel_50FDFC.z = pSpriteObjects[uLayingItemID].vVelocity.z;
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3850
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3851 Vec3_int_::Normalize(&layingitem_vel_50FDFC.x, &layingitem_vel_50FDFC.y, &layingitem_vel_50FDFC.z);
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3852 switch (PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid))
0
Ritor1
parents:
diff changeset
3853 {
Ritor1
parents:
diff changeset
3854 case OBJECT_Actor:
828
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3855 sub_43B1B0(PID(OBJECT_Item, uLayingItemID), PID_ID(a2), &layingitem_vel_50FDFC, pSpriteObjects[uLayingItemID].field_61);
0
Ritor1
parents:
diff changeset
3856 break;
Ritor1
parents:
diff changeset
3857 case OBJECT_Player:
828
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3858 DamageMonsterFromParty(PID(OBJECT_Item, uLayingItemID), PID_ID(a2), &layingitem_vel_50FDFC);
0
Ritor1
parents:
diff changeset
3859 break;
Ritor1
parents:
diff changeset
3860 case OBJECT_Item:
828
0f56abdcce94 Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents: 824
diff changeset
3861 sub_43B057(PID(OBJECT_Item, uLayingItemID), PID_ID(a2), &layingitem_vel_50FDFC);
0
Ritor1
parents:
diff changeset
3862 break;
Ritor1
parents:
diff changeset
3863 }
Ritor1
parents:
diff changeset
3864 }
Ritor1
parents:
diff changeset
3865 }
Ritor1
parents:
diff changeset
3866
Ritor1
parents:
diff changeset
3867 //----- (0043AE12) --------------------------------------------------------
Ritor1
parents:
diff changeset
3868 double __fastcall sub_43AE12(signed int a1)
Ritor1
parents:
diff changeset
3869 {
Ritor1
parents:
diff changeset
3870 signed int v1; // ST00_4@1
Ritor1
parents:
diff changeset
3871 signed int v2; // ecx@1
Ritor1
parents:
diff changeset
3872 double v3; // st7@1
Ritor1
parents:
diff changeset
3873 double result; // st7@6
Ritor1
parents:
diff changeset
3874
Ritor1
parents:
diff changeset
3875 v1 = a1;
Ritor1
parents:
diff changeset
3876 v2 = 0;
Ritor1
parents:
diff changeset
3877 v3 = (double)v1;
Ritor1
parents:
diff changeset
3878 do
Ritor1
parents:
diff changeset
3879 {
Ritor1
parents:
diff changeset
3880 if ( v3 < flt_4E4A80[v2 + 5] )
Ritor1
parents:
diff changeset
3881 break;
Ritor1
parents:
diff changeset
3882 ++v2;
Ritor1
parents:
diff changeset
3883 }
Ritor1
parents:
diff changeset
3884 while ( v2 < 5 );
Ritor1
parents:
diff changeset
3885 if ( v2 <= 0 || v2 >= 5 )
Ritor1
parents:
diff changeset
3886 {
Ritor1
parents:
diff changeset
3887 if ( v2 )
Ritor1
parents:
diff changeset
3888 result = flt_4E4A80[4];
Ritor1
parents:
diff changeset
3889 else
Ritor1
parents:
diff changeset
3890 result = flt_4E4A80[0];
Ritor1
parents:
diff changeset
3891 }
Ritor1
parents:
diff changeset
3892 else
Ritor1
parents:
diff changeset
3893 {
1469
bba0944c9b27 minor fix
zipi
parents: 1459
diff changeset
3894 result = (flt_4E4A80[v2] - flt_4E4A80[v2 - 1]) * (v3 - flt_4E4A80[v2 + 4]) / (flt_4E4A80[v2 + 5] - flt_4E4A80[v2 + 4]) + flt_4E4A80[v2];
0
Ritor1
parents:
diff changeset
3895 }
Ritor1
parents:
diff changeset
3896 return result;
Ritor1
parents:
diff changeset
3897 }
Ritor1
parents:
diff changeset
3898
Ritor1
parents:
diff changeset
3899 //----- (0043B057) --------------------------------------------------------
Ritor1
parents:
diff changeset
3900 void __fastcall sub_43B057(unsigned int uObjID, unsigned int uActorID, Vec3_int_ *pVelocity)
Ritor1
parents:
diff changeset
3901 {
Ritor1
parents:
diff changeset
3902 Actor *pActor; // esi@1
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
3903 SpriteObject *v4; // eax@3
0
Ritor1
parents:
diff changeset
3904 int v5; // ecx@3
Ritor1
parents:
diff changeset
3905 int v6; // eax@4
Ritor1
parents:
diff changeset
3906 int v7; // edi@4
Ritor1
parents:
diff changeset
3907 unsigned int uActorIDa; // [sp+8h] [bp-8h]@1
Ritor1
parents:
diff changeset
3908 unsigned int a2; // [sp+Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
3909 int a2a; // [sp+Ch] [bp-4h]@8
Ritor1
parents:
diff changeset
3910
Ritor1
parents:
diff changeset
3911 uActorIDa = uActorID;
Ritor1
parents:
diff changeset
3912 pActor = &pActors[uActorID];
Ritor1
parents:
diff changeset
3913 a2 = uObjID;
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3914 if ( !pActors[uActorID].IsNotAlive() )
0
Ritor1
parents:
diff changeset
3915 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3916 if ( PID_TYPE(a2) == OBJECT_Item)
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3917 {
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3918 v4 = &pSpriteObjects[PID_ID(a2)];
822
c232f160e6f3 Named SpriteObject spell-related fields.
Nomad
parents: 819
diff changeset
3919 v5 = v4->spell_id;
0
Ritor1
parents:
diff changeset
3920 if ( v5 )
Ritor1
parents:
diff changeset
3921 {
822
c232f160e6f3 Named SpriteObject spell-related fields.
Nomad
parents: 819
diff changeset
3922 v6 = _43AFE3_calc_spell_damage(v5, v4->spell_level, v4->spell_skill, pActor->sCurrentHP);
0
Ritor1
parents:
diff changeset
3923 v7 = stru_50C198.CalcMagicalDamageToActor(pActor, 0, v6);
Ritor1
parents:
diff changeset
3924 pActor->sCurrentHP -= v7;
Ritor1
parents:
diff changeset
3925 if ( v7 )
Ritor1
parents:
diff changeset
3926 {
Ritor1
parents:
diff changeset
3927 if ( pActor->sCurrentHP > 0 )
1060
b79139c3b5c8 some AI cleaning
zipi
parents: 1057
diff changeset
3928 Actor::AI_Stun(uActorIDa, a2, 0);
0
Ritor1
parents:
diff changeset
3929 else
Ritor1
parents:
diff changeset
3930 Actor::Die(uActorIDa);
Ritor1
parents:
diff changeset
3931 a2a = 20 * v7 / (signed int)pActor->pMonsterInfo.uHP;
Ritor1
parents:
diff changeset
3932 if ( 20 * v7 / (signed int)pActor->pMonsterInfo.uHP > 10 )
Ritor1
parents:
diff changeset
3933 a2a = 10;
Ritor1
parents:
diff changeset
3934 if ( !MonsterStats::BelongsToSupertype(pActor->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) )
Ritor1
parents:
diff changeset
3935 {
Ritor1
parents:
diff changeset
3936 pVelocity->x = (unsigned __int64)(a2a * (signed __int64)pVelocity->x) >> 16;
Ritor1
parents:
diff changeset
3937 pVelocity->y = (unsigned __int64)(a2a * (signed __int64)pVelocity->y) >> 16;
Ritor1
parents:
diff changeset
3938 pVelocity->z = (unsigned __int64)(a2a * (signed __int64)pVelocity->z) >> 16;
Ritor1
parents:
diff changeset
3939 pActor->vVelocity.x = 50 * LOWORD(pVelocity->x);
Ritor1
parents:
diff changeset
3940 pActor->vVelocity.y = 50 * LOWORD(pVelocity->y);
Ritor1
parents:
diff changeset
3941 pActor->vVelocity.z = 50 * LOWORD(pVelocity->z);
Ritor1
parents:
diff changeset
3942 }
Ritor1
parents:
diff changeset
3943 Actor::AddBloodsplatOnDamageOverlay(uActorIDa, 1, v7);
Ritor1
parents:
diff changeset
3944 }
Ritor1
parents:
diff changeset
3945 else
Ritor1
parents:
diff changeset
3946 {
1060
b79139c3b5c8 some AI cleaning
zipi
parents: 1057
diff changeset
3947 Actor::AI_Stun(uActorIDa, a2, 0);
0
Ritor1
parents:
diff changeset
3948 }
Ritor1
parents:
diff changeset
3949 }
Ritor1
parents:
diff changeset
3950 }
Ritor1
parents:
diff changeset
3951 }
Ritor1
parents:
diff changeset
3952 }
Ritor1
parents:
diff changeset
3953
Ritor1
parents:
diff changeset
3954 //----- (0043B1B0) --------------------------------------------------------
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 321
diff changeset
3955 void sub_43B1B0(signed int a1, unsigned int a2, Vec3_int_ *pVelocity, signed int a4)
0
Ritor1
parents:
diff changeset
3956 {
Ritor1
parents:
diff changeset
3957 int v4; // ebx@1
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 513
diff changeset
3958 SpriteObject *v5; // eax@2
0
Ritor1
parents:
diff changeset
3959 bool v6; // eax@3
Ritor1
parents:
diff changeset
3960 Actor *v7; // esi@4
Ritor1
parents:
diff changeset
3961 Actor *v8; // edi@4
Ritor1
parents:
diff changeset
3962 char v9; // zf@5
Ritor1
parents:
diff changeset
3963 __int64 v10; // qax@8
Ritor1
parents:
diff changeset
3964 signed __int16 v11; // cx@9
Ritor1
parents:
diff changeset
3965 signed int v12; // ecx@20
Ritor1
parents:
diff changeset
3966 int v13; // ecx@22
Ritor1
parents:
diff changeset
3967 int v14; // edi@30
Ritor1
parents:
diff changeset
3968 unsigned int uActorID; // [sp+Ch] [bp-8h]@1
Ritor1
parents:
diff changeset
3969 signed int v17; // [sp+10h] [bp-4h]@1
Ritor1
parents:
diff changeset
3970 int v18; // [sp+20h] [bp+Ch]@34
Ritor1
parents:
diff changeset
3971
Ritor1
parents:
diff changeset
3972 v4 = 0;
Ritor1
parents:
diff changeset
3973 uActorID = a2;
Ritor1
parents:
diff changeset
3974 v17 = a1;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3975 if ( PID_TYPE(a1) == OBJECT_Item)
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3976 {
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3977 v5 = &pSpriteObjects[PID_ID(a1)];
0
Ritor1
parents:
diff changeset
3978 v4 = v5->field_60_distance_related_prolly_lod;
822
c232f160e6f3 Named SpriteObject spell-related fields.
Nomad
parents: 819
diff changeset
3979 v17 = v5->spell_caster_pid;
0
Ritor1
parents:
diff changeset
3980 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3981 LOWORD(v6) = PID_TYPE(v17);
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3982 if ( v6 == OBJECT_Actor)
0
Ritor1
parents:
diff changeset
3983 {
Ritor1
parents:
diff changeset
3984 v7 = &pActors[a2];
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
3985 v8 = &pActors[PID_ID(v17)];
303
3dcc9d945eeb DamageMonsterFromParty
Nomad
parents: 296
diff changeset
3986 v6 = pActors[a2].IsNotAlive();
0
Ritor1
parents:
diff changeset
3987 if ( !v6 )
Ritor1
parents:
diff changeset
3988 {
Ritor1
parents:
diff changeset
3989 v9 = v7->uAIState == 7;
Ritor1
parents:
diff changeset
3990 v7->uLastCharacterIDToHit = v17;
Ritor1
parents:
diff changeset
3991 if ( v9 )
Ritor1
parents:
diff changeset
3992 BYTE2(v7->uAttributes) |= 2u;
Ritor1
parents:
diff changeset
3993 v6 = stru_50C198._4273BB(v8, v7, v4, 0);
Ritor1
parents:
diff changeset
3994 if ( v6 )
Ritor1
parents:
diff changeset
3995 {
Ritor1
parents:
diff changeset
3996 v10 = (unsigned int)Actor::_43B3E0_CalcDamage(v8, a4);
Ritor1
parents:
diff changeset
3997 if ( (signed __int64)v8->pActorBuffs[3].uExpireTime > 0 )
Ritor1
parents:
diff changeset
3998 {
Ritor1
parents:
diff changeset
3999 v11 = v8->pActorBuffs[3].uPower;
Ritor1
parents:
diff changeset
4000 if ( v11 )
Ritor1
parents:
diff changeset
4001 v10 = (signed int)v10 / (unsigned __int16)v11;
Ritor1
parents:
diff changeset
4002 }
Ritor1
parents:
diff changeset
4003 if ( SHIDWORD(v7->pActorBuffs[5].uExpireTime) >= SHIDWORD(v10)
Ritor1
parents:
diff changeset
4004 && (SHIDWORD(v7->pActorBuffs[5].uExpireTime) > SHIDWORD(v10)
Ritor1
parents:
diff changeset
4005 || LODWORD(v7->pActorBuffs[5].uExpireTime) > HIDWORD(v10)) )
Ritor1
parents:
diff changeset
4006 LODWORD(v10) = 0;
Ritor1
parents:
diff changeset
4007 if ( a4 != HIDWORD(v10) )
Ritor1
parents:
diff changeset
4008 {
Ritor1
parents:
diff changeset
4009 if ( a4 - HIDWORD(v10) == 1 )
Ritor1
parents:
diff changeset
4010 {
Ritor1
parents:
diff changeset
4011 v12 = v8->pMonsterInfo.uAttack2Type;
Ritor1
parents:
diff changeset
4012 if ( SHIDWORD(v7->pActorBuffs[15].uExpireTime) >= SHIDWORD(v10)
Ritor1
parents:
diff changeset
4013 && (SHIDWORD(v7->pActorBuffs[15].uExpireTime) > SHIDWORD(v10)
Ritor1
parents:
diff changeset
4014 || LODWORD(v7->pActorBuffs[15].uExpireTime) > HIDWORD(v10)) )
Ritor1
parents:
diff changeset
4015 LODWORD(v10) = (signed int)v10 >> 1;
Ritor1
parents:
diff changeset
4016 goto LABEL_30;
Ritor1
parents:
diff changeset
4017 }
Ritor1
parents:
diff changeset
4018 if ( a4 - HIDWORD(v10) == 2 )
Ritor1
parents:
diff changeset
4019 {
Ritor1
parents:
diff changeset
4020 v13 = v7->pMonsterInfo.uSpell1ID;
Ritor1
parents:
diff changeset
4021 }
Ritor1
parents:
diff changeset
4022 else
Ritor1
parents:
diff changeset
4023 {
Ritor1
parents:
diff changeset
4024 if ( a4 - HIDWORD(v10) != 3 )
Ritor1
parents:
diff changeset
4025 {
Ritor1
parents:
diff changeset
4026 if ( a4 - HIDWORD(v10) == 4 )
Ritor1
parents:
diff changeset
4027 v12 = v8->pMonsterInfo.field_3C_some_special_attack;
Ritor1
parents:
diff changeset
4028 else
Ritor1
parents:
diff changeset
4029 v12 = 4;
Ritor1
parents:
diff changeset
4030 LABEL_30:
Ritor1
parents:
diff changeset
4031 v14 = stru_50C198.CalcMagicalDamageToActor(v7, v12, v10);
Ritor1
parents:
diff changeset
4032 v7->sCurrentHP -= v14;
Ritor1
parents:
diff changeset
4033 if ( v14 )
Ritor1
parents:
diff changeset
4034 {
Ritor1
parents:
diff changeset
4035 if ( v7->sCurrentHP > 0 )
1060
b79139c3b5c8 some AI cleaning
zipi
parents: 1057
diff changeset
4036 Actor::AI_Stun(uActorID, v17, 0);
0
Ritor1
parents:
diff changeset
4037 else
Ritor1
parents:
diff changeset
4038 Actor::Die(uActorID);
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 321
diff changeset
4039 Actor::AggroSurroundingPeasants(uActorID, 0);
0
Ritor1
parents:
diff changeset
4040 v18 = 20 * v14 / (signed int)v7->pMonsterInfo.uHP;
Ritor1
parents:
diff changeset
4041 if ( 20 * v14 / (signed int)v7->pMonsterInfo.uHP > 10 )
Ritor1
parents:
diff changeset
4042 v18 = 10;
Ritor1
parents:
diff changeset
4043 if ( !MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) )
Ritor1
parents:
diff changeset
4044 {
Ritor1
parents:
diff changeset
4045 pVelocity->x = (unsigned __int64)(v18 * (signed __int64)pVelocity->x) >> 16;
Ritor1
parents:
diff changeset
4046 pVelocity->y = (unsigned __int64)(v18 * (signed __int64)pVelocity->y) >> 16;
Ritor1
parents:
diff changeset
4047 pVelocity->z = (unsigned __int64)(v18 * (signed __int64)pVelocity->z) >> 16;
Ritor1
parents:
diff changeset
4048 v7->vVelocity.x = 50 * LOWORD(pVelocity->x);
Ritor1
parents:
diff changeset
4049 v7->vVelocity.y = 50 * LOWORD(pVelocity->y);
Ritor1
parents:
diff changeset
4050 v7->vVelocity.z = 50 * LOWORD(pVelocity->z);
Ritor1
parents:
diff changeset
4051 }
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 321
diff changeset
4052 Actor::AddBloodsplatOnDamageOverlay(uActorID, 1, v14);
0
Ritor1
parents:
diff changeset
4053 }
Ritor1
parents:
diff changeset
4054 else
Ritor1
parents:
diff changeset
4055 {
1060
b79139c3b5c8 some AI cleaning
zipi
parents: 1057
diff changeset
4056 Actor::AI_Stun(uActorID, v17, 0);
0
Ritor1
parents:
diff changeset
4057 }
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 321
diff changeset
4058 return;
0
Ritor1
parents:
diff changeset
4059 }
Ritor1
parents:
diff changeset
4060 v13 = v7->pMonsterInfo.uSpell2ID;
Ritor1
parents:
diff changeset
4061 }
Ritor1
parents:
diff changeset
4062 v12 = LOBYTE(pSpellStats->pInfos[v13].uSchool);
Ritor1
parents:
diff changeset
4063 goto LABEL_30;
Ritor1
parents:
diff changeset
4064 }
Ritor1
parents:
diff changeset
4065 v12 = v8->pMonsterInfo.uAttack1Type;
Ritor1
parents:
diff changeset
4066 goto LABEL_30;
Ritor1
parents:
diff changeset
4067 }
Ritor1
parents:
diff changeset
4068 }
Ritor1
parents:
diff changeset
4069 }
Ritor1
parents:
diff changeset
4070 }
Ritor1
parents:
diff changeset
4071
Ritor1
parents:
diff changeset
4072
Ritor1
parents:
diff changeset
4073 //----- (0043F515) --------------------------------------------------------
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 651
diff changeset
4074 void FindBillboardsLightLevels_BLV()
0
Ritor1
parents:
diff changeset
4075 {
Ritor1
parents:
diff changeset
4076 for (uint i = 0; i < uNumBillboardsToDraw; ++i)
Ritor1
parents:
diff changeset
4077 {
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
4078 auto p = &pBillboardRenderList[i];
0
Ritor1
parents:
diff changeset
4079
Ritor1
parents:
diff changeset
4080 if (p->field_1E & 2 || uCurrentlyLoadedLevelType == LEVEL_Indoor && !p->uIndoorSectorID)
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 651
diff changeset
4081 p->dimming_level = 0;
0
Ritor1
parents:
diff changeset
4082 else
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 651
diff changeset
4083 p->dimming_level = _43F55F_get_billboard_light_level(p, -1);
0
Ritor1
parents:
diff changeset
4084 }
Ritor1
parents:
diff changeset
4085 }
Ritor1
parents:
diff changeset
4086
Ritor1
parents:
diff changeset
4087 //----- (0043F55F) --------------------------------------------------------
Ritor1
parents:
diff changeset
4088 int __fastcall _43F55F_get_billboard_light_level(RenderBillboard *a1, int uBaseLightLevel)
Ritor1
parents:
diff changeset
4089 {
Ritor1
parents:
diff changeset
4090 signed int v3; // ecx@2
Ritor1
parents:
diff changeset
4091
Ritor1
parents:
diff changeset
4092 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
Ritor1
parents:
diff changeset
4093 {
Ritor1
parents:
diff changeset
4094 v3 = pIndoor->pSectors[a1->uIndoorSectorID].uMinAmbientLightLevel;
Ritor1
parents:
diff changeset
4095 }
Ritor1
parents:
diff changeset
4096 else
Ritor1
parents:
diff changeset
4097 {
Ritor1
parents:
diff changeset
4098 if ( uBaseLightLevel == -1 )
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 651
diff changeset
4099 v3 = a1->dimming_level;
0
Ritor1
parents:
diff changeset
4100 else
Ritor1
parents:
diff changeset
4101 v3 = uBaseLightLevel;
Ritor1
parents:
diff changeset
4102 }
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 417
diff changeset
4103 return _43F5C8_get_point_light_level_with_respect_to_lights(v3, a1->uIndoorSectorID, a1->world_x, a1->world_y, a1->world_z);
0
Ritor1
parents:
diff changeset
4104 }
Ritor1
parents:
diff changeset
4105
Ritor1
parents:
diff changeset
4106 //----- (0043F5C8) --------------------------------------------------------
Ritor1
parents:
diff changeset
4107 int __fastcall _43F5C8_get_point_light_level_with_respect_to_lights(unsigned int uBaseLightLevel, int uSectorID, float x, float y, float z)
Ritor1
parents:
diff changeset
4108 {
Ritor1
parents:
diff changeset
4109 int v5; // esi@1
Ritor1
parents:
diff changeset
4110 signed int v6; // edi@1
Ritor1
parents:
diff changeset
4111 int v8; // eax@6
Ritor1
parents:
diff changeset
4112 int v9; // ebx@6
Ritor1
parents:
diff changeset
4113 unsigned int v10; // ecx@6
Ritor1
parents:
diff changeset
4114 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
4115 unsigned int v12; // edx@11
Ritor1
parents:
diff changeset
4116 signed int v13; // ecx@12
Ritor1
parents:
diff changeset
4117 BLVLightMM7 *v16; // esi@20
Ritor1
parents:
diff changeset
4118 int v17; // ebx@21
Ritor1
parents:
diff changeset
4119 int v18; // eax@24
Ritor1
parents:
diff changeset
4120 int v19; // ebx@24
Ritor1
parents:
diff changeset
4121 unsigned int v20; // ecx@24
Ritor1
parents:
diff changeset
4122 int v21; // edx@25
Ritor1
parents:
diff changeset
4123 unsigned int v22; // edx@27
Ritor1
parents:
diff changeset
4124 unsigned int v23; // edx@29
Ritor1
parents:
diff changeset
4125 signed int v24; // ecx@30
Ritor1
parents:
diff changeset
4126 int v26; // ebx@35
Ritor1
parents:
diff changeset
4127 int v27; // eax@38
Ritor1
parents:
diff changeset
4128 int v28; // ebx@38
Ritor1
parents:
diff changeset
4129 unsigned int v29; // ecx@38
Ritor1
parents:
diff changeset
4130 int v30; // edx@39
Ritor1
parents:
diff changeset
4131 unsigned int v31; // edx@41
Ritor1
parents:
diff changeset
4132 unsigned int v32; // edx@43
Ritor1
parents:
diff changeset
4133 signed int v33; // ecx@44
Ritor1
parents:
diff changeset
4134 int v37; // [sp+Ch] [bp-18h]@37
Ritor1
parents:
diff changeset
4135 int v38; // [sp+10h] [bp-14h]@5
Ritor1
parents:
diff changeset
4136 int v39; // [sp+10h] [bp-14h]@23
Ritor1
parents:
diff changeset
4137 int v40; // [sp+10h] [bp-14h]@36
Ritor1
parents:
diff changeset
4138 int v42; // [sp+14h] [bp-10h]@22
Ritor1
parents:
diff changeset
4139 unsigned int v43; // [sp+18h] [bp-Ch]@12
Ritor1
parents:
diff changeset
4140 unsigned int v44; // [sp+18h] [bp-Ch]@30
Ritor1
parents:
diff changeset
4141 unsigned int v45; // [sp+18h] [bp-Ch]@44
Ritor1
parents:
diff changeset
4142
Ritor1
parents:
diff changeset
4143 v6 = uBaseLightLevel;
Ritor1
parents:
diff changeset
4144 for (uint i = 0; i < pMobileLightsStack->uNumLightsActive; ++i)
Ritor1
parents:
diff changeset
4145 {
Ritor1
parents:
diff changeset
4146 auto p = pMobileLightsStack->pLights + i;
Ritor1
parents:
diff changeset
4147
Ritor1
parents:
diff changeset
4148 auto distX = abs(p->vPosition.x - x);
Ritor1
parents:
diff changeset
4149 if ( distX <= p->uRadius)
Ritor1
parents:
diff changeset
4150 {
Ritor1
parents:
diff changeset
4151 auto distY = abs(p->vPosition.y - y);
Ritor1
parents:
diff changeset
4152 if ( distY <= p->uRadius)
Ritor1
parents:
diff changeset
4153 {
Ritor1
parents:
diff changeset
4154 auto distZ = abs(p->vPosition.z - z);
Ritor1
parents:
diff changeset
4155 if ( distZ <= p->uRadius)
Ritor1
parents:
diff changeset
4156 {
Ritor1
parents:
diff changeset
4157 v8 = distX;
Ritor1
parents:
diff changeset
4158 v9 = distY;
Ritor1
parents:
diff changeset
4159 v10 = distZ;
Ritor1
parents:
diff changeset
4160 if (distX < distY)
Ritor1
parents:
diff changeset
4161 {
Ritor1
parents:
diff changeset
4162 v8 = distY;
Ritor1
parents:
diff changeset
4163 v9 = distX;
Ritor1
parents:
diff changeset
4164 }
Ritor1
parents:
diff changeset
4165 if ( v8 < distZ )
Ritor1
parents:
diff changeset
4166 {
Ritor1
parents:
diff changeset
4167 v11 = v8;
Ritor1
parents:
diff changeset
4168 v8 = distZ;
Ritor1
parents:
diff changeset
4169 v10 = v11;
Ritor1
parents:
diff changeset
4170 }
Ritor1
parents:
diff changeset
4171 if ( v9 < (signed int)v10 )
Ritor1
parents:
diff changeset
4172 {
Ritor1
parents:
diff changeset
4173 v12 = v10;
Ritor1
parents:
diff changeset
4174 v10 = v9;
Ritor1
parents:
diff changeset
4175 v9 = v12;
Ritor1
parents:
diff changeset
4176 }
Ritor1
parents:
diff changeset
4177 v43 = ((unsigned int)(11 * v9) / 32) + (v10 / 4) + v8;
Ritor1
parents:
diff changeset
4178 v13 = p->uRadius;
Ritor1
parents:
diff changeset
4179 if ( (signed int)v43 < v13 )
Ritor1
parents:
diff changeset
4180 v6 += ((unsigned __int64)(30i64 * (signed int)(v43 << 16) / v13) >> 16) - 30;
Ritor1
parents:
diff changeset
4181 }
Ritor1
parents:
diff changeset
4182 }
Ritor1
parents:
diff changeset
4183 }
Ritor1
parents:
diff changeset
4184 }
Ritor1
parents:
diff changeset
4185
Ritor1
parents:
diff changeset
4186 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor)
Ritor1
parents:
diff changeset
4187 {
Ritor1
parents:
diff changeset
4188 auto pSector = pIndoor->pSectors + uSectorID;
Ritor1
parents:
diff changeset
4189
Ritor1
parents:
diff changeset
4190 for (uint i = 0; i < pSector->uNumLights; ++i)
Ritor1
parents:
diff changeset
4191 {
Ritor1
parents:
diff changeset
4192 v16 = pIndoor->pLights + pSector->pLights[i];
Ritor1
parents:
diff changeset
4193 if (~v16->uAtributes & 8)
Ritor1
parents:
diff changeset
4194 {
Ritor1
parents:
diff changeset
4195 v17 = abs(v16->vPosition.x - x);
Ritor1
parents:
diff changeset
4196 if ( v17 <= v16->uRadius )
Ritor1
parents:
diff changeset
4197 {
Ritor1
parents:
diff changeset
4198 v42 = abs(v16->vPosition.y - y);
Ritor1
parents:
diff changeset
4199 if ( v42 <= v16->uRadius )
Ritor1
parents:
diff changeset
4200 {
Ritor1
parents:
diff changeset
4201 v39 = abs(v16->vPosition.z - z);
Ritor1
parents:
diff changeset
4202 if ( v39 <= v16->uRadius )
Ritor1
parents:
diff changeset
4203 {
Ritor1
parents:
diff changeset
4204 v18 = v17;
Ritor1
parents:
diff changeset
4205 v19 = v42;
Ritor1
parents:
diff changeset
4206 v20 = v39;
Ritor1
parents:
diff changeset
4207 if ( v18 < v42 )
Ritor1
parents:
diff changeset
4208 {
Ritor1
parents:
diff changeset
4209 v21 = v18;
Ritor1
parents:
diff changeset
4210 v18 = v42;
Ritor1
parents:
diff changeset
4211 v19 = v21;
Ritor1
parents:
diff changeset
4212 }
Ritor1
parents:
diff changeset
4213 if ( v18 < v39 )
Ritor1
parents:
diff changeset
4214 {
Ritor1
parents:
diff changeset
4215 v22 = v18;
Ritor1
parents:
diff changeset
4216 v18 = v39;
Ritor1
parents:
diff changeset
4217 v20 = v22;
Ritor1
parents:
diff changeset
4218 }
Ritor1
parents:
diff changeset
4219 if ( v19 < (signed int)v20 )
Ritor1
parents:
diff changeset
4220 {
Ritor1
parents:
diff changeset
4221 v23 = v20;
Ritor1
parents:
diff changeset
4222 v20 = v19;
Ritor1
parents:
diff changeset
4223 v19 = v23;
Ritor1
parents:
diff changeset
4224 }
Ritor1
parents:
diff changeset
4225 v44 = ((unsigned int)(11 * v19) >> 5) + (v20 >> 2) + v18;
Ritor1
parents:
diff changeset
4226 v24 = v16->uRadius;
Ritor1
parents:
diff changeset
4227 if ( (signed int)v44 < v24 )
Ritor1
parents:
diff changeset
4228 v6 += ((unsigned __int64)(30i64 * (signed int)(v44 << 16) / v24) >> 16) - 30;
Ritor1
parents:
diff changeset
4229 }
Ritor1
parents:
diff changeset
4230 }
Ritor1
parents:
diff changeset
4231 }
Ritor1
parents:
diff changeset
4232 }
Ritor1
parents:
diff changeset
4233 }
Ritor1
parents:
diff changeset
4234 }
Ritor1
parents:
diff changeset
4235
Ritor1
parents:
diff changeset
4236 for (uint i = 0; i < pStationaryLightsStack->uNumLightsActive; ++i)
Ritor1
parents:
diff changeset
4237 {
Ritor1
parents:
diff changeset
4238 auto p = pStationaryLightsStack->pLights + i;
Ritor1
parents:
diff changeset
4239 v26 = abs(p->vPosition.x - x);
Ritor1
parents:
diff changeset
4240 if ( v26 <= p->uRadius)
Ritor1
parents:
diff changeset
4241 {
Ritor1
parents:
diff changeset
4242 v40 = abs(p->vPosition.y - y);
Ritor1
parents:
diff changeset
4243 if ( v40 <= p->uRadius)
Ritor1
parents:
diff changeset
4244 {
Ritor1
parents:
diff changeset
4245 v37 = abs(p->vPosition.z - z);
Ritor1
parents:
diff changeset
4246 if ( v37 <= p->uRadius)
Ritor1
parents:
diff changeset
4247 {
Ritor1
parents:
diff changeset
4248 v27 = v26;
Ritor1
parents:
diff changeset
4249 v28 = v40;
Ritor1
parents:
diff changeset
4250 v29 = v37;
Ritor1
parents:
diff changeset
4251 if ( v27 < v40 )
Ritor1
parents:
diff changeset
4252 {
Ritor1
parents:
diff changeset
4253 v30 = v27;
Ritor1
parents:
diff changeset
4254 v27 = v40;
Ritor1
parents:
diff changeset
4255 v28 = v30;
Ritor1
parents:
diff changeset
4256 }
Ritor1
parents:
diff changeset
4257 if ( v27 < v37 )
Ritor1
parents:
diff changeset
4258 {
Ritor1
parents:
diff changeset
4259 v31 = v27;
Ritor1
parents:
diff changeset
4260 v27 = v37;
Ritor1
parents:
diff changeset
4261 v29 = v31;
Ritor1
parents:
diff changeset
4262 }
Ritor1
parents:
diff changeset
4263 if ( v28 < (signed int)v29 )
Ritor1
parents:
diff changeset
4264 {
Ritor1
parents:
diff changeset
4265 v32 = v29;
Ritor1
parents:
diff changeset
4266 v29 = v28;
Ritor1
parents:
diff changeset
4267 v28 = v32;
Ritor1
parents:
diff changeset
4268 }
Ritor1
parents:
diff changeset
4269 v45 = ((unsigned int)(11 * v28) >> 5) + (v29 >> 2) + v27;
Ritor1
parents:
diff changeset
4270 v33 = p->uRadius;
Ritor1
parents:
diff changeset
4271 if ( (signed int)v45 < v33 )
Ritor1
parents:
diff changeset
4272 v6 += ((unsigned __int64)(30i64 * (signed int)(v45 << 16) / v33) >> 16) - 30;
Ritor1
parents:
diff changeset
4273 }
Ritor1
parents:
diff changeset
4274 }
Ritor1
parents:
diff changeset
4275 }
Ritor1
parents:
diff changeset
4276 }
Ritor1
parents:
diff changeset
4277
Ritor1
parents:
diff changeset
4278 if ( v6 <= 31 )
Ritor1
parents:
diff changeset
4279 {
Ritor1
parents:
diff changeset
4280 if ( v6 < 0 )
Ritor1
parents:
diff changeset
4281 v6 = 0;
Ritor1
parents:
diff changeset
4282 }
Ritor1
parents:
diff changeset
4283 else
Ritor1
parents:
diff changeset
4284 {
Ritor1
parents:
diff changeset
4285 v6 = 31;
Ritor1
parents:
diff changeset
4286 }
Ritor1
parents:
diff changeset
4287 return v6;
Ritor1
parents:
diff changeset
4288 }
Ritor1
parents:
diff changeset
4289
Ritor1
parents:
diff changeset
4290
Ritor1
parents:
diff changeset
4291 //----- (004070EF) --------------------------------------------------------
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4292 bool __fastcall sub_4070EF_prolly_detect_player(unsigned int uObjID, unsigned int uObj2ID)
0
Ritor1
parents:
diff changeset
4293 {
Ritor1
parents:
diff changeset
4294 signed int v2; // eax@1
Ritor1
parents:
diff changeset
4295 int v5; // ecx@2
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4296 int obj1_sector; // eax@4
0
Ritor1
parents:
diff changeset
4297 float v8; // ST24_4@5
Ritor1
parents:
diff changeset
4298 double v9; // ST18_8@5
Ritor1
parents:
diff changeset
4299 int v11; // ecx@6
Ritor1
parents:
diff changeset
4300 signed int v12; // eax@7
Ritor1
parents:
diff changeset
4301 int v13; // esi@7
Ritor1
parents:
diff changeset
4302 int v14; // esi@8
Ritor1
parents:
diff changeset
4303 int v15; // esi@9
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4304 int obj2_z; // edi@11
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4305 int obj2_x; // esi@11
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4306 int obj2_sector; // eax@13
0
Ritor1
parents:
diff changeset
4307 float v20; // ST24_4@14
Ritor1
parents:
diff changeset
4308 double v21; // ST18_8@14
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4309 int dist_x; // ebx@16
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4310 signed int dist_3d; // ecx@16
0
Ritor1
parents:
diff changeset
4311 int v25; // eax@18
Ritor1
parents:
diff changeset
4312 BLVFace *v29; // ebx@32
Ritor1
parents:
diff changeset
4313 Vec3_short_ *v30; // esi@32
Ritor1
parents:
diff changeset
4314 int v31; // eax@32
Ritor1
parents:
diff changeset
4315 int v32; // ST50_4@44
Ritor1
parents:
diff changeset
4316 int v33; // ST54_4@44
Ritor1
parents:
diff changeset
4317 int v34; // eax@44
Ritor1
parents:
diff changeset
4318 signed int v38; // esi@45
Ritor1
parents:
diff changeset
4319 signed __int64 v40; // qtt@50
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4320 __int16 next_sector; // bx@58
0
Ritor1
parents:
diff changeset
4321 int v43; // [sp-8h] [bp-70h]@11
Ritor1
parents:
diff changeset
4322 int v44; // [sp-4h] [bp-6Ch]@11
Ritor1
parents:
diff changeset
4323 int v47; // [sp+18h] [bp-50h]@20
Ritor1
parents:
diff changeset
4324 int v48; // [sp+1Ch] [bp-4Ch]@20
Ritor1
parents:
diff changeset
4325 int v49; // [sp+20h] [bp-48h]@20
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4326 int dist_z; // [sp+24h] [bp-44h]@16
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4327 signed int higher_z; // [sp+24h] [bp-44h]@27
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4328 signed int lower_z; // [sp+28h] [bp-40h]@26
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4329 signed int higher_y; // [sp+2Ch] [bp-3Ch]@23
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4330 signed int lower_y; // [sp+30h] [bp-38h]@22
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4331 signed int higher_x; // [sp+34h] [bp-34h]@21
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4332 signed int lower_x; // [sp+38h] [bp-30h]@20
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4333 signed int sectors_visited; // [sp+3Ch] [bp-2Ch]@28
0
Ritor1
parents:
diff changeset
4334 int v58; // [sp+44h] [bp-24h]@50
Ritor1
parents:
diff changeset
4335 int v59; // [sp+48h] [bp-20h]@44
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4336 int obj2_y; // [sp+50h] [bp-18h]@11
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4337 int obj1_x; // [sp+58h] [bp-10h]@4
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4338 int obj1_y; // [sp+5Ch] [bp-Ch]@4
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4339 int obj1_z; // [sp+60h] [bp-8h]@4
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4340 int current_sector; // [sp+64h] [bp-4h]@7
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4341 int dist_y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4342 int v70;
0
Ritor1
parents:
diff changeset
4343
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 839
diff changeset
4344 v2 = PID_ID(uObjID);
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4345 switch( PID_TYPE(uObjID) )
0
Ritor1
parents:
diff changeset
4346 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4347 case OBJECT_Decoration:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4348 obj1_x = pLevelDecorations[v2].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4349 obj1_y = pLevelDecorations[v2].vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4350 obj1_z = pLevelDecorations[v2].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4351 obj1_sector = pIndoor->GetSector(obj1_x, obj1_y, obj1_z);
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4352 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4353 case OBJECT_Actor:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4354 obj1_x = pActors[v2].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4355 obj1_y = pActors[v2].vPosition.y;
0
Ritor1
parents:
diff changeset
4356 v8 = (double)pActors[v2].uActorHeight * 0.69999999;
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4357 //v9 = v8 + 6.7553994e15;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4358 //obj1_z = LODWORD(v9) + pActors[v2].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4359 obj1_z = (int)v8 + pActors[v2].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4360 obj1_sector = pActors[v2].uSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4361 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4362 case OBJECT_Item:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4363 obj1_x = pSpriteObjects[v2].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4364 obj1_y = pSpriteObjects[v2].vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4365 obj1_z = pSpriteObjects[v2].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4366 obj1_sector = pSpriteObjects[v2].uSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4367 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4368 default:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4369 return 0;
0
Ritor1
parents:
diff changeset
4370 }
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4371 v12 = PID_ID(uObj2ID);
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4372 switch( PID_TYPE(uObj2ID) )
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4373 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4374 case OBJECT_Decoration:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4375 obj2_z = pLevelDecorations[v12].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4376 obj2_x = pLevelDecorations[v12].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4377 obj2_y = pLevelDecorations[v12].vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4378 obj2_sector = pIndoor->GetSector(obj2_x, obj2_y, obj2_z);
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4379 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4380 case OBJECT_Player:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4381 obj2_x = pParty->vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4382 obj2_z = pParty->sEyelevel + pParty->vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4383 obj2_y = pParty->vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4384 obj2_sector = pIndoor->GetSector(obj2_x, obj2_y, obj2_z);
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4385 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4386 case OBJECT_Actor:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4387 obj2_y = pActors[v12].vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4388 obj2_x = pActors[v12].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4389 v20 = (double)pActors[v12].uActorHeight * 0.69999999;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4390 //v21 = v20 + 6.7553994e15;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4391 //obj2_z = LODWORD(v21) + pActors[v12].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4392 obj2_z = (int)v20 + pActors[v12].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4393 obj2_sector = pActors[v12].uSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4394 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4395 case OBJECT_Item:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4396 obj2_x = pSpriteObjects[v12].vPosition.x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4397 obj2_z = pSpriteObjects[v12].vPosition.z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4398 obj2_y = pSpriteObjects[v12].vPosition.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4399 obj2_sector = pSpriteObjects[v12].uSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4400 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4401 default:
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4402 return 0;
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4403 }
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4404 dist_x = obj2_x - obj1_x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4405 dist_z = obj2_z - obj1_z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4406 dist_y = obj2_y - obj1_y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4407 dist_3d = integer_sqrt(dist_x * dist_x + dist_y * dist_y + dist_z * dist_z);
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4408 //range check
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4409 if ( dist_3d > 5120 )
0
Ritor1
parents:
diff changeset
4410 return 0;
Ritor1
parents:
diff changeset
4411 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor)
Ritor1
parents:
diff changeset
4412 return 1;
Ritor1
parents:
diff changeset
4413 v25 = 65536;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4414 if ( dist_3d )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4415 v25 = 65536 / dist_3d;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4416 v49 = dist_x * v25;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4417 v47 = dist_z * v25;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4418 v48 = dist_y * v25;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4419 if ( obj1_x < obj2_x )
0
Ritor1
parents:
diff changeset
4420 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4421 lower_x = obj1_x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4422 higher_x = obj2_x;
0
Ritor1
parents:
diff changeset
4423 }
Ritor1
parents:
diff changeset
4424 else
Ritor1
parents:
diff changeset
4425 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4426 lower_x = obj2_x;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4427 higher_x = obj1_x;
0
Ritor1
parents:
diff changeset
4428 }
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4429 if ( obj1_y < obj2_y )
0
Ritor1
parents:
diff changeset
4430 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4431 lower_y = obj1_y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4432 higher_y = obj2_y;
0
Ritor1
parents:
diff changeset
4433 }
Ritor1
parents:
diff changeset
4434 else
Ritor1
parents:
diff changeset
4435 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4436 lower_y = obj2_y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4437 higher_y = obj1_y;
0
Ritor1
parents:
diff changeset
4438 }
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4439 if ( obj1_z < obj2_z )
0
Ritor1
parents:
diff changeset
4440 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4441 lower_z = obj1_z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4442 higher_z = obj2_z;
0
Ritor1
parents:
diff changeset
4443 }
Ritor1
parents:
diff changeset
4444 else
Ritor1
parents:
diff changeset
4445 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4446 lower_z = obj2_z;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4447 higher_z = obj1_z;
0
Ritor1
parents:
diff changeset
4448 }
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4449 sectors_visited = 0;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4450 //monster in same sector with player
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4451 if ( obj1_sector == obj2_sector )
0
Ritor1
parents:
diff changeset
4452 return 1;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4453 //search starts from monster
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4454 current_sector = obj1_sector;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4455 for( int current_portal = 0; current_portal < pIndoor->pSectors[current_sector].uNumPortals; current_portal++ )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4456 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4457 v29 = &pIndoor->pFaces[pIndoor->pSectors[current_sector].pPortals[current_portal]];
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4458 v30 = &pIndoor->pVertices[*v29->pVertexIDs];
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4459 v31 = v29->pFacePlane_old.vNormal.z * (v30->z - obj1_z)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4460 + v29->pFacePlane_old.vNormal.y * (v30->y - obj1_y)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4461 + v29->pFacePlane_old.vNormal.x * (v30->x - obj1_x);
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4462
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4463 if ( current_sector != v29->uSectorID )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4464 v31 = -v31;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4465
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4466 if ( v31 >= 0 && v30->x != obj1_x && v30->y != obj1_y && v30->z != obj1_z)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4467 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4468
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4469 if( lower_x > v29->pBounding.x2
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4470 || higher_x < v29->pBounding.x1
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4471 || lower_y > v29->pBounding.y2
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4472 || higher_y < v29->pBounding.y1
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4473 || lower_z > v29->pBounding.z2
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4474 || higher_z < v29->pBounding.z1 )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4475 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4476 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4477 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4478
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4479 v32 = fixpoint_mul(v29->pFacePlane_old.vNormal.x,v49);
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4480 v33 = fixpoint_mul(v29->pFacePlane_old.vNormal.z,v47);
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4481 v34 = fixpoint_mul(v29->pFacePlane_old.vNormal.y,v48);
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4482 v59 = v32 + v33 + v34;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4483 if ( v59 )
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4484 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4485 v70 = v29->pFacePlane_old.dist
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4486 + obj1_z * v29->pFacePlane_old.vNormal.z
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4487 + obj1_x * v29->pFacePlane_old.vNormal.x
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4488 + obj1_y * v29->pFacePlane_old.vNormal.y;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4489 v38 = -v70;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4490
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4491 // if ( v59 <= 0 ^ v70 <= 0 )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4492
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4493 /* TEMPORARY
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4494 if ( v59 <= 0 && v70 <= 0 )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4495 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4496 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4497 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4498 if ( !(v59 <= 0 && v70 <= 0) )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4499 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4500 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4501 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4502 */
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4503
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4504 if( abs(v38) >> 14 > abs(v59) )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4505 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4506
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4507 v58 = fixpoint_div(v38,v59);
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4508
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4509 if( v58 < 0 )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4510 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4511 continue;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4512 }
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4513
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4514 if(!sub_4075DB(
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4515 obj1_x + ((fixpoint_mul(v49,v58) + 32768) >> 16),
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4516 obj1_y + ((fixpoint_mul(v48,v58) + 32768) >> 16),
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4517 obj1_z + ((fixpoint_mul(v47,v58) + 32768) >> 16),
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4518 v29) )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4519 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4520 continue;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4521 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4522
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4523 //if there is no next sector turn back
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4524 if ( v29->uSectorID == current_sector )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4525 next_sector = v29->uBackSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4526 else
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4527 next_sector = v29->uSectorID;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4528
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4529 //no more portals, quit
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4530 if ( next_sector == current_sector )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4531 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4532 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4533 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4534
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4535 ++sectors_visited;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4536 current_sector = next_sector;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4537
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4538 //found player, quit
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4539 if ( next_sector == obj2_sector )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4540 return 1;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4541
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4542 current_sector = next_sector;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4543
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4544 //did we hit limit for portals?
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4545 //does the next room have portals?
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4546 if ( sectors_visited < 30 && pIndoor->pSectors[current_sector].uNumPortals > 0)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4547 {
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4548 current_portal=-1;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4549 continue;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4550 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4551 else
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4552 break;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4553 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4554 }
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4555 //did we stop in the sector where player is?
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4556 if ( current_sector != obj2_sector )
0
Ritor1
parents:
diff changeset
4557 return 0;
Ritor1
parents:
diff changeset
4558 return 1;
Ritor1
parents:
diff changeset
4559 }
Ritor1
parents:
diff changeset
4560
Ritor1
parents:
diff changeset
4561 //----- (004075DB) --------------------------------------------------------
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4562 bool __fastcall sub_4075DB(int x, int y, int z, BLVFace *a4)
0
Ritor1
parents:
diff changeset
4563 {
Ritor1
parents:
diff changeset
4564 unsigned int v5; // esi@1
Ritor1
parents:
diff changeset
4565 char v7; // zf@2
Ritor1
parents:
diff changeset
4566 int v8; // edi@2
Ritor1
parents:
diff changeset
4567 Vec3_short_ *v9; // ecx@3
Ritor1
parents:
diff changeset
4568 int v10; // edx@4
Ritor1
parents:
diff changeset
4569 Vec3_short_ *v12; // ecx@8
Ritor1
parents:
diff changeset
4570 int v13; // edx@9
Ritor1
parents:
diff changeset
4571 Vec3_short_ *v15; // ecx@12
Ritor1
parents:
diff changeset
4572 int v16; // edx@13
Ritor1
parents:
diff changeset
4573 bool v18; // esi@14
Ritor1
parents:
diff changeset
4574 int v19; // ecx@14
Ritor1
parents:
diff changeset
4575 int v20; // ecx@16
Ritor1
parents:
diff changeset
4576 int v21; // edx@16
Ritor1
parents:
diff changeset
4577 int v22; // eax@17
Ritor1
parents:
diff changeset
4578 signed int v23; // ebx@18
Ritor1
parents:
diff changeset
4579 int v24; // esi@20
Ritor1
parents:
diff changeset
4580 signed int v25; // eax@22
Ritor1
parents:
diff changeset
4581 signed __int64 v26; // qtt@22
Ritor1
parents:
diff changeset
4582 bool result; // eax@25
Ritor1
parents:
diff changeset
4583 int v29; // [sp+10h] [bp-Ch]@14
Ritor1
parents:
diff changeset
4584 signed int a3a; // [sp+24h] [bp+8h]@14
Ritor1
parents:
diff changeset
4585 int a4a; // [sp+28h] [bp+Ch]@2
Ritor1
parents:
diff changeset
4586
1493
9e9a12506d51 player detection partly working
zipi
parents: 1477
diff changeset
4587 //__debugbreak();
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
4588
0
Ritor1
parents:
diff changeset
4589 v5 = a4->uAttributes;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4590 v9 = pIndoor->pVertices;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4591 if ( v5 & FACE_XY_PLANE )
0
Ritor1
parents:
diff changeset
4592 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4593 a4a = x;
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4594 v8 = y;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4595 for(int i = 0; i < a4->uNumVertices; i++)
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4596 {
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4597 dword_4F5D98_xs[i] = v9[a4->pVertexIDs[i]].x;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4598 dword_4F5CC8_ys[i] = v9[a4->pVertexIDs[i]].y;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4599 }
0
Ritor1
parents:
diff changeset
4600 }
Ritor1
parents:
diff changeset
4601 else
Ritor1
parents:
diff changeset
4602 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4603 v8 = z;
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4604 if ( v5 & FACE_XZ_PLANE )
0
Ritor1
parents:
diff changeset
4605 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4606 a4a = x;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4607 for(int i = 0; i < a4->uNumVertices; i++)
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4608 {
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4609 dword_4F5D98_xs[i] = v9[a4->pVertexIDs[i]].x;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4610 dword_4F5CC8_ys[i] = v9[a4->pVertexIDs[i]].z;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4611 }
0
Ritor1
parents:
diff changeset
4612 }
Ritor1
parents:
diff changeset
4613 else
Ritor1
parents:
diff changeset
4614 {
1616
de6e646822a6 mul <> sub0 difference
zipi
parents: 1615
diff changeset
4615 a4a = y;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4616 for(int i = 0; i < a4->uNumVertices; i++)
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4617 {
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4618 dword_4F5D98_xs[i] = v9[a4->pVertexIDs[i]].y;
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4619 dword_4F5CC8_ys[i] = v9[a4->pVertexIDs[i]].z;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4620 }
0
Ritor1
parents:
diff changeset
4621 }
Ritor1
parents:
diff changeset
4622 }
Ritor1
parents:
diff changeset
4623 a3a = 0;
1471
736973e11d11 sub_4075DB cleaned
zipi
parents: 1469
diff changeset
4624 dword_4F5D98_xs[a4->uNumVertices] = dword_4F5D98_xs[0];
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4625 dword_4F5CC8_ys[a4->uNumVertices] = dword_4F5CC8_ys[0];
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4626 for(int i = 0; i < a4->uNumVertices && a3a < 2; i++)
0
Ritor1
parents:
diff changeset
4627 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4628 if ( dword_4F5CC8_ys[i] >= v8 ^ (dword_4F5CC8_ys[i + 1] >= v8) )
0
Ritor1
parents:
diff changeset
4629 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4630 //if( dword_4F5D98_xs[i + 1] >= a4a || dword_4F5D98_xs[i] >= a4a)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4631 if( !(dword_4F5D98_xs[i + 1] >= a4a && dword_4F5D98_xs[i] < a4a))
0
Ritor1
parents:
diff changeset
4632 {
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4633 if ( (dword_4F5D98_xs[i + 1] < a4a && dword_4F5D98_xs[i] >= a4a) )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4634 ++a3a;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4635 //|| (v25 = dword_4F5D98_xs[i + 1] - dword_4F5D98_xs[i],LODWORD(v26) = v25 << 16, HIDWORD(v26) = v25 >> 16,
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4636 //dword_4F5D98_xs[i] + ((signed int)(((unsigned __int64)(v26 / (dword_4F5CC4_ys[i + 2] - dword_4F5CC4_ys[i + 1])* ((v8 - dword_4F5CC4_ys[i + 1]) << 16)) >> 16)
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4637 // + 32768) >> 16) >= a4a) )
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4638 else
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4639 {
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4640 v25 = fixpoint_div(dword_4F5D98_xs[i + 1] - dword_4F5D98_xs[i], dword_4F5CC8_ys[i + 1] - dword_4F5CC8_ys[i]);
7182930263b3 fixpoint functions renaming
zipi
parents: 1637
diff changeset
4641 if( dword_4F5D98_xs[i] + (fixpoint_mul(v25, (v8 - dword_4F5CC8_ys[i]) << 16) + 32768 >> 16) >= a4a)
1615
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4642 ++a3a;
89dec2be255f AI visibility issue temporarily fixed
zipi
parents: 1614
diff changeset
4643 }
0
Ritor1
parents:
diff changeset
4644 }
Ritor1
parents:
diff changeset
4645 }
Ritor1
parents:
diff changeset
4646 }
Ritor1
parents:
diff changeset
4647 result = 1;
Ritor1
parents:
diff changeset
4648 if ( a3a != 1 )
Ritor1
parents:
diff changeset
4649 result = 0;
Ritor1
parents:
diff changeset
4650 return result;
Ritor1
parents:
diff changeset
4651 }
Ritor1
parents:
diff changeset
4652
Ritor1
parents:
diff changeset
4653 //----- (004077F1) --------------------------------------------------------
Ritor1
parents:
diff changeset
4654 bool __fastcall sub_4077F1(int a1, int a2, int a3, ODMFace *a4, BSPVertexBuffer *a5)
Ritor1
parents:
diff changeset
4655 {
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4656 //ODMFace *v5; // eax@1
1473
zipi
parents: 1472
diff changeset
4657 Vec3_int_ *v9;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4658 unsigned int v5; // esi@1
0
Ritor1
parents:
diff changeset
4659 signed int v7; // edi@1
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4660 //char v8; // zf@2
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4661 //unsigned __int16 *v9; // edx@3
0
Ritor1
parents:
diff changeset
4662 int v10; // ecx@4
Ritor1
parents:
diff changeset
4663 unsigned __int16 *v11; // edx@8
Ritor1
parents:
diff changeset
4664 int v12; // ecx@9
Ritor1
parents:
diff changeset
4665 int v13; // edx@12
Ritor1
parents:
diff changeset
4666 int v14; // ecx@13
Ritor1
parents:
diff changeset
4667 int v15; // esi@14
Ritor1
parents:
diff changeset
4668 bool v16; // edi@14
Ritor1
parents:
diff changeset
4669 int v17; // ecx@16
Ritor1
parents:
diff changeset
4670 int v18; // edx@16
Ritor1
parents:
diff changeset
4671 int v19; // eax@17
Ritor1
parents:
diff changeset
4672 signed int v20; // ebx@18
Ritor1
parents:
diff changeset
4673 int v21; // edi@20
Ritor1
parents:
diff changeset
4674 signed int v22; // eax@22
Ritor1
parents:
diff changeset
4675 signed __int64 v23; // qtt@22
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4676 //bool result; // eax@25
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4677 //int v25; // [sp+14h] [bp-8h]@14
0
Ritor1
parents:
diff changeset
4678 int a4a; // [sp+28h] [bp+Ch]@2
Ritor1
parents:
diff changeset
4679 signed int a5a; // [sp+2Ch] [bp+10h]@14
Ritor1
parents:
diff changeset
4680
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
4681 __debugbreak();
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
4682
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4683 v5 = a4->uAttributes;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4684 v9 = a5->pVertices;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4685 if ( v5 & FACE_XY_PLANE )
0
Ritor1
parents:
diff changeset
4686 {
Ritor1
parents:
diff changeset
4687 a4a = a1;
Ritor1
parents:
diff changeset
4688 a3 = a2;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4689 for(int i = 0; i < a4->uNumVertices; i++)
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4690 {
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4691 dword_4F5BF4_xs[i+1] = v9[a4->pVertexIDs[i]].x;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4692 dword_4F5B24_ys[i+1] = v9[a4->pVertexIDs[i]].y;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4693 }
0
Ritor1
parents:
diff changeset
4694 }
Ritor1
parents:
diff changeset
4695 else
Ritor1
parents:
diff changeset
4696 {
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4697 if ( v5 & FACE_XY_PLANE )
0
Ritor1
parents:
diff changeset
4698 {
Ritor1
parents:
diff changeset
4699 a4a = a1;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4700 for(int i = 0; i < a4->uNumVertices; i++)
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4701 {
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4702 dword_4F5BF4_xs[i+1] = v9[a4->pVertexIDs[i]].x;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4703 dword_4F5B24_ys[i+1] = v9[a4->pVertexIDs[i]].z;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4704 }
0
Ritor1
parents:
diff changeset
4705 }
Ritor1
parents:
diff changeset
4706 else
Ritor1
parents:
diff changeset
4707 {
Ritor1
parents:
diff changeset
4708 a4a = a2;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4709 for(int i = 0; i < a4->uNumVertices; i++)
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4710 {
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4711 dword_4F5BF4_xs[i+1] = v9[a4->pVertexIDs[i]].y;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4712 dword_4F5B24_ys[i+1] = v9[a4->pVertexIDs[i]].z;
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4713 }
0
Ritor1
parents:
diff changeset
4714 }
Ritor1
parents:
diff changeset
4715 }
Ritor1
parents:
diff changeset
4716 a5a = 0;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4717 dword_4F5BF4_xs[a4->uNumVertices + 1] = dword_4F5BF4_xs[1];
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4718 dword_4F5B24_ys[a4->uNumVertices + 1] = dword_4F5B24_ys[1];
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4719 for(int i = 0; i < a4->uNumVertices; i++)
0
Ritor1
parents:
diff changeset
4720 {
Ritor1
parents:
diff changeset
4721 if ( a5a >= 2 )
Ritor1
parents:
diff changeset
4722 break;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4723 if ( dword_4F5B24_ys[i + 1] >= a3 ^ (dword_4F5B24_ys[i + 2] >= a3) )
0
Ritor1
parents:
diff changeset
4724 {
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4725 if( dword_4F5BF4_xs[i + 2] >= a4a || dword_4F5BF4_xs[i] >= a4a)
0
Ritor1
parents:
diff changeset
4726 {
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4727 if (dword_4F5BF4_xs[i + 2] >= a4a && dword_4F5BF4_xs[i + 1] >= a4a)
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4728 ++a5a;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4729 else
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4730 {
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4731 v23 = (__int64)(dword_4F5BF4_xs[i + 2] - dword_4F5BF4_xs[i + 1]) << 16;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4732 __int64 _a = dword_4F5B24_ys[i + 2] - dword_4F5B24_ys[i + 1];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4733 __int64 _b = (__int64)(a3 - dword_4F5B24_ys[i + 1]) << 16;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4734
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4735 if (dword_4F5BF4_xs[i + 1] + ((((v23 / _a * _b) >> 16) + 32768) >> 16) >= a4a)
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4736 ++a5a;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4737 }
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4738 }
0
Ritor1
parents:
diff changeset
4739 }
Ritor1
parents:
diff changeset
4740 }
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4741
0
Ritor1
parents:
diff changeset
4742 if ( a5a != 1 )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4743 return false;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1520
diff changeset
4744 return true;
1472
2395e99b89d0 sub_4077F1 cleaned, and fixed previous mistake in cleaning
zipi
parents: 1471
diff changeset
4745
0
Ritor1
parents:
diff changeset
4746 }
Ritor1
parents:
diff changeset
4747
Ritor1
parents:
diff changeset
4748 //----- (004088E9) --------------------------------------------------------
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
4749 int __fastcall sub_4088E9(int x1, int y1, int x2, int y2, int x3, int y3)
0
Ritor1
parents:
diff changeset
4750 {
Ritor1
parents:
diff changeset
4751 int v8; // eax@1
Ritor1
parents:
diff changeset
4752 signed int result; // eax@1
Ritor1
parents:
diff changeset
4753 int v11; // [sp+18h] [bp+8h]@1
Ritor1
parents:
diff changeset
4754
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
4755 v11 = abs(x2 - x1);
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
4756 v8 = abs(y2 - y1);
295
640a176c030f sub_42ECB5
Nomad
parents: 275
diff changeset
4757 result = integer_sqrt(v11 * v11 + v8 * v8);
0
Ritor1
parents:
diff changeset
4758 if ( result )
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
4759 result = abs(((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / result);
0
Ritor1
parents:
diff changeset
4760 return result;
Ritor1
parents:
diff changeset
4761 }
Ritor1
parents:
diff changeset
4762
Ritor1
parents:
diff changeset
4763 //----- (0040DEF3) --------------------------------------------------------
949
Nomad
parents: 948
diff changeset
4764 unsigned short TargetColor( unsigned __int16 r, unsigned __int16 g, unsigned __int16 b )
983
1462a5f12b65 Character Skills tab drawing fixed.
Nomad
parents: 982
diff changeset
4765 {
688
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
4766 return ((unsigned int)b >> (8 - LOBYTE(pRenderer->uTargetBBits))) | pRenderer->uTargetGMask & (g << (LOBYTE(pRenderer->uTargetGBits) +
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
4767 LOBYTE(pRenderer->uTargetBBits) - 8)) | pRenderer->uTargetRMask & (r << (LOBYTE(pRenderer->uTargetGBits) +
c0bfb386b15f some ui cleanup
Gloval
parents: 676
diff changeset
4768 LOBYTE(pRenderer->uTargetRBits) + LOBYTE(pRenderer->uTargetBBits) - 8));
0
Ritor1
parents:
diff changeset
4769 }
Ritor1
parents:
diff changeset
4770
1184
a90dc4aee8f4 arcomage refactoring continued
Gloval
parents: 1183
diff changeset
4771
0
Ritor1
parents:
diff changeset
4772
Ritor1
parents:
diff changeset
4773 //----- (0040F82D) --------------------------------------------------------
Ritor1
parents:
diff changeset
4774 void __fastcall ZBuffer_Fill(int *pZBuffer, int uTextureId, int iZValue)
Ritor1
parents:
diff changeset
4775 {
973
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
4776 assert(uTextureId != -1);
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
4777 ZBuffer_DoFill(pZBuffer, pIcons_LOD->GetTexture(uTextureId), iZValue);
0
Ritor1
parents:
diff changeset
4778 }
Ritor1
parents:
diff changeset
4779
1160
502b8b2e36b4 font cleaning
Gloval
parents: 1118
diff changeset
4780
0
Ritor1
parents:
diff changeset
4781
Ritor1
parents:
diff changeset
4782 //----- (0040F89C) --------------------------------------------------------
Ritor1
parents:
diff changeset
4783 void __fastcall ZBuffer_DoFill(int *pZBuffer, Texture *pTex, int uZValue)
Ritor1
parents:
diff changeset
4784 {
Ritor1
parents:
diff changeset
4785 void *v3; // eax@3
Ritor1
parents:
diff changeset
4786 void *v4; // esi@5
Ritor1
parents:
diff changeset
4787 int *v5; // edi@5
Ritor1
parents:
diff changeset
4788 int v6; // eax@5
Ritor1
parents:
diff changeset
4789 int v7; // ecx@6
Ritor1
parents:
diff changeset
4790 Texture *v8; // [sp+Ch] [bp-14h]@1
Ritor1
parents:
diff changeset
4791 int *v9; // [sp+10h] [bp-10h]@1
Ritor1
parents:
diff changeset
4792 int v10; // [sp+14h] [bp-Ch]@1
Ritor1
parents:
diff changeset
4793 int v11; // [sp+18h] [bp-8h]@1
Ritor1
parents:
diff changeset
4794 void *v12; // [sp+1Ch] [bp-4h]@5
Ritor1
parents:
diff changeset
4795
Ritor1
parents:
diff changeset
4796 v10 = pTex->uTextureWidth;
Ritor1
parents:
diff changeset
4797 v8 = pTex;
Ritor1
parents:
diff changeset
4798 v9 = pZBuffer;
Ritor1
parents:
diff changeset
4799 v11 = pTex->uTextureHeight;
Ritor1
parents:
diff changeset
4800 if ( pIcons_LOD->dword_011BA4 && pTex->uDecompressedSize )
Ritor1
parents:
diff changeset
4801 v3 = pTex->UnzipPalette();
Ritor1
parents:
diff changeset
4802 else
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
4803 v3 = pTex->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
4804 v12 = v3;
Ritor1
parents:
diff changeset
4805 v4 = v3;
Ritor1
parents:
diff changeset
4806 v5 = v9;
Ritor1
parents:
diff changeset
4807 v6 = 0;
Ritor1
parents:
diff changeset
4808 do
Ritor1
parents:
diff changeset
4809 {
Ritor1
parents:
diff changeset
4810 v7 = v10;
Ritor1
parents:
diff changeset
4811 do
Ritor1
parents:
diff changeset
4812 {
Ritor1
parents:
diff changeset
4813 LOBYTE(v6) = *(char *)v4;
Ritor1
parents:
diff changeset
4814 v4 = (char *)v4 + 1;
Ritor1
parents:
diff changeset
4815 if ( v6 )
Ritor1
parents:
diff changeset
4816 *v5 = uZValue;
Ritor1
parents:
diff changeset
4817 ++v5;
Ritor1
parents:
diff changeset
4818 --v7;
Ritor1
parents:
diff changeset
4819 }
Ritor1
parents:
diff changeset
4820 while ( v7 );
Ritor1
parents:
diff changeset
4821 v5 += 640 - v10;
Ritor1
parents:
diff changeset
4822 --v11;
Ritor1
parents:
diff changeset
4823 }
Ritor1
parents:
diff changeset
4824 while ( v11 );
Ritor1
parents:
diff changeset
4825 if ( pIcons_LOD->dword_011BA4 )
Ritor1
parents:
diff changeset
4826 {
Ritor1
parents:
diff changeset
4827 if ( v8->uDecompressedSize )
Ritor1
parents:
diff changeset
4828 free(v12);
Ritor1
parents:
diff changeset
4829 }
Ritor1
parents:
diff changeset
4830 }
Ritor1
parents:
diff changeset
4831
Ritor1
parents:
diff changeset
4832 //----- (0040F92A) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
4833 void __fastcall ZBuffer_DoFill2(int *pZBuffer, Texture *a2, int a3)
0
Ritor1
parents:
diff changeset
4834 {
Ritor1
parents:
diff changeset
4835 Texture *v3; // esi@1
Ritor1
parents:
diff changeset
4836 void *v4; // eax@3
Ritor1
parents:
diff changeset
4837 int *v5; // edi@5
Ritor1
parents:
diff changeset
4838 int v6; // ecx@6
Ritor1
parents:
diff changeset
4839 int *v7; // [sp+Ch] [bp-10h]@1
Ritor1
parents:
diff changeset
4840 int v8; // [sp+10h] [bp-Ch]@1
Ritor1
parents:
diff changeset
4841 int v9; // [sp+18h] [bp-4h]@1
Ritor1
parents:
diff changeset
4842
Ritor1
parents:
diff changeset
4843 v3 = a2;
Ritor1
parents:
diff changeset
4844 v7 = pZBuffer;
Ritor1
parents:
diff changeset
4845 v8 = a2->uTextureWidth;
Ritor1
parents:
diff changeset
4846 v9 = a2->uTextureHeight;
Ritor1
parents:
diff changeset
4847 if ( pIcons_LOD->dword_011BA4 && a2->uDecompressedSize )
Ritor1
parents:
diff changeset
4848 v4 = a2->UnzipPalette();
Ritor1
parents:
diff changeset
4849 else
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
4850 v4 = a2->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
4851 v5 = v7;
Ritor1
parents:
diff changeset
4852 do
Ritor1
parents:
diff changeset
4853 {
Ritor1
parents:
diff changeset
4854 v6 = v8;
Ritor1
parents:
diff changeset
4855 do
Ritor1
parents:
diff changeset
4856 {
Ritor1
parents:
diff changeset
4857 *v5 = a3;
Ritor1
parents:
diff changeset
4858 ++v5;
Ritor1
parents:
diff changeset
4859 --v6;
Ritor1
parents:
diff changeset
4860 }
Ritor1
parents:
diff changeset
4861 while ( v6 );
Ritor1
parents:
diff changeset
4862 v5 += 640 - v8;
Ritor1
parents:
diff changeset
4863 --v9;
Ritor1
parents:
diff changeset
4864 }
Ritor1
parents:
diff changeset
4865 while ( v9 );
Ritor1
parents:
diff changeset
4866 if ( pIcons_LOD->dword_011BA4 )
Ritor1
parents:
diff changeset
4867 {
Ritor1
parents:
diff changeset
4868 if ( v3->uDecompressedSize )
Ritor1
parents:
diff changeset
4869 free(v4);
Ritor1
parents:
diff changeset
4870 }
Ritor1
parents:
diff changeset
4871 }
Ritor1
parents:
diff changeset
4872
Ritor1
parents:
diff changeset
4873 //----- (00410D99) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
4874 int __fastcall sub_410D99_get_map_index(int a1)
0
Ritor1
parents:
diff changeset
4875 {
Ritor1
parents:
diff changeset
4876 int v1; // edi@1
Ritor1
parents:
diff changeset
4877 signed int v2; // ebp@1
Ritor1
parents:
diff changeset
4878 const char **v3; // esi@2
Ritor1
parents:
diff changeset
4879 char *v4; // ebx@2
Ritor1
parents:
diff changeset
4880
Ritor1
parents:
diff changeset
4881 v1 = a1;
Ritor1
parents:
diff changeset
4882 v2 = 1;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1101
diff changeset
4883 if ( _stricmp(pMapStats->pInfos[1].pFilename, (const char *)&pGames_LOD->pSubIndices[a1]) )
0
Ritor1
parents:
diff changeset
4884 {
Ritor1
parents:
diff changeset
4885 v3 = (const char **)&pMapStats->pInfos[1].pFilename;
Ritor1
parents:
diff changeset
4886 v4 = (char *)&pMapStats->pInfos[1].pFilename;
Ritor1
parents:
diff changeset
4887 do
Ritor1
parents:
diff changeset
4888 {
Ritor1
parents:
diff changeset
4889 if ( !*(int *)v4 )
Ritor1
parents:
diff changeset
4890 break;
Ritor1
parents:
diff changeset
4891 v3 += 17;
Ritor1
parents:
diff changeset
4892 ++v2;
Ritor1
parents:
diff changeset
4893 v4 = (char *)v3;
Ritor1
parents:
diff changeset
4894 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1101
diff changeset
4895 while ( _stricmp(*v3, (const char *)&pGames_LOD->pSubIndices[v1]) );
0
Ritor1
parents:
diff changeset
4896 }
Ritor1
parents:
diff changeset
4897 return v2;
Ritor1
parents:
diff changeset
4898 }
Ritor1
parents:
diff changeset
4899
Ritor1
parents:
diff changeset
4900 // 4E28F8: using guessed type int pCurrentScreen;
Ritor1
parents:
diff changeset
4901
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 758
diff changeset
4902 void LoadFonts_and_DrawCopyrightWindow()
cf2fbac6edc9 Misc cleaning
Nomad
parents: 758
diff changeset
4903 {
cf2fbac6edc9 Misc cleaning
Nomad
parents: 758
diff changeset
4904 MainMenuUI_LoadFontsAndSomeStuff();
cf2fbac6edc9 Misc cleaning
Nomad
parents: 758
diff changeset
4905 DrawCopyrightWindow();
cf2fbac6edc9 Misc cleaning
Nomad
parents: 758
diff changeset
4906 }
0
Ritor1
parents:
diff changeset
4907
Ritor1
parents:
diff changeset
4908
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4909 int no_rightlick_in_inventory = false; // 0050CDCC
0
Ritor1
parents:
diff changeset
4910 //----- (00416196) --------------------------------------------------------
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4911 void OnInventoryItemRightClick()
0
Ritor1
parents:
diff changeset
4912 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4913 //Player *v0; // esi@2
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4914 //POINT *v1; // edi@2
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4915 //signed int v2; // ecx@5
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4916 //signed int v3; // eax@5
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4917 //int v4; // eax@5
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4918 //char v5; // sf@5
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4919 //int v6; // eax@5
0
Ritor1
parents:
diff changeset
4920 int v7; // eax@7
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4921 //unsigned __int16 v8; // ax@10
0
Ritor1
parents:
diff changeset
4922 int v9; // edi@10
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4923 //int v10; // eax@10
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4924 //int v11; // edx@13
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4925 //LONG v12; // edx@23
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4926 //signed int v13; // edx@23
0
Ritor1
parents:
diff changeset
4927 int v14; // edx@25
Ritor1
parents:
diff changeset
4928 unsigned int v15; // edi@25
Ritor1
parents:
diff changeset
4929 signed int v16; // edx@27
Ritor1
parents:
diff changeset
4930 int v17; // eax@54
Ritor1
parents:
diff changeset
4931 unsigned int v18; // edx@57
Ritor1
parents:
diff changeset
4932 int v19; // eax@65
Ritor1
parents:
diff changeset
4933 int v20; // edi@67
Ritor1
parents:
diff changeset
4934 int v21; // eax@72
Ritor1
parents:
diff changeset
4935 int v22; // ecx@74
Ritor1
parents:
diff changeset
4936 int v23; // edx@78
Ritor1
parents:
diff changeset
4937 int v24; // eax@79
Ritor1
parents:
diff changeset
4938 int v25; // eax@80
Ritor1
parents:
diff changeset
4939 int v26; // eax@84
Ritor1
parents:
diff changeset
4940 ItemGen *v27; // esi@98
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4941 //unsigned int v28; // eax@98
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4942 //ItemGen *v29; // edi@98
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4943 //unsigned int v30; // ecx@103
0
Ritor1
parents:
diff changeset
4944 double v31; // st7@112
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4945 //unsigned __int64 v32; // qax@113
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4946 //unsigned int v33; // ecx@117
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4947 //int v34; // eax@126
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4948 //unsigned int v35; // ecx@127
0
Ritor1
parents:
diff changeset
4949 double v36; // st7@132
Ritor1
parents:
diff changeset
4950 signed __int64 v37; // qax@135
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4951 //unsigned int v38; // eax@138
0
Ritor1
parents:
diff changeset
4952 Vec3_int_ v39; // [sp-18h] [bp-A8h]@83
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4953 //int *v40; // [sp-Ch] [bp-9Ch]@83
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4954 //int *v41; // [sp-8h] [bp-98h]@83
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4955 //int *v42; // [sp-4h] [bp-94h]@83
0
Ritor1
parents:
diff changeset
4956 GUIWindow v43; // [sp+Ch] [bp-84h]@137
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4957 //unsigned int pY; // [sp+60h] [bp-30h]@2
0
Ritor1
parents:
diff changeset
4958 int v45; // [sp+64h] [bp-2Ch]@10
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4959 //unsigned int pX; // [sp+68h] [bp-28h]@2
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
4960 //int v47; // [sp+6Ch] [bp-24h]@25
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4961 //POINT y; // [sp+70h] [bp-20h]@2
0
Ritor1
parents:
diff changeset
4962 POINT a2; // [sp+78h] [bp-18h]@2
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4963 //Vec3_int_ pOut; // [sp+80h] [bp-10h]@2
0
Ritor1
parents:
diff changeset
4964 unsigned int v51; // [sp+8Ch] [bp-4h]@23
Ritor1
parents:
diff changeset
4965
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4966 if (no_rightlick_in_inventory)
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4967 return;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4968
1614
Ritor1
parents: 1577
diff changeset
4969 pMouse->GetCursorPos(&a2);
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4970 if (a2.x <= 13 || a2.x >= 462)
0
Ritor1
parents:
diff changeset
4971 return;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4972
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4973 auto player = pPlayers[uActiveCharacter];
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4974
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4975 int item_pid = pRenderer->pActiveZBuffer[a2.x + pSRZBufferLineOffsets[a2.y]] & 0xFFFF;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4976 //pMouse->GetClickPos(&pX, &pY);
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4977 if (!item_pid)
0
Ritor1
parents:
diff changeset
4978 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4979 int inventory_mouse_x = a2.x - 14;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4980 int inventory_mouse_y = a2.y - 17;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4981
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4982 int mouse_cell_x = inventory_mouse_x / 32;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4983 int mouse_cell_y = inventory_mouse_y / 32;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4984
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4985 if (mouse_cell_x + mouse_cell_y < 0)
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4986 return;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4987
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4988 int inventory_idx = mouse_cell_x + 14 * mouse_cell_y;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4989 if (inventory_idx > 126)
0
Ritor1
parents:
diff changeset
4990 return;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4991
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4992 v7 = player->GetItemIDAtInventoryIndex(&inventory_idx);
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4993 if (v7 == 0)
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4994 return;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4995
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4996 item_pid = v7;
0
Ritor1
parents:
diff changeset
4997 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4998
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
4999 if (!player->CanAct())
0
Ritor1
parents:
diff changeset
5000 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5001 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[427], player->pName, pGlobalTXT_LocalizationStrings[541]);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
5002 v43.Hint = pTmpBuf.data();
0
Ritor1
parents:
diff changeset
5003 v43.uFrameWidth = 384;
Ritor1
parents:
diff changeset
5004 v43.uFrameHeight = 180;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5005 if (a2.x <= 320 )
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5006 v43.uFrameX = a2.x + 30;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5007 else
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5008 v43.uFrameX = a2.x - 414;
0
Ritor1
parents:
diff changeset
5009 v43.uFrameY = 40;
Ritor1
parents:
diff changeset
5010 v43.DrawMessageBox(0);
Ritor1
parents:
diff changeset
5011 return;
Ritor1
parents:
diff changeset
5012 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5013
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5014 --item_pid;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5015 int alchemy_level = (int8_t)player->GetActualSkillLevel(PLAYER_SKILL_ALCHEMY);
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5016 v9 = alchemy_level & 0x3F;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5017 //v45 = alchemy_level & 0x3F;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5018 int alchemy_skill = SkillToMastery(alchemy_level);
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5019
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5020 auto item = &player->pInventoryItemList[item_pid];
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5021 if (pParty->pPickedItem.uItemID == ITEM_POTION_BOTTLE)
0
Ritor1
parents:
diff changeset
5022 {
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5023 __show_item_desc:
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5024 GameUI_DrawItemInfo(item);
0
Ritor1
parents:
diff changeset
5025 return;
Ritor1
parents:
diff changeset
5026 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5027
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5028 if (pParty->pPickedItem.uItemID == ITEM_POTION_RECHARGE_ITEM)
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5029 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5030 if (item->uItemID != ITEM_POTION_BOTTLE && // cant recharge bottle
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5031 item->uItemID < ITEM_POTION_CATALYST && // cant recharge
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5032 item->uItemID > ITEM_POTION_REJUVENATION) // all potions
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5033 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5034 if (pItemsTable->pItems[item->uItemID].uEquipType != EQUIP_WAND) // can recharge only wands
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5035 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5036 pAudioPlayer->PlaySound(SOUND_27, 0, 0, -1, 0, 0, 0, 0);
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5037 return;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5038 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5039
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5040 v36 = (70.0 - (double)pParty->pPickedItem.uEnchantmentType) * 0.01;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5041 if ( v36 < 0.0 )
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5042 v36 = 0.0;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5043 v37 = (signed __int64)((double)item->uMaxCharges - v36 * (double)item->uMaxCharges);
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5044 item->uMaxCharges = v37;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5045 item->uNumCharges = v37;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5046
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5047 pMouse->RemoveHoldingItem();
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5048 no_rightlick_in_inventory = 1;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5049 return;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5050 }
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5051 goto __show_item_desc;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5052 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5053
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5054 else if (pParty->pPickedItem.uItemID == ITEM_POTION_HARDEN_ITEM)
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5055 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5056 if (item->uItemID != ITEM_POTION_BOTTLE && // cant harden bottle
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5057 item->uItemID < ITEM_POTION_CATALYST && // cant harden
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5058 item->uItemID > ITEM_POTION_REJUVENATION) // all potions
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5059 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5060 if (item->IsBroken() || // cant harden broken items
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5061 item->uItemID >= ITEM_ARTIFACT_PUCK || // cant harden artifacts
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5062 pItemsTable->pItems[item->uItemID].uEquipType < EQUIP_OFF_HAND ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5063 pItemsTable->pItems[item->uItemID].uEquipType > EQUIP_WAND)
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5064 goto __invalid_item;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5065
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5066 item->uAttributes |= ITEM_AURA_EFFECT_RED | ITEM_ENCHANTED;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5067
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5068 _50C9A8_item_enchantment_timer = 256;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5069 pMouse->RemoveHoldingItem();
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5070 no_rightlick_in_inventory = true;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5071 return;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5072 }
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5073 goto __show_item_desc;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5074 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5075
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5076 else if (pParty->pPickedItem.uItemID >= ITEM_POTION_FLAMING_POTION &&
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5077 pParty->pPickedItem.uItemID <= ITEM_POTION_SWIFT_POTION ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5078 pParty->pPickedItem.uItemID == ITEM_POTION_SLAYING_POTION)
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5079 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5080 if (item->uItemID != ITEM_POTION_BOTTLE && // cant enchant bottle
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5081 item->uItemID < ITEM_POTION_CATALYST && // cant enchant
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5082 item->uItemID > ITEM_POTION_REJUVENATION) // all potions
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5083 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5084 if (item->uItemID >= ITEM_BLASTER && item->uItemID <= ITEM_LASER_RIFLE ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5085 item->uItemID >= ITEM_ARTIFACT_PUCK ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5086 item->IsBroken() ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5087 item->uSpecEnchantmentType ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5088 item->uEnchantmentType ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5089 pItemsTable->pItems[item->uItemID].uEquipType >= EQUIP_ARMOUR) // only melee weapons and bows
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5090 goto __invalid_item;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5091
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5092 item->UpdateTempBonus(pParty->uTimePlayed);
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5093 if (pParty->pPickedItem.uItemID == ITEM_POTION_SLAYING_POTION)
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5094 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5095 item->uSpecEnchantmentType = 40; // of Slaying
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5096 v31 = (double)(1800 * pParty->pPickedItem.uEnchantmentType * 128);
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5097 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5098 else
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5099 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5100 static int _4E2904_enchantment_by_potion_lut[] =
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5101 {
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5102 164, 93, 22,
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5103 164, 93, 22,
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5104 11, 5, 13, 7, 59
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5105 };
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5106 item->uSpecEnchantmentType = _4E2904_enchantment_by_potion_lut[pParty->pPickedItem.uItemID - 240];
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5107 v31 = (double)(1800 * pParty->pPickedItem.uEnchantmentType * 128);
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5108 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5109
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5110 v27->uExpireTime = pParty->uTimePlayed + v31 * 0.033333335;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5111 v27->uAttributes = alchemy_skill | 0x18;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5112
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5113 _50C9A8_item_enchantment_timer = 256;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5114 pMouse->RemoveHoldingItem();
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5115 no_rightlick_in_inventory = true;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5116 return;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5117 }
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5118 goto __show_item_desc;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5119 }
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5120
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5121
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5122
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5123 if (pParty->pPickedItem.uItemID < ITEM_REAGENT_WIDOWSWEEP_BERRIES ||
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5124 pParty->pPickedItem.uItemID > ITEM_REAGENT_PHILOSOPHERS_STONE ||
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5125 player->pInventoryItemList[item_pid].uItemID != ITEM_POTION_BOTTLE)
0
Ritor1
parents:
diff changeset
5126 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5127 if (pParty->pPickedItem.uItemID < ITEM_POTION_CATALYST ||
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5128 pParty->pPickedItem.uItemID > ITEM_POTION_REJUVENATION ||
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5129 player->pInventoryItemList[item_pid].uItemID < ITEM_POTION_CATALYST ||
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5130 player->pInventoryItemList[item_pid].uItemID > ITEM_POTION_REJUVENATION)
0
Ritor1
parents:
diff changeset
5131 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5132 if (pParty->pPickedItem.uItemID != ITEM_POTION_HARDEN_ITEM &&
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5133 (pParty->pPickedItem.uItemID < ITEM_POTION_FLAMING_POTION || pParty->pPickedItem.uItemID > ITEM_POTION_SWIFT_POTION) &&
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5134 pParty->pPickedItem.uItemID != ITEM_POTION_SLAYING_POTION &&
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5135 pParty->pPickedItem.uItemID != ITEM_POTION_RECHARGE_ITEM)
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5136 goto __show_item_desc;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5137 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5138
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5139 // src not reagent, dst not bottle
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5140 // src potion, dst potion
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5141
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5142 v14 = item->uItemID - ITEM_POTION_CURE_WOUNDS;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5143 v15 = pParty->pPickedItem.uItemID - ITEM_POTION_CURE_WOUNDS;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5144
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5145 if ( pParty->pPickedItem.uItemID == ITEM_POTION_CATALYST ||
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5146 item->uItemID == ITEM_POTION_CATALYST )
0
Ritor1
parents:
diff changeset
5147 {
Ritor1
parents:
diff changeset
5148 v16 = 5;
Ritor1
parents:
diff changeset
5149 }
Ritor1
parents:
diff changeset
5150 else
Ritor1
parents:
diff changeset
5151 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5152 v16 = pItemsTable->potion_data[v15][v14 + 2];
0
Ritor1
parents:
diff changeset
5153 }
Ritor1
parents:
diff changeset
5154 v51 = v16;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5155 if ( v9 )
0
Ritor1
parents:
diff changeset
5156 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5157 if ( v16 < ITEM_POTION_CURE_DISEASE || v16 > ITEM_POTION_AWAKEN )
0
Ritor1
parents:
diff changeset
5158 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5159 if ( v16 < ITEM_POTION_HASTE || v16 > ITEM_POTION_CURE_INSANITY )
0
Ritor1
parents:
diff changeset
5160 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5161 if ( v16 < ITEM_POTION_MIGHT_BOOST || v16 > ITEM_POTION_BODY_RESISTANE )
0
Ritor1
parents:
diff changeset
5162 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5163 if ( v16 >= ITEM_POTION_STONE_TO_FLESH && alchemy_level != 4 )
0
Ritor1
parents:
diff changeset
5164 {
Ritor1
parents:
diff changeset
5165 LABEL_53:
Ritor1
parents:
diff changeset
5166 v51 = 4;
Ritor1
parents:
diff changeset
5167 goto LABEL_54;
Ritor1
parents:
diff changeset
5168 }
Ritor1
parents:
diff changeset
5169 }
Ritor1
parents:
diff changeset
5170 else
Ritor1
parents:
diff changeset
5171 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5172 if ( alchemy_level <= 2 )
0
Ritor1
parents:
diff changeset
5173 {
Ritor1
parents:
diff changeset
5174 LABEL_38:
Ritor1
parents:
diff changeset
5175 v51 = 3;
Ritor1
parents:
diff changeset
5176 goto LABEL_54;
Ritor1
parents:
diff changeset
5177 }
Ritor1
parents:
diff changeset
5178 }
Ritor1
parents:
diff changeset
5179 }
Ritor1
parents:
diff changeset
5180 else
Ritor1
parents:
diff changeset
5181 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5182 if ( alchemy_level == 1 )
0
Ritor1
parents:
diff changeset
5183 {
Ritor1
parents:
diff changeset
5184 LABEL_35:
Ritor1
parents:
diff changeset
5185 v51 = 2;
Ritor1
parents:
diff changeset
5186 goto LABEL_54;
Ritor1
parents:
diff changeset
5187 }
Ritor1
parents:
diff changeset
5188 }
Ritor1
parents:
diff changeset
5189 }
Ritor1
parents:
diff changeset
5190 }
Ritor1
parents:
diff changeset
5191 else
Ritor1
parents:
diff changeset
5192 {
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5193 if ( v16 >= ITEM_POTION_CURE_DISEASE && v16 <= ITEM_POTION_AWAKEN )
0
Ritor1
parents:
diff changeset
5194 {
Ritor1
parents:
diff changeset
5195 v51 = 1;
Ritor1
parents:
diff changeset
5196 goto LABEL_54;
Ritor1
parents:
diff changeset
5197 }
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5198 if ( v16 >= ITEM_POTION_HASTE && v16 <= ITEM_POTION_CURE_INSANITY )
0
Ritor1
parents:
diff changeset
5199 goto LABEL_35;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5200 if ( v16 >= ITEM_POTION_MIGHT_BOOST && v16 <= ITEM_POTION_BODY_RESISTANE )
0
Ritor1
parents:
diff changeset
5201 goto LABEL_38;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5202 if ( v16 >= ITEM_POTION_STONE_TO_FLESH )
0
Ritor1
parents:
diff changeset
5203 goto LABEL_53;
Ritor1
parents:
diff changeset
5204 }
Ritor1
parents:
diff changeset
5205 LABEL_54:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5206 int pOut_y = 0;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5207 int pOut_x = item_pid + 1;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5208 v17 = (int)player->pInventoryMatrix;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5209 while ( *(int *)v17 != pOut_x )
0
Ritor1
parents:
diff changeset
5210 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5211 ++pOut_y;
0
Ritor1
parents:
diff changeset
5212 v17 += 4;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5213 if ( pOut_y >= 126 )
0
Ritor1
parents:
diff changeset
5214 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5215 v18 = pOut_y;
0
Ritor1
parents:
diff changeset
5216 goto LABEL_59;
Ritor1
parents:
diff changeset
5217 }
Ritor1
parents:
diff changeset
5218 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5219 v18 = pOut_y;
0
Ritor1
parents:
diff changeset
5220 LABEL_59:
Ritor1
parents:
diff changeset
5221 if ( !v51 )
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5222 goto __show_item_desc;;
0
Ritor1
parents:
diff changeset
5223 if ( v51 == 1 )
Ritor1
parents:
diff changeset
5224 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5225 player->RemoveItemAtInventoryIndex(v18);
0
Ritor1
parents:
diff changeset
5226 v26 = rand();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5227 player->ReceiveDamage(v26 % 11 + 10, DMGT_FIRE);
0
Ritor1
parents:
diff changeset
5228 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
5229
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
5230 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0);
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
5231
0
Ritor1
parents:
diff changeset
5232 v39.z = pParty->vPosition.z + pParty->sEyelevel;
Ritor1
parents:
diff changeset
5233 }
Ritor1
parents:
diff changeset
5234 else
Ritor1
parents:
diff changeset
5235 {
Ritor1
parents:
diff changeset
5236 if ( v51 == 2 )
Ritor1
parents:
diff changeset
5237 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5238 player->RemoveItemAtInventoryIndex(v18);
0
Ritor1
parents:
diff changeset
5239 v25 = rand();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5240 player->ReceiveDamage(v25 % 71 + 30, DMGT_FIRE);
0
Ritor1
parents:
diff changeset
5241 v23 = 1;
Ritor1
parents:
diff changeset
5242 }
Ritor1
parents:
diff changeset
5243 else
Ritor1
parents:
diff changeset
5244 {
Ritor1
parents:
diff changeset
5245 if ( v51 == 3 )
Ritor1
parents:
diff changeset
5246 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5247 player->RemoveItemAtInventoryIndex(v18);
0
Ritor1
parents:
diff changeset
5248 v24 = rand();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5249 player->ReceiveDamage(v24 % 201 + 50, DMGT_FIRE);
0
Ritor1
parents:
diff changeset
5250 v23 = 5;
Ritor1
parents:
diff changeset
5251 }
Ritor1
parents:
diff changeset
5252 else
Ritor1
parents:
diff changeset
5253 {
Ritor1
parents:
diff changeset
5254 if ( v51 != 4 )
Ritor1
parents:
diff changeset
5255 {
Ritor1
parents:
diff changeset
5256 if ( v51 != 5 )
Ritor1
parents:
diff changeset
5257 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5258 v19 = player->AddItem(-1, 0xDCu);
0
Ritor1
parents:
diff changeset
5259 if ( v19 )
1019
32ec62bbaa2c player use item part cleanup
Gloval
parents: 1014
diff changeset
5260 // *(int *)&v0->field_1F5[36 * v19 + 15] = 1;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5261 player->pOwnItems[v19-1].uAttributes = ITEM_IDENTIFIED;
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5262 v20 = v14 + 50 * v15;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5263 player->pInventoryItemList[item_pid].uItemID = v51;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5264 player->pInventoryItemList[item_pid].uEnchantmentType = (pParty->pPickedItem.uEnchantmentType
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5265 + player->pInventoryItemList[item_pid].uEnchantmentType)
0
Ritor1
parents:
diff changeset
5266 / 2;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5267 player->SetVariable(VAR_AutoNotes, *(short *)&pItemsTable->potion_note[2 * v20 ]);//field_10168 + 388
0
Ritor1
parents:
diff changeset
5268 LABEL_74:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5269 v22 = (int)((char *)player + 36 * item_pid);
222
8113753ed2ae more item init fixing
Gloval
parents: 191
diff changeset
5270 if ( !(pItemsTable->pItems[*(int *)(v22 + 532) ].uItemID_Rep_St) )
0
Ritor1
parents:
diff changeset
5271 *(int *)(v22 + 552) |= 1u;
Ritor1
parents:
diff changeset
5272 if ( !dword_4E455C )
1419
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5273 {
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5274 pMouse->RemoveHoldingItem();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5275 no_rightlick_in_inventory = 1;
1419
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5276 return;
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5277 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5278 player->PlaySound(SPEECH_16, 0);
1419
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5279 dword_4E455C = 0;
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5280 pMouse->RemoveHoldingItem();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5281 no_rightlick_in_inventory = 1;
1419
9a1adf08f4ed more label cleaning 2
zipi
parents: 1415
diff changeset
5282 return;
0
Ritor1
parents:
diff changeset
5283 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5284 if ( v9 )
0
Ritor1
parents:
diff changeset
5285 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5286 if ( *(int *)(player + 36 * item_pid + 532) == 221 )
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5287 *(int *)(player + 36 * item_pid + 532) = pParty->pPickedItem.uItemID;
0
Ritor1
parents:
diff changeset
5288 else
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5289 *(int *)(player + 36 * item_pid + 536) = pParty->pPickedItem.uEnchantmentType;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5290 v21 = player->AddItem(-1, 0xDCu);
0
Ritor1
parents:
diff changeset
5291 if ( v21 )
1019
32ec62bbaa2c player use item part cleanup
Gloval
parents: 1014
diff changeset
5292 //*(int *)&v0->field_1F5[36 * v21 + 15] = 1;
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5293 player->pOwnItems[v21-1].uAttributes=ITEM_IDENTIFIED;
0
Ritor1
parents:
diff changeset
5294 goto LABEL_74;
Ritor1
parents:
diff changeset
5295 }
1577
1b6217e07b26 OnInventoryItemRightClick logic restored
Nomad
parents: 1576
diff changeset
5296 goto __show_item_desc;
0
Ritor1
parents:
diff changeset
5297 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5298 player->RemoveItemAtInventoryIndex(v18);
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5299 player->SetCondition(0x10u, 0);
0
Ritor1
parents:
diff changeset
5300 v23 = 0;
Ritor1
parents:
diff changeset
5301 }
Ritor1
parents:
diff changeset
5302 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5303 player->ItemsEnchant(v23);
0
Ritor1
parents:
diff changeset
5304 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0);
437
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
5305
0a1ea44b4a0a ui mesages & spellcasting
Nomad
parents: 434
diff changeset
5306 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0);
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1031
diff changeset
5307
0
Ritor1
parents:
diff changeset
5308 v39.z = pParty->vPosition.z + pParty->sEyelevel;
Ritor1
parents:
diff changeset
5309 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5310 v39.x = pParty->vPosition.x;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5311 v39.y = pParty->vPosition.y;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5312
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5313 int rot_x, rot_y, rot_z;
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5314 Vec3_int_::Rotate(64, pParty->sRotationY, pParty->sRotationX, v39, &rot_x, &rot_y, &rot_z);
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5315 sub_42F7EB_DropItemAt(0x41Bu, rot_x, rot_y, rot_z, 0, 1, 0, 0, 0);
0
Ritor1
parents:
diff changeset
5316 if ( dword_4E455C )
Ritor1
parents:
diff changeset
5317 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5318 if ( player->CanAct() )
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5319 player->PlaySound(SPEECH_17, 0);
0
Ritor1
parents:
diff changeset
5320 ShowStatusBarString(pGlobalTXT_LocalizationStrings[444], 2u);
Ritor1
parents:
diff changeset
5321 dword_4E455C = 0;
Ritor1
parents:
diff changeset
5322 }
Ritor1
parents:
diff changeset
5323 pMouse->RemoveHoldingItem();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5324 no_rightlick_in_inventory = 1;
0
Ritor1
parents:
diff changeset
5325 return;
Ritor1
parents:
diff changeset
5326 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5327
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5328 // end alchemy
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5329
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5330 player->pInventoryItemList[item_pid].uEnchantmentType = v9 + pItemsTable->pItems[pParty->pPickedItem.uItemID].uDamageDice;
0
Ritor1
parents:
diff changeset
5331 switch ( pParty->pPickedItem.uItemID )
Ritor1
parents:
diff changeset
5332 {
Ritor1
parents:
diff changeset
5333 case 0xC8u:
Ritor1
parents:
diff changeset
5334 case 0xC9u:
Ritor1
parents:
diff changeset
5335 case 0xCAu:
Ritor1
parents:
diff changeset
5336 case 0xCBu:
Ritor1
parents:
diff changeset
5337 case 0xCCu:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5338 player->pInventoryItemList[item_pid].uItemID = 222;
0
Ritor1
parents:
diff changeset
5339 break;
Ritor1
parents:
diff changeset
5340 case 0xCDu:
Ritor1
parents:
diff changeset
5341 case 0xCEu:
Ritor1
parents:
diff changeset
5342 case 0xCFu:
Ritor1
parents:
diff changeset
5343 case 0xD0u:
Ritor1
parents:
diff changeset
5344 case 0xD1u:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5345 player->pInventoryItemList[item_pid].uItemID = 223;
0
Ritor1
parents:
diff changeset
5346 break;
Ritor1
parents:
diff changeset
5347 case 0xD2u:
Ritor1
parents:
diff changeset
5348 case 0xD3u:
Ritor1
parents:
diff changeset
5349 case 0xD4u:
Ritor1
parents:
diff changeset
5350 case 0xD5u:
Ritor1
parents:
diff changeset
5351 case 0xD6u:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5352 player->pInventoryItemList[item_pid].uItemID = 224;
0
Ritor1
parents:
diff changeset
5353 break;
Ritor1
parents:
diff changeset
5354 case 0xD7u:
Ritor1
parents:
diff changeset
5355 case 0xD8u:
Ritor1
parents:
diff changeset
5356 case 0xD9u:
Ritor1
parents:
diff changeset
5357 case 0xDAu:
Ritor1
parents:
diff changeset
5358 case 0xDBu:
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5359 player->pInventoryItemList[item_pid].uItemID = 221;
0
Ritor1
parents:
diff changeset
5360 break;
Ritor1
parents:
diff changeset
5361 default:
Ritor1
parents:
diff changeset
5362 break;
Ritor1
parents:
diff changeset
5363 }
Ritor1
parents:
diff changeset
5364 pMouse->RemoveHoldingItem();
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5365 no_rightlick_in_inventory = 1;
0
Ritor1
parents:
diff changeset
5366 if ( dword_4E455C )
Ritor1
parents:
diff changeset
5367 {
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5368 player->PlaySound(SPEECH_16, 0);
0
Ritor1
parents:
diff changeset
5369 dword_4E455C = 0;
Ritor1
parents:
diff changeset
5370 }
1576
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5371 return;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5372
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5373
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5374 __invalid_item:
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5375 pMouse->RemoveHoldingItem();
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5376 no_rightlick_in_inventory = true;
e66e0c89d81b More OnInventoryItemRightClick (not finished)
Nomad
parents: 1575
diff changeset
5377 return;
0
Ritor1
parents:
diff changeset
5378 }
Ritor1
parents:
diff changeset
5379
Ritor1
parents:
diff changeset
5380 //----- (00417AD4) --------------------------------------------------------
983
1462a5f12b65 Character Skills tab drawing fixed.
Nomad
parents: 982
diff changeset
5381 unsigned int GetSkillColor(unsigned int uPlayerClass, PLAYER_SKILL_TYPE uPlayerSkillType, signed int skill_level)
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5382 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5383 switch (uPlayerClass % 4)
269
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 264
diff changeset
5384 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5385 case 0:
269
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 264
diff changeset
5386 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5387 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] >= skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5388 return ui_character_skillinfo_can_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5389 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 1][uPlayerSkillType] < skill_level &&
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5390 byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 2][uPlayerSkillType] < skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5391 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5392 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 3][uPlayerSkillType] < skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5393 return ui_character_skillinfo_cant_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5394 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5395 return ui_character_skillinfo_can_learn_gm;
0
Ritor1
parents:
diff changeset
5396 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5397 break;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5398
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5399 case 1:
269
b34b53ee874d skill_learn_ability_by_class_table[36][37]
Ritor1
parents: 264
diff changeset
5400 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5401 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] >= skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5402 return ui_character_skillinfo_can_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5403 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 1][uPlayerSkillType] < skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5404 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5405 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 2][uPlayerSkillType] < skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5406 return ui_character_skillinfo_cant_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5407 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5408 return ui_character_skillinfo_can_learn_gm;
0
Ritor1
parents:
diff changeset
5409 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5410 break;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5411
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5412 case 2:
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5413 case 3:
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5414 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5415 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] < skill_level)
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5416 return ui_character_skillinfo_cant_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5417 return ui_character_skillinfo_can_learn;
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5418 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1391
diff changeset
5419 break;
0
Ritor1
parents:
diff changeset
5420 }
1575
43d3536a20f7 OnInventoryItemRightClick
Nomad
parents: 1546
diff changeset
5421 Error("Invalid player class: %u", uPlayerClass);
1296
c423f946dc99 moving files continue
Ritor1
parents: 1273
diff changeset
5422 }