annotate mm7_1.cpp @ 1598:11bb463837b1

_48EA46_calc_special_bonus_by_items renamed to GetSpecialItemBonus, forgot to commit actor.cpp
author Grumpy7
date Tue, 10 Sep 2013 04:16:54 +0200
parents e668660457dc
children 75fafd8ced59
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1143
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1143
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1143
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1143
diff changeset
4
0
Ritor1
parents:
diff changeset
5 /* This file has been generated by the Hex-Rays decompiler.
Ritor1
parents:
diff changeset
6 Copyright (c) 2007-2011 Hex-Rays <info@hex-rays.com>
Ritor1
parents:
diff changeset
7
Ritor1
parents:
diff changeset
8 Detected compiler: Visual C++
Ritor1
parents:
diff changeset
9 */
Ritor1
parents:
diff changeset
10
Ritor1
parents:
diff changeset
11 //#include <defs.h>
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
12
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
13 #include "Texture.h"
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
14 #include "mm7_data.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 995
diff changeset
15 #include "VideoPlayer.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 995
diff changeset
16 #include "BSPModel.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 995
diff changeset
17 #include "Mouse.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 995
diff changeset
18
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 995
diff changeset
19 #include "Vis.h"
0
Ritor1
parents:
diff changeset
20 #include "MM7.h"
Ritor1
parents:
diff changeset
21 #include "Game.h"
Ritor1
parents:
diff changeset
22 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
23 #include "Party.h"
Ritor1
parents:
diff changeset
24 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
25 #include "Outdoor.h"
Ritor1
parents:
diff changeset
26 #include "Overlays.h"
Ritor1
parents:
diff changeset
27 #include "LOD.h"
Ritor1
parents:
diff changeset
28 #include "Actor.h"
Ritor1
parents:
diff changeset
29 #include "Allocator.h"
Ritor1
parents:
diff changeset
30 #include "Events.h"
Ritor1
parents:
diff changeset
31 #include "Viewport.h"
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 510
diff changeset
32 #include "SpriteObject.h"
0
Ritor1
parents:
diff changeset
33 #include "ObjectList.h"
Ritor1
parents:
diff changeset
34 #include "Chest.h"
Ritor1
parents:
diff changeset
35 #include "DecorationList.h"
Ritor1
parents:
diff changeset
36 #include "stru123.h"
Ritor1
parents:
diff changeset
37 #include "Time.h"
Ritor1
parents:
diff changeset
38 #include "IconFrameTable.h"
Ritor1
parents:
diff changeset
39 #include "TurnEngine.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
40 #include "texts.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1297
diff changeset
41 #include "UI\UIHouses.h"
1078
b44dee7e70e8 added a structure for 0x50B700-0x50BBB8
zipi
parents: 1060
diff changeset
42 #include "stru367.h"
0
Ritor1
parents:
diff changeset
43
Ritor1
parents:
diff changeset
44 int __stdcall aWinProc(HWND hWnd, UINT Msg, WPARAM wParam, unsigned int lParam);
Ritor1
parents:
diff changeset
45 int __stdcall InsertMM7CDDialogFunc(HWND hDlg, int a2, __int16 a3, int a4);
Ritor1
parents:
diff changeset
46 bool __fastcall FindMM7CD(HWND hWnd, char *pCDDrive);
Ritor1
parents:
diff changeset
47 bool __fastcall Initialize(HINSTANCE hInst, char *pCmdLine);
Ritor1
parents:
diff changeset
48
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
49
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
50 //----- (004A1780) mm6_chinese---------------------------------------------
1556
e668660457dc Some more cleaning
Nomad
parents: 1545
diff changeset
51 __int64 fixpoint_div(int a1, int a2)
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
52 {
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
53 return ((__int64)a1 << 16) / a2;
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
54 }
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 790
diff changeset
55
1556
e668660457dc Some more cleaning
Nomad
parents: 1545
diff changeset
56 __int64 fixpoint_mul(int a1, int a2)
871
710cf848ad24 Particle engine made working.
Nomad
parents: 832
diff changeset
57 {
710cf848ad24 Particle engine made working.
Nomad
parents: 832
diff changeset
58 return (((__int64)a1 << 16) * a2) >> 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 832
diff changeset
59 }
710cf848ad24 Particle engine made working.
Nomad
parents: 832
diff changeset
60
1459
2ca62c9e7b3c Function names
Nomad
parents: 1426
diff changeset
61
2ca62c9e7b3c Function names
Nomad
parents: 1426
diff changeset
62 //----- (0042EBBE) --------------------------------------------------------
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 749
diff changeset
63 //----- (004453C0) mm6-----------------------------------------------------
cf2fbac6edc9 Misc cleaning
Nomad
parents: 749
diff changeset
64 //----- (004A1760) mm6_chinese---------------------------------------------
1556
e668660457dc Some more cleaning
Nomad
parents: 1545
diff changeset
65 __int64 fixpoint_sub0(int a1, int a2)
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 749
diff changeset
66 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 832
diff changeset
67 return ((__int64)a1 * (__int64)a2) >> 16;
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 749
diff changeset
68 }
cf2fbac6edc9 Misc cleaning
Nomad
parents: 749
diff changeset
69
1556
e668660457dc Some more cleaning
Nomad
parents: 1545
diff changeset
70 __int64 fixpoint_dot(int x1, int x2, int y1, int y2, int z1, int z2)
1544
499761153844 stru149
Nomad
parents: 1507
diff changeset
71 {
499761153844 stru149
Nomad
parents: 1507
diff changeset
72 return fixpoint_sub0(x1, x2) +
499761153844 stru149
Nomad
parents: 1507
diff changeset
73 fixpoint_sub0(y1, y2) +
499761153844 stru149
Nomad
parents: 1507
diff changeset
74 fixpoint_sub0(z1, z2);
499761153844 stru149
Nomad
parents: 1507
diff changeset
75 }
499761153844 stru149
Nomad
parents: 1507
diff changeset
76
0
Ritor1
parents:
diff changeset
77 //----- (0041D20D) --------------------------------------------------------
1006
e865f349aa41 ui cleanup
Gloval
parents: 995
diff changeset
78 void __fastcall sub_41D20D_buff_remaining_time_string( int ecx0, struct GUIWindow *edx0, __int64 a3, struct GUIFont *a2 )
e865f349aa41 ui cleanup
Gloval
parents: 995
diff changeset
79 {
0
Ritor1
parents:
diff changeset
80 unsigned int v4; // edi@1
Ritor1
parents:
diff changeset
81 unsigned int v5; // esi@1
Ritor1
parents:
diff changeset
82 unsigned int v6; // ebp@1
Ritor1
parents:
diff changeset
83 unsigned int v7; // ebx@1
Ritor1
parents:
diff changeset
84 signed __int64 v8; // ST34_8@1
Ritor1
parents:
diff changeset
85 signed __int64 v9; // kr00_8@1
Ritor1
parents:
diff changeset
86 char *v10; // eax@2
Ritor1
parents:
diff changeset
87 char *v11; // eax@7
Ritor1
parents:
diff changeset
88 char *v12; // eax@13
Ritor1
parents:
diff changeset
89 char *v13; // eax@19
Ritor1
parents:
diff changeset
90 int uY; // [sp+0h] [bp-20h]@1
Ritor1
parents:
diff changeset
91 GUIWindow *a1; // [sp+4h] [bp-1Ch]@1
Ritor1
parents:
diff changeset
92 signed __int64 v17; // [sp+10h] [bp-10h]@1
Ritor1
parents:
diff changeset
93 signed __int64 v18; // [sp+18h] [bp-8h]@1
Ritor1
parents:
diff changeset
94 unsigned int v19; // [sp+24h] [bp+4h]@1
Ritor1
parents:
diff changeset
95
Ritor1
parents:
diff changeset
96 a1 = edx0;
Ritor1
parents:
diff changeset
97 uY = ecx0;
Ritor1
parents:
diff changeset
98 v4 = (unsigned __int64)(signed __int64)((double)a3 * 0.234375) >> 32;
Ritor1
parents:
diff changeset
99 v5 = (signed __int64)((double)a3 * 0.234375);
Ritor1
parents:
diff changeset
100 v6 = (unsigned __int64)((signed __int64)((double)a3 * 0.234375) / 60) >> 32;
Ritor1
parents:
diff changeset
101 v7 = (signed __int64)((double)a3 * 0.234375) / 60;
Ritor1
parents:
diff changeset
102 v8 = (signed __int64)((double)a3 * 0.234375) / 60 / 60;
Ritor1
parents:
diff changeset
103 v19 = (unsigned int)v8 / 0x18;
Ritor1
parents:
diff changeset
104 v18 = (signed __int64)__PAIR__(v4, v5) % 60;
Ritor1
parents:
diff changeset
105 v17 = (signed __int64)__PAIR__(v6, v7) % 60;
Ritor1
parents:
diff changeset
106 v9 = v8 % 24;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
107 strcpy(pTmpBuf.data(), "\r020");
0
Ritor1
parents:
diff changeset
108 if ( (unsigned int)v8 / 0x18 )
Ritor1
parents:
diff changeset
109 {
Ritor1
parents:
diff changeset
110 v10 = pGlobalTXT_LocalizationStrings[57]; // Days
Ritor1
parents:
diff changeset
111 if ( v19 <= 1 )
Ritor1
parents:
diff changeset
112 v10 = pGlobalTXT_LocalizationStrings[56]; // Day
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
113 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v19, v10);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
114 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
115 }
Ritor1
parents:
diff changeset
116 if ( v9 )
Ritor1
parents:
diff changeset
117 {
Ritor1
parents:
diff changeset
118 if ( v9 <= 1 )
Ritor1
parents:
diff changeset
119 v11 = pGlobalTXT_LocalizationStrings[109];// Hour
Ritor1
parents:
diff changeset
120 else
Ritor1
parents:
diff changeset
121 v11 = pGlobalTXT_LocalizationStrings[110];// Hours
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
122 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v9, v11);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
123 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
124 }
Ritor1
parents:
diff changeset
125 if ( v17 && !v19 )
Ritor1
parents:
diff changeset
126 {
Ritor1
parents:
diff changeset
127 if ( v17 <= 1 )
Ritor1
parents:
diff changeset
128 v12 = pGlobalTXT_LocalizationStrings[437];// Minute
Ritor1
parents:
diff changeset
129 else
Ritor1
parents:
diff changeset
130 v12 = pGlobalTXT_LocalizationStrings[436];// Minutes
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
131 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v17, v12);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
132 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
133 }
Ritor1
parents:
diff changeset
134 if ( v18 && !v9 )
Ritor1
parents:
diff changeset
135 {
Ritor1
parents:
diff changeset
136 if ( v18 <= 1 )
Ritor1
parents:
diff changeset
137 v13 = pGlobalTXT_LocalizationStrings[439];// Second
Ritor1
parents:
diff changeset
138 else
Ritor1
parents:
diff changeset
139 v13 = pGlobalTXT_LocalizationStrings[438];// Seconds
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
140 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v18, v13);
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
141 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
142 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1195
diff changeset
143 a1->DrawText(a2, 32, uY, 0, pTmpBuf.data(), 0, 0, 0);
0
Ritor1
parents:
diff changeset
144 }
Ritor1
parents:
diff changeset
145
Ritor1
parents:
diff changeset
146 //----- (004226C2) --------------------------------------------------------
265
96bc024a5fed Render overflows
Nomad
parents: 255
diff changeset
147 bool PauseGameDrawing()
0
Ritor1
parents:
diff changeset
148 {
265
96bc024a5fed Render overflows
Nomad
parents: 255
diff changeset
149 if ( pCurrentScreen != SCREEN_GAME
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
150 && pCurrentScreen != SCREEN_NPC_DIALOGUE
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
151 && pCurrentScreen != SCREEN_CHANGE_LOCATION )
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
152 {
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
153 if ( pCurrentScreen == SCREEN_INPUT_BLV )
0
Ritor1
parents:
diff changeset
154 return pVideoPlayer->pSmackerMovie != 0;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
155 if ( pCurrentScreen != SCREEN_BRANCHLESS_NPC_DIALOG )
265
96bc024a5fed Render overflows
Nomad
parents: 255
diff changeset
156 return true;
96bc024a5fed Render overflows
Nomad
parents: 255
diff changeset
157 }
96bc024a5fed Render overflows
Nomad
parents: 255
diff changeset
158 return false;
0
Ritor1
parents:
diff changeset
159 }
Ritor1
parents:
diff changeset
160 // 4E28F8: using guessed type int pCurrentScreen;
Ritor1
parents:
diff changeset
161
Ritor1
parents:
diff changeset
162 //----- (004226EF) --------------------------------------------------------
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
163 void SetUserInterface(PartyAlignment align, bool bReplace)
0
Ritor1
parents:
diff changeset
164 {
Ritor1
parents:
diff changeset
165 unsigned int v3; // eax@7
Ritor1
parents:
diff changeset
166 unsigned __int16 v4; // dx@7
Ritor1
parents:
diff changeset
167 unsigned __int16 v5; // cx@7
Ritor1
parents:
diff changeset
168 unsigned __int16 v6; // [sp-4h] [bp-14h]@7
Ritor1
parents:
diff changeset
169
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
170
983
1462a5f12b65 Character Skills tab drawing fixed.
Nomad
parents: 979
diff changeset
171 extern void set_default_ui_skin();
1462a5f12b65 Character Skills tab drawing fixed.
Nomad
parents: 979
diff changeset
172 set_default_ui_skin();
1462a5f12b65 Character Skills tab drawing fixed.
Nomad
parents: 979
diff changeset
173
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
174 if (align == PartyAlignment_Evil)
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
175 {
0
Ritor1
parents:
diff changeset
176 if ( bReplace )
Ritor1
parents:
diff changeset
177 {
Ritor1
parents:
diff changeset
178 pTexture_RightFrame->Reload("ib-r-C.pcx");
Ritor1
parents:
diff changeset
179 pTexture_BottomFrame->Reload("ib-b-C.pcx");
Ritor1
parents:
diff changeset
180 pTexture_TopFrame->Reload("ib-t-C.pcx");
Ritor1
parents:
diff changeset
181 pTexture_LeftFrame->Reload("ib-l-C.pcx");
Ritor1
parents:
diff changeset
182 pTexture_StatusBar->Reload("IB-Foot-c.pcx");
Ritor1
parents:
diff changeset
183 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-C", 2);
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
184 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-c", 2);
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
185 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-C", 2);
0
Ritor1
parents:
diff changeset
186 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-c", 2);
Ritor1
parents:
diff changeset
187 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-c", 2);
Ritor1
parents:
diff changeset
188 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-c", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
189 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-C", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
190 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-C", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
191 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-C", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
192 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-C", 2);
995
5876a9cafa3e Various UIs, autonotes title fixed
Nomad
parents: 994
diff changeset
193 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-C", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
194 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-c", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
195 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-c", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
196 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-c", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
197 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-c", 2);
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
198
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
199 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-c", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
200 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-c", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
201 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-c", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
202 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-c", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
203
0
Ritor1
parents:
diff changeset
204 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC");
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
205 pIconsFrameTable->InitializeAnimation(pUIAnim_WizardEye->uIconID);
0
Ritor1
parents:
diff changeset
206 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC");
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
207 pIconsFrameTable->InitializeAnimation(pUIAnum_Torchlight->uIconID);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
208
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
209 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-c", 2);
0
Ritor1
parents:
diff changeset
210 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-c", 2);
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
211 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-c", 2);
0
Ritor1
parents:
diff changeset
212 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
Ritor1
parents:
diff changeset
213 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-c", 2);
Ritor1
parents:
diff changeset
214 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-c", 2);
Ritor1
parents:
diff changeset
215 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-c", 2);
Ritor1
parents:
diff changeset
216 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-c", 2);
Ritor1
parents:
diff changeset
217 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-c", 2);
Ritor1
parents:
diff changeset
218 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-c", 2);
Ritor1
parents:
diff changeset
219 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-c", 2);
Ritor1
parents:
diff changeset
220 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-c", 2);
Ritor1
parents:
diff changeset
221 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-c", 2);
Ritor1
parents:
diff changeset
222 }
Ritor1
parents:
diff changeset
223 else
Ritor1
parents:
diff changeset
224 {
Ritor1
parents:
diff changeset
225 pTexture_RightFrame->Load("ib-r-C.pcx", 0);
Ritor1
parents:
diff changeset
226 pTexture_BottomFrame->Load("ib-b-c.pcx", 0);
Ritor1
parents:
diff changeset
227 pTexture_TopFrame->Load("ib-t-C.pcx", 0);
Ritor1
parents:
diff changeset
228 pTexture_LeftFrame->Load("ib-l-C.pcx", 0);
Ritor1
parents:
diff changeset
229 pTexture_StatusBar->Load("IB-Foot-c.pcx", 0);
Ritor1
parents:
diff changeset
230 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-C", TEXTURE_16BIT_PALETTE);
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
231 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-c", TEXTURE_16BIT_PALETTE);
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
232 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-C", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
233 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-c", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
234 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-c", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
235 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-c", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
236 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-C", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
237 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-C", TEXTURE_16BIT_PALETTE);
328
8e23edf57e27 little fix
Ritor1
parents: 323
diff changeset
238 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-C", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
239 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-C", TEXTURE_16BIT_PALETTE);
995
5876a9cafa3e Various UIs, autonotes title fixed
Nomad
parents: 994
diff changeset
240 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-C", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
241 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-c", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
242 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-c", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
243 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-c", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
244 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-c", TEXTURE_16BIT_PALETTE);
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
245 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-c", TEXTURE_16BIT_PALETTE);
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
246 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-c", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
247 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-c", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
248 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-c", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
249 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-c", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
250 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc-c", TEXTURE_16BIT_PALETTE);
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
251 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
252 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC");
Ritor1
parents:
diff changeset
253 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
Ritor1
parents:
diff changeset
254 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC");
Ritor1
parents:
diff changeset
255 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
Ritor1
parents:
diff changeset
256 }
949
Nomad
parents: 948
diff changeset
257 v3 = TargetColor(0xC8u, 0, 0);
0
Ritor1
parents:
diff changeset
258 v4 = 0;
Ritor1
parents:
diff changeset
259 v6 = 0;
Ritor1
parents:
diff changeset
260 v5 = 10;
Ritor1
parents:
diff changeset
261 }
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
262 else if (align == PartyAlignment_Neutral)
0
Ritor1
parents:
diff changeset
263 {
Ritor1
parents:
diff changeset
264 if ( bReplace )
Ritor1
parents:
diff changeset
265 {
Ritor1
parents:
diff changeset
266 pTexture_RightFrame->Reload("ib-r-a.pcx");
Ritor1
parents:
diff changeset
267 pTexture_BottomFrame->Reload("ib-b-a.pcx");
Ritor1
parents:
diff changeset
268 pTexture_TopFrame->Reload("ib-t-a.pcx");
Ritor1
parents:
diff changeset
269 pTexture_LeftFrame->Reload("ib-l-a.pcx");
Ritor1
parents:
diff changeset
270 pTexture_StatusBar->Reload("IB-Foot-a.pcx");
Ritor1
parents:
diff changeset
271 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-a", 2);
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
272 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-a", 2);
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
273 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-a", 2);
0
Ritor1
parents:
diff changeset
274 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-a", 2);
Ritor1
parents:
diff changeset
275 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-a", 2);
Ritor1
parents:
diff changeset
276 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-a", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
277 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
278 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
279 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
280 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-a", 2);
995
5876a9cafa3e Various UIs, autonotes title fixed
Nomad
parents: 994
diff changeset
281 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-a", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
282 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
283 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
284 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-a", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
285 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-a", 2);
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
286 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-a", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
287 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-a", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
288 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-a", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
289 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-a", 2);
0
Ritor1
parents:
diff changeset
290 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA");
Ritor1
parents:
diff changeset
291 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
Ritor1
parents:
diff changeset
292 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA");
Ritor1
parents:
diff changeset
293 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
294 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-a", 2);
0
Ritor1
parents:
diff changeset
295 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc", 2);
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
296 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven", 2);
0
Ritor1
parents:
diff changeset
297 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
Ritor1
parents:
diff changeset
298 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll", 2);
Ritor1
parents:
diff changeset
299 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr", 2);
Ritor1
parents:
diff changeset
300 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul", 2);
Ritor1
parents:
diff changeset
301 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur", 2);
Ritor1
parents:
diff changeset
302 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm", 2);
Ritor1
parents:
diff changeset
303 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf", 2);
Ritor1
parents:
diff changeset
304 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt", 2);
Ritor1
parents:
diff changeset
305 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top", 2);
Ritor1
parents:
diff changeset
306 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap", 2);
Ritor1
parents:
diff changeset
307 }
Ritor1
parents:
diff changeset
308 else
Ritor1
parents:
diff changeset
309 {
Ritor1
parents:
diff changeset
310 pTexture_RightFrame->Load("ib-r-A.pcx", 0);
Ritor1
parents:
diff changeset
311 pTexture_BottomFrame->Load("ib-b-A.pcx", 0);
Ritor1
parents:
diff changeset
312 pTexture_TopFrame->Load("ib-t-A.pcx", 0);
Ritor1
parents:
diff changeset
313 pTexture_LeftFrame->Load("ib-l-A.pcx", 0);
Ritor1
parents:
diff changeset
314 pTexture_StatusBar->Load("IB-Foot-a.pcx", 0);
Ritor1
parents:
diff changeset
315 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-A", TEXTURE_16BIT_PALETTE);
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
316 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-a", TEXTURE_16BIT_PALETTE);
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
317 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-A", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
318 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-a", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
319 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-a", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
320 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-a", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
321 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-A", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
322 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-A", TEXTURE_16BIT_PALETTE);
995
5876a9cafa3e Various UIs, autonotes title fixed
Nomad
parents: 994
diff changeset
323 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-A", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
324 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-a", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
325 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-a", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
326 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-a", TEXTURE_16BIT_PALETTE);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
327 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-a", TEXTURE_16BIT_PALETTE);
328
8e23edf57e27 little fix
Ritor1
parents: 323
diff changeset
328 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-a", TEXTURE_16BIT_PALETTE);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
329 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-a", TEXTURE_16BIT_PALETTE);
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
330 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-a", TEXTURE_16BIT_PALETTE);
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
331 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-a", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
332 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-a", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
333 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-a", TEXTURE_16BIT_PALETTE);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
334 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-a", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
335 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc", TEXTURE_16BIT_PALETTE);
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
336 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
337 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA");
Ritor1
parents:
diff changeset
338 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
Ritor1
parents:
diff changeset
339 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA");
Ritor1
parents:
diff changeset
340 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
Ritor1
parents:
diff changeset
341 uTextureID_Parchment = pIcons_LOD->LoadTexture("parchment", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
342 uTextureID_5076B4 = pIcons_LOD->LoadTexture("cornr_ll", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
343 uTextureID_5076B0 = pIcons_LOD->LoadTexture("cornr_lr", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
344 uTextureID_5076AC = pIcons_LOD->LoadTexture("cornr_ul", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
345 uTextureID_5076A8 = pIcons_LOD->LoadTexture("cornr_ur", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
346 uTextureID_5076A4 = pIcons_LOD->LoadTexture("edge_btm", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
347 uTextureID_5076A0 = pIcons_LOD->LoadTexture("edge_lf", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
348 uTextureID_50769C = pIcons_LOD->LoadTexture("edge_rt", TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
349 uTextureID_507698 = pIcons_LOD->LoadTexture("edge_top", TEXTURE_16BIT_PALETTE);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
350 pTexture_591428 = pIcons_LOD->LoadTexturePtr("endcap", TEXTURE_16BIT_PALETTE);
0
Ritor1
parents:
diff changeset
351
Ritor1
parents:
diff changeset
352 }
949
Nomad
parents: 948
diff changeset
353 v3 = TargetColor(0xAu, 0, 0);
0
Ritor1
parents:
diff changeset
354 v4 = 214;
Ritor1
parents:
diff changeset
355 v5 = 230;
Ritor1
parents:
diff changeset
356 v6 = 193;
Ritor1
parents:
diff changeset
357 }
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
358 else if (align == PartyAlignment_Good)
0
Ritor1
parents:
diff changeset
359 {
Ritor1
parents:
diff changeset
360 if ( bReplace )
Ritor1
parents:
diff changeset
361 {
Ritor1
parents:
diff changeset
362 pTexture_RightFrame->Reload("ib-r-B.pcx");
Ritor1
parents:
diff changeset
363 pTexture_BottomFrame->Reload("ib-b-B.pcx");
Ritor1
parents:
diff changeset
364 pTexture_TopFrame->Reload("ib-t-B.pcx");
Ritor1
parents:
diff changeset
365 pTexture_LeftFrame->Reload("ib-l-B.pcx");
Ritor1
parents:
diff changeset
366 pTexture_StatusBar->Reload("IB-Foot-b.pcx");
Ritor1
parents:
diff changeset
367 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-B", 2);
1507
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
368 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-b", 2);
a109bb203e28 UIGame.cpp cleaning(continue) GameUI_DrawMinimap
Ritor1
parents: 1459
diff changeset
369 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-B", 2);
0
Ritor1
parents:
diff changeset
370 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-b", 2);
Ritor1
parents:
diff changeset
371 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-b", 2);
Ritor1
parents:
diff changeset
372 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-b", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
373 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-B", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
374 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-B", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
375 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-B", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
376 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-B", 2);
995
5876a9cafa3e Various UIs, autonotes title fixed
Nomad
parents: 994
diff changeset
377 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-B", 2);
319
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
378 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-b", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
379 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-b", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
380 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-b", 2);
5a66be213cff Actor::Die
Nomad
parents: 316
diff changeset
381 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-b", 2);
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
382 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-b", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
383 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-b", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
384 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-b", 2);
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 566
diff changeset
385 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-b", 2);
0
Ritor1
parents:
diff changeset
386 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeB");
Ritor1
parents:
diff changeset
387 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
Ritor1
parents:
diff changeset
388 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchB");
Ritor1
parents:
diff changeset
389 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
390 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-b", 2);
0
Ritor1
parents:
diff changeset
391 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-b", 2);
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 983
diff changeset
392 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-b", 2);
0
Ritor1
parents:
diff changeset
393 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
Ritor1
parents:
diff changeset
394 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-b", 2);
Ritor1
parents:
diff changeset
395 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-b", 2);
Ritor1
parents:
diff changeset
396 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-b", 2);
Ritor1
parents:
diff changeset
397 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-b", 2);
Ritor1
parents:
diff changeset
398 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-b", 2);
Ritor1
parents:
diff changeset
399 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-b", 2);
Ritor1
parents:
diff changeset
400 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-b", 2);
Ritor1
parents:
diff changeset
401 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-b", 2);
Ritor1
parents:
diff changeset
402 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-b", 2);
Ritor1
parents:
diff changeset
403 }
949
Nomad
parents: 948
diff changeset
404 v3 = TargetColor(0, 0, 0xC8u);
0
Ritor1
parents:
diff changeset
405 v5 = 255;
Ritor1
parents:
diff changeset
406 v4 = 225;
Ritor1
parents:
diff changeset
407 v6 = 255;
Ritor1
parents:
diff changeset
408 }
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
409 else Error("Invalid alignment type: %u", align);
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 365
diff changeset
410
0
Ritor1
parents:
diff changeset
411 uGameUIFontMain = v3;
949
Nomad
parents: 948
diff changeset
412 uGameUIFontShadow = TargetColor(v5, v4, v6);
0
Ritor1
parents:
diff changeset
413 }
Ritor1
parents:
diff changeset
414
1038
39f42990698f Cleanings
Nomad
parents: 1030
diff changeset
415
39f42990698f Cleanings
Nomad
parents: 1030
diff changeset
416
0
Ritor1
parents:
diff changeset
417 //----- (00424CD7) --------------------------------------------------------
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
418 int sr_424CD7(unsigned int num_vertices)
0
Ritor1
parents:
diff changeset
419 {
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
420 //unsigned int v1; // edx@1
0
Ritor1
parents:
diff changeset
421 signed int v2; // edi@1
Ritor1
parents:
diff changeset
422 char *v3; // esi@4
Ritor1
parents:
diff changeset
423 char *v4; // ecx@4
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
424 //unsigned int v5; // eax@4
0
Ritor1
parents:
diff changeset
425 char *v6; // edx@4
Ritor1
parents:
diff changeset
426 double v7; // st6@10
Ritor1
parents:
diff changeset
427 double v8; // st5@10
Ritor1
parents:
diff changeset
428 double v9; // st6@11
Ritor1
parents:
diff changeset
429 unsigned __int8 v10; // c2@15
Ritor1
parents:
diff changeset
430 unsigned __int8 v11; // c3@15
Ritor1
parents:
diff changeset
431 RenderVertexSoft *v12; // edi@22
Ritor1
parents:
diff changeset
432 char *v13; // eax@22
Ritor1
parents:
diff changeset
433 double v14; // st6@22
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
434 //signed int result; // eax@24
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
435 //unsigned int v16; // [sp+8h] [bp-28h]@4
0
Ritor1
parents:
diff changeset
436 bool v17; // [sp+Ch] [bp-24h]@6
Ritor1
parents:
diff changeset
437 char *v18; // [sp+10h] [bp-20h]@4
Ritor1
parents:
diff changeset
438 char *v19; // [sp+14h] [bp-1Ch]@4
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
439 //signed int v20; // [sp+18h] [bp-18h]@1
0
Ritor1
parents:
diff changeset
440 RenderVertexSoft *v21; // [sp+1Ch] [bp-14h]@4
Ritor1
parents:
diff changeset
441 char *v22; // [sp+20h] [bp-10h]@4
Ritor1
parents:
diff changeset
442 char *v23; // [sp+24h] [bp-Ch]@4
Ritor1
parents:
diff changeset
443 char *v24; // [sp+28h] [bp-8h]@4
Ritor1
parents:
diff changeset
444 char *v25; // [sp+2Ch] [bp-4h]@4
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
445
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
446 if (!num_vertices)
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
447 return 0;
0
Ritor1
parents:
diff changeset
448
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
449 //v1 = uVertexID;
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
450 memcpy(&array_50AC10[num_vertices], array_50AC10, sizeof(array_50AC10[0]));
0
Ritor1
parents:
diff changeset
451 v2 = 0;
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
452 //v20 = 0;
0
Ritor1
parents:
diff changeset
453 if ( array_50AC10[0].vWorldViewPosition.x >= 8.0 )
Ritor1
parents:
diff changeset
454 v2 = 1;
Ritor1
parents:
diff changeset
455 v3 = (char *)&array_507D30[0].vWorldViewPosition.z;
Ritor1
parents:
diff changeset
456 v4 = (char *)&array_507D30[0].vWorldViewPosition.y;
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
457 //v5 = v1;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
458 v23 = (char *)&array_507D30[0]._rhw;
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
459 v21 = array_507D30;
0
Ritor1
parents:
diff changeset
460 v18 = (char *)&array_507D30[0].vWorldViewPosition.z;
Ritor1
parents:
diff changeset
461 v19 = (char *)&array_507D30[0].vWorldViewPosition.y;
Ritor1
parents:
diff changeset
462 v22 = (char *)&array_507D30[0].vWorldViewPosition;
Ritor1
parents:
diff changeset
463 v24 = (char *)&array_507D30[0].v;
Ritor1
parents:
diff changeset
464 v25 = (char *)&array_507D30[0].u;
Ritor1
parents:
diff changeset
465 v6 = (char *)&array_50AC10[0].v;
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
466 //v16 = v1;
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
467
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
468 int out_num_vertices = 0;
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
469 for (int i = 0; i < num_vertices; ++i)
0
Ritor1
parents:
diff changeset
470 {
Ritor1
parents:
diff changeset
471 v17 = *((float *)v6 + 5) >= 8.0;
Ritor1
parents:
diff changeset
472 if ( v2 != v17 )
Ritor1
parents:
diff changeset
473 {
Ritor1
parents:
diff changeset
474 if ( v17 )
Ritor1
parents:
diff changeset
475 {
Ritor1
parents:
diff changeset
476 v7 = (8.0 - *((float *)v6 - 7)) / (*((float *)v6 + 5) - *((float *)v6 - 7));
Ritor1
parents:
diff changeset
477 *(float *)v4 = (*((float *)v6 + 6) - *((float *)v6 - 6)) * v7 + *((float *)v6 - 6);
Ritor1
parents:
diff changeset
478 *(float *)v3 = (*((float *)v6 + 7) - *((float *)v6 - 5)) * v7 + *((float *)v6 - 5);
Ritor1
parents:
diff changeset
479 *(float *)v25 = (*((float *)v6 + 11) - *((float *)v6 - 1)) * v7 + *((float *)v6 - 1);
Ritor1
parents:
diff changeset
480 v8 = (*((float *)v6 + 12) - *(float *)v6) * v7 + *(float *)v6;
Ritor1
parents:
diff changeset
481 }
Ritor1
parents:
diff changeset
482 else
Ritor1
parents:
diff changeset
483 {
Ritor1
parents:
diff changeset
484 v9 = (8.0 - *((float *)v6 + 5)) / (*((float *)v6 - 7) - *((float *)v6 + 5));
Ritor1
parents:
diff changeset
485 *(float *)v4 = (*((float *)v6 - 6) - *((float *)v6 + 6)) * v9 + *((float *)v6 + 6);
Ritor1
parents:
diff changeset
486 *(float *)v3 = (*((float *)v6 - 5) - *((float *)v6 + 7)) * v9 + *((float *)v6 + 7);
Ritor1
parents:
diff changeset
487 *(float *)v25 = (*((float *)v6 - 1) - *((float *)v6 + 11)) * v9 + *((float *)v6 + 11);
Ritor1
parents:
diff changeset
488 v8 = (*(float *)v6 - *((float *)v6 + 12)) * v9 + *((float *)v6 + 12);
Ritor1
parents:
diff changeset
489 }
Ritor1
parents:
diff changeset
490 *(float *)v24 = v8;
Ritor1
parents:
diff changeset
491 *(float *)v22 = 8.0;
Ritor1
parents:
diff changeset
492 *(int *)v23 = 0x3E000000u;
Ritor1
parents:
diff changeset
493 if ( v2 )
Ritor1
parents:
diff changeset
494 {
Ritor1
parents:
diff changeset
495 if ( 8.0 == *((float *)v6 - 7) && *(float *)v4 == *((float *)v6 - 6) )
Ritor1
parents:
diff changeset
496 {
Ritor1
parents:
diff changeset
497 v10 = 0;
Ritor1
parents:
diff changeset
498 v11 = *(float *)v3 == *((float *)v6 - 5);
1426
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
499 if ( v11 | v10 )
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
500 goto LABEL_21;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
501 }
0
Ritor1
parents:
diff changeset
502 }
Ritor1
parents:
diff changeset
503 else
Ritor1
parents:
diff changeset
504 {
Ritor1
parents:
diff changeset
505 if ( 8.0 == *((float *)v6 + 5) && *(float *)v4 == *((float *)v6 + 6) )
Ritor1
parents:
diff changeset
506 {
Ritor1
parents:
diff changeset
507 v10 = 0;
Ritor1
parents:
diff changeset
508 v11 = *(float *)v3 == *((float *)v6 + 7);
1426
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
509 if ( v11 | v10 )
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
510 goto LABEL_21;
0
Ritor1
parents:
diff changeset
511 }
Ritor1
parents:
diff changeset
512 }
1426
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
513 ++v21;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
514 v22 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
515 v24 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
516 v25 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
517 v4 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
518 v3 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
519 ++out_num_vertices;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
520 v23 += 48;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
521 v19 = v4;
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
522 v18 = v3;
0
Ritor1
parents:
diff changeset
523 }
1426
2754f373a8b3 mistake fixed
zipi
parents: 1418
diff changeset
524 LABEL_21:
0
Ritor1
parents:
diff changeset
525 if ( v17 )
Ritor1
parents:
diff changeset
526 {
Ritor1
parents:
diff changeset
527 v12 = v21;
Ritor1
parents:
diff changeset
528 v13 = v23;
Ritor1
parents:
diff changeset
529 v19 += 48;
Ritor1
parents:
diff changeset
530 v18 += 48;
Ritor1
parents:
diff changeset
531 v14 = 1.0 / (*((float *)v6 + 5) + 0.0000001);
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
532 ++out_num_vertices;
0
Ritor1
parents:
diff changeset
533 v25 += 48;
Ritor1
parents:
diff changeset
534 v24 += 48;
Ritor1
parents:
diff changeset
535 v22 += 48;
Ritor1
parents:
diff changeset
536 ++v21;
Ritor1
parents:
diff changeset
537 v23 += 48;
Ritor1
parents:
diff changeset
538 memcpy(v12, v6 + 8, 0x30u);
Ritor1
parents:
diff changeset
539 v4 = v19;
Ritor1
parents:
diff changeset
540 v3 = v18;
Ritor1
parents:
diff changeset
541 *(float *)v13 = v14;
Ritor1
parents:
diff changeset
542 }
Ritor1
parents:
diff changeset
543 v2 = v17;
Ritor1
parents:
diff changeset
544 v6 += 48;
Ritor1
parents:
diff changeset
545 }
1414
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
546
110eac219e5a ChestUI_WritePointedObjectStatusString
Nomad
parents: 1413
diff changeset
547 return out_num_vertices >= 3 ? out_num_vertices : 0;
0
Ritor1
parents:
diff changeset
548 }