annotate GUIWindow.cpp @ 2471:b61ebbb46ace

VS 2010 filters
author Ritor1
date Mon, 18 Aug 2014 22:24:00 +0600
parents 8516bb27d7f0
children e42e01ff1526
rev   line source
2415
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
1 #define _CRTDBG_MAP_ALLOC
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
2 #include <stdlib.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
3 #include <crtdbg.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
4
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2216
diff changeset
5 #define _CRT_SECURE_NO_WARNINGS
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2334
diff changeset
6 #include "ErrorHandling.h"
2464
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
7
0
Ritor1
parents:
diff changeset
8 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
9 #include "GUIFont.h"
Ritor1
parents:
diff changeset
10 #include "Party.h"
Ritor1
parents:
diff changeset
11 #include "LOD.h"
Ritor1
parents:
diff changeset
12 #include "Keyboard.h"
2037
7a9477135943 Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents: 2026
diff changeset
13 #include "OurMath.h"
2044
28cb79ae2f6f Time.h rename
Ritor1
parents: 2037
diff changeset
14 #include "Timer.h"
0
Ritor1
parents:
diff changeset
15 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
16 #include "Mouse.h"
Ritor1
parents:
diff changeset
17 #include "Viewport.h"
Ritor1
parents:
diff changeset
18 #include "StorylineTextTable.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1297
diff changeset
19 #include "UI\UIHouses.h"
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
20 #include "UI\UIBooks.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
21 #include "texts.h"
81
377535d6e366 structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents: 74
diff changeset
22 #include "Autonotes.h"
949
Nomad
parents: 948
diff changeset
23 #include "Awards.h"
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
24 #include "Chest.h"
1638
ccde94f02b75 class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents: 1591
diff changeset
25 #include "Outdoor.h"
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1639
diff changeset
26 #include "Game.h"
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
27 #include "IconFrameTable.h"
2362
eb136041adf1 some more function shuffling
Grumpy7
parents: 2355
diff changeset
28 #include "Actor.h"
0
Ritor1
parents:
diff changeset
29
2463
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
30 #include "UI\UIArena.h"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
31 #include "Events.h"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
32 #include "Level\Decoration.h"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
33
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
34 typedef struct _RGBColor
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
35 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
36 unsigned char R;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
37 unsigned char B;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
38 unsigned char G;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
39 }RGBColor;
0
Ritor1
parents:
diff changeset
40
Ritor1
parents:
diff changeset
41
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
42 std::array<RGBColor, 20> spell_tooltip_colors={{
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
43 {0x96, 0xD4, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
44 {0xFF, 0x80, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
45 {0xFF, 0xFF, 0x9B},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
46 {0xE1, 0xE1, 0xE1},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
47 {0x80, 0x80, 0x80},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
48 {0x96, 0xD4, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
49 {0xFF, 0x55, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
50 {0x96, 0xD4, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
51 {0xFF, 0x55, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
52 {0xE1, 0xE1, 0xE1},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
53 {0xFF, 0x55, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
54 {0x96, 0xD4, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
55 {0xEB, 0x0F, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
56 {0xFF, 0x80, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
57 {0x96, 0xD4, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
58 {0x80, 0x80, 0x80},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
59 {0xFF, 0x55, 0x00},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
60 {0x00, 0x80, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
61 {0x00, 0x80, 0xFF},
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
62 {0x96, 0xD4, 0xFF}}};
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
63
0
Ritor1
parents:
diff changeset
64
Ritor1
parents:
diff changeset
65 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb
2278
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2273
diff changeset
66 struct GUIWindow *pWindow_MMT_MainMenu;
0
Ritor1
parents:
diff changeset
67 struct GUIWindow *pWindow_MainMenu;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
68 std::array<struct GUIWindow, 20> pWindowList;
0
Ritor1
parents:
diff changeset
69
Ritor1
parents:
diff changeset
70 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue;
1012
9e823ad5eaa6 second msg_queue returned
Gloval
parents: 1006
diff changeset
71 struct GUIMessageQueue *pMessageQueue_50C9E8 = new GUIMessageQueue;
0
Ritor1
parents:
diff changeset
72
1038
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
73
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
74
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
75
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
76
39f42990698f Cleanings
Nomad
parents: 1035
diff changeset
77
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
78 // inlined
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
79 //----- (mm6c::00420520) --------------------------------------------------
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
80 void GUIMessageQueue::Flush()
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
81 {
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
82 if (uNumMessages)
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
83 uNumMessages = pMessages[0].field_8 != 0;
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
84 }
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
85
0
Ritor1
parents:
diff changeset
86 //----- (004356B9) --------------------------------------------------------
Ritor1
parents:
diff changeset
87 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4)
Ritor1
parents:
diff changeset
88 {
Ritor1
parents:
diff changeset
89 if ( this->uNumMessages )
Ritor1
parents:
diff changeset
90 {
Ritor1
parents:
diff changeset
91 *pType = this->pMessages[0].eType;
Ritor1
parents:
diff changeset
92 *pParam = this->pMessages[0].param;
Ritor1
parents:
diff changeset
93 *a4 = this->pMessages[0].field_8;
Ritor1
parents:
diff changeset
94 if ( (signed int)(this->uNumMessages - 1) > 0 )
Ritor1
parents:
diff changeset
95 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
96 for ( uint i = 0; i < (signed int)(this->uNumMessages - 1); ++i )
0
Ritor1
parents:
diff changeset
97 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
98 this->pMessages[i].eType = this->pMessages[i + 1].eType;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
99 this->pMessages[i].param = this->pMessages[i + 1].param;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
100 this->pMessages[i].field_8 = this->pMessages[i + 1].field_8;
0
Ritor1
parents:
diff changeset
101 }
Ritor1
parents:
diff changeset
102 }
Ritor1
parents:
diff changeset
103 --this->uNumMessages;
Ritor1
parents:
diff changeset
104 }
Ritor1
parents:
diff changeset
105 }
Ritor1
parents:
diff changeset
106
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
107 //----- (0041B4E1) --------------------------------------------------------
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
108 int __fastcall GUI_ReplaceHotkey(unsigned __int8 uOldHotkey, unsigned __int8 uNewHotkey, char bFirstCall)
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
109 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
110 int result; // eax@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
111 int i; // edx@2
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
112 GUIButton *j; // ecx@3
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
113 int k; // edx@7
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
114 GUIButton *l; // ecx@8
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
115 unsigned __int8 v9; // [sp+4h] [bp-8h]@1
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
116 char old_hot_key; // [sp+8h] [bp-4h]@1
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
117
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
118 //v3 = uNewHotkey;
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
119 old_hot_key = toupper(uOldHotkey);
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
120 result = toupper(uNewHotkey);
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
121 v9 = result;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
122 if ( bFirstCall )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
123 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
124 for ( i = uNumVisibleWindows; i >= 0; --i )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
125 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
126 result = 84 * pVisibleWindowsIdxs[i];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
127 for ( j = pWindowList[pVisibleWindowsIdxs[i] - 1].pControlsHead; j; j = j->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
128 j->field_28 = 0;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
129 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
130 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
131 for ( k = uNumVisibleWindows; k >= 0; --k )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
132 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
133 result = 84 * pVisibleWindowsIdxs[k];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
134 for ( l = pWindowList[pVisibleWindowsIdxs[k] - 1].pControlsHead; l; l = l->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
135 {
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
136 LOBYTE(result) = old_hot_key;
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
137 if ( l->uHotkey == old_hot_key )
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
138 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
139 if ( !l->field_28 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
140 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
141 LOBYTE(result) = v9;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
142 l->field_28 = 1;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
143 l->uHotkey = v9;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
144 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
145 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
146 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
147 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
148 return result;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
149 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
150
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
151 //----- (0041B438) --------------------------------------------------------
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
152 GUIButton *__fastcall GUI_HandleHotkey(unsigned __int8 uHotkey)
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
153 {
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
154 char Hot_key_num; // al@1
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
155 GUIWindow *current_window; // ecx@2
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
156 GUIButton *result; // eax@2
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
157
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
158 Hot_key_num = toupper(uHotkey);
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
159 for( int i = uNumVisibleWindows; i >= 0 && pVisibleWindowsIdxs[i] > 0; i-- )
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
160 {
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
161 current_window = &pWindowList[pVisibleWindowsIdxs[i] - 1];
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
162 for ( result = current_window->pControlsHead; result; result = result->pNext )
1210
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
163 {
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
164 if ( result->uHotkey == Hot_key_num )
1210
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
165 {
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
166 pMessageQueue_50CBD0->AddGUIMessage(result->msg, result->msg_param, 0);
1210
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
167 return result;
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
168 }
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
169 }
2445
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
170 if ( !current_window->uFrameX && !current_window->uFrameY
b10125a9c772 fix crash in keyboard option
Ritor1
parents: 2434
diff changeset
171 && (current_window->uFrameWidth == window->GetWidth() && current_window->uFrameHeight == window->GetWidth()) )
1210
8ff88e39e097 fix for crash on main menu
zipi
parents: 1206
diff changeset
172 break;
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
173 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
174 return 0;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
175 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
176 // 5075E0: using guessed type int pVisibleWindowsIdxs[20];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
177
0
Ritor1
parents:
diff changeset
178 //----- (0041D73D) --------------------------------------------------------
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
179 void GUIWindow::_41D73D_draw_buff_tooltip()
2461
ff7f4995aa25 function MakeScreenshot()
Ritor1
parents: 2450
diff changeset
180 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
181 __int64 remaing_time; // ST28_8@11
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
182 unsigned short text_color;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
183 int Y_pos; // esi@11
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
184 int string_count; // [sp+20h] [bp-4h]@7
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
185
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
186 string_count = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
187 for (int i=0; i<20; ++i)
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
188 if ( pParty->pPartyBuffs[i].uExpireTime > 0i64 )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
189 ++string_count;
0
Ritor1
parents:
diff changeset
190
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
191 uFrameHeight = pFontArrus->uFontHeight + 72;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
192 uFrameHeight += (string_count - 1) * pFontArrus->uFontHeight;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
193 uFrameZ = uFrameWidth + uFrameX - 1;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
194 uFrameW = uFrameY + uFrameHeight - 1;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
195 DrawMessageBox(0);
2461
ff7f4995aa25 function MakeScreenshot()
Ritor1
parents: 2450
diff changeset
196 DrawTitleText(pFontArrus, 0, 12, 0, pGlobalTXT_LocalizationStrings[451], 3);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
197 if ( !string_count )
2461
ff7f4995aa25 function MakeScreenshot()
Ritor1
parents: 2450
diff changeset
198 DrawTitleText(pFontComic, 0, 40, 0, pGlobalTXT_LocalizationStrings[153], 3);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
199
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
200 GetTickCount();
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
201 string_count = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
202 for (int i=0; i<20; ++i)
0
Ritor1
parents:
diff changeset
203 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
204 if ( pParty->pPartyBuffs[i].uExpireTime>0i64 )//!!!
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
205 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
206 remaing_time = pParty->pPartyBuffs[i].uExpireTime- pParty->uTimePlayed;//!!!
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
207 Y_pos = string_count * pFontComic->uFontHeight + 40;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
208 text_color = Color16(spell_tooltip_colors[i].R, spell_tooltip_colors[i].G, spell_tooltip_colors[i].B);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
209 DrawText(pFontComic, 52, Y_pos, text_color, aSpellNames[i], 0, 0, 0);
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
210 DrawBuff_remaining_time_string(Y_pos, this, remaing_time, pFontComic);
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
211 ++string_count;
2461
ff7f4995aa25 function MakeScreenshot()
Ritor1
parents: 2450
diff changeset
212 }
0
Ritor1
parents:
diff changeset
213 }
Ritor1
parents:
diff changeset
214 }
Ritor1
parents:
diff changeset
215
Ritor1
parents:
diff changeset
216
Ritor1
parents:
diff changeset
217 //----- (0041D08F) --------------------------------------------------------
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
218 void GUIWindow::_41D08F_set_keyboard_control_group(int num_buttons, int a3, int a4, int a5)
0
Ritor1
parents:
diff changeset
219 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
220 if (num_buttons)
0
Ritor1
parents:
diff changeset
221 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
222 this->pNumPresenceButton = num_buttons;
0
Ritor1
parents:
diff changeset
223 this->field_30 = a3;
Ritor1
parents:
diff changeset
224 this->field_34 = a4;
Ritor1
parents:
diff changeset
225 this->pCurrentPosActiveItem = a5;
Ritor1
parents:
diff changeset
226 this->pStartingPosActiveItem = a5;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
227 this->receives_keyboard_input = true;
0
Ritor1
parents:
diff changeset
228 }
Ritor1
parents:
diff changeset
229 else
Ritor1
parents:
diff changeset
230 {
Ritor1
parents:
diff changeset
231 this->pNumPresenceButton = 0;
Ritor1
parents:
diff changeset
232 this->field_30 = a3;
Ritor1
parents:
diff changeset
233 this->field_34 = a4;
Ritor1
parents:
diff changeset
234 this->pCurrentPosActiveItem = 0;
Ritor1
parents:
diff changeset
235 this->pStartingPosActiveItem = 0;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
236 this->receives_keyboard_input = false;
0
Ritor1
parents:
diff changeset
237 }
Ritor1
parents:
diff changeset
238 }
Ritor1
parents:
diff changeset
239
Ritor1
parents:
diff changeset
240
Ritor1
parents:
diff changeset
241 //----- (0041C26A) --------------------------------------------------------
Ritor1
parents:
diff changeset
242 void GUIWindow::Release()
Ritor1
parents:
diff changeset
243 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
244 //GUIWindow *v1; // esi@1
0
Ritor1
parents:
diff changeset
245 int i; // edi@20
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
246 //GUIButton *v8; // eax@26
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
247 GUIButton *pNextBtn; // edi@27
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
248 //int v10; // esi@28
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
249 //int v11; // ecx@28
0
Ritor1
parents:
diff changeset
250 int v12; // edx@29
Ritor1
parents:
diff changeset
251
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
252 //v1 = this;
0
Ritor1
parents:
diff changeset
253 if ( !this )
Ritor1
parents:
diff changeset
254 return;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
255
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
256 switch( this->eWindowType )
0
Ritor1
parents:
diff changeset
257 {
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
258 case WINDOW_GreetingNPC:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
259 {
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
260 pIcons_LOD->SyncLoadedFilesCount();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
261 pCurrentScreen = pMainScreenNum;
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
262 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_CANCELLED);
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
263 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
264 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
265 case WINDOW_HouseInterior:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
266 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
267 for ( i = 0; i < uNumDialogueNPCPortraits; ++i )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
268 pDialogueNPCPortraits[i]->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
269 uNumDialogueNPCPortraits = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
270 pTexture_Dialogue_Background->Release();
0
Ritor1
parents:
diff changeset
271
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
272 pIcons_LOD->SyncLoadedFilesCount();
1405
c0b273d33338 RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents: 1404
diff changeset
273 pIcons_LOD->RemoveTexturesPackFromTextureList();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
274 dword_5C35D4 = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
275 if ( bFlipOnExit )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
276 {
1638
ccde94f02b75 class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents: 1591
diff changeset
277 pParty->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi + pParty->sRotationY);
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1639
diff changeset
278 pGame->pIndoorCameraD3D->sRotationY = pParty->sRotationY;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
279 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
280 pParty->uFlags |= 2u;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
281 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
282 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
283 case WINDOW_Transition:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
284 {
2434
1eb352f7319a * Fixed double release of movie in transition screens
a.parshin
parents: 2415
diff changeset
285 //pVideoPlayer->Unload();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
286 pTexture_outside->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
287 pTexture_Dialogue_Background->Release();
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
288 pIcons_LOD->SyncLoadedFilesCount();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
289 pCurrentScreen = pMainScreenNum;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
290 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
291 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
292 case WINDOW_SpellBook:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
293 {
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
294 OnCloseSpellBookPage();
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
295 OnCloseSpellBook();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
296 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
297 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
298 case WINDOW_Book:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
299 {
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
300 OnCloseBook();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
301 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
302 }
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
303 case WINDOW_ChangeLocation:
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
304 {
0
Ritor1
parents:
diff changeset
305 pTexture_outside->Release();
Ritor1
parents:
diff changeset
306 pTexture_Dialogue_Background->Release();
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
307 pIcons_LOD->SyncLoadedFilesCount();
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
308 pCurrentScreen = pMainScreenNum;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
309 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
310 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
311 case WINDOW_Dialogue:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
312 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
313 if ( !dword_591084 )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
314 pDialogueNPCPortraits[0]->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
315 uNumDialogueNPCPortraits = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
316 pTexture_Dialogue_Background->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
317
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
318 pIcons_LOD->SyncLoadedFilesCount();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
319 pCurrentScreen = pMainScreenNum;
2004
2bcb4ec491cb fixing game window not reacting after closing npc dialog
Grumpy7
parents: 1980
diff changeset
320 break;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
321 }
1942
e8d329651a2a Fixing game unplayable after enchanting
Grumpy7
parents: 1916
diff changeset
322 case WINDOW_null:
e8d329651a2a Fixing game unplayable after enchanting
Grumpy7
parents: 1916
diff changeset
323 return;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
324 default:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
325 break;
0
Ritor1
parents:
diff changeset
326 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
327 //v8 = this->pControlsHead;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
328 if ( this->pControlsHead )
0
Ritor1
parents:
diff changeset
329 {
Ritor1
parents:
diff changeset
330 do
Ritor1
parents:
diff changeset
331 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
332 pNextBtn = this->pControlsHead->pNext;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1496
diff changeset
333 free(this->pControlsHead);
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
334 this->pControlsHead = pNextBtn;
0
Ritor1
parents:
diff changeset
335 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
336 while ( pNextBtn );
0
Ritor1
parents:
diff changeset
337 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
338 this->pControlsHead = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
339 this->pControlsTail = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
340 this->uNumControls = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
341 this->eWindowType = WINDOW_null;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
342 while ( this->numVisibleWindows < uNumVisibleWindows )
0
Ritor1
parents:
diff changeset
343 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
344 v12 = pVisibleWindowsIdxs[this->numVisibleWindows + 1];
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
345 pVisibleWindowsIdxs[this->numVisibleWindows] = v12;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
346 --pWindowList[v12 - 1].numVisibleWindows;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
347 ++this->numVisibleWindows;
0
Ritor1
parents:
diff changeset
348 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
349 pVisibleWindowsIdxs[uNumVisibleWindows] = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
350 uNumVisibleWindows = uNumVisibleWindows - 1;
0
Ritor1
parents:
diff changeset
351 }
Ritor1
parents:
diff changeset
352
Ritor1
parents:
diff changeset
353 //----- (0041CD3B) --------------------------------------------------------
Ritor1
parents:
diff changeset
354 GUIButton *GUIWindow::GetControl(unsigned int uID)
Ritor1
parents:
diff changeset
355 {
Ritor1
parents:
diff changeset
356 GUIButton *result; // eax@1
Ritor1
parents:
diff changeset
357
Ritor1
parents:
diff changeset
358 result = this->pControlsHead;
1429
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
359 for ( uID; uID; --uID )
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
360 result = result->pNext;
0
Ritor1
parents:
diff changeset
361 return result;
Ritor1
parents:
diff changeset
362 }
Ritor1
parents:
diff changeset
363
Ritor1
parents:
diff changeset
364 //----- (00411BFC) --------------------------------------------------------
Ritor1
parents:
diff changeset
365 void GUIWindow::InitializeBookView()
Ritor1
parents:
diff changeset
366 {
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
367 char *pString; // eax@12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
368 int pTextHeight; // eax@12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
369 //__int64 page_count; // qax@12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
370 unsigned int page_count; // esi@12
0
Ritor1
parents:
diff changeset
371 unsigned __int16 v18; // ax@38
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
372 signed int max_beacons; // [sp+10h] [bp-5Ch]@38
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
373 GUIWindow journal_window; // [sp+18h] [bp-54h]@8
0
Ritor1
parents:
diff changeset
374
Ritor1
parents:
diff changeset
375 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
376 InitializeBookFonts();
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
377 this->CreateButton(475, 445, 158, 34, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); // Close
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
378 pCurrentScreen = SCREEN_BOOKS;
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
379 full_num_items_in_book = 0;
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
380 books_primary_item_per_page = 0;
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
381 books_page_number = 0;
949
Nomad
parents: 948
diff changeset
382 num_achieved_awards = 0;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
383 switch (this->par1C)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
384 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
385 case WINDOW_LloydsBeacon:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
386 {
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
387 byte_506360 = 0;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
388 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("lb_bordr", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
389 pTexture_LloydBeacons[0] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
390 pTexture_LloydBeacons[1] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
391 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
392 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
393
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
394 pBtn_Book_1 = this->CreateButton(415, 13, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 0, 0, pGlobalTXT_LocalizationStrings[375], 0); // Set Beacon
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
395 pBtn_Book_2 = this->CreateButton(415, 48, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 1, 0, pGlobalTXT_LocalizationStrings[523], 0); // Recall Beacon
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
396
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
397 max_beacons = 1;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
398 v18 = pParty->pPlayers[_506348_current_lloyd_playerid].pActiveSkills[PLAYER_SKILL_WATER];
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
399 if ( v18 & 0x100 || (v18 & 0x80) )
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
400 max_beacons = 5;
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
401 else if ( v18 & 0x40 )
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
402 max_beacons = 3;
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
403
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
404 for ( int i = 0; i < max_beacons; ++i )
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1429
diff changeset
405 CreateButton(pLloydsBeaconsPreviewXs[i], pLloydsBeaconsPreviewYs[i],
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
406 92, 68, 1, 180, UIMSG_InstallBeacon, i, 0, "", 0);
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
407
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
408 for ( int i = 0; i < 5; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
409 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
410 if (pParty->pPlayers[_506348_current_lloyd_playerid].pInstalledBeacons[i].uBeaconTime >= (signed __int64)pParty->uTimePlayed)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
411 LoadThumbnailLloydTexture(i, _506348_current_lloyd_playerid + 1);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
412 else
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
413 memset(&pParty->pPlayers[_506348_current_lloyd_playerid].pInstalledBeacons[i], 0, sizeof(LloydBeacon));
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
414 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
415 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
416 break;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
417
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
418 case WINDOW_TownPortal:
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
419 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
420 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("townport", TEXTURE_16BIT_PALETTE);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
421 pTexture_TownPortalIcons[0] = pIcons_LOD->LoadTexturePtr("tpharmndy", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
422 pTexture_TownPortalIcons[1] = pIcons_LOD->LoadTexturePtr("tpelf", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
423 pTexture_TownPortalIcons[2] = pIcons_LOD->LoadTexturePtr("tpwarlock", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
424 pTexture_TownPortalIcons[3] = pIcons_LOD->LoadTexturePtr("tpisland", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
425 pTexture_TownPortalIcons[4] = pIcons_LOD->LoadTexturePtr("tpheaven", TEXTURE_16BIT_PALETTE);
730
79ad0526166c Some data movements.
Nomad
parents: 710
diff changeset
426 pTexture_TownPortalIcons[5] = pIcons_LOD->LoadTexturePtr("tphell", TEXTURE_16BIT_PALETTE);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
427
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
428 static int pTownPortalBook_ws[6] = { 80, 66, 68, 72, 67, 74};
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
429 static int pTownPortalBook_hs[6] = { 55, 56, 65, 67, 67, 59};
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
430 for ( uint i = 0; i < 6; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
431 this->CreateButton(pTownPortalBook_xs[i], pTownPortalBook_ys[i], pTownPortalBook_ws[i], pTownPortalBook_hs[i], 1, 182, UIMSG_ClickTownInTP, i, 0, "", nullptr);
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
432
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
433 }
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
434 break;
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
435
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
436 case WINDOW_QuestBook:
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
437 {
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
438 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("sbquiknot", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
439 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr( "divbar", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
440 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
441 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
442 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
443 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
444 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
445 pTex_book_button1_on->uTextureWidth, pTex_book_button1_on->uTextureHeight,
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
446 1, 0, UIMSG_ClickBooksBtn, 0xBu, 0, pGlobalTXT_LocalizationStrings[192],// "Scroll Up"
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
447 pTex_book_button1_on, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
448 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
449 pTex_book_button2_on->uTextureHeight, pTex_book_button2_on->uTextureHeight,
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
450 1, 0, UIMSG_ClickBooksBtn, 0xAu, 0, pGlobalTXT_LocalizationStrings[193],// "Scroll Down"
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
451 pTex_book_button2_on, 0);
949
Nomad
parents: 948
diff changeset
452 num_achieved_awards = 0;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
453 memset(achieved_awards.data(), 0, 4000);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
454 for ( uint i = books_primary_item_per_page; i < 512; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
455 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
456 if ( _449B57_test_bit(pParty->_quest_bits, i) && pQuestTable[i] )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
457 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
458 achieved_awards[num_achieved_awards] = (AwardType)i;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
459 ++num_achieved_awards;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
460 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
461 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
462 full_num_items_in_book = num_achieved_awards;
949
Nomad
parents: 948
diff changeset
463 num_achieved_awards = 0;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
464 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
465 break;
981
a6ef7125f6e4 Autonotes & GameState
Nomad
parents: 972
diff changeset
466
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
467 case WINDOW_AutonotesBook:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
468 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
469 pTexture_AutonotesBook = pIcons_LOD->LoadTexturePtr("sbautnot", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
470 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr("divbar", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
471 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
472 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
473 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
474 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
475 pTex_book_button3_on = pIcons_LOD->LoadTexturePtr("tab-an-1b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
476 pTex_book_button3_off = pIcons_LOD->LoadTexturePtr("tab-an-1a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
477 pTex_book_button4_on = pIcons_LOD->LoadTexturePtr("tab-an-2b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
478 pTex_book_button4_off = pIcons_LOD->LoadTexturePtr("tab-an-2a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
479 pTex_book_button5_on = pIcons_LOD->LoadTexturePtr("tab-an-3b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
480 pTex_book_button5_off = pIcons_LOD->LoadTexturePtr("tab-an-3a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
481 pTex_book_button6_on = pIcons_LOD->LoadTexturePtr("tab-an-5b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
482 pTex_book_button6_off = pIcons_LOD->LoadTexturePtr("tab-an-5a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
483 pTex_book_button7_on = pIcons_LOD->LoadTexturePtr("tab-an-4b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
484 pTex_book_button7_off = pIcons_LOD->LoadTexturePtr("tab-an-4a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
485 pTex_book_button8_on = pIcons_LOD->LoadTexturePtr("tab-an-8b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
486 pTex_book_button8_off = pIcons_LOD->LoadTexturePtr("tab-an-8a", TEXTURE_16BIT_PALETTE);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
487
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
488 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
489 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[193], pTex_book_button1_on, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
490 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
491 UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[192], pTex_book_button2_on, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
492 pBtn_Book_3 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
493 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[85], pTex_book_button3_on, 0); // "Potion Notes"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
494 pBtn_Book_4 = this->CreateButton(pViewport->uViewportTL_X + 399, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
495 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[137], pTex_book_button4_on, 0); // "Fountain Notes"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
496 pBtn_Book_5 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
497 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[8], pTex_book_button5_on, 0); // "Obelisk Notes"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
498 pBtn_Book_6 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
499 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[141], pTex_book_button6_on, 0); // "Seer Notes"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
500 pBtn_Autonotes_Misc = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 264, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
501 UIMSG_ClickBooksBtn, 6, 0, pGlobalTXT_LocalizationStrings[123], pTex_book_button7_on, 0); // "Miscellaneous Notes"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
502 pBtn_Autonotes_Instructors = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 302, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
503 UIMSG_ClickBooksBtn, 7, 0, pGlobalTXT_LocalizationStrings[662], pTex_book_button8_on, 0); // "Instructors"
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
504
949
Nomad
parents: 948
diff changeset
505 num_achieved_awards = 0;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
506 for ( uint i = books_primary_item_per_page; i < 196; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
507 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
508 if ( _506568_autonote_type == pAutonoteTxt[i].eType)//dword_72371C[2 * v10] )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
509 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
510 if ( i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
511 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
512 if ( _449B57_test_bit(pParty->_autonote_bits, i) && pAutonoteTxt[i].pText )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
513 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
514 achieved_awards[num_achieved_awards] = (AwardType)i;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
515 ++num_achieved_awards;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
516 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
517 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
518 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
519 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
520 full_num_items_in_book = num_achieved_awards;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
521 num_achieved_awards = 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
522 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
523 break;
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
524
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
525 case WINDOW_MapsBook:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
526 {
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
527 dword_506364 = 1;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
528 pSpellBookPagesTextr_12 = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
529 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("zoom-on", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
530 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("zoot-on", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
531 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("zoom-off", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
532 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("zoot-off", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
533 pTex_book_button3_on = pIcons_LOD->LoadTexturePtr("tabNon", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
534 pTex_book_button3_off = pIcons_LOD->LoadTexturePtr("tabNoff", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
535 pTex_book_button4_on = pIcons_LOD->LoadTexturePtr("tabSon", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
536 pTex_book_button4_off = pIcons_LOD->LoadTexturePtr("tabSoff", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
537 pTex_book_button5_on = pIcons_LOD->LoadTexturePtr("tabEon", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
538 pTex_book_button5_off = pIcons_LOD->LoadTexturePtr("tabEoff", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
539 pTex_book_button6_on = pIcons_LOD->LoadTexturePtr("tabWon", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
540 pTex_book_button6_off = pIcons_LOD->LoadTexturePtr("tabWoff", TEXTURE_16BIT_PALETTE);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
541
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
542 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
543 UIMSG_ClickBooksBtn, 0, 0, pGlobalTXT_LocalizationStrings[251], pTex_book_button1_on, 0);// "Zoom In"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
544 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
545 UIMSG_ClickBooksBtn, 1, 0, pGlobalTXT_LocalizationStrings[252], pTex_book_button2_on, 0);// "Zoom Out"
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
546 pBtn_Book_3 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0,
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
547 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[192], (Texture *)"", 0);// Scroll Up
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
548 pBtn_Book_4 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0,
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
549 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[193], (Texture *)"", 0);// Scroll Down
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
550 pBtn_Book_5 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0,
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
551 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[573], (Texture *)"", 0);// "Scroll Right"
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
552 pBtn_Book_6 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0,
1310
0665a061132b autonotes and quest tables overflow fixed
Gloval
parents: 1306
diff changeset
553 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[572], (Texture *)"", 0);// "Scroll Left"
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
554 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
555 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
556
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
557 case WINDOW_CalendarBook:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
558 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
559 pSpellBookPagesTextr_13 = pIcons_LOD->LoadTexturePtr("sbdate-time", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
560 pTex_moon_new = pIcons_LOD->LoadTexturePtr("moon_new", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
561 pTex_moon_4 = pIcons_LOD->LoadTexturePtr("moon_4", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
562 pTex_moon_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
563 pTex_moon_2_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
564 pTex_moon_ful = pIcons_LOD->LoadTexturePtr("moon_ful", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
565 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
566 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
567
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
568 case WINDOW_JournalBook:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
569 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
570 pSpellBookPagesTextr_11 = pIcons_LOD->LoadTexturePtr("sbplayrnot", TEXTURE_16BIT_PALETTE);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
571 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
572 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
573 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
574 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
575
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
576 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
577 pTex_book_button1_on->uTextureWidth, pTex_book_button1_on->uTextureHeight, 1, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
578 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[192], pTex_book_button1_on, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
579 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, pTex_book_button2_on->uTextureHeight,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
580 pTex_book_button2_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 10, 0,
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
581 pGlobalTXT_LocalizationStrings[193], pTex_book_button2_on, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
582
949
Nomad
parents: 948
diff changeset
583 num_achieved_awards = 0;
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
584 journal_window.uFrameX = 48;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
585 journal_window.uFrameY = 70;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
586 journal_window.uFrameWidth = 360;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
587 journal_window.uFrameHeight = 264;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
588 journal_window.uFrameZ = 407;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
589 journal_window.uFrameHeight = (LOBYTE(pAutonoteFont->uFontHeight) - 3) * 264 / LOBYTE(pAutonoteFont->uFontHeight) - 3;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
590 journal_window.uFrameW = journal_window.uFrameHeight + 69;
949
Nomad
parents: 948
diff changeset
591 memset(&achieved_awards, 0, 4000);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
592 memset(Journal_limitation_factor.data(), 0, 100);
1446
8b4f4c723edd Questbook_Draw
Ritor1
parents: 1430
diff changeset
593 if ( books_primary_item_per_page < 29 )
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
594 {
2026
23ef3589440f History book fix
Ritor1
parents: 2006
diff changeset
595 for ( int i = books_primary_item_per_page; i < books_primary_item_per_page + 29; i++ )
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
596 {
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
597 if ( pParty->PartyTimes.HistoryEventTimes[i] > 0 )
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
598 {
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
599 if ( pStorylineText->StoreLine[i + 1].pText )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
600 {
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
601 pString = BuildDialogueString(pStorylineText->StoreLine[i + 1].pText, uActiveCharacter - 1, 0, 0, 0, &pParty->PartyTimes.HistoryEventTimes[i]);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
602 pTextHeight = pAutonoteFont->CalcTextHeight(pString, &journal_window, 1, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
603 page_count = ((pTextHeight - (pAutonoteFont->uFontHeight - 3)) / (signed int)journal_window.uFrameHeight) + 1;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
604 memset32((char *)&achieved_awards[num_achieved_awards] , i + 1, page_count);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
605 for ( uint j = 0; j <= page_count - 1; ++j )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
606 Journal_limitation_factor[num_achieved_awards++] = j;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
607 }
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
608 }
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
609 }
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
610 }
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
611 full_num_items_in_book = num_achieved_awards;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
612 num_achieved_awards = 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
613 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
614 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1446
diff changeset
615 }
0
Ritor1
parents:
diff changeset
616 }
Ritor1
parents:
diff changeset
617
Ritor1
parents:
diff changeset
618 //----- (00415551) --------------------------------------------------------
Ritor1
parents:
diff changeset
619 void GUIWindow::DrawMessageBox(int arg0)
Ritor1
parents:
diff changeset
620 {
Ritor1
parents:
diff changeset
621 unsigned int v2; // edi@1
Ritor1
parents:
diff changeset
622 signed int v4; // esi@2
Ritor1
parents:
diff changeset
623 unsigned int v5; // eax@2
Ritor1
parents:
diff changeset
624 unsigned int v16; // esi@19
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
625 GUIWindow current_window; // [sp+Ch] [bp-60h]@18
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
626 POINT cursor; // [sp+60h] [bp-Ch]@8
0
Ritor1
parents:
diff changeset
627 unsigned int v22; // [sp+74h] [bp+8h]@2
Ritor1
parents:
diff changeset
628
Ritor1
parents:
diff changeset
629 v2 = 0;
Ritor1
parents:
diff changeset
630 if ( arg0 )
Ritor1
parents:
diff changeset
631 {
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
632 v4 = pViewport->uViewportTL_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
633 v5 = pViewport->uViewportBR_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
634 v2 = pViewport->uViewportTL_Y;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
635 v22 = pViewport->uViewportBR_Y;
0
Ritor1
parents:
diff changeset
636 }
Ritor1
parents:
diff changeset
637 else
Ritor1
parents:
diff changeset
638 {
Ritor1
parents:
diff changeset
639 v4 = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
640 v5 = window->GetWidth();
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
641 v22 = window->GetHeight();
0
Ritor1
parents:
diff changeset
642 }
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
643 pMouse->GetCursorPos(&cursor);
0
Ritor1
parents:
diff changeset
644 if ( (signed int)this->uFrameX >= v4 )
Ritor1
parents:
diff changeset
645 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
646 if ( (signed int)(this->uFrameWidth + this->uFrameX) > (signed int)v5 )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
647 {
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
648 this->uFrameX = v5 - this->uFrameWidth;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
649 this->uFrameY = cursor.y + 30;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
650 }
0
Ritor1
parents:
diff changeset
651 }
Ritor1
parents:
diff changeset
652 else
Ritor1
parents:
diff changeset
653 {
Ritor1
parents:
diff changeset
654 this->uFrameX = v4;
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
655 this->uFrameY = cursor.y + 30;
0
Ritor1
parents:
diff changeset
656 }
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
657
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
658 if ( (signed int)this->uFrameY >= (signed int)v2 )
0
Ritor1
parents:
diff changeset
659 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
660 if ( (signed int)(this->uFrameY + this->uFrameHeight) > (signed int)v22 )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
661 this->uFrameY = cursor.y - this->uFrameHeight - 30;
0
Ritor1
parents:
diff changeset
662 }
Ritor1
parents:
diff changeset
663 else
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
664 this->uFrameY = cursor.y + 30;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
665 if ( (signed int)this->uFrameY < (signed int)v2 )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
666 this->uFrameY = v2;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
667 if ( (signed int)this->uFrameX < v4 )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
668 this->uFrameX = v4;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
669 this->uFrameZ = this->uFrameWidth + this->uFrameX - 1;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
670 this->uFrameW = this->uFrameHeight + this->uFrameY - 1;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
671 memcpy(&current_window, this, sizeof(current_window));
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
672 current_window.uFrameX += 12;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
673 current_window.uFrameWidth -= 24;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
674 current_window.uFrameY += 12;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
675 current_window.uFrameHeight -= 12;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
676 current_window.uFrameZ = current_window.uFrameWidth + current_window.uFrameX - 1;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
677 current_window.uFrameW = current_window.uFrameHeight + current_window.uFrameY - 1;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
678 if ( this->Hint )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
679 v16 = pFontLucida->CalcTextHeight(this->Hint, &current_window, 0, 0) + 24;
0
Ritor1
parents:
diff changeset
680 else
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
681 v16 = this->uFrameHeight;
0
Ritor1
parents:
diff changeset
682 if ( (signed int)v16 < 64 )
Ritor1
parents:
diff changeset
683 v16 = 64;
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
684 if ( (signed int)(v16 + this->uFrameY) > 479 )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
685 v16 = 479 - this->uFrameY;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
686 DrawPopupWindow(this->uFrameX, this->uFrameY, this->uFrameWidth, v16);
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
687 if ( this->Hint )
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
688 current_window.DrawTitleText(pFontLucida, 0, (signed int)(v16 - pFontLucida->CalcTextHeight(this->Hint, &current_window, 0, 0)) / 2 - 14, 0, this->Hint, 3);
0
Ritor1
parents:
diff changeset
689 }
Ritor1
parents:
diff changeset
690
Ritor1
parents:
diff changeset
691 //----- (00411B59) --------------------------------------------------------
Ritor1
parents:
diff changeset
692 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer)
Ritor1
parents:
diff changeset
693 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
694 //unsigned int v2; // esi@1
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
695 //unsigned int v3; // edi@1
0
Ritor1
parents:
diff changeset
696 FILE *v4; // ebx@1
Ritor1
parents:
diff changeset
697 FILE *v5; // eax@2
Ritor1
parents:
diff changeset
698 char pContainerName[64]; // [sp+Ch] [bp-44h]@1
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
699 //unsigned int v7; // [sp+4Ch] [bp-4h]@1
0
Ritor1
parents:
diff changeset
700
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
701 //v2 = uSlot;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
702 //v7 = uPlayer;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
703 //v3 = uSlot + 1;
0
Ritor1
parents:
diff changeset
704 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1);
Ritor1
parents:
diff changeset
705 v4 = fopen(pContainerName, "rb");
Ritor1
parents:
diff changeset
706 if ( v4 )
Ritor1
parents:
diff changeset
707 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
708 pSavegameThumbnails[uSlot].LoadFromFILE(v4, 0, 1);
0
Ritor1
parents:
diff changeset
709 fclose(v4);
Ritor1
parents:
diff changeset
710 }
Ritor1
parents:
diff changeset
711 else
Ritor1
parents:
diff changeset
712 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
713 sprintf(pContainerName, "lloyd%d%d.pcx", uPlayer, uSlot + 1);
0
Ritor1
parents:
diff changeset
714 v5 = pNew_LOD->FindContainer(pContainerName, 1);
Ritor1
parents:
diff changeset
715 if ( v5 )
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
716 pSavegameThumbnails[uSlot].LoadFromFILE(v5, 0, 0);
0
Ritor1
parents:
diff changeset
717 else
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
718 *((int *)&pSavegameThumbnails.data()->pPixels + 10 * uSlot) = 0;
0
Ritor1
parents:
diff changeset
719 }
Ritor1
parents:
diff changeset
720 }
Ritor1
parents:
diff changeset
721
Ritor1
parents:
diff changeset
722
Ritor1
parents:
diff changeset
723 //----- (00411621) --------------------------------------------------------
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
724 void GUIWindow::OpenSpellBook()
0
Ritor1
parents:
diff changeset
725 {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
726 Player *pPlayer; // edi@1
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
727 //GUIWindow *pWindow; // esi@1
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
728 //unsigned int v3; // ebp@1
0
Ritor1
parents:
diff changeset
729 int v4; // eax@3
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
730 ///GUIButton *result; // eax@25
0
Ritor1
parents:
diff changeset
731 int a2; // [sp+10h] [bp-8h]@1
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
732 //int v7; // [sp+14h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
733
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
734 pPlayer = pPlayers[uActiveCharacter];
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
735 //pWindow = this;
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
736 LoadSpellbook(pPlayer->lastOpenedSpellbookPage);
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
737 //v3 = 0;
0
Ritor1
parents:
diff changeset
738 a2 = 0;
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
739
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1942
diff changeset
740 PlayerSpellbookChapter* chapter = &pPlayer->spellbook.pChapters[pPlayer->lastOpenedSpellbookPage];
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
741 for (uint i = 0; i < 11; ++i)
0
Ritor1
parents:
diff changeset
742 {
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
743 if (!chapter->bIsSpellAvailable[i])
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
744 continue;
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
745 v4= pPlayer->lastOpenedSpellbookPage;
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
746 //v4 = (12 * pPlayer->lastOpenedSpellbookPage + pSpellbookSpellIndices[pPlayer->lastOpenedSpellbookPage][i + 1]);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
747 CreateButton(pViewport->uViewportTL_X + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Xpos,
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
748 pViewport->uViewportTL_Y + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Ypos, //dword_4E20D0
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
749 SBPageSSpellsTextureList[i + 1]->uTextureWidth,
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
750 SBPageSSpellsTextureList[i + 1]->uTextureHeight,
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
751 1, 79, UIMSG_SelectSpell, i, 0, "", 0);
0
Ritor1
parents:
diff changeset
752 ++a2;
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
753 //++v3;
0
Ritor1
parents:
diff changeset
754 }
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
755 //while ( (signed int)v3 < 11 );
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
756
1118
ca415f6bac1c UIMSG_SpellBook_PressTab
zipi
parents: 1110
diff changeset
757 CreateButton(0, 0, 0, 0, 1, 0, UIMSG_SpellBook_PressTab, 0, '\t', "", 0);
0
Ritor1
parents:
diff changeset
758 if ( a2 )
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
759 _41D08F_set_keyboard_control_group(a2, 0, 0, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
760
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
761 if (pPlayer->pActiveSkills[PLAYER_SKILL_FIRE]) CreateButton(399, 10, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 0, 0, aSpellSchoolNames[0], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
762 if (pPlayer->pActiveSkills[PLAYER_SKILL_AIR]) CreateButton(399, 46, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 1, 0, aSpellSchoolNames[1], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
763 if (pPlayer->pActiveSkills[PLAYER_SKILL_WATER]) CreateButton(399, 83, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 2, 0, aSpellSchoolNames[2], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
764 if (pPlayer->pActiveSkills[PLAYER_SKILL_EARTH]) CreateButton(399, 121, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 3, 0, aSpellSchoolNames[3], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
765 if (pPlayer->pActiveSkills[PLAYER_SKILL_SPIRIT]) CreateButton(399, 158, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 4, 0, aSpellSchoolNames[4], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
766 if (pPlayer->pActiveSkills[PLAYER_SKILL_MIND]) CreateButton(400, 196, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 5, 0, aSpellSchoolNames[5], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
767 if (pPlayer->pActiveSkills[PLAYER_SKILL_BODY]) CreateButton(400, 234, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 6, 0, aSpellSchoolNames[6], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
768 if (pPlayer->pActiveSkills[PLAYER_SKILL_LIGHT]) CreateButton(400, 271, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 7, 0, aSpellSchoolNames[7], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
769 if (pPlayer->pActiveSkills[PLAYER_SKILL_DARK]) CreateButton(400, 307, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 8, 0, aSpellSchoolNames[8], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
770
1402
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
771 CreateButton(476, 450, pSBClickQuickSpellBtnTextr->uTextureWidth, pSBClickQuickSpellBtnTextr->uTextureHeight, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", 0);
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
772 pBtn_InstallRemoveSpell = CreateButton(476, 450, 48, 32, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", pSBClickQuickSpellBtnTextr, 0);
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
773 CreateButton(561, 450, pSpellBookClickCloseBtnTextr->uTextureWidth, pSpellBookClickCloseBtnTextr->uTextureHeight, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0);
a519a6a412d0 CloseSpellBook and close SpellBookPage
Ritor1
parents: 1394
diff changeset
774 pBtn_CloseBook = CreateButton(561, 450, 48, 32, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], pSpellBookClickCloseBtnTextr, 0);
0
Ritor1
parents:
diff changeset
775 }
Ritor1
parents:
diff changeset
776 // 50640C: using guessed type int dword_50640C[];
Ritor1
parents:
diff changeset
777
Ritor1
parents:
diff changeset
778 //----- (004B3157) --------------------------------------------------------
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
779 void GUIWindow::HouseDialogManager()
0
Ritor1
parents:
diff changeset
780 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
781 unsigned __int16 pWhiteColor; // di@2
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
782 const char *pHouseName; // edx@4
0
Ritor1
parents:
diff changeset
783 signed int v3; // edx@5
Ritor1
parents:
diff changeset
784 char *v4; // edi@9
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
785 int pTextHeight; // eax@45
0
Ritor1
parents:
diff changeset
786 int v6; // edi@45
Ritor1
parents:
diff changeset
787 char *v7; // eax@45
Ritor1
parents:
diff changeset
788 int v8; // edi@46
Ritor1
parents:
diff changeset
789 int v9; // eax@50
Ritor1
parents:
diff changeset
790 unsigned int v10; // [sp-10h] [bp-C8h]@53
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
791 char *pTitleText; // [sp-8h] [bp-C0h]@50
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
792 GUIWindow pDialogWindow; // [sp+Ch] [bp-ACh]@4
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
793 GUIWindow pWindow; // [sp+60h] [bp-58h]@2
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
794 int pColor2; // [sp+B4h] [bp-4h]@2
0
Ritor1
parents:
diff changeset
795
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
796 if ( !window_SpeakInHouse )
0
Ritor1
parents:
diff changeset
797 return;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
798 memcpy(&pWindow, this, sizeof(pWindow));
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
799 pWindow.uFrameWidth -= 18;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
800 pWindow.uFrameZ -= 18;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
801 pWhiteColor = Color16(0xFFu, 0xFFu, 0xFFu);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
802 pColor2 = Color16(0x15u, 0x99u, 0xE9u);
0
Ritor1
parents:
diff changeset
803 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background);
910
Ritor1
parents: 898
diff changeset
804 pRenderer->DrawTextureTransparent(0x1D4u, 0, &pIcons_LOD->pTextures[uTextureID_right_panel_loop]);
457
Ritor1
parents: 454
diff changeset
805 if ( pDialogueNPCCount != uNumDialogueNPCPortraits || !uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
806 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
807 pDialogWindow.uFrameWidth = 130;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
808 pDialogWindow.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
809 pHouseName = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
810 if ( pHouseName )
0
Ritor1
parents:
diff changeset
811 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
812 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(pHouseName, &pDialogWindow, 0, 0);
0
Ritor1
parents:
diff changeset
813 if ( v3 < 0 )
Ritor1
parents:
diff changeset
814 v3 = 0;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
815 pWindow.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, pWhiteColor,
0
Ritor1
parents:
diff changeset
816 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C],
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
817 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName, 3);
0
Ritor1
parents:
diff changeset
818 }
Ritor1
parents:
diff changeset
819 }
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
820 pWindow.uFrameWidth += 8;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
821 pWindow.uFrameZ += 8;
457
Ritor1
parents: 454
diff changeset
822 if ( !pDialogueNPCCount )
0
Ritor1
parents:
diff changeset
823 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
824 if ( in_current_building_type == BuildingType_Jail )
0
Ritor1
parents:
diff changeset
825 {
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
826 JailDialog();
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
827 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
828 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
829 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
830 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
831 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
832 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
833 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
834 return;
0
Ritor1
parents:
diff changeset
835 }
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 783
diff changeset
836 if ( current_npc_text )
0
Ritor1
parents:
diff changeset
837 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
838 pDialogWindow.uFrameWidth = 458;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
839 pDialogWindow.uFrameZ = 457;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
840 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &pDialogWindow, 13, 0);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
841 v6 = pTextHeight + 7;
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1459
diff changeset
842 pRenderer->GetLeather(8, 352 - (pTextHeight + 7), &pIcons_LOD->pTextures[uTextureID_Leather],
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
843 pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight - (pTextHeight + 7));
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
844 pRenderer->DrawTextureIndexed(8, 347 - v6, pTexture_591428);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
845 v7 = FitTextInAWindow(current_npc_text, pFontArrus, &pDialogWindow, 0xDu, 0);
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
846 window_SpeakInHouse->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0);
0
Ritor1
parents:
diff changeset
847 }
Ritor1
parents:
diff changeset
848 if ( uNumDialogueNPCPortraits <= 0 )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
849 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
850 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
851 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
852 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
853 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
854 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
855 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
856 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
857 return;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
858 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
859 for ( v8 = 0; v8 < uNumDialogueNPCPortraits; ++v8 )
0
Ritor1
parents:
diff changeset
860 {
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
861 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8] - 4,
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
862 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]);
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
863 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8],
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
864 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8], pDialogueNPCPortraits[v8]);
0
Ritor1
parents:
diff changeset
865 if ( uNumDialogueNPCPortraits < 4 )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
866 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
867 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
868 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
869 pTitleText = pMapStats->pInfos[uHouse_ExitPic].pName;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
870 v9 = 94 * v8 + 113;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
871 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
872 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
873 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
874 if ( !v8 && dword_591080 )
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
875 {
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
876 pTitleText = (char *)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
877 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 113, pColor2, pTitleText, 3);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
878 continue;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
879 }
1211
fd3bea473c0c fix HouseNpcdata array addresiing
Gloval
parents: 1206
diff changeset
880 pTitleText = HouseNPCData[v8 +1 - (dword_591080 != 0)]->pName;
fd3bea473c0c fix HouseNpcdata array addresiing
Gloval
parents: 1206
diff changeset
881 v9 = pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] + pDialogueNPCPortraits[v8]->uTextureHeight + 2;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
882 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
883 v10 = v9;
1211
fd3bea473c0c fix HouseNpcdata array addresiing
Gloval
parents: 1206
diff changeset
884 pWindow.DrawTitleText(pFontCreate, 483, v10, pColor2, pTitleText, 3);
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
885 }
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
886 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
887 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
888 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
889 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
890 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
0
Ritor1
parents:
diff changeset
891 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
892 else
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
893 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
894 return;
0
Ritor1
parents:
diff changeset
895 }
457
Ritor1
parents: 454
diff changeset
896 v4 = (char *)pDialogueNPCCount - 1;
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
897 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0] - 4, pNPCPortraits_y[0][0] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]);
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
898 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], pDialogueNPCPortraits[(signed int)v4]);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
899 if ( pCurrentScreen == SCREEN_E )
0
Ritor1
parents:
diff changeset
900 {
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 981
diff changeset
901 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
902 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
903 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
904 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
905 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
906 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
907 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
908 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
909 return;
0
Ritor1
parents:
diff changeset
910 }
1634
Ritor1
parents: 1591
diff changeset
911 if ( v4 || !dword_591080 )//на изумрудном острове заходит на корабле пока не выполнены квесты
Ritor1
parents: 1591
diff changeset
912 SimpleHouseDialog();
0
Ritor1
parents:
diff changeset
913 else
Ritor1
parents:
diff changeset
914 {
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
915 sprintfex( pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429],
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
916 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterName,
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
917 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
918 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, pColor2, pTmpBuf.data(), 3);
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
919 switch ( in_current_building_type )
0
Ritor1
parents:
diff changeset
920 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
921 case BuildingType_WeaponShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
922 WeaponShopDialog();
0
Ritor1
parents:
diff changeset
923 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
924 case BuildingType_ArmorShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
925 ArmorShopDialog();
0
Ritor1
parents:
diff changeset
926 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
927 case BuildingType_MagicShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
928 MagicShopDialog();
0
Ritor1
parents:
diff changeset
929 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
930 case BuildingType_AlchemistShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
931 AlchemistDialog();
0
Ritor1
parents:
diff changeset
932 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
933 case BuildingType_FireGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
934 case BuildingType_AirGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
935 case BuildingType_WaterGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
936 case BuildingType_EarthGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
937 case BuildingType_SpiritGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
938 case BuildingType_MindGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
939 case BuildingType_BodyGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
940 case BuildingType_LightGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
941 case BuildingType_DarkGuild:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
942 GuildDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
943 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
944 case BuildingType_18:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
945 __debugbreak(); //What over the dialog?
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
946 sub_4B6478();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
947 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
948 case BuildingType_TownHall:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
949 TownHallDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
950 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
951 case BuildingType_Tavern:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
952 TavernDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
953 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
954 case BuildingType_Bank:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
955 BankDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
956 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
957 case BuildingType_Temple:
495
90fdb47bfcba guilds ...
Gloval
parents: 484
diff changeset
958 TempleDialog();
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
959 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
960 case BuildingType_Stables:
1591
d687f6e7c610 Boat dialogue
Ritor1
parents: 1590
diff changeset
961 case BuildingType_Boats:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
962 TravelByTransport();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
963 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
964 case BuildingType_Training:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
965 TrainingDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
966 break;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
967 case BuildingType_Jail:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
968 JailDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
969 break;
0
Ritor1
parents:
diff changeset
970 default:
1429
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
971 //__debugbreak();//New BuildingType (if enter Boat)
0
Ritor1
parents:
diff changeset
972 break;
Ritor1
parents:
diff changeset
973 }
Ritor1
parents:
diff changeset
974 }
457
Ritor1
parents: 454
diff changeset
975 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
976 {
370
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 366
diff changeset
977 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 366
diff changeset
978 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
0
Ritor1
parents:
diff changeset
979 }
Ritor1
parents:
diff changeset
980 else
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
981 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
0
Ritor1
parents:
diff changeset
982 }
Ritor1
parents:
diff changeset
983
Ritor1
parents:
diff changeset
984 //----- (004B1854) --------------------------------------------------------
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
985 void GUIWindow::DrawShops_next_generation_time_string( __int64 next_generation_time )
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
986 {
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
987 unsigned int full_time; // esi@1
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
988 signed __int64 hours; // kr00_8@1
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1802
diff changeset
989 const char *text; // eax@2
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
990 signed __int64 minutes; // [sp+Ch] [bp-10h]@1
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
991 signed __int64 seconds; // [sp+14h] [bp-8h]@1
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
992 unsigned int days; // [sp+20h] [bp+4h]@1
0
Ritor1
parents:
diff changeset
993
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
994 full_time = (signed __int64)((double)next_generation_time * 0.234375);
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
995 seconds = (signed __int64)full_time % 60;
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
996 minutes = (signed __int64)(full_time / 60) % 60;
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
997 hours = ((full_time / 60) / 60) % 24;
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
998 days = (unsigned int)((full_time / 60) / 60) / 24;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
999 strcpy(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[532]);
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1000 if ( days )
0
Ritor1
parents:
diff changeset
1001 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1002 text = pGlobalTXT_LocalizationStrings[57];//Days
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1003 if ( days <= 1 )
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1004 text = pGlobalTXT_LocalizationStrings[56];//Day
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1005 sprintfex(pTmpBuf2.data(), "%d %s ", days, text);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1006 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
1007 }
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1008 if ( hours )
0
Ritor1
parents:
diff changeset
1009 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1010 if ( hours <= 1 )
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1011 text = pGlobalTXT_LocalizationStrings[109];//Hour
0
Ritor1
parents:
diff changeset
1012 else
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1013 text = pGlobalTXT_LocalizationStrings[110];//Hours
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1014 sprintfex(pTmpBuf2.data(), "%d %s ", (int)hours, text);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1015 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
1016 }
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1017 if ( minutes && !days )
0
Ritor1
parents:
diff changeset
1018 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1019 if ( minutes <= 1 )
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1020 text = pGlobalTXT_LocalizationStrings[437];//"Minute"
0
Ritor1
parents:
diff changeset
1021 else
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1022 text = pGlobalTXT_LocalizationStrings[436]; //"Minutes"
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1023 sprintfex(pTmpBuf2.data(), "%d %s ", (int)minutes, text);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1024 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
1025 }
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1026 if ( seconds && !hours )
0
Ritor1
parents:
diff changeset
1027 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1028 if ( seconds <= 1 )
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1029 text = pGlobalTXT_LocalizationStrings[439]; //"Second"
0
Ritor1
parents:
diff changeset
1030 else
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1031 text = pGlobalTXT_LocalizationStrings[438]; //"Seconds"
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1747
diff changeset
1032 sprintfex(pTmpBuf2.data(), "%d %s ", (int)seconds, text);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1033 strcat(pTmpBuf.data(), pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
1034 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
1035 this->DrawTitleText(pFontArrus, 0, (212 - pFontArrus->CalcTextHeight(pTmpBuf.data(), this, 0, 0)) / 2 + 101, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
0
Ritor1
parents:
diff changeset
1036 }
Ritor1
parents:
diff changeset
1037
Ritor1
parents:
diff changeset
1038 //----- (0044D406) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1039 void GUIWindow::DrawTitleText( GUIFont *a2, signed int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor,
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1040 const char *pInString, unsigned int uLineSpacing )
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1041 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1042 //GUIWindow *pWindow; // esi@1
0
Ritor1
parents:
diff changeset
1043 unsigned int v8; // ebx@1
Ritor1
parents:
diff changeset
1044 char *v9; // eax@1
Ritor1
parents:
diff changeset
1045 unsigned int v11; // edi@1
Ritor1
parents:
diff changeset
1046 signed int v12; // esi@1
Ritor1
parents:
diff changeset
1047 int v13; // eax@2
Ritor1
parents:
diff changeset
1048 GUIFont *pFont; // [sp+Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
1049 const char *Stra; // [sp+24h] [bp+14h]@5
Ritor1
parents:
diff changeset
1050
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1051 //pWindow = this;
0
Ritor1
parents:
diff changeset
1052 pFont = a2;
Ritor1
parents:
diff changeset
1053 v8 = this->uFrameWidth - uHorizontalMargin;
Ritor1
parents:
diff changeset
1054 ui_current_text_color = uDefaultColor;
Ritor1
parents:
diff changeset
1055 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0);
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1056 Stra = strtok(v9, "\n");
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1057 v11 = uHorizontalMargin + this->uFrameX;
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1058 v12 = uVerticalMargin + this->uFrameY;
0
Ritor1
parents:
diff changeset
1059 while ( 1 )
Ritor1
parents:
diff changeset
1060 {
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1061 if ( !Stra )
0
Ritor1
parents:
diff changeset
1062 break;
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1063 v13 = (signed int)(v8 - pFont->GetLineWidth(Stra)) >> 1;
0
Ritor1
parents:
diff changeset
1064 if ( v13 < 0 )
Ritor1
parents:
diff changeset
1065 v13 = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
1066 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, window->GetWidth());
49
5a08b193507f 22.01.13
Ritor1
parents: 24
diff changeset
1067 v12 += pFont->uFontHeight - uLineSpacing;
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1068 Stra = strtok(0, "\n");
0
Ritor1
parents:
diff changeset
1069 }
Ritor1
parents:
diff changeset
1070 }
Ritor1
parents:
diff changeset
1071 // 5C6DB4: using guessed type int ui_current_text_color;
Ritor1
parents:
diff changeset
1072
Ritor1
parents:
diff changeset
1073 //----- (0044CE08) --------------------------------------------------------
2006
30c2b575d25c signed fixes
zipi
parents: 2004
diff changeset
1074 void GUIWindow::DrawText( GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, signed int uFontShadowColor )
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1075 {
0
Ritor1
parents:
diff changeset
1076 GUIWindow *v9; // edi@1
Ritor1
parents:
diff changeset
1077 GUIFont *v10; // ebx@1
Ritor1
parents:
diff changeset
1078 int v11; // eax@2
Ritor1
parents:
diff changeset
1079 signed int v12; // esi@9
Ritor1
parents:
diff changeset
1080 signed int v13; // edi@9
Ritor1
parents:
diff changeset
1081 int v14; // edx@9
Ritor1
parents:
diff changeset
1082 int v15; // eax@25
Ritor1
parents:
diff changeset
1083 unsigned int v16; // ecx@25
Ritor1
parents:
diff changeset
1084 int v17; // eax@27
Ritor1
parents:
diff changeset
1085 int v18; // edi@32
Ritor1
parents:
diff changeset
1086 int v19; // esi@38
Ritor1
parents:
diff changeset
1087 std::string v21; // [sp-18h] [bp-50h]@2
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1088 // const char *v22; // [sp-8h] [bp-40h]@2
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1089 // int v23; // [sp-4h] [bp-3Ch]@2
0
Ritor1
parents:
diff changeset
1090 char Dest[6]; // [sp+Ch] [bp-2Ch]@32
Ritor1
parents:
diff changeset
1091 //char v25; // [sp+Fh] [bp-29h]@32
Ritor1
parents:
diff changeset
1092 //char v26; // [sp+11h] [bp-27h]@34
Ritor1
parents:
diff changeset
1093 const char *v27; // [sp+20h] [bp-18h]@25
Ritor1
parents:
diff changeset
1094 int v28; // [sp+24h] [bp-14h]@25
Ritor1
parents:
diff changeset
1095 int v29; // [sp+28h] [bp-10h]@1
Ritor1
parents:
diff changeset
1096 size_t v30; // [sp+2Ch] [bp-Ch]@4
Ritor1
parents:
diff changeset
1097 GUIWindow *v31; // [sp+30h] [bp-8h]@1
Ritor1
parents:
diff changeset
1098 const char *v32; // [sp+34h] [bp-4h]@7
Ritor1
parents:
diff changeset
1099 size_t pInString; // [sp+4Ch] [bp+14h]@11
Ritor1
parents:
diff changeset
1100
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1942
diff changeset
1101 GUIWindow* a1 = this;
0
Ritor1
parents:
diff changeset
1102 v29 = 0;
Ritor1
parents:
diff changeset
1103 v9 = a1;
Ritor1
parents:
diff changeset
1104 v10 = a2;
Ritor1
parents:
diff changeset
1105 v31 = a1;
Ritor1
parents:
diff changeset
1106 if ( !Str )
Ritor1
parents:
diff changeset
1107 {
Ritor1
parents:
diff changeset
1108 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0);
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1109 return;
0
Ritor1
parents:
diff changeset
1110 }
Ritor1
parents:
diff changeset
1111 v11 = strcmp(Str, "null");
Ritor1
parents:
diff changeset
1112 if ( v11 )
Ritor1
parents:
diff changeset
1113 {
Ritor1
parents:
diff changeset
1114 v30 = strlen(Str);
Ritor1
parents:
diff changeset
1115 LOBYTE(v11) = 0;
Ritor1
parents:
diff changeset
1116 if ( !uX )
Ritor1
parents:
diff changeset
1117 uX = 12;
Ritor1
parents:
diff changeset
1118 if ( a8 )
Ritor1
parents:
diff changeset
1119 v32 = Str;
Ritor1
parents:
diff changeset
1120 else
Ritor1
parents:
diff changeset
1121 {
Ritor1
parents:
diff changeset
1122 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0);
Ritor1
parents:
diff changeset
1123 v32 = (const char *)v11;
Ritor1
parents:
diff changeset
1124 }
Ritor1
parents:
diff changeset
1125 v12 = uX + v9->uFrameX;
Ritor1
parents:
diff changeset
1126 v13 = uY + v9->uFrameY;
Ritor1
parents:
diff changeset
1127 v14 = 0;
Ritor1
parents:
diff changeset
1128 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) )
Ritor1
parents:
diff changeset
1129 {
Ritor1
parents:
diff changeset
1130 pInString = 0;
Ritor1
parents:
diff changeset
1131 if ( (signed int)v30 > 0 )
Ritor1
parents:
diff changeset
1132 {
Ritor1
parents:
diff changeset
1133 do
Ritor1
parents:
diff changeset
1134 {
Ritor1
parents:
diff changeset
1135 LOBYTE(v11) = v32[v14];
Ritor1
parents:
diff changeset
1136 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar
Ritor1
parents:
diff changeset
1137 || (char)v11 == 12
Ritor1
parents:
diff changeset
1138 || (char)v11 == 13
Ritor1
parents:
diff changeset
1139 || (char)v11 == 9
Ritor1
parents:
diff changeset
1140 || (char)v11 == 10 )
Ritor1
parents:
diff changeset
1141 {
Ritor1
parents:
diff changeset
1142 switch ( (unsigned __int8)v11 )
Ritor1
parents:
diff changeset
1143 {
Ritor1
parents:
diff changeset
1144 case 9u:
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1145 strncpy(Dest, &v32[v14 + 1], 3);
0
Ritor1
parents:
diff changeset
1146 Dest[3] = 0;
Ritor1
parents:
diff changeset
1147 pInString += 3;
Ritor1
parents:
diff changeset
1148 v29 = atoi(Dest);
Ritor1
parents:
diff changeset
1149 v19 = atoi(Dest);
Ritor1
parents:
diff changeset
1150 LOBYTE(v11) = (char)v31;
Ritor1
parents:
diff changeset
1151 v12 = uX + v31->uFrameX + v19;
Ritor1
parents:
diff changeset
1152 break;
Ritor1
parents:
diff changeset
1153 case 0xAu:
Ritor1
parents:
diff changeset
1154 v11 = LOBYTE(v10->uFontHeight);
Ritor1
parents:
diff changeset
1155 uY = uY + v11 - 3;
Ritor1
parents:
diff changeset
1156 v13 = uY + v31->uFrameY;
Ritor1
parents:
diff changeset
1157 v12 = uX + v29 + v31->uFrameX;
Ritor1
parents:
diff changeset
1158 if ( a8 )
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1159 {
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1160 v11 = v11 + v13 - 3;
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1161 if ( v11 > a8 )
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1162 return;
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1163 }
0
Ritor1
parents:
diff changeset
1164 break;
Ritor1
parents:
diff changeset
1165 case 0xCu:
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1166 strncpy(Dest, &v32[v14 + 1], 5);
0
Ritor1
parents:
diff changeset
1167 Dest[5] = 0;
Ritor1
parents:
diff changeset
1168 v11 = atoi(Dest);
Ritor1
parents:
diff changeset
1169 pInString += 5;
Ritor1
parents:
diff changeset
1170 uFontColor = v11;
Ritor1
parents:
diff changeset
1171 break;
Ritor1
parents:
diff changeset
1172 case 0xDu:
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1173 strncpy(Dest, &v32[v14 + 1], 3);
0
Ritor1
parents:
diff changeset
1174 Dest[3] = 0;
Ritor1
parents:
diff changeset
1175 pInString += 3;
Ritor1
parents:
diff changeset
1176 v18 = atoi(Dest);
Ritor1
parents:
diff changeset
1177 v11 = v10->GetLineWidth(&v32[pInString]);
Ritor1
parents:
diff changeset
1178 v12 = v31->uFrameZ - v11 - v18;
Ritor1
parents:
diff changeset
1179 v13 = uY + v31->uFrameY;
Ritor1
parents:
diff changeset
1180 if ( a8 )
Ritor1
parents:
diff changeset
1181 {
Ritor1
parents:
diff changeset
1182 v11 = LOBYTE(v10->uFontHeight);
Ritor1
parents:
diff changeset
1183 v11 = v11 + v13 - 3;
Ritor1
parents:
diff changeset
1184 if ( v11 > a8 )
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1185 return;
0
Ritor1
parents:
diff changeset
1186 break;
Ritor1
parents:
diff changeset
1187 }
Ritor1
parents:
diff changeset
1188 break;
Ritor1
parents:
diff changeset
1189 default:
Ritor1
parents:
diff changeset
1190 if ( (char)v11 == 34 && v32[v14 + 1] == 34 )
Ritor1
parents:
diff changeset
1191 {
Ritor1
parents:
diff changeset
1192 ++v14;
Ritor1
parents:
diff changeset
1193 pInString = v14;
Ritor1
parents:
diff changeset
1194 }
Ritor1
parents:
diff changeset
1195 v27 = &v32[v14];
Ritor1
parents:
diff changeset
1196 v15 = (unsigned __int8)v32[v14];
Ritor1
parents:
diff changeset
1197 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
Ritor1
parents:
diff changeset
1198 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
Ritor1
parents:
diff changeset
1199 if ( v14 > 0 )
Ritor1
parents:
diff changeset
1200 v12 += v10->pMetrics[v15].uLeftSpacing;
1160
502b8b2e36b4 font cleaning
Gloval
parents: 1118
diff changeset
1201 v17 = (int)((char *)&v10[1] + v10->font_pixels_offset[v15]);
0
Ritor1
parents:
diff changeset
1202 if ( (short)uFontColor )
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1203 pRenderer->DrawText(v12, v13, (unsigned __int8 *)v17, v16, LOBYTE(v10->uFontHeight),
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1204 v10->pFontPalettes[0], uFontColor, uFontShadowColor);
0
Ritor1
parents:
diff changeset
1205 else
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1206 pRenderer->DrawTextPalette(v12, v13, (unsigned char*)v17, v16, LOBYTE(v10->uFontHeight),
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
1207 v10->pFontPalettes[0], a7);
0
Ritor1
parents:
diff changeset
1208 LOBYTE(v11) = v30;
Ritor1
parents:
diff changeset
1209 v12 += v28;
Ritor1
parents:
diff changeset
1210 if ( (signed int)pInString < (signed int)v30 )
Ritor1
parents:
diff changeset
1211 {
Ritor1
parents:
diff changeset
1212 LOBYTE(v11) = 3 * *v27;
Ritor1
parents:
diff changeset
1213 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing;
Ritor1
parents:
diff changeset
1214 }
Ritor1
parents:
diff changeset
1215 break;
Ritor1
parents:
diff changeset
1216 }
Ritor1
parents:
diff changeset
1217 }
Ritor1
parents:
diff changeset
1218 v14 = pInString++ + 1;
Ritor1
parents:
diff changeset
1219 }
Ritor1
parents:
diff changeset
1220 while ( (signed int)pInString < (signed int)v30 );
Ritor1
parents:
diff changeset
1221 }
Ritor1
parents:
diff changeset
1222 }
Ritor1
parents:
diff changeset
1223 }
1006
e865f349aa41 ui cleanup
Gloval
parents: 1004
diff changeset
1224 return;
0
Ritor1
parents:
diff changeset
1225 }
Ritor1
parents:
diff changeset
1226
Ritor1
parents:
diff changeset
1227
Ritor1
parents:
diff changeset
1228 //----- (0044CB4F) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1229 int GUIWindow::DrawTextInRect( GUIFont *pFont, unsigned int uX, unsigned int uY, unsigned int uColor, const char *text, int rect_width, int reverse_text )
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1230 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1231 int pLineWidth; // ebx@1
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1232 int text_width; // esi@3
0
Ritor1
parents:
diff changeset
1233 unsigned __int8 v12; // cl@7
Ritor1
parents:
diff changeset
1234 signed int v13; // esi@19
Ritor1
parents:
diff changeset
1235 signed int v14; // ebx@19
Ritor1
parents:
diff changeset
1236 unsigned __int8 v15; // cl@21
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1237 // int v16; // eax@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1238 // int v17; // ecx@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1239 // int v18; // ecx@23
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1240 // int v19; // ecx@24
0
Ritor1
parents:
diff changeset
1241 unsigned int v20; // ecx@26
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1242 unsigned char* v21; // eax@28
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1243 // int v22; // ebx@34
0
Ritor1
parents:
diff changeset
1244 int v23; // eax@34
Ritor1
parents:
diff changeset
1245 int v24; // ebx@36
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1246 char Str[6]; // [sp+Ch] [bp-20h]@34
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1247 // char v26; // [sp+Fh] [bp-1Dh]@34
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1248 // char v27; // [sp+11h] [bp-1Bh]@35
0
Ritor1
parents:
diff changeset
1249 int v28; // [sp+20h] [bp-Ch]@17
Ritor1
parents:
diff changeset
1250 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1251 size_t pNumLen; // [sp+28h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
1252 size_t Str1a; // [sp+40h] [bp+14h]@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1253 // size_t Str1b; // [sp+40h] [bp+14h]@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1254 // const char *Sourcea; // [sp+44h] [bp+18h]@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1255 // int v34; // [sp+48h] [bp+1Ch]@26
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1256 int i;
0
Ritor1
parents:
diff changeset
1257
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1258
0
Ritor1
parents:
diff changeset
1259 pWindow = this;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1260 pNumLen = strlen(text);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1261 pLineWidth = pFont->GetLineWidth(text);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1262 if ( pLineWidth < rect_width )
0
Ritor1
parents:
diff changeset
1263 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1264 pWindow->DrawText(pFont, uX, uY, uColor, text, 0, 0, 0);
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1265 return pLineWidth;
0
Ritor1
parents:
diff changeset
1266 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1267 strcpy(pTmpBuf2.data(), text);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1268 text_width = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1269 if ( reverse_text )
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1270 _strrev(pTmpBuf2.data());
0
Ritor1
parents:
diff changeset
1271 Str1a = 0;
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1272 for ( i = 0; i < pNumLen; ++i )
0
Ritor1
parents:
diff changeset
1273 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1274 if ( text_width >= rect_width )
0
Ritor1
parents:
diff changeset
1275 break;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1276 v12 = pTmpBuf2[i];
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1277 if ( pFont->IsCharValid(v12) )
0
Ritor1
parents:
diff changeset
1278 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1279 switch (v12)
0
Ritor1
parents:
diff changeset
1280 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1281 case '\t':// Horizontal tab 09
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1282 case '\n': //Line Feed 0A 10
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1283 case '\r': //Form Feed, page eject 0C 12
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1284 break;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1285 case '\f': //Carriage Return 0D 13
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1286 i += 5;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1287 break;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1288 default:
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1289 if ( i > 0 )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1290 text_width += pFont->pMetrics[v12].uLeftSpacing;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1291 text_width += pFont->pMetrics[v12].uWidth;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1292 if ( i < pNumLen )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1293 text_width += pFont->pMetrics[v12].uRightSpacing;
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1294 }
0
Ritor1
parents:
diff changeset
1295 }
Ritor1
parents:
diff changeset
1296 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1297 pTmpBuf2[i - 1] = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1298
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1299
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1300 pNumLen = strlen(pTmpBuf2.data());
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1301 v28 = pFont->GetLineWidth(pTmpBuf2.data());
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1302 if ( reverse_text )
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1303 _strrev(pTmpBuf2.data());
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1304
0
Ritor1
parents:
diff changeset
1305 v13 = uX + pWindow->uFrameX;
Ritor1
parents:
diff changeset
1306 v14 = uY + pWindow->uFrameY;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1307 for (i=0; i<pNumLen; ++i)
0
Ritor1
parents:
diff changeset
1308 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1309 v15 = pTmpBuf2[i];
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1310 if ( pFont->IsCharValid(v15) )
0
Ritor1
parents:
diff changeset
1311 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1312 switch (v12)
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1313 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1314 case '\t':// Horizontal tab 09
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1315 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1316 strncpy(Str, &pTmpBuf2[i+1], 3);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1317 Str[3] = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1318 // atoi(Str);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1319 i += 3;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1320 break;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1321 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1322 case '\n': //Line Feed 0A 10
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1323 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1324 v24 = pFont->uFontHeight;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1325 v13 = uX;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1326 uY = uY + pFont->uFontHeight - 3;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1327 v14 = uY+pFont->uFontHeight - 3;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1328 break;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1329 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1330 case '\r': //Form Feed, page eject 0C 12
0
Ritor1
parents:
diff changeset
1331 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1332 strncpy(Str, &pTmpBuf2[i+1], 5);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1333 Str[5] = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1334 i += 5;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1335 uColor = atoi(Str);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1336 break;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1337 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1338 case '\f': //Carriage Return 0D 13
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1339 {
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1340 strncpy(Str, &pTmpBuf2[i+1], 3);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1341 Str[3] = 0;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1342 i += 3;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1343 v23 = pFont->GetLineWidth(&pTmpBuf2[i]);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1344 v13 = pWindow->uFrameZ - v23 - atoi(Str);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1345 v14 = uY;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1346 break;
0
Ritor1
parents:
diff changeset
1347 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1348 default:
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1349 v20 = pFont->pMetrics[v15].uWidth;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1350 if ( i > 0 )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1351 v13 += pFont->pMetrics[v15].uLeftSpacing;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1352 v21 = &pFont->pFontData[pFont->font_pixels_offset[v15]];
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1353 if ( uColor )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1354 pRenderer->DrawText(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], uColor, 0);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1355 else
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1356 pRenderer->DrawTextPalette(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], 0);
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1357 v13 += v20;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1358 if ( i < (signed int)pNumLen )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1359 v13 += pFont->pMetrics[v15].uRightSpacing;
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1360 }
0
Ritor1
parents:
diff changeset
1361 }
Ritor1
parents:
diff changeset
1362 }
Ritor1
parents:
diff changeset
1363 return v28;
Ritor1
parents:
diff changeset
1364 }
Ritor1
parents:
diff changeset
1365
Ritor1
parents:
diff changeset
1366 //----- (0041D12F) --------------------------------------------------------
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1367 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight,
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1368 int a6, int a7, UIMessageType msg, unsigned int msg_param, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...)
0
Ritor1
parents:
diff changeset
1369 {
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1370 GUIButton *pButton; // esi@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1371 // unsigned int v13; // eax@1
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1372 // unsigned int v14; // ebx@4
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1373 // unsigned int v15; // eax@4
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1374 unsigned int TextureNum=0; // ebx@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1375 // unsigned int v17; // eax@4
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1376 // Texture *v18; // eax@4
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1377 // Texture **v19; // ecx@5
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1378 // Texture **v20; // edx@5
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1379 // GUIButton *v21; // eax@7
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1380 va_list texturs_ptr;
0
Ritor1
parents:
diff changeset
1381
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1496
diff changeset
1382 pButton = (GUIButton *)malloc(0xBC);
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1383 pButton->pParent = this;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1384 pButton->uWidth = uWidth;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1385 pButton->uHeight = uHeight;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1386
0
Ritor1
parents:
diff changeset
1387 if ( a6 == 2 && !uHeight )
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1388 pButton->uHeight = uWidth;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1389
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1390 pButton->uButtonType = a6;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1391 pButton->uX = uX + this->uFrameX;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1392 pButton->uY = uY + this->uFrameY;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1393 pButton->uZ = pButton->uX + uWidth - 1;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1394 pButton->uW = pButton->uY + uHeight - 1;
271
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 264
diff changeset
1395 pButton->field_2C_is_pushed = 0;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1396 pButton->field_1C = a7;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1397 pButton->msg = msg;
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1398 pButton->msg_param = msg_param;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1399 pButton->uHotkey = uHotkey;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1400 //strlen(pName);
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1401 strcpy(pButton->pButtonName, pName);
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1402 va_start(texturs_ptr, pName);
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1403 while (NULL!=(pTextures=va_arg(texturs_ptr, Texture *)))
0
Ritor1
parents:
diff changeset
1404 {
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1405 pButton->pTextures[TextureNum]=pTextures;
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1406 ++TextureNum;
0
Ritor1
parents:
diff changeset
1407 }
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1408 va_end(texturs_ptr);
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1409 pButton->uNumTextures = TextureNum;
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1410 if ( this->pControlsTail )
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1411 this->pControlsTail->pNext = pButton;
0
Ritor1
parents:
diff changeset
1412 else
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1413 this->pControlsHead = pButton;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1414 pButton->pPrev = this->pControlsTail;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1415 this->pControlsTail = pButton;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1416 pButton->pNext = 0;
0
Ritor1
parents:
diff changeset
1417 ++this->uNumControls;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1418 return pButton;
0
Ritor1
parents:
diff changeset
1419 }
Ritor1
parents:
diff changeset
1420
Ritor1
parents:
diff changeset
1421 //----- (00459C2B) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1422 void GUIWindow::DrawFlashingInputCursor( signed int uX, int uY, struct GUIFont *a2 )
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1423 {
0
Ritor1
parents:
diff changeset
1424 if ( GetTickCount() % 1000 > 500 )
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1425 DrawText(a2, uX, uY, 0, "_", 0, 0, 0);
0
Ritor1
parents:
diff changeset
1426 }
Ritor1
parents:
diff changeset
1427
Ritor1
parents:
diff changeset
1428 //----- (0041C432) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1429 GUIWindow * GUIWindow::Create( unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, enum WindowType eWindowType, int pButton, const char* hint )
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1430 {
0
Ritor1
parents:
diff changeset
1431 unsigned int uNextFreeWindowID; // ebp@1
Ritor1
parents:
diff changeset
1432 //int *v8; // eax@1
Ritor1
parents:
diff changeset
1433 //GUIWindow *pWindow; // esi@4
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1434 //int v10; // eax@4
0
Ritor1
parents:
diff changeset
1435 unsigned int v11; // ebx@15
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1436 NPCData *speakingNPC; // ebp@15
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1437 int v14; // eax@20
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1438 int v16; // eax@25
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1439 int v18; // eax@30
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1440 int v20; // eax@35
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1441 int v22; // eax@40
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1442 int v24; // eax@45
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1443 // int v25; // eax@65
0
Ritor1
parents:
diff changeset
1444 unsigned int v26; // ebx@65
Ritor1
parents:
diff changeset
1445 char *v27; // eax@71
Ritor1
parents:
diff changeset
1446 const char *v29; // [sp-8h] [bp-18h]@68
Ritor1
parents:
diff changeset
1447 char *v30; // [sp-4h] [bp-14h]@68
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1448 // int uWidtha; // [sp+14h] [bp+4h]@66
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1449 int num_menu_buttons; // [sp+20h] [bp+10h]@15
0
Ritor1
parents:
diff changeset
1450
Ritor1
parents:
diff changeset
1451 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID)
Ritor1
parents:
diff changeset
1452 {
Ritor1
parents:
diff changeset
1453 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null)
Ritor1
parents:
diff changeset
1454 break;
Ritor1
parents:
diff changeset
1455 }
Ritor1
parents:
diff changeset
1456
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1942
diff changeset
1457 GUIWindow* pWindow = &pWindowList[uNextFreeWindowID];
0
Ritor1
parents:
diff changeset
1458 pWindow->uFrameWidth = uWidth;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1459 pWindow->uFrameHeight = uHeight;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1460
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1461 pWindow->uFrameX = uX;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1462 pWindow->uFrameY = uY;
0
Ritor1
parents:
diff changeset
1463 pWindow->uFrameZ = uX + uWidth - 1;
Ritor1
parents:
diff changeset
1464 pWindow->uFrameW = uY + uHeight - 1;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1465
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1466 pWindow->ptr_1C = (void *)pButton;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1467 pWindow->Hint = hint;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1468
0
Ritor1
parents:
diff changeset
1469 pWindow->eWindowType = eWindowType;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
1470 pWindow->receives_keyboard_input = false;
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1471 ++uNumVisibleWindows;
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1472 pWindow->numVisibleWindows = uNumVisibleWindows;
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1473 pVisibleWindowsIdxs[uNumVisibleWindows] = uNextFreeWindowID + 1;
0
Ritor1
parents:
diff changeset
1474 if ( (signed int)eWindowType <= 20 )
Ritor1
parents:
diff changeset
1475 {
Ritor1
parents:
diff changeset
1476 if (eWindowType != WINDOW_Chest)
Ritor1
parents:
diff changeset
1477 {
Ritor1
parents:
diff changeset
1478 switch (eWindowType)
Ritor1
parents:
diff changeset
1479 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1480 case WINDOW_Book: {
0
Ritor1
parents:
diff changeset
1481 pWindow->InitializeBookView();
Ritor1
parents:
diff changeset
1482 break;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1483 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1484 case WINDOW_Dialogue: {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1485 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1486 pCurrentScreen = SCREEN_NPC_DIALOGUE;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1487 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], //"Exit"
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 730
diff changeset
1488 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1489 if ( pWindow->par1C != 1 )
0
Ritor1
parents:
diff changeset
1490 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1491 num_menu_buttons = 0;
0
Ritor1
parents:
diff changeset
1492 v11 = LOBYTE(pFontArrus->uFontHeight) - 3;
602
628694cd5744 Margaret working
zipi
parents: 566
diff changeset
1493 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID);
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 783
diff changeset
1494 if ( GetGreetType(sDialogue_SpeakingActorNPC_ID) == 1 )//QuestsNPC_greet
0
Ritor1
parents:
diff changeset
1495 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1496 if ( speakingNPC->joins )
0
Ritor1
parents:
diff changeset
1497 {
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1498 pWindow->CreateButton(480, 130, 140, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0xDu, 0, "", 0);
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1499 num_menu_buttons = 1;
0
Ritor1
parents:
diff changeset
1500 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1501 if ( speakingNPC->evt_A )
0
Ritor1
parents:
diff changeset
1502 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1503 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1504 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1505 v14 = NPC_EventProcessor(speakingNPC->evt_A);
0
Ritor1
parents:
diff changeset
1506 if ( v14 == 1 || v14 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1507 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x13u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1508 }
Ritor1
parents:
diff changeset
1509 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1510 if ( speakingNPC->evt_B )
0
Ritor1
parents:
diff changeset
1511 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1512 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1513 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1514 v16 = NPC_EventProcessor(speakingNPC->evt_B);
0
Ritor1
parents:
diff changeset
1515 if ( v16 == 1 || v16 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1516 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x14u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1517 }
Ritor1
parents:
diff changeset
1518 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1519 if ( speakingNPC->evt_C )
0
Ritor1
parents:
diff changeset
1520 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1521 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1522 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1523 v18 = NPC_EventProcessor(speakingNPC->evt_C);
0
Ritor1
parents:
diff changeset
1524 if ( v18 == 1 || v18 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1525 pWindow->CreateButton( 0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x15u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1526 }
Ritor1
parents:
diff changeset
1527 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1528 if ( speakingNPC->evt_D )
0
Ritor1
parents:
diff changeset
1529 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1530 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1531 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1532 v20 = NPC_EventProcessor(speakingNPC->evt_D);
0
Ritor1
parents:
diff changeset
1533 if ( v20 == 1 || v20 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1534 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x16u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1535 }
Ritor1
parents:
diff changeset
1536 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1537 if ( speakingNPC->evt_E )
0
Ritor1
parents:
diff changeset
1538 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1539 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1540 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1541 v22 = NPC_EventProcessor(speakingNPC->evt_E);
0
Ritor1
parents:
diff changeset
1542 if ( v22 == 1 || v22 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1543 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x17u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1544 }
Ritor1
parents:
diff changeset
1545 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1546 if (speakingNPC->evt_F )
0
Ritor1
parents:
diff changeset
1547 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1548 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1549 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1550 v24 = NPC_EventProcessor(speakingNPC->evt_F);
0
Ritor1
parents:
diff changeset
1551 if ( v24 == 1 || v24 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1552 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x18u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1553 }
Ritor1
parents:
diff changeset
1554 }
Ritor1
parents:
diff changeset
1555 }
Ritor1
parents:
diff changeset
1556 else
Ritor1
parents:
diff changeset
1557 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1558 if ( speakingNPC->joins )
0
Ritor1
parents:
diff changeset
1559 {
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1560 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Du, 0, pGlobalTXT_LocalizationStrings[407], 0);//Подробнее
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1561 if (speakingNPC->Hired())
0
Ritor1
parents:
diff changeset
1562 {
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1563 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[408], speakingNPC->pName); //Отпустить
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1564 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pTmpBuf.data(), 0);
0
Ritor1
parents:
diff changeset
1565 }
Ritor1
parents:
diff changeset
1566 else
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1567 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);//Нанять
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1568 num_menu_buttons = 2;
0
Ritor1
parents:
diff changeset
1569 }
Ritor1
parents:
diff changeset
1570 }
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
1571 pWindow->_41D08F_set_keyboard_control_group(num_menu_buttons, 1, 0, 1);
0
Ritor1
parents:
diff changeset
1572 }
Ritor1
parents:
diff changeset
1573 break;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1574 }
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1575 case WINDOW_ChangeLocation:
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1576 {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1577 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1578 pCurrentScreen = SCREEN_CHANGE_LOCATION;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1579 pBtn_ExitCancel = pWindow->CreateButton( 566, 445, 75, 33, 1, 0, UIMSG_CHANGE_LOCATION_ClickCencelBtn, 0, 'N', pGlobalTXT_LocalizationStrings[156], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Остаться в этой области
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1580 pBtn_YES = pWindow->CreateButton( 486, 445, 75, 33, 1, 0, UIMSG_OnTravelByFoot, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1581 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 63, 73, 1, 0, UIMSG_OnTravelByFoot, 1, ' ', pWindow->Hint, 0, 0, 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1582 pWindow->CreateButton( 8, 8, 460, 344, 1, 0, UIMSG_OnTravelByFoot, 1, 0, pWindow->Hint, 0);
0
Ritor1
parents:
diff changeset
1583 break;
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1584 }
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1585 case WINDOW_SpellBook: {// окно книги заклов
0
Ritor1
parents:
diff changeset
1586 InitializeBookTextures();
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1587 pWindow->OpenSpellBook();
0
Ritor1
parents:
diff changeset
1588 break;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1589 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1590 case WINDOW_GreetingNPC: {// окно приветствия НПС
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1591 pMainScreenNum = pCurrentScreen;
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 0
diff changeset
1592 pKeyActionMap->EnterText(0, 15, pWindow);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1593 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG;
0
Ritor1
parents:
diff changeset
1594 break;
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1595 }
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1212
diff changeset
1596
0
Ritor1
parents:
diff changeset
1597 }
Ritor1
parents:
diff changeset
1598 return pWindow;
Ritor1
parents:
diff changeset
1599 }
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1600 //LABEL_62:
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1601 pWindow->CreateButton(61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1602 pWindow->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1603 pWindow->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1604 pWindow->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
1605 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, 9, "", 0);
0
Ritor1
parents:
diff changeset
1606 return pWindow;
Ritor1
parents:
diff changeset
1607 }
Ritor1
parents:
diff changeset
1608 if (eWindowType == WINDOW_HouseInterior)
Ritor1
parents:
diff changeset
1609 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1610 pCurrentScreen = SCREEN_HOUSE;
1589
Ritor1
parents: 1496
diff changeset
1611 pBtn_ExitCancel = pWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[80],//Выйти из здания
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 730
diff changeset
1612 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
1589
Ritor1
parents: 1496
diff changeset
1613 for ( v26 = 0; v26 < uNumDialogueNPCPortraits; ++v26 )
Ritor1
parents: 1496
diff changeset
1614 {
Ritor1
parents: 1496
diff changeset
1615 if ( v26 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
1616 {
1589
Ritor1
parents: 1496
diff changeset
1617 v30 = pMapStats->pInfos[uHouse_ExitPic].pName;
Ritor1
parents: 1496
diff changeset
1618 v29 = (char*)pGlobalTXT_LocalizationStrings[LOCSTR_ENTER_S];
Ritor1
parents: 1496
diff changeset
1619 }
Ritor1
parents: 1496
diff changeset
1620 else
Ritor1
parents: 1496
diff changeset
1621 {
Ritor1
parents: 1496
diff changeset
1622 if ( v26 || !dword_591080 )
Ritor1
parents: 1496
diff changeset
1623 v27 = HouseNPCData[v26 +1 - ((dword_591080 != 0)? 1:0)]->pName;
0
Ritor1
parents:
diff changeset
1624 else
1589
Ritor1
parents: 1496
diff changeset
1625 v27 = (char*)p2DEvents[pButton - 1].pProprieterName;
Ritor1
parents: 1496
diff changeset
1626 v30 = v27;
Ritor1
parents: 1496
diff changeset
1627 v29 = (char*)pGlobalTXT_LocalizationStrings[435];
0
Ritor1
parents:
diff changeset
1628 }
1589
Ritor1
parents: 1496
diff changeset
1629 sprintfex(byte_591180[v26].data(), v29, v30);
Ritor1
parents: 1496
diff changeset
1630 HouseNPCPortraitsButtonsList[v26] = pWindow->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v26],
Ritor1
parents: 1496
diff changeset
1631 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v26],
Ritor1
parents: 1496
diff changeset
1632 63, 73, 1, 0, UIMSG_ClickHouseNPCPortrait, v26, 0, byte_591180[v26].data(), 0, 0, 0);
Ritor1
parents: 1496
diff changeset
1633 }
1211
fd3bea473c0c fix HouseNpcdata array addresiing
Gloval
parents: 1206
diff changeset
1634 if ( uNumDialogueNPCPortraits == 1 )
0
Ritor1
parents:
diff changeset
1635 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1636 window_SpeakInHouse = &pWindowList[uNextFreeWindowID];
0
Ritor1
parents:
diff changeset
1637 _4B4224_UpdateNPCTopics(0);
Ritor1
parents:
diff changeset
1638 }
Ritor1
parents:
diff changeset
1639 }
Ritor1
parents:
diff changeset
1640 else
Ritor1
parents:
diff changeset
1641 {
158
f4ebd13c2a8e 13.02.13
Ritor1
parents: 151
diff changeset
1642 if (eWindowType == WINDOW_Transition)
0
Ritor1
parents:
diff changeset
1643 {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1644 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1645 pCurrentScreen = SCREEN_INPUT_BLV;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 949
diff changeset
1646 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionWindowCloseBtn, 0, 'N', pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Отмена
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1647 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionUI_Confirm, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1648 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 0x3Fu, 0x49u, 1, 0, UIMSG_TransitionUI_Confirm, 1, 0x20u, pWindow->Hint, 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1649 pWindow->CreateButton(8, 8, 0x1CCu, 0x158u, 1, 0, UIMSG_TransitionUI_Confirm, 1u, 0, pWindow->Hint, 0);
0
Ritor1
parents:
diff changeset
1650 return pWindow;
Ritor1
parents:
diff changeset
1651 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1652 if (eWindowType == WINDOW_CastSpell)
0
Ritor1
parents:
diff changeset
1653 {
Ritor1
parents:
diff changeset
1654 pEventTimer->Pause();
Ritor1
parents:
diff changeset
1655 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
1656 pMouse->SetCursorBitmap("MICON2");
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1657 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);//Выберите цель
0
Ritor1
parents:
diff changeset
1658 return pWindow;
Ritor1
parents:
diff changeset
1659 }
158
f4ebd13c2a8e 13.02.13
Ritor1
parents: 151
diff changeset
1660 if (eWindowType == WINDOW_Scroll)
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1661 {
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1662 pWindow->CreateButton(61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1663 pWindow->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0);
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1664 pWindow->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0);
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1665 pWindow->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1666 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1667 return pWindow;
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1668 }
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 874
diff changeset
1669 if (eWindowType == WINDOW_CastSpell_InInventory)
0
Ritor1
parents:
diff changeset
1670 {
Ritor1
parents:
diff changeset
1671 pMouse->SetCursorBitmap("MICON2");
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
1672 pBtn_ExitCancel = pWindow->CreateButton(392, 318, 75, 33, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],//Отмена
945
0d96349d8c87 Restoring inlined methods
Nomad
parents: 910
diff changeset
1673 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1674 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);//Выбрать цель
0
Ritor1
parents:
diff changeset
1675 ++pIcons_LOD->uTexturePacksCount;
Ritor1
parents:
diff changeset
1676 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1677 pCurrentScreen = SCREEN_CASTING;
0
Ritor1
parents:
diff changeset
1678 if ( !pIcons_LOD->uNumPrevLoadedFiles )
Ritor1
parents:
diff changeset
1679 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
Ritor1
parents:
diff changeset
1680 }
Ritor1
parents:
diff changeset
1681 }
Ritor1
parents:
diff changeset
1682 return pWindow;
1295
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1683 }
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1684 //----- (004B3EF0) --------------------------------------------------------
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1685 void DrawJoinGuildWindow( int pEventCode )
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1686 {
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1687 uDialogueType = 81;//enum JoinGuildDialog
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1688 current_npc_text = (char *)pNPCTopics[pEventCode + 99].pText;
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1689 ContractSelectText(pEventCode);
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1690 pDialogueWindow->Release();
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
1691 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 350, WINDOW_MainMenu, pEventCode, 0);
1295
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1692 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uExitCancelTextureId), 0); // Cancel
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1693 pDialogueWindow->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0);
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1694 pDialogueWindow->CreateButton(480, 160, 140, 30, 1, 0, UIMSG_ClickNPCTopic, 0x52u, 0, pGlobalTXT_LocalizationStrings[122], 0);
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1695 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2);
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1696 dialog_menu_id = HOUSE_DIALOGUE_OTHER;
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1697 }
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1698 //----- (0044603D) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
1699 void DialogueEnding()
1295
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1700 {
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1701 sDialogue_SpeakingActorNPC_ID = 0;
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1702 pDialogueWindow->Release();
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1703 pDialogueWindow = 0;
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1704 pMiscTimer->Resume();
86a83e12d795 moving files
Ritor1
parents: 1268
diff changeset
1705 pEventTimer->Resume();
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1706 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1707 //----- (004156F0) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1708 void GUI_UpdateWindows()
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1709 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1710 GUIWindow *pWindow; // esi@4
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1711 //unsigned int pWindowType; // eax@4
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1712 const char *pHint; // edx@66
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1713 // GUIButton *pButtonPtr_1C; // ebp@79
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1714 // char *pHint1; // edx@80
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1715 int v26; // eax@98
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1716 unsigned int v27; // ebp@106
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1717 GUIWindow *pGUIWindow2; // ecx@109
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1718 // GUIFont *pGUIFont; // ST1C_4@115
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1719 int v31; // eax@115
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1720 GUIButton *pButton; // ebp@118
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1721 int v39; // eax@129
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1722 unsigned int pNumMessages; // eax@142
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1723 GUIButton *pGUIButton; // ebp@146
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1724 //unsigned int pX; // [sp-1Ch] [bp-124h]@17
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1725 //unsigned int pY; // [sp-18h] [bp-120h]@17
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1726 //Texture *pTexture; // [sp-14h] [bp-11Ch]@17
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1727 //Texture *pTexture2; // [sp-14h] [bp-11Ch]@86
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1728 int i; // [sp+0h] [bp-108h]@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2331
diff changeset
1729 // ItemGen pItemGen; // [sp+4h] [bp-104h]@98
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1730 GUIButton GUIButton2; // [sp+28h] [bp-E0h]@133
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1731 ItemGen ItemGen2; // [sp+E4h] [bp-24h]@129
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1732
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1733 if (GetCurrentMenuID() != MENU_CREATEPARTY)
2339
63e1388c5463 Moving functions from unsorted_subs.h pt3
Grumpy7
parents: 2336
diff changeset
1734 Mouse::UI_OnKeyDown(VK_NEXT);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1735
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1736 for ( i = 1; i <= uNumVisibleWindows; ++i )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1737 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1738 pWindow = &pWindowList[pVisibleWindowsIdxs[i] - 1];
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1739 switch (pWindow->eWindowType)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1740 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1741 case WINDOW_OptionsButtons:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1742 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1743 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_Y,
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1744 pViewport->uViewportTL_X, pIcons_LOD->GetTexture(uTextureID_Options));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1745 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1746 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1747 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1748 case WINDOW_CharacterRecord:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1749 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1750 CharacterUI_CharacterScreen_Draw(pPlayers[uActiveCharacter]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1751 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1752 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1753 case WINDOW_Options:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1754 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1755 GameMenuUI_Options_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1756 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1757 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1758 case WINDOW_Book:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1759 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1760 BookUI_Draw((WindowType)(int)pWindow->ptr_1C);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1761 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1762 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1763 case WINDOW_Dialogue:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1764 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1765 GameUI_DrawDialogue();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1766 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1767 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1768 case WINDOW_QuickReference:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1769 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1770 GameUI_QuickRef_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1771 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1772 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1773 case WINDOW_Rest:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1774 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1775 RestUI_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1776 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1777 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1778 case WINDOW_ChangeLocation:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1779 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1780 TravelUI_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1781 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1782 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1783 case WINDOW_SpellBook:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1784 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1785 DrawSpellBookContent(pPlayers[uActiveCharacter]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1786 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1787 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1788 case WINDOW_GreetingNPC:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1789 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1790 GameUI_DrawBranchlessDialogue();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1791 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1792 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1793 case WINDOW_Chest:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1794 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1795 if ( pCurrentScreen == SCREEN_CHEST )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1796 {
1312
ae435824ac4d books code splitted to separate files
Gloval
parents: 1310
diff changeset
1797 Chest::DrawChestUI(pWindow->par1C);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1798 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1799 else if ( pCurrentScreen == SCREEN_CHEST_INVENTORY )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1800 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1801 pRenderer->ClearZBuffer(0, 479);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1802 draw_leather();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1803 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1804 pRenderer->DrawTextureIndexed(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uExitCancelTextureId));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1805 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1806 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1807 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1808 case WINDOW_SaveLoadButtons:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1809 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1810 SaveUI_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1811 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1812 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1813 case WINDOW_MainMenu_Load:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1814 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1815 LoadUI_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1816 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1817 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1818 case WINDOW_HouseInterior:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1819 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1820 pWindowList[pVisibleWindowsIdxs[i] - 1].HouseDialogManager();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1821 if ( !window_SpeakInHouse )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1822 continue;
1312
ae435824ac4d books code splitted to separate files
Gloval
parents: 1310
diff changeset
1823 if ( window_SpeakInHouse->par1C >= 53 )
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1824 continue;
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
1825 if ( pParty->PartyTimes._shop_ban_times[window_SpeakInHouse->par1C] <=pParty->uTimePlayed )
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1826 {
1312
ae435824ac4d books code splitted to separate files
Gloval
parents: 1310
diff changeset
1827 if ( window_SpeakInHouse->par1C < 53 )
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
1828 pParty->PartyTimes._shop_ban_times[window_SpeakInHouse->par1C] = 0;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1829 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1830 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1831 pNumMessages = pMessageQueue_50CBD0->uNumMessages;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1832 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1833 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1834 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1835 case WINDOW_Transition:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1836 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1837 TransitionUI_Draw();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1838 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1839 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1840 case WINDOW_Scroll:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1841 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1842 CreateScrollWindow();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1843 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1844 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1845 case WINDOW_CastSpell_InInventory:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1846 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1847 pRenderer->ClearZBuffer(0, 479);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1848 draw_leather();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1849 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1850 CharacterUI_DrawPaperdoll(pPlayers[uActiveCharacter]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1851 pRenderer->DrawTextureTransparent(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uTextureID_x_x_u));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1852 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1853 }
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
1854 case WINDOW_ModalWindow:
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1855 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
1856 ModalWindow_ShowHint();
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1857 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1858 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1859 case WINDOW_50:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1860 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
1861 v27 = Color16(255, 255, 255);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1862 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1863 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1864 ptr_507BD0->DrawMessageBox(0);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
1865 ptr_507BD0->DrawText(pFontCreate, 30, 40, v27, pKeyActionMap->pPressedKeysBuffer, 0, 0, 0);
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
1866 v31 = pFontCreate->GetLineWidth(pKeyActionMap->pPressedKeysBuffer);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1867 ptr_507BD0->DrawFlashingInputCursor(v31 + 30, 40, pFontCreate);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1868 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1869 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1870 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1871 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1872 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1873 pMessageQueue_50CBD0->AddGUIMessage((UIMessageType)(int)ptr_507BD0->ptr_1C, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1874 pEventTimer->Resume();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1875 ptr_507BD0->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1876 pCurrentScreen = SCREEN_GAME;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1877 viewparams->bRedrawGameUI = true;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1878 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1879 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1880 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1881 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1882 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1883 pEventTimer->Resume();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1884 ptr_507BD0->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1885 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1886 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1887 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1888 case WINDOW_59:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1889 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1890 pWindow->DrawMessageBox(0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1891 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
1892 pWindow->DrawText(pFontLucida, 10, 40, 0, pKeyActionMap->pPressedKeysBuffer, 0, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1893 if ( !pKeyActionMap->field_204 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1894 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1895 ItemGen2.Reset();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1896 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1897 pEventTimer->Resume();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1898 pCurrentScreen = 0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1899 viewparams->bRedrawGameUI = true;
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
1900 v26 = atoi(pKeyActionMap->pPressedKeysBuffer);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1901 if ( v26 > 0 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1902 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1903 if ( v26 < 800 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1904 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1905 ItemGen2.uAttributes |= 1u;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1906 ItemGen2.uItemID = v26;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1907 if ( pItemsTable->pItems[v26].uEquipType == 12 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1908 {
1709
8251e59fd7c1 ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents: 1640
diff changeset
1909 ItemGen2.uNumCharges = rand() % 6 + ItemGen2.GetDamageMod() + 1;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1910 ItemGen2.uMaxCharges = LOBYTE(ItemGen2.uNumCharges);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1911 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1912 else
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1913 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1914 if ( v26 >= 221 && v26 < 271 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1915 ItemGen2.uEnchantmentType = rand() % 10 + 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1916 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1917 pItemsTable->SetSpecialBonus(&ItemGen2);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1918 pParty->SetHoldingItem(&ItemGen2);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1919 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1920 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1921 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1922 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1923 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1924 case WINDOW_PressedButton2:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1925 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1926 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1927 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1928 pButton = (GUIButton *)pWindow->ptr_1C;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
1929 if ( pButton->uX >= 0 && pButton->uX <= window->GetWidth() )
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1930 {
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
1931 if ( pButton->uY >= 0 && pButton->uY <= window->GetHeight() )
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1932 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1933 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1934 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1935 if ( pWindow->Hint )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1936 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1937 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1938 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1939 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1940 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1941 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1942 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1943 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1944 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1945 if ( pWindow->Hint )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1946 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1947 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1948 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1949 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1950 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1951 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1952 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1953 case WINDOW_CharactersPressedButton:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1954 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1955 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1956 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1957 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1958 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1959 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1960 if ( pWindow->Hint )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1961 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1962 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1963 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1964 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1965 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1966 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1967 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1968 case WINDOW_PressedButton:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1969 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1970 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1971 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1972 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1973 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1974 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1975 if ( pWindow->Hint )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1976 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1977 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1978 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1979 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1980 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1981 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1982 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1983 case WINDOW_5D:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1984 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1985 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1986 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1987 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1988 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1989 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1990 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1991 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1992 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1993 case WINDOW_SaveLoadBtn:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1994 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1995 if (pWindow->Hint != (char *)1)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1996 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1997 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1998 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
1999 pHint = pWindow->Hint;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2000 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2001 if ( pHint && pHint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2002 pButton->DrawLabel(pHint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2003 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2004 if (pCurrentScreen == SCREEN_SAVEGAME)
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2005 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_SaveGame, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2006 else
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2007 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_LoadGame, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2008 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2009 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2010 case WINDOW_LoadGame_CancelBtn:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2011 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2012 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2013 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2014 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2015 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2016 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2017 if ( pWindow->Hint && pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2018 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2019 pWindow->Release();
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2020 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2021 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2022 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2023 case WINDOW_CloseRestWindowBtn:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2024 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2025 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2026 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2027 pGUIButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2028 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pGUIButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2029 pHint = pWindow->Hint;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2030 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2031 if ( pHint && pHint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2032 pGUIButton->DrawLabel(pHint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2033 pWindow->Release();
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2034 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2035 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2036 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2037 case WINDOW_ExitCharacterWindow:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2038 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2039 if ( pWindow->Hint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2040 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2041 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2042 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2043 pHint = pWindow->Hint;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2044 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2045 if ( pHint && pHint != (char *)1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2046 pButton->DrawLabel(pHint, pFontCreate, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2047 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2048 pNumMessages = pMessageQueue_50CBD0->uNumMessages;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2049 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2050 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2051 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2052 case WINDOW_RestWindow:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2053 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2054 memset(&GUIButton2, 0, 0xBCu);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2055 GUIButton2.uZ = 197;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2056 GUIButton2.uW = 197;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2057 GUIButton2.uX = 27;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2058 GUIButton2.uY = 161;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2059 GUIButton2.uWidth = 171;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2060 GUIButton2.uHeight = 37;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2061 GUIButton2.pParent = pButton_RestUI_WaitUntilDawn->pParent;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2062 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2063 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, *((Texture **)pWindow->ptr_1C + 15));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2064 viewparams->bRedrawGameUI = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2065 GUIButton2.DrawLabel(pGlobalTXT_LocalizationStrings[183], pFontCreate, 0, 0);//Отдых и лечение 8 часов
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2066 GUIButton2.pParent = 0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2067 pGUIWindow2 = pWindow;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2068 pGUIWindow2->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2069 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2070 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2071 case WINDOW_BooksWindow:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2072 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2073 pButton = (GUIButton *)pWindow->ptr_1C;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2074 pRenderer->DrawTextureIndexed(pWindow->uFrameY,
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2075 pWindow->uFrameX, pButton->pTextures[0]);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2076 viewparams->bRedrawGameUI = true;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2077 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2078 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2079 case WINDOW_CharacterWindow_Inventory:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2080 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2081 pWindow->DrawMessageBox(0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2082 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
2083 pWindow->DrawText(pFontLucida, 10, 40, 0, pKeyActionMap->pPressedKeysBuffer, 0, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2084 if ( !pKeyActionMap->field_204 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2085 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2086 ItemGen2.Reset();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2087 pWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2088 pEventTimer->Resume();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2089 pCurrentScreen = SCREEN_GAME;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2090 viewparams->bRedrawGameUI = 1;
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2362
diff changeset
2091 v39 = atoi(pKeyActionMap->pPressedKeysBuffer);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2092 if ( v39 > 0 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2093 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2094 if ( v39 < 800 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2095 SpawnActor(v39);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2096 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2097 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2098 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2099 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2100 case WINDOW_KeyMappingOptions:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2101 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2102 GameMenuUI_DrawKeyBindings();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2103 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2104 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2105 case WINDOW_VideoOptions:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2106 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2107 GameMenuUI_DrawVideoOptions();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2108 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2109 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2110 default:
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2111 continue;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2112 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2113 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2114 if ( GetCurrentMenuID() == -1 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2115 GameUI_DrawFoodAndGold();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2116 if ( sub_4637E0_is_there_popup_onscreen() )
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1758
diff changeset
2117 UI_OnMouseRightClick(0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2118 }
2290
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2119 //void LoadFonts_and_DrawCopyrightWindow()
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2120 //{
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2121 //MainMenuUI_LoadFontsAndSomeStuff();
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2122 // DrawCopyrightWindow();
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2123 //}
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2124 //----- (00415485) --------------------------------------------------------
2290
d65414f65bd4 add MMT.cpp and MMT.h
Ritor1
parents: 2278
diff changeset
2125 void DrawMM7CopyrightWindow()
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2126 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2127 GUIWindow Dst; // [sp+8h] [bp-54h]@1
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2128
2469
8516bb27d7f0 use_MMT
Ritor1
parents: 2465
diff changeset
2129 memset(&Dst, 0, sizeof(Dst));
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2130 Dst.uFrameWidth = 624;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2131 Dst.uFrameHeight = 256;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2132 Dst.uFrameX = 8;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2133 Dst.uFrameY = 30; // c 1999 The 3DO Company.
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2134 Dst.uFrameHeight = pFontSmallnum->CalcTextHeight(pGlobalTXT_LocalizationStrings[157], &Dst, 24, 0)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2135 + 2 * LOBYTE(pFontSmallnum->uFontHeight)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2136 + 24;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2137 Dst.uFrameY = 470 - Dst.uFrameHeight;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2138 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2139 Dst.uFrameW = 469;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2140 //Dst.Hint = "abcagfdsgsg ljsrengvlkjesnfkjwnef";
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2141 Dst.DrawMessageBox(0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2142
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2143 Dst.uFrameWidth -= 24;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2144 Dst.uFrameX += 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2145 Dst.uFrameY += 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2146 Dst.uFrameHeight -= 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2147 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2148 Dst.uFrameW = Dst.uFrameY + Dst.uFrameHeight - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2149 Dst.DrawTitleText(pFontSmallnum, 0, 0xCu, ui_mainmenu_copyright_color, pGlobalTXT_LocalizationStrings[157], 3);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2150 }
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2151
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2152 int modal_window_prev_screen;
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2153
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2154 //----- (004141CA) --------------------------------------------------------
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2155 void ModalWindow(const char *pStrHint, UIMessageType OnRelease_message)
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2156 {
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2157 pEventTimer->Pause();
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2158 modal_window_prev_screen = pCurrentScreen;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2153
diff changeset
2159 pModalWindow = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_ModalWindow, OnRelease_message, pStrHint);
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2160 pCurrentScreen = SCREEN_MODAL_WINDOW;
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2161 }
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2162
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2163 //----- (0041420D) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2164 void ModalWindow_ShowHint()
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2165 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2166 GUIWindow pWindow; // [sp+4h] [bp-54h]@1
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2167
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2168 sprintf(pTmpBuf2.data(), "%s\n \n%s", pModalWindow->Hint, pGlobalTXT_LocalizationStrings[61]);// Press Escape
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2169 pWindow.Hint = pTmpBuf2.data();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2170 pWindow.uFrameWidth = 400;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2171 pWindow.uFrameHeight = 100;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2172 pWindow.uFrameX = 120;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2173 pWindow.uFrameY = 140;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2174 pWindow.uFrameZ = 519;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2175 pWindow.uFrameW = 239;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2176 pWindow.DrawMessageBox(0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2177 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2178
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2179 //----- (0041426F) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2180 void ModalWindow_Release()
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2181 {
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2182 pMessageQueue_50CBD0->AddGUIMessage((UIMessageType)pModalWindow->par1C, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2183
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2184 pModalWindow->Release();
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2185 pModalWindow = nullptr;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2186
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2187 pCurrentScreen = modal_window_prev_screen;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2188 pEventTimer->Resume();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2189 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2190
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2191 //----- (00467FB6) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2192 void CreateScrollWindow()
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2193 {
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2194 unsigned int v0; // eax@1
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2195 char *v1; // ST18_4@3
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2196 GUIWindow a1; // [sp+Ch] [bp-54h]@1
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2197
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2198 memcpy(&a1, pGUIWindow_ScrollWindow, sizeof(a1));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2199 a1.Hint = 0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2200 a1.uFrameX = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2201 a1.uFrameY = 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2202 a1.uFrameWidth = 468;
1312
ae435824ac4d books code splitted to separate files
Gloval
parents: 1310
diff changeset
2203 v0 = pFontSmallnum->CalcTextHeight(pScrolls[pGUIWindow_ScrollWindow->par1C], &a1, 0, 0)
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2204 + 2 * LOBYTE(pFontCreate->uFontHeight) + 24;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2205 a1.uFrameHeight = v0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2206 if ( (signed int)(v0 + a1.uFrameY) > 479 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2207 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2208 v0 = 479 - a1.uFrameY;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2209 a1.uFrameHeight = 479 - a1.uFrameY;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2210 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2211 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2212 a1.uFrameW = v0 + a1.uFrameY - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2213 a1.DrawMessageBox(0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2214 a1.uFrameX += 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2215 a1.uFrameWidth -= 24;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2216 a1.uFrameY += 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2217 a1.uFrameHeight -= 12;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2218 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2219 a1.uFrameW = a1.uFrameHeight + a1.uFrameY - 1;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2220 v1 = pItemsTable->pItems[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C + 700].pName;
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2221 sprintf(pTmpBuf.data(), format_4E2D80, Color16(0xFFu, 0xFFu, 0x9Bu), v1);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2222 a1.DrawTitleText(pFontCreate, 0, 0, 0, pTmpBuf.data(), 3);
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2223 a1.DrawText(pFontSmallnum, 1, LOBYTE(pFontCreate->uFontHeight) - 3, 0,
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2224 pScrolls[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C], 0, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2225 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2226 //----- (00467F48) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2227 void CreateMsgScrollWindow( signed int mscroll_id )
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2228 {
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2229 if ( !pGUIWindow_ScrollWindow && mscroll_id >= 700 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2230 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2231 if ( mscroll_id <= 782 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2232 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2233 uTextureID_720980 = pIcons_LOD->LoadTexture("leather", TEXTURE_16BIT_PALETTE);
2273
42b6a910b5d8 FindIcon cleaned
Ritor1
parents: 2271
diff changeset
2234 pGUIWindow_ScrollWindow = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Scroll, mscroll_id - 700, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2235 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2236 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2237 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2238 //----- (00467F9F) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1453
diff changeset
2239 void free_book_subwindow()
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2240 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2241 if ( pGUIWindow_ScrollWindow )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2242 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2243 pGUIWindow_ScrollWindow->Release();
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2244 pGUIWindow_ScrollWindow = 0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1295
diff changeset
2245 }
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2246 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2247 //----- (004226EF) --------------------------------------------------------
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2248 void SetUserInterface(PartyAlignment align, bool bReplace)
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2249 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2250 extern void set_default_ui_skin();
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2251 set_default_ui_skin();
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2252
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2253 if (align == PartyAlignment_Evil)
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2254 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2255 if ( bReplace )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2256 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2257 pTexture_RightFrame->Reload("ib-r-C.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2258 pTexture_BottomFrame->Reload("ib-b-C.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2259 pTexture_TopFrame->Reload("ib-t-C.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2260 pTexture_LeftFrame->Reload("ib-l-C.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2261 pTexture_StatusBar->Reload("IB-Foot-c.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2262 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2263 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2264 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2265 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2266 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2267 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2268 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2269 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2270 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2271 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2272 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-C", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2273 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2274 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2275 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2276 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2277
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2278 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2279 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2280 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2281 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2282
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2283 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2284 pIconsFrameTable->InitializeAnimation(pUIAnim_WizardEye->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2285 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2286 pIconsFrameTable->InitializeAnimation(pUIAnum_Torchlight->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2287
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2288 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2289 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2290 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2291 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2292 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2293 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2294 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2295 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2296 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2297 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2298 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2299 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2300 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-c", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2301 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2302 else
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2303 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2304 pTexture_RightFrame->Load("ib-r-C.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2305 pTexture_BottomFrame->Load("ib-b-c.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2306 pTexture_TopFrame->Load("ib-t-C.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2307 pTexture_LeftFrame->Load("ib-l-C.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2308 pTexture_StatusBar->Load("IB-Foot-c.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2309 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2310 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2311 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2312 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2313 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2314 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2315 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2316 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2317 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2318 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2319 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-C", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2320 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2321 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2322 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2323 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2324 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2325 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2326 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2327 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2328 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2329 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc-c", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2330 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2331 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2332 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2333 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2334 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2335 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2336 uGameUIFontMain = Color16(0xC8u, 0, 0);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2337 uGameUIFontShadow = Color16(10, 0, 0);
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2338 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2339 else if (align == PartyAlignment_Neutral)
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2340 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2341 if ( bReplace )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2342 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2343 pTexture_RightFrame->Reload("ib-r-a.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2344 pTexture_BottomFrame->Reload("ib-b-a.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2345 pTexture_TopFrame->Reload("ib-t-a.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2346 pTexture_LeftFrame->Reload("ib-l-a.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2347 pTexture_StatusBar->Reload("IB-Foot-a.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2348 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2349 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2350 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2351 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2352 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2353 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2354 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2355 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2356 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2357 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2358 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2359 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2360 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2361 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2362 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2363 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2364 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2365 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2366 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2367 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2368 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2369 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2370 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2371 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-a", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2372 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2373 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2374 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2375 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2376 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2377 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2378 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2379 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2380 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2381 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2382 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2383 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2384 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2385 else
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2386 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2387 pTexture_RightFrame->Load("ib-r-A.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2388 pTexture_BottomFrame->Load("ib-b-A.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2389 pTexture_TopFrame->Load("ib-t-A.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2390 pTexture_LeftFrame->Load("ib-l-A.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2391 pTexture_StatusBar->Load("IB-Foot-a.pcx", 0);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2392 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-A", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2393 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2394 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-A", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2395 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2396 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2397 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2398 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-A", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2399 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-A", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2400 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-A", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2401 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2402 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2403 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2404 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2405 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2406 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2407 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2408 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2409 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2410 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2411 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-a", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2412 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2413 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2414 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2415 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2416 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2417 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2418 uTextureID_Parchment = pIcons_LOD->LoadTexture("parchment", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2419 uTextureID_5076B4 = pIcons_LOD->LoadTexture("cornr_ll", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2420 uTextureID_5076B0 = pIcons_LOD->LoadTexture("cornr_lr", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2421 uTextureID_5076AC = pIcons_LOD->LoadTexture("cornr_ul", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2422 uTextureID_5076A8 = pIcons_LOD->LoadTexture("cornr_ur", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2423 uTextureID_5076A4 = pIcons_LOD->LoadTexture("edge_btm", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2424 uTextureID_5076A0 = pIcons_LOD->LoadTexture("edge_lf", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2425 uTextureID_50769C = pIcons_LOD->LoadTexture("edge_rt", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2426 uTextureID_507698 = pIcons_LOD->LoadTexture("edge_top", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2427 pTexture_591428 = pIcons_LOD->LoadTexturePtr("endcap", TEXTURE_16BIT_PALETTE);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2428 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2429 uGameUIFontMain = Color16(0xAu, 0, 0);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2430 uGameUIFontShadow = Color16(230, 214, 193);
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2431 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2432 else if (align == PartyAlignment_Good)
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2433 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2434 if ( bReplace )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2435 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2436 pTexture_RightFrame->Reload("ib-r-B.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2437 pTexture_BottomFrame->Reload("ib-b-B.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2438 pTexture_TopFrame->Reload("ib-t-B.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2439 pTexture_LeftFrame->Reload("ib-l-B.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2440 pTexture_StatusBar->Reload("IB-Foot-b.pcx");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2441 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2442 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2443 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2444 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2445 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2446 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2447 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2448 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2449 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2450 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2451 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-B", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2452 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2453 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2454 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2455 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2456 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2457 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2458 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2459 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2460 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeB");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2461 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2462 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchB");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2463 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2464 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2465 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2466 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2467 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2468 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2469 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2470 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2471 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2472 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2473 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2474 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2475 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2476 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-b", 2);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2477 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2478 uGameUIFontMain = Color16(0, 0, 0xC8u);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
2479 uGameUIFontShadow = Color16(255, 255, 255);
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2480 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2481 else Error("Invalid alignment type: %u", align);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2482 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2483 //----- (0041D20D) --------------------------------------------------------
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2484 void DrawBuff_remaining_time_string( int uY, struct GUIWindow *window, __int64 remaining_time, struct GUIFont *Font )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2485 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2486 unsigned int full_time; // esi@1
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2487 signed __int64 hours; // kr00_8@1
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2488 const char *text; // eax@2
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2489 signed __int64 minutes; // [sp+10h] [bp-10h]@1
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2490 signed __int64 seconds; // [sp+18h] [bp-8h]@1
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2491 unsigned int day; // [sp+24h] [bp+4h]@1
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2492
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2493 full_time = (signed __int64)((double)remaining_time * 0.234375);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2494 day = (unsigned int)((full_time / 60) / 60) / 24;
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2495 hours = ((full_time / 60) / 60) % 24;
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2496 minutes = (signed __int64)(full_time / 60) % 60;
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2497 seconds = (signed __int64)full_time % 60;
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2498 strcpy(pTmpBuf.data(), "\r020");
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2499 if ( day )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2500 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2501 text = pGlobalTXT_LocalizationStrings[57]; // Days
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2502 if ( day <= 1 )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2503 text = pGlobalTXT_LocalizationStrings[56]; // Day
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2504 sprintfex(pTmpBuf2.data(), "%d %s ", (int)day, text);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2505 strcat(pTmpBuf.data(), pTmpBuf2.data());
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2506 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2507 if ( hours )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2508 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2509 if ( hours <= 1 )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2510 text = pGlobalTXT_LocalizationStrings[109];// Hour
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2511 else
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2512 text = pGlobalTXT_LocalizationStrings[110];// Hours
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2513 sprintfex(pTmpBuf2.data(), "%d %s ", (int)hours, text);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2514 strcat(pTmpBuf.data(), pTmpBuf2.data());
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2515 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2516 if ( minutes && !day )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2517 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2518 if ( minutes <= 1 )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2519 text = pGlobalTXT_LocalizationStrings[437];// Minute
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2520 else
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2521 text = pGlobalTXT_LocalizationStrings[436];// Minutes
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2522 sprintfex(pTmpBuf2.data(), "%d %s ", (int)minutes, text);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2523 strcat(pTmpBuf.data(), pTmpBuf2.data());
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2524 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2525 if ( seconds && !hours )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2526 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2527 if ( seconds <= 1 )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2528 text = pGlobalTXT_LocalizationStrings[439];// Second
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2529 else
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2530 text = pGlobalTXT_LocalizationStrings[438];// Seconds
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2531 sprintfex(pTmpBuf2.data(), "%d %s ", (int)seconds, text);
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2532 strcat(pTmpBuf.data(), pTmpBuf2.data());
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2533 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1838
diff changeset
2534 window->DrawText(Font, 32, uY, 0, pTmpBuf.data(), 0, 0, 0);
2331
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2535 }
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2536
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2537
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2538 //----- (0042EB8D) --------------------------------------------------------
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2539 void GUIMessageQueue::AddMessageImpl(UIMessageType msg, int param, unsigned int a4, const char *file, int line)
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2540 {
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2541 //Log::Warning(L"%s @ (%S %u)", UIMessage2String(msg), file, line);
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2542 if (uNumMessages < 40)
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2543 {
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2544 files[uNumMessages] = file;
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2545 lines[uNumMessages] = line;
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2546
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2547 pMessages[uNumMessages].eType = msg;
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2548 pMessages[uNumMessages].param = param;
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2549 pMessages[uNumMessages++].field_8 = a4;
9551756f46c4 Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents: 2290
diff changeset
2550 }
2355
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2551 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2552
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2553 //----- (004637E0) --------------------------------------------------------
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2554 char sub_4637E0_is_there_popup_onscreen()
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2555 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2556 return dword_507BF0_is_there_popup_onscreen == 1;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2339
diff changeset
2557 }
2463
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2558 // 507BF0: using guessed type int dword_507BF0_is_there_popup_onscreen;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2559
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2560 //----- (00417AD4) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2561 unsigned int GetSkillColor(unsigned int uPlayerClass, PLAYER_SKILL_TYPE uPlayerSkillType, signed int skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2562 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2563 switch (uPlayerClass % 4)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2564 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2565 case 0:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2566 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2567 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] >= skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2568 return ui_character_skillinfo_can_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2569 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 1][uPlayerSkillType] < skill_level &&
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2570 byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 2][uPlayerSkillType] < skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2571 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2572 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 3][uPlayerSkillType] < skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2573 return ui_character_skillinfo_cant_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2574 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2575 return ui_character_skillinfo_can_learn_gm;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2576 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2577 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2578
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2579 case 1:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2580 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2581 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] >= skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2582 return ui_character_skillinfo_can_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2583 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 1][uPlayerSkillType] < skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2584 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2585 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass + 2][uPlayerSkillType] < skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2586 return ui_character_skillinfo_cant_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2587 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2588 return ui_character_skillinfo_can_learn_gm;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2589 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2590 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2591
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2592 case 2:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2593 case 3:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2594 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2595 if (byte_4ED970_skill_learn_ability_by_class_table[uPlayerClass][uPlayerSkillType] < skill_level)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2596 return ui_character_skillinfo_cant_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2597 return ui_character_skillinfo_can_learn;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2598 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2599 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2600 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2601 Error("Invalid player class: %u", uPlayerClass);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2602 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2603
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2604 //----- (0040F92A) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2605 void __fastcall ZBuffer_DoFill2(int *pZBuffer, Texture *a2, int a3)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2606 {//срабатывает в покупке в магазине
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2607 void *v4; // eax@3
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2608 //int *v5; // edi@5
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2609 // int v6; // ecx@6
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2610 // int v9; // [sp+18h] [bp-4h]@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2611
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2612 if (pIcons_LOD->dword_011BA4 && a2->uDecompressedSize)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2613 v4 = a2->UnzipPalette();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2614 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2615 v4 = a2->pLevelOfDetail0_prolly_alpha_mask;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2616 //v5 = pZBuffer;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2617 for (uint i = 0; i < a2->uTextureHeight; i++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2618 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2619 for (uint j = 0; j < a2->uTextureWidth; j++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2620 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2621 *pZBuffer = a3;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2622 ++pZBuffer;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2623 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2624 pZBuffer += window->GetWidth() - a2->uTextureWidth;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2625 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2626 if (pIcons_LOD->dword_011BA4)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2627 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2628 if (a2->uDecompressedSize)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2629 free(v4);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2630 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2631 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2632
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2633
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2634 // 4E28F8: using guessed type int pCurrentScreen;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2635
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2636 //----- (0040F82D) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2637 void __fastcall ZBuffer_Fill(int *pZBuffer, int uTextureId, int iZValue)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2638 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2639 assert(uTextureId != -1);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2640 ZBuffer_DoFill(pZBuffer, pIcons_LOD->GetTexture(uTextureId), iZValue);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2641 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2642
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2643 //----- (0040F89C) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2644 void __fastcall ZBuffer_DoFill(int *pZBuffer, Texture *pTex, int uZValue)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2645 {//срабатывает при продаже в магазине
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2646 void *v3; // eax@3
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2647 //void *v4; // esi@5
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2648 //int *v5; // edi@5
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2649 //int v6; // eax@5
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2650 // int v7; // ecx@6
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2651 // int v11; // [sp+18h] [bp-8h]@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2652 //void *v12; // [sp+1Ch] [bp-4h]@5
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2653
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2654 if (pIcons_LOD->dword_011BA4 && pTex->uDecompressedSize)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2655 v3 = pTex->UnzipPalette();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2656 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2657 v3 = pTex->pLevelOfDetail0_prolly_alpha_mask;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2658 //v12 = v3;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2659 //v4 = v3;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2660 //v5 = pZBuffer;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2661 //v6 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2662 for (uint i = 0; i < pTex->uTextureHeight; i++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2663 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2664 for (uint j = 0; j < pTex->uTextureWidth; j++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2665 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2666 //LOBYTE(v6) = *(char *)v4;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2667 //v4 = (char *)v4 + 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2668 //if ( v6 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2669 *pZBuffer = uZValue;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2670 ++pZBuffer;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2671 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2672 pZBuffer += window->GetWidth() - pTex->uTextureWidth;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2673 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2674 if (pIcons_LOD->dword_011BA4)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2675 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2676 if (pTex->uDecompressedSize)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2677 free(v3);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2678 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2679 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2680
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2681 //----- (004BC49B) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2682 void OnSelectNPCDialogueOption(DIALOGUE_TYPE newDialogueType)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2683 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2684 NPCData *speakingNPC; // ebp@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2685 int npc_event_id; // ecx@10
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2686 char *v13; // [sp-8h] [bp-18h]@60
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2687
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2688 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2689 uDialogueType = newDialogueType;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2690 if (!speakingNPC->uFlags)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2691 speakingNPC->uFlags = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2692 if (newDialogueType == DIALOGUE_PROFESSION_DETAILS)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2693 dialogue_show_profession_details = ~dialogue_show_profession_details;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2694 else if (newDialogueType == DIALOGUE_76)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2695 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2696 if (speakingNPC->Hired())
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2697 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2698 if ((signed int)pNPCStats->uNumNewNPCs > 0)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2699 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2700 for (uint i = 0; i < (unsigned int)pNPCStats->uNumNewNPCs; ++i)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2701 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2702 if (pNPCStats->pNewNPCData[i].uFlags & 0x80 && !strcmp(speakingNPC->pName, pNPCStats->pNewNPCData[i].pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2703 pNPCStats->pNewNPCData[i].uFlags &= 0x7Fu;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2704 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2705 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2706 if (pParty->pHirelings[0].pName && !_stricmp(pParty->pHirelings[0].pName, speakingNPC->pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2707 memset(&pParty->pHirelings[0], 0, sizeof(NPCData));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2708 else if (pParty->pHirelings[1].pName && !_stricmp(pParty->pHirelings[1].pName, speakingNPC->pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2709 memset(&pParty->pHirelings[1], 0, sizeof(NPCData));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2710 pParty->hirelingScrollPosition = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2711 pParty->CountHirelings();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2712 dword_591084 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2713 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2714 dword_7241C8 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2715 return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2716 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2717 if (pParty->pHirelings[0].pName && pParty->pHirelings[1].pName)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2718 ShowStatusBarString(pGlobalTXT_LocalizationStrings[533], 2);// ""I cannot join you, you're party is full""
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2719 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2720 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2721 if (speakingNPC->uProfession != 51) //burglars have no hiring price
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2722 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2723 if (pParty->uNumGold < pNPCStats->pProfessions[speakingNPC->uProfession].uHirePrice)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2724 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2725 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);// "You don't have enough gold"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2726 dialogue_show_profession_details = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2727 uDialogueType = 13;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2728 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2729 pPlayers[uActiveCharacter]->PlaySound(SPEECH_NotEnoughGold, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2730 if (!dword_7241C8)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2731 pGame->Draw();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2732 dword_7241C8 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2733 return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2734 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2735 Party::TakeGold(pNPCStats->pProfessions[speakingNPC->uProfession].uHirePrice);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2736 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2737 LOBYTE(speakingNPC->uFlags) |= 0x80u;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2738 if (pParty->pHirelings[0].pName)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2739 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2740 memcpy(&pParty->pHirelings[1], speakingNPC, sizeof(pParty->pHirelings[1]));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2741 v13 = pParty->pHireling2Name;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2742 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2743 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2744 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2745 memcpy(&pParty->pHirelings[0], speakingNPC, sizeof(pParty->pHirelings[0]));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2746 v13 = pParty->pHireling1Name;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2747 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2748 strcpy(v13, speakingNPC->pName);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2749 pParty->hirelingScrollPosition = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2750 pParty->CountHirelings();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2751 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2752 if (sDialogue_SpeakingActorNPC_ID >= 0)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2753 pDialogue_SpeakingActor->uAIState = Removed;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2754 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2755 pPlayers[uActiveCharacter]->PlaySound(SPEECH_61, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2756 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2757 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2758 else if ((signed int)newDialogueType > DIALOGUE_84 && (signed int)newDialogueType <= DIALOGUE_ARENA_SELECT_CHAMPION) //выбор уровня сложности боя
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2759 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2760 ArenaFight();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2761 return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2762 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2763 else if (newDialogueType == DIALOGUE_USE_NPC_ABILITY)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2764 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2765 if (UseNPCSkill((NPCProf)speakingNPC->uProfession) == 0)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2766 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2767 if (speakingNPC->uProfession != GateMaster)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2768 speakingNPC->bHasUsedTheAbility = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2769 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2770 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2771 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2772 ShowStatusBarString(pGlobalTXT_LocalizationStrings[140], 2); //"Your packs are already full!"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2773 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2774 else if (newDialogueType == DIALOGUE_13)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2775 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2776 if (!speakingNPC->Hired())
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2777 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2778 sub_4B3E1E();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2779 dialogue_show_profession_details = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2780 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2781 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2782 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2783 for (uint i = 0; i < (signed int)pNPCStats->uNumNewNPCs; ++i)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2784 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2785 if (pNPCStats->pNewNPCData[i].uFlags & 0x80 && !strcmp(speakingNPC->pName, pNPCStats->pNewNPCData[i].pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2786 pNPCStats->pNewNPCData[i].uFlags &= 0x7Fu;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2787 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2788 if (pParty->pHirelings[0].pName && !_stricmp(pParty->pHirelings[0].pName, speakingNPC->pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2789 memset(&pParty->pHirelings[0], 0, sizeof(NPCData));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2790 else if (pParty->pHirelings[1].pName && !_stricmp(pParty->pHirelings[1].pName, speakingNPC->pName))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2791 memset(&pParty->pHirelings[1], 0, sizeof(NPCData));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2792 pParty->hirelingScrollPosition = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2793 pParty->CountHirelings();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2794 dword_591084 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2795 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2796 dword_7241C8 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2797 return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2798 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2799 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2800 else if (newDialogueType >= DIALOGUE_EVT_A && newDialogueType <= DIALOGUE_EVT_F)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2801 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2802 switch (newDialogueType)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2803 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2804 case DIALOGUE_EVT_A: npc_event_id = speakingNPC->evt_A; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2805 case DIALOGUE_EVT_B: npc_event_id = speakingNPC->evt_B; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2806 case DIALOGUE_EVT_C: npc_event_id = speakingNPC->evt_C; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2807 case DIALOGUE_EVT_D: npc_event_id = speakingNPC->evt_D; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2808 case DIALOGUE_EVT_E: npc_event_id = speakingNPC->evt_E; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2809 case DIALOGUE_EVT_F: npc_event_id = speakingNPC->evt_F; break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2810 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2811 if ((npc_event_id >= 200) && (npc_event_id <= 310))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2812 _4B3FE5_training_dialogue(npc_event_id); //200-310
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2813 else if ((npc_event_id >= 400) && (npc_event_id <= 410))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2814 { //400-410
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2815 dword_F8B1D8 = newDialogueType;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2816 DrawJoinGuildWindow(npc_event_id - 400);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2817 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2818 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2819 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2820 switch (npc_event_id)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2821 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2822 case 139:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2823 OracleDialogue();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2824 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2825 case 311:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2826 CheckBountyRespawnAndAward();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2827 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2828 case 399:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2829 Arena_SelectionFightLevel();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2830 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2831 default:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2832 activeLevelDecoration = (LevelDecoration*)1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2833 current_npc_text = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2834 EventProcessor(npc_event_id, 0, 1);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2835 activeLevelDecoration = nullptr;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2836 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2837 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2838 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2839 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2840 if (!dword_7241C8)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2841 pGame->Draw();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2842 dword_7241C8 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2843 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2844
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2845 //----- (004B3E1E) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2846 void sub_4B3E1E()
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2847 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2848 NPCData *v0; // ST40_4@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2849 signed int v1; // edi@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2850 //GUIWindow *v2; // ecx@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2851
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2852 __debugbreak();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2853 v0 = GetNPCData(sDialogue_SpeakingActorNPC_ID);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2854 v1 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2855 pDialogueWindow->eWindowType = WINDOW_MainMenu;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2856 pDialogueWindow->Release();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2857 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Dialogue, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2858 if (pNPCStats->pProfessions[v0->uProfession].pBenefits)//*(&pNPCStats->field_13A5C + 5 * v0->uProfession) )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2859 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2860 pDialogueWindow->CreateButton(480, 160, 140, 28, 1, 0, UIMSG_SelectNPCDialogueOption, 77, 0, pGlobalTXT_LocalizationStrings[407], 0);//Подробнее
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2861 v1 = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2862 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2863 pDialogueWindow->CreateButton(480, 30 * v1 + 160, 140, 30, 1, 0, UIMSG_SelectNPCDialogueOption, 76, 0, pGlobalTXT_LocalizationStrings[406], 0);//Нанять
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2864 pDialogueWindow->_41D08F_set_keyboard_control_group(v1 + 1, 1, 0, 1);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2865 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2866
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2867 //----- (004B2001) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2868 void __fastcall ClickNPCTopic(signed int uMessageParam)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2869 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2870 //signed int v1; // eax@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2871 NPCData *pCurrentNPCInfo; // ebp@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2872 int pEventNumber; // ecx@8
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2873 Player *v4; // esi@20
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2874 //int v5; // eax@28
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2875 //int v6; // eax@31
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2876 //int v7; // eax@34
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2877 //int v8; // eax@37
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2878 //int v9; // eax@40
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2879 //unsigned int v10; // eax@43
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2880 char *v12; // eax@53
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2881 char *v13; // eax@56
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2882 char *v14; // eax@57
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2883 char *v15; // eax@58
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2884 //unsigned int v16; // ebp@62
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2885 char *v17; // ecx@63
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2886 char *v18; // eax@65
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2887 // const char *v19; // ecx@68
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2888 //unsigned int v20; // eax@69
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2889 signed int pPrice; // ecx@70
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2890 char *v22; // [sp-Ch] [bp-18h]@73
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2891 //int v23; // [sp-8h] [bp-14h]@49
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2892 char *v24; // [sp-8h] [bp-14h]@73
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2893 //int v25; // [sp-4h] [bp-10h]@49
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2894
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2895 uDialogueType = uMessageParam + 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2896 pCurrentNPCInfo = HouseNPCData[pDialogueNPCCount - ((dword_591080 != 0) ? 1 : 0)];//- 1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2897 if (uMessageParam <= 24)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2898 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2899 switch (uMessageParam)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2900 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2901 case 13:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2902 current_npc_text = pNPCStats->pProfessions[pCurrentNPCInfo->uProfession].pJoinText;//(char *)*(&pNPCStats->field_13A64 + 5 * v2->uProfession);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2903 current_npc_text = BuildDialogueString(current_npc_text, uActiveCharacter - 1, 0, 0, 0, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2904 NPCHireableDialogPrepare();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2905 dialogue_show_profession_details = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2906 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2907 case 19:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2908 pEventNumber = pCurrentNPCInfo->evt_A;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2909 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2910 case 20:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2911 pEventNumber = pCurrentNPCInfo->evt_B;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2912 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2913 case 21:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2914 pEventNumber = pCurrentNPCInfo->evt_C;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2915 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2916 case 22:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2917 pEventNumber = pCurrentNPCInfo->evt_D;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2918 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2919 case 23:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2920 pEventNumber = pCurrentNPCInfo->evt_E;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2921 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2922 case 24:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2923 pEventNumber = pCurrentNPCInfo->evt_F;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2924 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2925 default:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2926 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2927 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2928 /*switch ( pEventNumber )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2929 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2930 case 139:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2931 OracleDialogue();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2932 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2933 case 311:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2934 CheckBountyRespawnAndAward();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2935 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2936 }*/
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2937 if (pEventNumber < 200 || pEventNumber > 310)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2938 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2939 if (pEventNumber < 400 || pEventNumber > 410)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2940 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2941 if (pEventNumber == 139)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2942 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2943 OracleDialogue();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2944 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2945 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2946 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2947 if (pEventNumber == 311)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2948 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2949 CheckBountyRespawnAndAward();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2950 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2951 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2952 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2953 current_npc_text = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2954 activeLevelDecoration = (LevelDecoration*)1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2955 EventProcessor(pEventNumber, 0, 1);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2956 activeLevelDecoration = nullptr;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2957 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2958 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2959 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2960 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2961 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2962 dword_F8B1D8 = uMessageParam;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2963 DrawJoinGuildWindow(pEventNumber - 400);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2964 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2965 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2966 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2967 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2968 _4B3FE5_training_dialogue(pEventNumber);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2969 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2970 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2971 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2972 if (uMessageParam != 76)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2973 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2974 if (uMessageParam == 77)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2975 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2976 //v16 = pCurrentNPCInfo->uProfession;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2977 __debugbreak(); // probably hirelings found in buildings, not present in MM7, changed "pCurrentNPCInfo->uProfession - 1" to "pCurrentNPCInfo->uProfession", have to check in other versions whether it's ok
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2978 if (dialogue_show_profession_details)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2979 v17 = pNPCStats->pProfessions[pCurrentNPCInfo->uProfession].pJoinText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2980 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2981 v17 = pNPCStats->pProfessions[pCurrentNPCInfo->uProfession].pBenefits;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2982 current_npc_text = v17;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2983 v18 = BuildDialogueString(v17, uActiveCharacter - 1, 0, 0, 0, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2984 dialogue_show_profession_details = ~dialogue_show_profession_details;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2985 current_npc_text = v18;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2986 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2987 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2988 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2989 if (uMessageParam == 79)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2990 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2991 if (contract_approved)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2992 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2993 Party::TakeGold(gold_transaction_amount);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2994 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2995 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2996 v12 = (char *)&pPlayers[uActiveCharacter]->pActiveSkills[dword_F8B1AC_award_bit_number];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2997 *(short *)v12 &= 0x3Fu;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2998 switch (dword_F8B1B0_MasteryBeingTaught)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
2999 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3000 case 2:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3001 v15 = (char *)&pPlayers[uActiveCharacter]->pActiveSkills[dword_F8B1AC_award_bit_number];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3002 *v15 |= 0x40u;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3003 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3004 case 3:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3005 v14 = (char *)&pPlayers[uActiveCharacter]->pActiveSkills[dword_F8B1AC_award_bit_number];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3006 *v14 |= 0x80u;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3007 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3008 case 4:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3009 v13 = (char *)&pPlayers[uActiveCharacter]->pActiveSkills[dword_F8B1AC_award_bit_number];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3010 v13[1] |= 1u;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3011 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3012 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3013 pPlayers[uActiveCharacter]->PlaySound(SPEECH_85, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3014 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3015 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3016 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3017 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3018 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3019 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3020 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3021 ++pMessageQueue_50CBD0->uNumMessages;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3022 }*/
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3023 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3024 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3025 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3026 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3027 if (uMessageParam == 82 && contract_approved) //join guild
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3028 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3029 Party::TakeGold(gold_transaction_amount);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3030 v4 = pParty->pPlayers.data();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3031 do
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3032 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3033 v4->SetVariable(VAR_Award, dword_F8B1AC_award_bit_number);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3034 ++v4;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3035 } while ((signed int)v4 < (signed int)pParty->pHirelings.data());
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3036 switch (dword_F8B1D8)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3037 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3038 case 19:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3039 pEventNumber = pCurrentNPCInfo->evt_A;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3040 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3041 pCurrentNPCInfo->evt_A = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3042 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3043 case 20:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3044 pEventNumber = pCurrentNPCInfo->evt_B;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3045 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3046 pCurrentNPCInfo->evt_B = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3047 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3048 case 21:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3049 pEventNumber = pCurrentNPCInfo->evt_C;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3050 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3051 pCurrentNPCInfo->evt_C = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3052 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3053 case 22:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3054 pEventNumber = pCurrentNPCInfo->evt_D;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3055 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3056 pCurrentNPCInfo->evt_D = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3057 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3058 case 23:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3059 pEventNumber = pCurrentNPCInfo->evt_E;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3060 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3061 pCurrentNPCInfo->evt_E = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3062 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3063 case 24:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3064 pEventNumber = pCurrentNPCInfo->evt_F;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3065 if (pEventNumber >= 400 && pEventNumber <= 416)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3066 pCurrentNPCInfo->evt_F = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3067 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3068 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3069 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3070 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3071 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3072 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3073 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3074 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3075 ++pMessageQueue_50CBD0->uNumMessages;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3076 }*/
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3077 //v11 = uActiveCharacter;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3078 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3079 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3080 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_86, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3081 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3082 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3083 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3084 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3085 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3086 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3087 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3088 if (pParty->pHirelings[0].pName && pParty->pHirelings[1].pName)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3089 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3090 ShowStatusBarString(pGlobalTXT_LocalizationStrings[533], 2);// ""I cannot join you, you're party is full""
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3091 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3092 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3093 if (pCurrentNPCInfo->uProfession != 51) //burglars have no hiring price
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3094 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3095 __debugbreak(); // probably hirelings found in buildings, not present in MM7, changed "pCurrentNPCInfo->uProfession - 1" to "pCurrentNPCInfo->uProfession", have to check in other versions whether it's ok
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3096 pPrice = pNPCStats->pProfessions[pCurrentNPCInfo->uProfession].uHirePrice;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3097 if (pParty->uNumGold < (unsigned int)pPrice)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3098 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3099 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3100 dialogue_show_profession_details = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3101 uDialogueType = 13;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3102 current_npc_text = pNPCStats->pProfessions[pCurrentNPCInfo->uProfession].pJoinText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3103 current_npc_text = BuildDialogueString(current_npc_text, uActiveCharacter - 1, 0, 0, 0, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3104 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3105 pPlayers[uActiveCharacter]->PlaySound(SPEECH_NotEnoughGold, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3106 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3107 goto _return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3108 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3109 Party::TakeGold(pPrice);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3110 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3111 //LOBYTE(v2->uFlags) |= 0x80u;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3112 pCurrentNPCInfo->uFlags |= 128;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3113 pParty->hirelingScrollPosition = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3114 pParty->CountHirelings();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3115 if (pParty->pHirelings[0].pName)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3116 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3117 memcpy(&pParty->pHirelings[1], pCurrentNPCInfo, sizeof(pParty->pHirelings[1]));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3118 v24 = pCurrentNPCInfo->pName;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3119 v22 = pParty->pHireling2Name;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3120 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3121 else
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3122 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3123 memcpy(pParty->pHirelings.data(), pCurrentNPCInfo, 0x4Cu);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3124 v24 = pCurrentNPCInfo->pName;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3125 v22 = pParty->pHireling1Name;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3126 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3127 strcpy(v22, v24);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3128 pParty->hirelingScrollPosition = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3129 pParty->CountHirelings();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3130 PrepareHouse((HOUSE_ID)(int)window_SpeakInHouse->ptr_1C);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3131 dialog_menu_id = HOUSE_DIALOGUE_MAIN;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3132
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3133 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3134 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3135 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3136 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3137 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3138 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3139 ++pMessageQueue_50CBD0->uNumMessages;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3140 }*/
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3141 if (uActiveCharacter)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3142 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)61, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3143 _return:
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3144 BackToHouseMenu();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3145 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3146
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3147 //----- (004B3FE5) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3148 //Originally called _4B254D_SkillMasteryTeacher to have contract_approved assigned, to be able to set some button name.
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3149 //But it the name gets immediately overwritten
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3150 void _4B3FE5_training_dialogue(int a4)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3151 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3152 const char *v2; // edi@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3153
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3154 //__debugbreak();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3155 uDialogueType = DIALOGUE_SKILL_TRAINER;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3156 current_npc_text = (char *)pNPCTopics[a4 + 168].pText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3157 _4B254D_SkillMasteryTeacher(a4); //might be needed because of contract_approved ?
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3158 pDialogueWindow->Release();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3159 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 350, WINDOW_MainMenu, a4, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3160 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0,
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3161 pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3162 pDialogueWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3163 v2 = "";
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3164 if (contract_approved)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3165 v2 = pGlobalTXT_LocalizationStrings[535];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3166 pDialogueWindow->CreateButton(480, 160, 0x8Cu, 0x1Eu, 1, 0, UIMSG_ClickNPCTopic, 0x4Fu, 0, v2, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3167 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3168 dialog_menu_id = HOUSE_DIALOGUE_OTHER;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3169 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3170 // F8B19C: using guessed type int dword_F8B19C;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3171 // F8B1A8: using guessed type int dword_F8B1A8;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3172 //----- (004B1ECE) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3173 void OracleDialogue()
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3174 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3175 __int16 *v0; // edi@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3176 signed int v4; // eax@9
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3177 int v5; // ebx@11
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3178 signed int v8; // edi@14
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3179 ItemGen *v9; // [sp+Ch] [bp-Ch]@11
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3180 signed int v10; // [sp+10h] [bp-8h]@13
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3181 int v11; // [sp+14h] [bp-4h]@1
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3182
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3183 contract_approved = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3184 v11 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3185 uDialogueType = 84;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3186 current_npc_text = (char *)pNPCTopics[667].pText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3187 v0 = _4F0882_evt_VAR_PlayerItemInHands_vals.data();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3188 //while ( 1 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3189 for (uint i = 0; i <= 53; i++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3190 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3191 if ((unsigned __int16)_449B57_test_bit(pParty->_quest_bits, *v0))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3192 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3193 //v1 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3194 //v2 = pParty->pPlayers.data();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3195 for (uint pl = 0; pl < 4; pl++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3196 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3197 //LOBYTE(v3) = pParty->pPlayers[pl].CompareVariable(VAR_PlayerItemInHands, *(v0+1));
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3198 if (pParty->pPlayers[pl].CompareVariable(VAR_PlayerItemInHands, *(v0 + 1)))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3199 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3200 //++v2;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3201 //++v1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3202 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3203 //while ( (signed int)v2 < (signed int)pParty->pHirelings.data() );
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3204 //if ( v1 == 4 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3205 //break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3206 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3207 ++v11;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3208 //v0 += 2;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3209 //if ( v0 > &_4F0882_evt_VAR_PlayerItemInHands_vals[53] )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3210 //break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3211 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3212 if (v0 <= &_4F0882_evt_VAR_PlayerItemInHands_vals[53])
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3213 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3214 current_npc_text = (char *)pNPCTopics[666].pText; // Here's %s that you lost. Be careful
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3215 v4 = _4F0882_evt_VAR_PlayerItemInHands_vals[2 * v11];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3216 contract_approved = _4F0882_evt_VAR_PlayerItemInHands_vals[2 * v11];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3217 pParty->pPlayers[0].AddVariable(VAR_PlayerItemInHands, v4);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3218 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3219 if (contract_approved == 601)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3220 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3221 v5 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3222 //v12 = pParty->pPlayers.data();//[0].uClass;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3223 v9 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3224 //while ( 1 )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3225 for (uint i = 0; i < 4; i++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3226 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3227 if (pParty->pPlayers[i].classType == PLAYER_CLASS_LICH)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3228 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3229 v10 = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3230 //v6 = pParty->pPlayers.data();//[0].pInventoryItems[0].field_1A;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3231 for (uint pl = 0; pl < 4; pl++)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3232 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3233 for (v8 = 0; v8 < 126; v8++)//138
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3234 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3235 if (pParty->pPlayers[pl].pInventoryItemList[v8].uItemID == ITEM_LICH_JAR_FULL)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3236 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3237 if (!pParty->pPlayers[pl].pInventoryItemList[v8].uHolderPlayer)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3238 v9 = &pParty->pPlayers[pl].pInventoryItemList[v8];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3239 if (pParty->pPlayers[pl].pInventoryItemList[v8].uHolderPlayer == v5)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3240 v10 = 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3241 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3242 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3243 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3244 if (!v10)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3245 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3246 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3247 // ++v12;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3248 ++v5;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3249 // if ( v12 > &pParty->pPlayers[3] )
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3250 // return;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3251 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3252 if (v9)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3253 v9->uHolderPlayer = v5;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3254 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3255 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3256
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3257 //----- (004B46A5) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3258 void __fastcall DrawTextAtStatusBar(const char *Str, int a5)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3259 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3260 pRenderer->DrawTextureRGB(0, 352, pTexture_StatusBar);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3261 pPrimaryWindow->DrawText(pFontLucida, pFontLucida->AlignText_Center(450, Str) + 11, 357, a5, Str, 0, 0, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3262 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3263
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3264 //----- (004BBA85) --------------------------------------------------------
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3265 void CheckBountyRespawnAndAward()
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3266 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3267 int i; // eax@2
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3268 int rand_monster_id; // edx@3
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3269
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3270 uDialogueType = 83;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3271 pDialogueWindow->Release();
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3272 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 350, WINDOW_MainMenu, 0, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3273 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],// "Cancel"
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3274 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3275 pDialogueWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3276 pDialogueWindow->CreateButton(480, 160, 140, 30, 1, 0, UIMSG_0, 83, 0, "", 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3277 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3278 dialog_menu_id = HOUSE_DIALOGUE_OTHER;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3279 //get new monster for hunting
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3280 if (pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] < (signed __int64)pParty->uTimePlayed)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3281 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3282 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3283 pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = (signed __int64)((double)(0x12750000 * (pParty->uCurrentMonth + 12i64 * pParty->uCurrentYear - 14015)) * 0.033333335);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3284 for (i = rand();; i = rand())
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3285 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3286 rand_monster_id = i % 258 + 1;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3287 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand_monster_id;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3288 if ((unsigned __int16)rand_monster_id < 0x73u || (unsigned __int16)rand_monster_id > 0x84u)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3289 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3290 if (((unsigned __int16)rand_monster_id < 0xEBu || (unsigned __int16)rand_monster_id > 0xFCu)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3291 && ((unsigned __int16)rand_monster_id < 0x85u || (unsigned __int16)rand_monster_id > 0x96u)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3292 && ((unsigned __int16)rand_monster_id < 0x97u || (unsigned __int16)rand_monster_id > 0xBAu)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3293 && ((unsigned __int16)rand_monster_id < 0xC4u || (unsigned __int16)rand_monster_id > 0xC6u))
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3294 break;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3295 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3296 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3297 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3298 bountyHunting_monster_id_for_hunting = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3299 if (!pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)])
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3300 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3301 bountyHunting_text = pNPCTopics[351].pText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3302 if (!pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)])
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3303 bountyHunting_text = pNPCTopics[353].pText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3304 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3305 else//get prize
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3306 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3307 if (pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)])
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3308 {
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3309 pParty->PartyFindsGold(100 * pMonsterStats->pInfos[(unsigned __int16)pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel, 0);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3310 for (uint i = 0; i < 4; ++i)
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3311 pParty->pPlayers[i].SetVariable(VAR_Award, 86);
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3312 pParty->uNumBountiesCollected += 100 * pMonsterStats->pInfos[pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3313 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = 0;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3314 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3315 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3316 bountyHunting_text = pNPCTopics[352].pText;
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3317 }
0f17a30149ec cleaning project part 1
zipi
parents: 2461
diff changeset
3318 }
2464
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3319
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3320 //----- (004B254D) --------------------------------------------------------
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3321 const char * _4B254D_SkillMasteryTeacher(int trainerInfo)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3322 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3323 int teacherLevel; // edx@1
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3324 int skillBeingTaught; // ecx@1
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3325 int pClassType; // eax@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3326 int currClassMaxMastery; // eax@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3327 int pointsInSkillWOutMastery; // ebx@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3328 int classBaseId; // eax@8
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3329 unsigned int skillMastery; // eax@29
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3330 unsigned __int16 pointsInSkill; // [sp+1Ch] [bp-10h]@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3331 int masteryLevelBeingTaught; // [sp+24h] [bp-8h]@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3332
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3333 contract_approved = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3334 teacherLevel = (trainerInfo - 200) % 3;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3335 skillBeingTaught = (trainerInfo - 200) / 3;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3336 Player* activePlayer = pPlayers[uActiveCharacter];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3337 pClassType = activePlayer->classType;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3338 currClassMaxMastery = byte_4ED970_skill_learn_ability_by_class_table[pClassType][skillBeingTaught];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3339 masteryLevelBeingTaught = teacherLevel + 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3340 dword_F8B1B0_MasteryBeingTaught = masteryLevelBeingTaught;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3341 if (currClassMaxMastery < masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3342 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3343 classBaseId = pClassType - pClassType % 4;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3344 if (byte_4ED970_skill_learn_ability_by_class_table[classBaseId + 1][skillBeingTaught] >= masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3345 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[633], pClassNames[classBaseId + 1]);//Вы должны достичь звания %s для обучения этому уровню навыка. You have to be promoted to %s to learn this skill level.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3346 else if (byte_4ED970_skill_learn_ability_by_class_table[classBaseId + 2][skillBeingTaught] >= masteryLevelBeingTaught
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3347 && byte_4ED970_skill_learn_ability_by_class_table[classBaseId + 3][skillBeingTaught] >= masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3348 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[634], pClassNames[classBaseId + 2], pClassNames[classBaseId + 3]);//Вы должны достичь звания %s или %s для обучения этому уровню навыка. You have to be promoted to %s or %s to learn this skill level.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3349 else if (byte_4ED970_skill_learn_ability_by_class_table[classBaseId + 2][skillBeingTaught] >= masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3350 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[633], pClassNames[classBaseId + 2]);//Вы должны достичь звания %s для обучения этому уровню навыка. You have to be promoted to %s to learn this skill level.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3351 else if (byte_4ED970_skill_learn_ability_by_class_table[classBaseId + 3][skillBeingTaught] >= masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3352 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[633], pClassNames[classBaseId + 3]);//Вы должны достичь звания %s для обучения этому уровню навыка. You have to be promoted to %s to learn this skill level.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3353 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3354 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[632], pClassNames[pClassType]);//Этот уровень навыка не может быть постигнут классом %s. This skill level can not be learned by the %s class.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3355 return pTmpBuf.data();
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3356 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3357 if (!activePlayer->CanAct())
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3358 return pNPCTopics[122].pText; //Not in your condition!
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3359 pointsInSkill = activePlayer->pActiveSkills[skillBeingTaught];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3360 pointsInSkillWOutMastery = pointsInSkill & 0x3F;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3361 if (!pointsInSkillWOutMastery)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3362 return pNPCTopics[131].pText; //You must know the skill before you can become an expert in it!
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3363 skillMastery = SkillToMastery(pointsInSkill);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3364 if ((signed int)skillMastery > teacherLevel + 1)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3365 return pNPCTopics[teacherLevel + 128].pText; // You are already an SKILLLEVEL in this skill.
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3366 dword_F8B1AC_award_bit_number = skillBeingTaught;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3367 if (masteryLevelBeingTaught == 2 && pointsInSkillWOutMastery < 4
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3368 || masteryLevelBeingTaught == 3 && pointsInSkillWOutMastery < 7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3369 || masteryLevelBeingTaught == 4 && pointsInSkillWOutMastery < 10
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3370 )
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3371 return pNPCTopics[127].pText; //"You don't meet the requirements, and cannot be taught until you do."
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3372 switch (dword_F8B1AC_award_bit_number)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3373 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3374 case PLAYER_SKILL_STAFF:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3375 case PLAYER_SKILL_SWORD:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3376 case PLAYER_SKILL_DAGGER:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3377 case PLAYER_SKILL_AXE:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3378 case PLAYER_SKILL_SPEAR:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3379 case PLAYER_SKILL_BOW:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3380 case PLAYER_SKILL_MACE:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3381 case PLAYER_SKILL_ARMSMASTER:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3382 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3383 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3384 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3385 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3386 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3387 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3388 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3389 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3390 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3391 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3392 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3393 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3394 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3395 case PLAYER_SKILL_BLASTER:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3396 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3397 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3398 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3399 gold_transaction_amount = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3400 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3401 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3402 gold_transaction_amount = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3403 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3404 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3405 gold_transaction_amount = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3406 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3407 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3408 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3409 case PLAYER_SKILL_SHIELD:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3410 case PLAYER_SKILL_LEATHER:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3411 case PLAYER_SKILL_CHAIN:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3412 case PLAYER_SKILL_PLATE:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3413 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3414 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3415 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3416 gold_transaction_amount = 1000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3417 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3418 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3419 gold_transaction_amount = 3000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3420 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3421 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3422 gold_transaction_amount = 7000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3423 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3424 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3425 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3426 case PLAYER_SKILL_FIRE:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3427 case PLAYER_SKILL_AIR:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3428 case PLAYER_SKILL_WATER:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3429 case PLAYER_SKILL_EARTH:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3430 case PLAYER_SKILL_SPIRIT:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3431 case PLAYER_SKILL_MIND:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3432 case PLAYER_SKILL_BODY:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3433 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3434 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3435 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3436 gold_transaction_amount = 1000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3437 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3438 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3439 gold_transaction_amount = 4000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3440 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3441 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3442 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3443 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3444 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3445 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3446 case PLAYER_SKILL_LIGHT:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3447 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3448 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3449 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3450 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3451 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3452 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3453 if (!(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 114))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3454 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3455 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3456 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3457 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3458 if (!activePlayer->ProfessionOrGuildFlagsCorrect(0x22u, 1) ||
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3459 !activePlayer->ProfessionOrGuildFlagsCorrect(0x1Au, 1))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3460 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3461 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3462 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3463 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3464 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3465 case PLAYER_SKILL_DARK:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3466 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3467 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3468 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3469 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3470 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3471 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3472 if (!(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 110))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3473 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3474 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3475 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3476 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3477 if (!activePlayer->ProfessionOrGuildFlagsCorrect(0x23u, 1)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3478 || !activePlayer->ProfessionOrGuildFlagsCorrect(0x1Bu, 1))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3479 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3480 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3481 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3482 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3483 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3484 case PLAYER_SKILL_ITEM_ID:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3485 case PLAYER_SKILL_REPAIR:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3486 case PLAYER_SKILL_MEDITATION:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3487 case PLAYER_SKILL_PERCEPTION:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3488 case PLAYER_SKILL_TRAP_DISARM:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3489 case PLAYER_SKILL_MONSTER_ID:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3490 case PLAYER_SKILL_STEALING:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3491 case PLAYER_SKILL_ALCHEMY:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3492 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3493 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3494 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3495 gold_transaction_amount = 500;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3496 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3497 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3498 gold_transaction_amount = 2500;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3499 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3500 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3501 gold_transaction_amount = 6000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3502 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3503 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3504 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3505 case PLAYER_SKILL_MERCHANT:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3506 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3507 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3508 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3509 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3510 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3511 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3512 if (activePlayer->GetBaseWillpower() < 50)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3513 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3514 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3515 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3516 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3517 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3518 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3519 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3520 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3521 case PLAYER_SKILL_BODYBUILDING:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3522 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3523 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3524 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3525 gold_transaction_amount = 500;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3526 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3527 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3528 if (activePlayer->GetBaseEndurance() < 50)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3529 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3530 gold_transaction_amount = 2500;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3531 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3532 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3533 gold_transaction_amount = 6000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3534 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3535 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3536 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3537 case PLAYER_SKILL_DIPLOMACY:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3538 Error("Diplomacy not used");
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3539 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3540 case PLAYER_SKILL_TIEVERY:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3541 Error("Thievery not used");
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3542 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3543 case PLAYER_SKILL_DODGE:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3544 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3545 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3546 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3547 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3548 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3549 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3550 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3551 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3552 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3553 if ((activePlayer->pActiveSkills[PLAYER_SKILL_UNARMED] & 63) < 0xA)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3554 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3555 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3556 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3557 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3558 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3559 case PLAYER_SKILL_UNARMED:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3560 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3561 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3562 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3563 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3564 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3565 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3566 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3567 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3568 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3569 if ((activePlayer->pActiveSkills[PLAYER_SKILL_DODGE] & 63) < 0xA)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3570 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3571 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3572 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3573 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3574 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3575 case PLAYER_SKILL_LEARNING:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3576 switch (masteryLevelBeingTaught)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3577 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3578 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3579 gold_transaction_amount = 2000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3580 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3581 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3582 if (activePlayer->GetBaseIntelligence() < 50)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3583 return pNPCTopics[127].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3584 gold_transaction_amount = 5000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3585 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3586 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3587 gold_transaction_amount = 8000;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3588 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3589 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3590 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3591 default:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3592 Error("Unknown skill");
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3593 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3594 if (gold_transaction_amount > pParty->uNumGold)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3595 return pNPCTopics[124].pText; //You don't have enough gold!
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3596 contract_approved = 1;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3597 if (masteryLevelBeingTaught == 2)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3598 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3599 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[534],//Получить степень ^Pr[%s] в навыке ^Pr[%s] за ^I[%lu] золот^L[ой;ых;ых]
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3600 pGlobalTXT_LocalizationStrings[433], pSkillNames[dword_F8B1AC_award_bit_number], gold_transaction_amount);//Эксперт
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3601 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3602 else if (masteryLevelBeingTaught == 3)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3603 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3604 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[534],
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3605 pGlobalTXT_LocalizationStrings[432], pSkillNames[dword_F8B1AC_award_bit_number], gold_transaction_amount);//Мастер
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3606 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3607 else if (masteryLevelBeingTaught == 4)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3608 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[534],
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3609 pGlobalTXT_LocalizationStrings[225], pSkillNames[dword_F8B1AC_award_bit_number], gold_transaction_amount);//Великий Магистр
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3610 return pTmpBuf2.data();
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3611 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3612
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3613 //----- (00495461) --------------------------------------------------------
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3614 char *BuildDialogueString(const char *lpsz, unsigned __int8 uPlayerID, ItemGen *a3, char *a4, int a5, __int64 *a6)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3615 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3616 Player *pPlayer; // ebx@3
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3617 const char *pText; // esi@7
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3618 int v17; // eax@10
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3619 signed __int64 v18; // qax@18
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3620 unsigned __int8 *v20; // ebx@32
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3621 int v21; // ecx@34
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3622 int pReputation; // eax@45
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3623 int v29; // eax@68
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3624 __int16 v55[56]; // [sp+10h] [bp-128h]@34
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3625 stru351_summoned_item v56; // [sp+80h] [bp-B8h]@107
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3626 char a1[100]; // [sp+B8h] [bp-80h]@3
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3627 int v63; // [sp+12Ch] [bp-Ch]@32
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3628
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3629 if (IsBadStringPtrA(lpsz, 1))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3630 return "Invalid String Passed";
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3631
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3632 a1[0] = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3633 pPlayer = &pParty->pPlayers[uPlayerID];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3634 memset(pTmpBuf2.data(), 0, sizeof(pTmpBuf2));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3635
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3636 NPCData *npc = nullptr;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3637 if (dword_5C35D4)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3638 npc = HouseNPCData[(unsigned int)((char *)pDialogueNPCCount + -(dword_591080 != 0))]; //- 1
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3639 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3640 npc = GetNPCData(sDialogue_SpeakingActorNPC_ID);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3641
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3642 //pText = a4;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3643 uint len = strlen(lpsz);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3644 for (int i = 0, dst = 0; i < len; ++i)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3645 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3646 char c = lpsz[i];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3647 if (c != '%')
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3648 pTmpBuf2[dst++] = c;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3649 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3650 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3651 v17 = 10 * (int)(lpsz[i + 1] - '0') + lpsz[i + 2] - '0';
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3652
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3653 switch (v17)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3654 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3655 case 1://Подробнее
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3656 strcat(pTmpBuf2.data(), npc->pName);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3657 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3658 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3659 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3660 case 2:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3661 strcat(pTmpBuf2.data(), pPlayer->pName);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3662 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3663 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3664 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3665 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3666 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3667 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3668 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3669 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3670 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3671 case 5:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3672 v18 = (signed __int64)((double)(signed __int64)pParty->uTimePlayed * 0.234375) / 60 / 60 % 24;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3673 pText = pGlobalTXT_LocalizationStrings[397];// "evening"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3674 if (SHIDWORD(v18) <= 0 && SHIDWORD(v18) >= 0 && (unsigned int)v18 >= 5 && SHIDWORD(v18) <= 0)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3675 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3676 if (SHIDWORD(v18) >= 0 && (unsigned int)v18 >= 11)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3677 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3678 if (v18 < 20)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3679 pText = pGlobalTXT_LocalizationStrings[396];// "day"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3680 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3681 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3682 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3683 pText = pGlobalTXT_LocalizationStrings[395];// "morning"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3684 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3685 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3686 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3687 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3688 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3689 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3690 case 6:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3691 if (pPlayer->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3692 pText = pGlobalTXT_LocalizationStrings[387];// "lady"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3693 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3694 pText = pGlobalTXT_LocalizationStrings[385];// "sir"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3695 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3696 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3697 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3698 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3699 case 7:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3700 if (pPlayer->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3701 pText = pGlobalTXT_LocalizationStrings[389];// "Lady"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3702 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3703 pText = pGlobalTXT_LocalizationStrings[386];// "Sir"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3704 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3705 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3706 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3707 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3708 case 8:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3709 v63 = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3710 v20 = (unsigned __int8 *)pPlayer->_achieved_awards_bits;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3711 for (uint _i = 0; _i < 28; ++_i)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3712 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3713 if ((unsigned __int16)_449B57_test_bit(v20, word_4EE150[i]))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3714 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3715 v21 = v63;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3716 ++v63;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3717 v55[v63] = word_4EE150[i];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3718 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3719 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3720 if (v63)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3721 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3722 if (dword_A74CDC == -1)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3723 dword_A74CDC = rand() % v63;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3724 pText = (char *)pAwards[v55[dword_A74CDC]].pText;//(char *)dword_723E80_award_related[2 * v55[v24]];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3725 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3726 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3727 pText = (char *)pNPCTopics[55].pText;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3728 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3729 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3730 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3731 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3732 case 9:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3733 if (npc->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3734 pText = pGlobalTXT_LocalizationStrings[384];// "her"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3735 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3736 pText = pGlobalTXT_LocalizationStrings[383];// "his"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3737 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3738 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3739 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3740 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3741 case 10:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3742 if (pPlayer->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3743 pText = pGlobalTXT_LocalizationStrings[389];// "Lady"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3744 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3745 pText = pGlobalTXT_LocalizationStrings[388];// "Lord"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3746 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3747 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3748 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3749 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3750 case 11:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3751 pReputation = pParty->GetPartyReputation();
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3752 if (pReputation >= 25)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3753 pText = pGlobalTXT_LocalizationStrings[379];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3754 else//v25 < 25
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3755 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3756 if (pReputation < 6)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3757 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3758 if (pReputation >= -5)//6 >= v25 >= -5
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3759 pText = pGlobalTXT_LocalizationStrings[399];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3760 else// v25 < -5
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3761 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3762 if (pReputation < -24)//-24 > v25
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3763 pText = pGlobalTXT_LocalizationStrings[434];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3764 else// -5 > v25 > -24
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3765 pText = pGlobalTXT_LocalizationStrings[402];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3766 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3767 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3768 else//25 > v25 > 6
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3769 pText = pGlobalTXT_LocalizationStrings[392];
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3770 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3771 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3772 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3773 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3774 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3775 case 12:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3776 pReputation = npc->rep;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3777 if (pReputation >= 25)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3778 pText = pGlobalTXT_LocalizationStrings[379];//Ненавистный
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3779 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3780 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3781 if (pReputation < 6)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3782 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3783 if (pReputation >= -5)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3784 pText = pGlobalTXT_LocalizationStrings[399];//Нейтральная
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3785 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3786 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3787 if (pReputation < -24)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3788 pText = pGlobalTXT_LocalizationStrings[434];//Почтенная
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3789 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3790 pText = pGlobalTXT_LocalizationStrings[402];//Дружелюбный
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3791 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3792 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3793 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3794 pText = pGlobalTXT_LocalizationStrings[392];//Недружелюбный
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3795 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3796 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3797 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3798 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3799 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3800 case 13:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3801 strcat(pTmpBuf2.data(), pNPCStats->sub_495366_MispronounceName(pPlayer->pName[0], pPlayer->uSex));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3802 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3803 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3804 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3805 case 14:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3806 if (npc->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3807 pText = pGlobalTXT_LocalizationStrings[391];// "sister"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3808 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3809 pText = pGlobalTXT_LocalizationStrings[390];// "brother"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3810 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3811 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3812 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3813 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3814 case 15:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3815 strcat(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[393]);// "daughter"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3816 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3817 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3818 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3819 case 16:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3820 if (npc->uSex)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3821 pText = pGlobalTXT_LocalizationStrings[391];// "sister"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3822 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3823 pText = pGlobalTXT_LocalizationStrings[390];// "brother"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3824 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3825 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3826 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3827 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3828 case 17://текст наёмного НПС
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3829 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3830 uint pay_percentage = pNPCStats->pProfessions[npc->uProfession].uHirePrice / 100;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3831 if (!pay_percentage)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3832 pay_percentage = 1;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3833 sprintf(a1, "%lu", pay_percentage);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3834 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3835 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3836 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3837 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3838 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3839 case 18:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3840 case 19:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3841 case 20:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3842 case 21:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3843 case 22:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3844 case 26:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3845 strncpy(a1, lpsz + i + 1, 2);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3846 sprintf(a1, "%lu", atoi(a1));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3847 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3848 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3849 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3850 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3851 case 23:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3852 if (pMapStats->GetMapInfo(pCurrentMapName))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3853 pText = pMapStats->pInfos[pMapStats->GetMapInfo(pCurrentMapName)].pName;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3854 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3855 pText = pGlobalTXT_LocalizationStrings[394];// "Unknown"
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3856 strcat(pTmpBuf2.data(), pText);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3857 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3858 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3859 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3860 case 24://название товара в продаже
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3861 sprintfex(a1, format_4E2D80, Color16(255, 255, 155), a3->GetDisplayName());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3862 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3863 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3864 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3865 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3866 case 25:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3867 v29 = pPlayer->GetBaseBuyingPrice(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3868 switch (a5)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3869 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3870 case 3:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3871 v29 = pPlayer->GetBaseSellingPrice(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3872 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3873 case 4:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3874 v29 = pPlayer->GetBaseIdentifyPrice(p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3875 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3876 case 5:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3877 v29 = pPlayer->GetBaseRepairPrice(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3878 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3879 case 6:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3880 v29 = pPlayer->GetBaseSellingPrice(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier) / 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3881 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3882 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3883 sprintfex(a1, "%lu", v29);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3884 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3885 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3886 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3887 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3888 case 27://текст продажи
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3889 v29 = pPlayer->GetBuyingPrice(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3890 if (a5 == 3)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3891 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3892 v29 = pPlayer->GetPriceSell(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3893 if (a3->IsBroken())
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3894 v29 = 1;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3895 sprintfex(a1, "%lu", v29);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3896 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3897 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3898 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3899 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3900 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3901 if (a5 != 4)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3902 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3903 if (a5 == 5)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3904 v29 = pPlayer->GetPriceRepair(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3905 else
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3906 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3907 if (a5 == 6)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3908 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3909 v29 = pPlayer->GetPriceSell(a3->GetValue(), p2DEvents[(signed int)a4 - 1].fPriceMultiplier) / 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3910 if (a3->IsBroken())
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3911 v29 = 1;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3912 if (!v29)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3913 v29 = 1;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3914 sprintfex(a1, "%lu", v29);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3915 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3916 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3917 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3918 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3919 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3920 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3921 sprintfex(a1, "%lu", v29);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3922 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3923 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3924 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3925 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3926 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3927 sprintfex(a1, "%lu", pPlayer->GetPriceIdentification(p2DEvents[(signed int)a4 - 1].fPriceMultiplier));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3928 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3929 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3930 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3931 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3932 case 28://профессия
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3933 strcat(pTmpBuf2.data(), (char *)p2DEvents[(signed int)a4 - 1].pProprieterTitle);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3934 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3935 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3936 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3937 case 29:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3938 sprintfex(a1, "%lu", pPlayer->GetPriceIdentification(p2DEvents[(signed int)a4 - 1].fPriceMultiplier));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3939 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3940 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3941 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3942 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3943 case 30:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3944 if (!a6)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3945 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3946 strcat(pTmpBuf2.data(), a4);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3947 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3948 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3949 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3950 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3951 init_summoned_item(&v56, *a6);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3952 sprintfex(a1, pGlobalTXT_LocalizationStrings[378], aMonthNames[v56.field_14_exprie_month], v56.field_C_expire_day + 1, v56.field_18_expire_year);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3953 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3954 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3955 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3956 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3957 case 31:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3958 case 32:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3959 case 33:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3960 case 34:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3961 strcat(pTmpBuf2.data(), pParty->pPlayers[v17 - 31].pName);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3962 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3963 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3964 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3965 default:
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3966 if (v17 <= 50 || v17 > 70)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3967 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3968 strncpy(a1, lpsz + i + 1, 2);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3969 sprintf(a1, "%lu", atoi(a1));
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3970 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3971 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3972 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3973 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3974 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3975 if (v17 - 51 >= 20)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3976 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3977 strcat(pTmpBuf2.data(), a4);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3978 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3979 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3980 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3981 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3982 init_summoned_item(&v56, pParty->PartyTimes._s_times[v17 - 51]);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3983 sprintfex(a1, pGlobalTXT_LocalizationStrings[378], aMonthNames[v56.field_14_exprie_month], v56.field_C_expire_day + 1, v56.field_18_expire_year);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3984 strcat(pTmpBuf2.data(), a1);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3985 dst = strlen(pTmpBuf2.data());
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3986 i += 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3987 break;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3988 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3989 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3990 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3991 return pTmpBuf2.data();
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3992 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3993
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3994 //----- (0044C175) --------------------------------------------------------
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3995 void ShowStatusBarString(const char *pString, unsigned int uNumSeconds)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3996 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3997 strcpy(GameUI_Footer_TimedString.data(), pString);
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3998 GameUI_Footer_TimeLeft = 1000 * uNumSeconds + GetTickCount();
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
3999
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4000 for (int i = pFontLucida->GetLineWidth(GameUI_Footer_TimedString.data()); i > 450;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4001 i = pFontLucida->GetLineWidth(GameUI_Footer_TimedString.data()))
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4002 GameUI_Footer_TimedString[strlen(GameUI_Footer_TimedString.data()) - 1] = 0;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4003 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4004
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4005 //----- (0044C1D0) --------------------------------------------------------
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4006 void ShowNothingHereStatus()
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4007 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4008 if (!GameUI_Footer_TimeLeft)
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4009 ShowStatusBarString(pGlobalTXT_LocalizationStrings[521], 2);// Nothing here
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4010 }
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4011
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4012 //----- (0044C28B) --------------------------------------------------------
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4013 int const_2()
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4014 {
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4015 return 2;
104fdbea0386 cleaning project part 2
zipi
parents: 2463
diff changeset
4016 }