Mercurial > mm7
annotate UI/UIPopup.cpp @ 2132:49de109bbab5
SavePCXScreenshot() continue
author | Ritor1 |
---|---|
date | Sun, 29 Dec 2013 01:26:15 +0600 |
parents | 7810cb3a5fb7 |
children | d28d3c006077 |
rev | line source |
---|---|
1298 | 1 #ifdef _MSC_VER |
2 #define _CRT_SECURE_NO_WARNINGS | |
3 #endif | |
4 | |
1299 | 5 #include "..\MM7.h" |
1298 | 6 |
1299 | 7 #include "..\Mouse.h" |
1298 | 8 |
1299 | 9 #include "..\Sprites.h" |
10 #include "..\Vis.h" | |
11 #include "..\Game.h" | |
12 #include "..\GUIWindow.h" | |
13 #include "..\GUIFont.h" | |
14 #include "..\Party.h" | |
15 #include "..\AudioPlayer.h" | |
16 #include "..\LOD.h" | |
17 #include "..\Actor.h" | |
18 #include "..\Viewport.h" | |
19 #include "..\SpriteObject.h" | |
20 #include "..\ObjectList.h" | |
21 #include "..\Chest.h" | |
22 #include "..\PaletteManager.h" | |
2044 | 23 #include "..\Timer.h" |
1299 | 24 #include "..\texts.h" |
1298 | 25 |
1299 | 26 #include "..\mm7_data.h" |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
27 #include "..\Events.h" |
1298 | 28 |
29 static char static_sub_417BB5_out_string[1200]; // static to a file, not sub actually | |
30 | |
1393 | 31 |
32 //----- (004179BC) -------------------------------------------------------- | |
1678 | 33 void CharacterUI_DrawTooltip(const char *Title, const char *content) |
1393 | 34 { |
1678 | 35 GUIWindow popup_window; // [sp+Ch] [bp-5Ch]@1 |
1393 | 36 POINT v6; // [sp+60h] [bp-8h]@1 |
37 | |
1678 | 38 memset(&popup_window, 0, 0x54u); |
39 popup_window.uFrameWidth = 384; | |
40 popup_window.uFrameHeight = 256; | |
41 popup_window.uFrameX = 128; | |
42 popup_window.uFrameY = pMouse->GetCursorPos(&v6)->y + 30; | |
43 popup_window.uFrameHeight = pFontSmallnum->CalcTextHeight(content, &popup_window, 24, 0) + 2 * LOBYTE(pFontLucida->uFontHeight) + 24; | |
44 popup_window.uFrameZ = popup_window.uFrameX + popup_window.uFrameWidth - 1; | |
45 popup_window.uFrameW = popup_window.uFrameY + popup_window.uFrameHeight - 1; | |
46 popup_window.DrawMessageBox(0); | |
47 | |
48 popup_window.uFrameX += 12; | |
49 popup_window.uFrameWidth -= 24; | |
50 popup_window.uFrameY += 12; | |
51 popup_window.uFrameHeight -= 12; | |
52 popup_window.uFrameZ = popup_window.uFrameX + popup_window.uFrameWidth - 1; | |
53 popup_window.uFrameW = popup_window.uFrameY + popup_window.uFrameHeight - 1; | |
54 sprintf(pTmpBuf.data(), "\f%05d%s\f00000\n", ui_character_tooltip_header_default_color, Title); | |
55 popup_window.DrawTitleText(pFontCreate, 0, 0, 0, pTmpBuf.data(), 3); | |
56 popup_window.DrawText(pFontSmallnum, 1, LOBYTE(pFontLucida->uFontHeight), 0, content, 0, 0, 0); | |
1393 | 57 } |
58 | |
1298 | 59 //----- (004151D9) -------------------------------------------------------- |
60 void __fastcall DrawPopupWindow(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight) | |
1678 | 61 { |
62 unsigned int uNumTiles; // [sp+2Ch] [bp-Ch]@6 | |
63 unsigned int coord_x; // [sp+2Ch] [bp-Ch]@3 | |
64 unsigned int coord_y; // [sp+34h] [bp-4h]@5 | |
1298 | 65 |
1678 | 66 pRenderer->SetTextureClipRect(uX, uY, uX + uWidth, uY + uHeight); |
67 if ( pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureWidth && pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureHeight) | |
68 { | |
69 uNumTiles = uWidth / pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureWidth; | |
70 if ( uWidth % pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureWidth ) | |
71 ++uNumTiles; | |
72 coord_y = uY; | |
73 for ( uint j = 0; j <= uHeight / pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureHeight; j++ ) | |
1298 | 74 { |
1678 | 75 coord_x = uX - pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureWidth; |
76 for ( uint i = uNumTiles + 1; i; --i ) | |
77 { | |
78 coord_x += pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureWidth; | |
79 pRenderer->DrawTextureIndexed(coord_x, coord_y, pIcons_LOD->GetTexture(uTextureID_Parchment)); | |
80 } | |
81 coord_y += pIcons_LOD->GetTexture(uTextureID_Parchment)->uTextureHeight; | |
1298 | 82 } |
1678 | 83 pRenderer->DrawTextureTransparent(uX, uY, pIcons_LOD->GetTexture(uTextureID_5076AC)); |
84 pRenderer->DrawTextureTransparent(uX, uY + uHeight - 32, pIcons_LOD->GetTexture(uTextureID_5076B4)); | |
85 pRenderer->DrawTextureTransparent(uX + uWidth - 32, uY, pIcons_LOD->GetTexture(uTextureID_5076A8)); | |
86 pRenderer->DrawTextureTransparent(uX + uWidth - 32, uY + uHeight - 32, pIcons_LOD->GetTexture(uTextureID_5076B0)); | |
87 if ( uWidth > 64 ) | |
88 { | |
89 pRenderer->SetTextureClipRect(uX + 32, uY, uX + uWidth - 32, uY + uHeight); | |
90 pRenderer->DrawTextureTransparent(uX + 32, uY, pIcons_LOD->GetTexture(uTextureID_507698)); | |
91 pRenderer->DrawTextureTransparent(uX + 32, uY + uHeight - 10, pIcons_LOD->GetTexture(uTextureID_5076A4)); | |
92 if ( uWidth > 512 ) | |
93 { | |
94 pRenderer->DrawTextureTransparent(uX + 544, uY, pIcons_LOD->GetTexture(uTextureID_507698)); | |
95 pRenderer->DrawTextureTransparent(uX + 544, uY + uHeight - 10, pIcons_LOD->GetTexture(uTextureID_5076A4)); | |
96 } | |
97 } | |
98 if ( uHeight > 64 ) | |
99 { | |
100 pRenderer->SetTextureClipRect(uX, uY + 32, uX + uWidth, uY + uHeight - 32); | |
101 pRenderer->DrawTextureTransparent(uX, uY + 32, pIcons_LOD->GetTexture(uTextureID_5076A0)); | |
102 pRenderer->DrawTextureTransparent(uX + uWidth - 10, uY + 32, pIcons_LOD->GetTexture(uTextureID_50769C)); | |
103 } | |
104 pRenderer->ResetTextureClipRect(); | |
105 } | |
106 } | |
1298 | 107 |
108 //----- (0041D895) -------------------------------------------------------- | |
109 void GameUI_DrawItemInfo( struct ItemGen* inspect_item ) | |
1699 | 110 { |
1705 | 111 unsigned int v2; // eax@3 |
112 const char *v28; // edi@69 | |
113 int v34; // esi@81 | |
1838 | 114 const char *pText; // [sp-14h] [bp-28Ch]@110 |
1705 | 115 char out_text[300]; // [sp+8h] [bp-270h]@40 |
116 char v65[120]; // [sp+134h] [bp-144h]@92 | |
117 stru351_summoned_item v67; | |
118 int v77; // [sp+200h] [bp-78h]@12 | |
119 int v78; // [sp+204h] [bp-74h]@5 | |
120 GUIWindow iteminfo_window; // [sp+208h] [bp-70h]@2 | |
121 POINT a2; // [sp+25Ch] [bp-1Ch]@2 | |
122 int v81; // [sp+264h] [bp-14h]@5 | |
123 PlayerSpeech v83; // [sp+26Ch] [bp-Ch]@18 | |
124 char* v84; | |
125 int v85; | |
126 char *Str; // [sp+270h] [bp-8h]@65 | |
1298 | 127 |
2132 | 128 int r_mask = 0xF800; |
129 int g_mask = 0x7E0; | |
130 int b_mask = 0x1F; | |
131 | |
1699 | 132 if (!inspect_item->uItemID) |
133 return; | |
134 iteminfo_window.Hint = 0; | |
135 iteminfo_window.uFrameWidth = 384; | |
136 iteminfo_window.uFrameHeight = 180; | |
137 iteminfo_window.uFrameY = 40; | |
138 if ( pMouse->GetCursorPos(&a2)->x <= 320 ) | |
139 v2 = pMouse->GetCursorPos(&a2)->x + 30; | |
140 else | |
141 v2 = pMouse->GetCursorPos(&a2)->x - iteminfo_window.uFrameWidth - 30; | |
142 iteminfo_window.uFrameX = v2; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
143 v78 = 100 - pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->uTextureWidth; |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
144 v81 = 144 - pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->uTextureHeight; |
1699 | 145 if ( v78 > 0 ) |
146 v78 = v78 / 2; | |
147 if ( v81 <= 0 ) | |
148 v81 = 0; | |
149 else | |
150 v81 = v81 / 2; | |
151 if ( !pItemsTable->pItems[inspect_item->uItemID].uItemID_Rep_St ) | |
152 inspect_item->SetIdentified(); | |
153 v77 = 0; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
154 if (inspect_item->GetItemEquipType() == EQUIP_GOLD) |
1699 | 155 v77 = inspect_item->uSpecEnchantmentType; |
156 if ( uActiveCharacter ) | |
157 { | |
158 //try to identify | |
159 if (!inspect_item->IsIdentified()) | |
160 { | |
161 if ( pPlayers[uActiveCharacter]->CanIdentify(inspect_item) == 1 ) | |
1298 | 162 inspect_item->SetIdentified(); |
1699 | 163 v83 = SPEECH_9; |
164 if ( !inspect_item->IsIdentified() ) | |
165 ShowStatusBarString(pGlobalTXT_LocalizationStrings[446], 2);//"Identify Failed" | |
166 else | |
167 { | |
168 v83 = SPEECH_8; | |
169 if ( inspect_item->GetValue() < 100 * (pPlayers[uActiveCharacter]->uLevel + 5) ) | |
170 v83 = SPEECH_7; | |
171 } | |
172 if ( dword_4E455C ) | |
173 { | |
174 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)(int)v83, 0); | |
175 dword_4E455C = 0; | |
176 } | |
177 } | |
178 inspect_item->UpdateTempBonus(pParty->uTimePlayed); | |
1567
9f8b3e904e14
Player::ReceiveDamage, very small edits; prepended "Is" to item functions returning bool values (broken, indetified, stolen)
Grumpy7
parents:
1545
diff
changeset
|
179 if (inspect_item->IsBroken()) |
1699 | 180 { |
181 if ( pPlayers[uActiveCharacter]->CanRepair(inspect_item) == 1 ) | |
182 inspect_item->uAttributes = inspect_item->uAttributes & 0xFFFFFFFD | 1; | |
183 v83 = SPEECH_11; | |
184 if ( !inspect_item->IsBroken() ) | |
185 v83 = SPEECH_10; | |
186 else | |
187 ShowStatusBarString(pGlobalTXT_LocalizationStrings[448], 2);//"Repair Failed" | |
188 if ( dword_4E455C ) | |
189 { | |
190 pPlayers[uActiveCharacter]->PlaySound(v83, 0); | |
191 dword_4E455C = 0; | |
192 } | |
193 } | |
194 } | |
195 if (inspect_item->IsBroken()) | |
196 { | |
197 iteminfo_window.DrawMessageBox(0); | |
198 pRenderer->SetTextureClipRect(iteminfo_window.uFrameX + 12, iteminfo_window.uFrameY + 12, | |
199 iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 12, | |
200 iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 12); | |
201 iteminfo_window.uFrameWidth -= 24; | |
202 iteminfo_window.uFrameHeight -= 12; | |
203 iteminfo_window.uFrameZ = iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 1; | |
204 iteminfo_window.uFrameW = iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 1; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
205 pRenderer->DrawTransparentRedShade(iteminfo_window.uFrameX + v78, v81 + iteminfo_window.uFrameY + 30, pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)); |
1699 | 206 if ( inspect_item->IsIdentified()) |
207 pText = (char *)inspect_item->GetIdentifiedName(); | |
208 else | |
209 pText = pItemsTable->pItems[inspect_item->uItemID].pUnidentifiedName; | |
2069 | 210 iteminfo_window.DrawTitleText(pFontArrus, 0, 0xCu, Color16(0xFFu, 0xFFu, 0x9Bu), pText, 3); |
1699 | 211 iteminfo_window.DrawTitleText(pFontArrus, 0x64u, ((signed int)iteminfo_window.uFrameHeight >> 1) - pFontArrus->CalcTextHeight(pGlobalTXT_LocalizationStrings[32], &iteminfo_window, 0, 0) / 2, |
2069 | 212 Color16(0xFFu, 0x19u, 0x19u), pGlobalTXT_LocalizationStrings[32], 3); //"Broken Item" |
1699 | 213 pRenderer->ResetTextureClipRect(); |
214 if ( !areWeLoadingTexture ) | |
215 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
216 pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->Release(); |
1699 | 217 pIcons_LOD->SyncLoadedFilesCount(); |
218 } | |
219 return; | |
220 } | |
221 if (!inspect_item->IsIdentified()) | |
222 { | |
223 iteminfo_window.DrawMessageBox(0); | |
224 pRenderer->SetTextureClipRect(iteminfo_window.uFrameX + 12, iteminfo_window.uFrameY + 12, | |
225 iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 12, iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 12); | |
226 iteminfo_window.uFrameWidth -= 24; | |
227 iteminfo_window.uFrameHeight -= 12; | |
228 iteminfo_window.uFrameZ = iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 1; | |
229 iteminfo_window.uFrameW = iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 1; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
230 pRenderer->DrawTextureTransparent(iteminfo_window.uFrameX + v78, v81 + iteminfo_window.uFrameY + 30, pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)); |
2069 | 231 iteminfo_window.DrawTitleText(pFontArrus, 0, 0xCu, Color16(0xFFu, 0xFFu, 0x9Bu), pItemsTable->pItems[inspect_item->uItemID].pUnidentifiedName, 3); |
1699 | 232 iteminfo_window.DrawTitleText(pFontArrus, 0x64u, ((signed int)iteminfo_window.uFrameHeight >> 1) - pFontArrus->CalcTextHeight(pGlobalTXT_LocalizationStrings[232], &iteminfo_window, 0, 0) / 2, |
2069 | 233 Color16(0xFFu, 0x19u, 0x19u), pGlobalTXT_LocalizationStrings[232], 3);//"Not Identified" |
1699 | 234 pRenderer->ResetTextureClipRect(); |
235 if ( !areWeLoadingTexture ) | |
236 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
237 pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->Release(); |
1699 | 238 pIcons_LOD->SyncLoadedFilesCount(); |
239 } | |
240 return; | |
241 } | |
242 sprintfex(out_text, pGlobalTXT_LocalizationStrings[463], pItemsTable->pItems[inspect_item->uItemID].pUnidentifiedName); //"Type: %s" | |
243 out_text[100] = 0; | |
244 out_text[200] = 0; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
245 switch (inspect_item->GetItemEquipType()) |
1699 | 246 { |
1989 | 247 case EQUIP_SINGLE_HANDED: |
248 case EQUIP_TWO_HANDED: | |
1699 | 249 sprintfex(out_text + 100, "%s: +%d %s: %dd%d", pGlobalTXT_LocalizationStrings[LOCSTR_ATTACK], |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
250 (int)inspect_item->GetDamageMod(), pGlobalTXT_LocalizationStrings[53], |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
251 (int)inspect_item->GetDamageDice(), (int)inspect_item->GetDamageRoll()); //"Damage" |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
252 if (inspect_item->GetDamageMod()) |
1699 | 253 { |
254 char mod[16]; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
255 sprintf(mod, "+%d", (int)inspect_item->GetDamageMod()); |
1699 | 256 strcat(out_text + 100, mod); |
257 } | |
258 break; | |
1298 | 259 |
260 case EQUIP_BOW: | |
1699 | 261 sprintfex(out_text + 100, "%s: +%d %s: %dd%d", pGlobalTXT_LocalizationStrings[203], //"Shoot" |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
262 (int)inspect_item->GetDamageMod(), pGlobalTXT_LocalizationStrings[53], //"Damage" |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
263 (int)inspect_item->GetDamageDice(), (int)inspect_item->GetDamageRoll()); |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
264 if (inspect_item->GetDamageMod()) |
1699 | 265 { |
266 char mod[16]; | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
267 sprintf(mod, "+%d", (int)inspect_item->GetDamageMod()); |
1699 | 268 strcat(out_text + 100, mod); |
269 } | |
270 break; | |
1298 | 271 |
272 case EQUIP_ARMOUR: | |
273 case EQUIP_SHIELD: | |
274 case EQUIP_HELMET: | |
275 case EQUIP_BELT: | |
276 case EQUIP_CLOAK: | |
277 case EQUIP_GAUNTLETS: | |
278 case EQUIP_BOOTS: | |
279 case EQUIP_RING: | |
280 case EQUIP_AMULET: | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
281 if (inspect_item->GetDamageDice()) //"Armor" |
1699 | 282 sprintfex(out_text + 100, "%s: +%d", pGlobalTXT_LocalizationStrings[11], |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
283 inspect_item->GetDamageDice() + inspect_item->GetDamageMod()); |
1699 | 284 break; |
285 } | |
1298 | 286 |
1699 | 287 if ( !v77 ) |
288 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
289 if (inspect_item->GetItemEquipType() ==EQUIP_POTION) //this is CORRECT! do not move to switch! |
1699 | 290 { |
291 if ( inspect_item->uEnchantmentType ) | |
292 sprintf(out_text + 200, "%s: %d",pGlobalTXT_LocalizationStrings[449] , inspect_item->uEnchantmentType); //"Power" | |
293 } | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
294 else if (inspect_item->GetItemEquipType() == EQUIP_REAGENT) |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
295 sprintf(out_text + 200, "%s: %d", pGlobalTXT_LocalizationStrings[449], inspect_item->GetDamageDice()); //"Power" |
1699 | 296 else if ( inspect_item->uEnchantmentType ) |
297 sprintf(out_text + 200, "%s: %s +%d", pGlobalTXT_LocalizationStrings[210], pItemsTable->pEnchantments[inspect_item->uEnchantmentType-1].pBonusStat, inspect_item->m_enchantmentStrength); //"Special" | |
298 else if ( inspect_item->uSpecEnchantmentType ) | |
299 sprintf(out_text + 200, "%s: %s", pGlobalTXT_LocalizationStrings[210], pItemsTable->pSpecialEnchantments[inspect_item->uSpecEnchantmentType-1].pBonusStatement, inspect_item->m_enchantmentStrength); | |
300 else if ( inspect_item->uNumCharges ) | |
301 sprintf(out_text + 200, "%s: %lu", pGlobalTXT_LocalizationStrings[464], inspect_item->uNumCharges); //"Charges" | |
302 } | |
303 iteminfo_window.uFrameWidth -= 12; | |
304 iteminfo_window.uFrameZ = iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 1; | |
305 iteminfo_window.uFrameW = iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 1; | |
306 Str = (char *)(3 * (LOBYTE(pFontArrus->uFontHeight) + 8)); | |
307 v84 = &out_text[0]; | |
308 for ( uint i = 1; i <= 3; i++ ) | |
309 { | |
310 if ( *v84 ) | |
311 Str += pFontComic->CalcTextHeight(v84, &iteminfo_window, 100, 0) + 3; | |
312 v84 += 100; | |
313 } | |
314 v28 = pItemsTable->pItems[inspect_item->uItemID].pDescription; | |
315 if ( *v28 ) | |
316 Str += pFontSmallnum->CalcTextHeight(pItemsTable->pItems[inspect_item->uItemID].pDescription, &iteminfo_window, 100, 0); | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
317 iteminfo_window.uFrameHeight = pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), |
1699 | 318 TEXTURE_16BIT_PALETTE)->uTextureHeight + v81 + 54; |
319 if ( (signed int)Str > (signed int)iteminfo_window.uFrameHeight ) | |
320 iteminfo_window.uFrameHeight = (unsigned int)Str; | |
2092 | 321 if ( inspect_item->uAttributes & ITEM_TEMP_BONUS && (inspect_item->uSpecEnchantmentType || inspect_item->uEnchantmentType) ) |
1699 | 322 iteminfo_window.uFrameHeight += LOBYTE(pFontComic->uFontHeight); |
323 v85 = 0; | |
324 if ( pFontArrus->uFontHeight ) | |
325 { | |
326 iteminfo_window.uFrameWidth -= 24; | |
327 if ( pFontArrus->CalcTextHeight(inspect_item->GetIdentifiedName(), &iteminfo_window, 0, 0) / (signed int)pFontArrus->uFontHeight ) | |
328 v85 = pFontArrus->uFontHeight; | |
329 iteminfo_window.uFrameWidth += 24; | |
330 } | |
331 iteminfo_window.uFrameWidth += 12; | |
332 iteminfo_window.uFrameHeight += (unsigned int)v85; | |
333 iteminfo_window.uFrameW = iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 1; | |
334 iteminfo_window.uFrameZ = iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 1; | |
335 iteminfo_window.DrawMessageBox(0); | |
336 pRenderer->SetTextureClipRect(iteminfo_window.uFrameX + 12, iteminfo_window.uFrameY + 12, | |
337 iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 12, iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 12); | |
338 iteminfo_window.uFrameWidth -= 12; | |
339 iteminfo_window.uFrameHeight -= 12; | |
340 iteminfo_window.uFrameZ = iteminfo_window.uFrameX + iteminfo_window.uFrameWidth - 1; | |
341 iteminfo_window.uFrameW = iteminfo_window.uFrameY + iteminfo_window.uFrameHeight - 1; | |
342 pRenderer->DrawTextureTransparent(iteminfo_window.uFrameX + v78, | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
343 iteminfo_window.uFrameY + (signed int)(iteminfo_window.uFrameHeight - pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->uTextureHeight) / 2, |
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
344 pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)); |
1298 | 345 |
1699 | 346 v34 = (int)(v85 + 35); |
347 Str = out_text; | |
348 for ( uint i = 1; i <= 3; i++ ) | |
349 { | |
350 if ( *Str ) | |
351 { | |
352 iteminfo_window.DrawText(pFontComic, 100, v34, 0, Str, 0, 0, 0); | |
353 v34 += pFontComic->CalcTextHeight(Str, &iteminfo_window, 100, 0) + 3; | |
1298 | 354 } |
1699 | 355 Str += 100; |
356 } | |
357 v28 = pItemsTable->pItems[inspect_item->uItemID].pDescription; | |
358 if ( *v28 ) | |
359 iteminfo_window.DrawText(pFontSmallnum, 100, v34, 0, v28, 0, 0, 0); | |
360 iteminfo_window.uFrameX += 12; | |
361 iteminfo_window.uFrameWidth -= 24; | |
2069 | 362 iteminfo_window.DrawTitleText(pFontArrus, 0, 0xCu, Color16(0xFFu, 0xFFu, 0x9Bu), inspect_item->GetIdentifiedName(), 3); |
1699 | 363 iteminfo_window.uFrameWidth += 24; |
364 iteminfo_window.uFrameX -= 12; | |
365 if ( v77 ) | |
366 { | |
367 sprintf(pTmpBuf.data(), "%s: %lu", pGlobalTXT_LocalizationStrings[465], v77);//"Value" | |
368 iteminfo_window.DrawText(pFontComic, 100, iteminfo_window.uFrameHeight - LOBYTE(pFontComic->uFontHeight), 0, pTmpBuf.data(), 0, 0, 0); | |
369 pRenderer->ResetTextureClipRect(); | |
370 } | |
371 else | |
372 { | |
2092 | 373 if ( (inspect_item->uAttributes & ITEM_TEMP_BONUS) && (inspect_item->uSpecEnchantmentType || inspect_item->uEnchantmentType) ) |
1699 | 374 { |
375 init_summoned_item(&v67, inspect_item->uExpireTime - pParty->uTimePlayed); | |
376 strcpy(pTmpBuf.data(), "Duration:"); | |
377 Str = (char *)(v67.field_18_expire_year - game_starting_year); | |
378 if (v67.field_18_expire_year != 1168 ) | |
379 { | |
380 sprintf(v65, " %d:yr", v67.field_18_expire_year - game_starting_year); | |
381 strcat(pTmpBuf.data(), v65); | |
382 } | |
383 if ( (((v67.field_14_exprie_month || Str) && | |
384 ((sprintf(v65, " %d:mo", v67.field_14_exprie_month), strcat(pTmpBuf.data(), v65), v67.field_14_exprie_month) || Str) | |
385 || v67.field_C_expire_day) | |
386 && ((sprintf(v65, " %d:dy", v67.field_C_expire_day), strcat(pTmpBuf.data(), v65), v67.field_14_exprie_month) || Str || | |
387 v67.field_C_expire_day) | |
388 || v67.field_8_expire_hour) | |
389 && ((sprintf(v65, " %d:hr", v67.field_8_expire_hour), strcat(pTmpBuf.data(), v65), v67.field_14_exprie_month) || Str || | |
390 v67.field_C_expire_day || v67.field_8_expire_hour) | |
391 || v67.field_4_expire_minute ) | |
392 { | |
393 sprintf(v65, " %d:mn", v67.field_4_expire_minute); | |
394 strcat(pTmpBuf.data(), v65); | |
395 } | |
396 iteminfo_window.DrawText(pFontComic, 100, iteminfo_window.uFrameHeight - 2 * LOBYTE(pFontComic->uFontHeight), 0, pTmpBuf.data(), 0, 0, 0); | |
397 } | |
398 sprintf(pTmpBuf.data(), "%s: %lu", pGlobalTXT_LocalizationStrings[465], inspect_item->GetValue()); | |
399 iteminfo_window.DrawText(pFontComic, 100, iteminfo_window.uFrameHeight - LOBYTE(pFontComic->uFontHeight), 0, pTmpBuf.data(), 0, 0, 0); | |
2092 | 400 if ( inspect_item->uAttributes & ITEM_STOLEN ) |
1699 | 401 pText = pGlobalTXT_LocalizationStrings[187]; //"Stolen" |
402 else | |
403 { | |
2092 | 404 if ( !(inspect_item->uAttributes & ITEM_HARDENED) ) |
1699 | 405 { |
406 pRenderer->ResetTextureClipRect(); | |
407 if ( !areWeLoadingTexture ) | |
408 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
409 pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->Release(); |
1699 | 410 pIcons_LOD->SyncLoadedFilesCount(); |
411 } | |
412 return; | |
413 } | |
414 pText = pGlobalTXT_LocalizationStrings[651]; //"Hardened" | |
415 } | |
2132 | 416 LOWORD(inspect_item->uAttributes) = r_mask; |
1699 | 417 iteminfo_window.DrawText(pFontComic, pFontComic->GetLineWidth(pTmpBuf.data()) + 132, |
418 iteminfo_window.uFrameHeight - LOBYTE(pFontComic->uFontHeight), inspect_item->uAttributes, pText, 0, 0, 0); | |
419 pRenderer->ResetTextureClipRect(); | |
420 } | |
421 if ( !areWeLoadingTexture ) | |
422 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1699
diff
changeset
|
423 pIcons_LOD->LoadTexturePtr(inspect_item->GetIconName(), TEXTURE_16BIT_PALETTE)->Release(); |
1699 | 424 pIcons_LOD->SyncLoadedFilesCount(); |
425 } | |
426 return; | |
427 } | |
1298 | 428 // 4E455C: using guessed type int dword_4E455C; |
429 // 506128: using guessed type int areWeLoadingTexture; | |
430 | |
431 //----- (0041E360) -------------------------------------------------------- | |
1699 | 432 void MonsterPopup_Draw(unsigned int uActorID, GUIWindow *window) |
1298 | 433 { |
434 int v8; // eax@4 | |
435 unsigned __int16 v9; // dx@4 | |
436 SpriteFrame *v10; // edi@17 | |
437 unsigned int v18; // ecx@19 | |
438 unsigned int v19; // eax@21 | |
439 char *v20; // esi@28 | |
440 int v21; // edx@29 | |
441 unsigned __int16 *v22; // ecx@29 | |
442 int v23; // eax@29 | |
443 int v25; // esi@32 | |
444 char *v26; // edx@34 | |
445 unsigned __int8 v27; // sf@36 | |
446 unsigned __int8 v28; // of@36 | |
447 SpellBuff *v40; // eax@60 | |
1720 | 448 int skill_points; // edi@61 |
449 unsigned int skill_level; // eax@61 | |
1705 | 450 int pTextHeight; // edi@90 |
1720 | 451 PlayerSpeech speech; // [sp-8h] [bp-1F4h]@79 |
1298 | 452 DDBLTFX Dst; // [sp+Ch] [bp-1E0h]@18 |
453 DDSURFACEDESC2 pDesc; // [sp+70h] [bp-17Ch]@18 | |
454 RECT v84; // [sp+ECh] [bp-100h]@26 | |
1838 | 455 const char *string_name[10]; // [sp+FCh] [bp-F0h]@145 |
456 const char *content[11]; // [sp+124h] [bp-C8h]@127 | |
1298 | 457 RenderBillboardTransform_local0 v106; // [sp+150h] [bp-9Ch]@3 |
458 unsigned int v107; // [sp+1A0h] [bp-4Ch]@18 | |
459 unsigned __int16 *v108; // [sp+1A4h] [bp-48h]@34 | |
460 unsigned int v109; // [sp+1A8h] [bp-44h]@32 | |
461 LPVOID v110; // [sp+1ACh] [bp-40h]@28 | |
1720 | 462 bool for_effects; // [sp+1C0h] [bp-2Ch]@3 |
1705 | 463 bool normal_level; // [sp+1D0h] [bp-1Ch]@18 |
464 bool expert_level; // [sp+1C4h] [bp-28h]@18 | |
465 bool master_level; // [sp+1C8h] [bp-24h]@18 | |
466 bool grandmaster_level; // [sp+1B4h] [bp-38h]@3 | |
1838 | 467 const char *pText; // [sp+1D4h] [bp-18h]@18 |
1705 | 468 int pTextColorID; // [sp+1E4h] [bp-8h]@18 |
1298 | 469 int a4; // [sp+1E8h] [bp-4h]@18 |
1720 | 470 int v115; |
1298 | 471 |
1720 | 472 bool monster_full_informations = false; |
1298 | 473 static Actor pMonsterInfoUI_Doll; |
2059 | 474 if ( !uActiveCharacter ) // |
475 uActiveCharacter = 1; | |
476 | |
1298 | 477 /*if ( !(bMonsterInfoUI_bDollInitialized & 1) ) |
478 { | |
479 bMonsterInfoUI_bDollInitialized |= 1u; | |
480 Actor::Actor(&pMonsterInfoUI_Doll); | |
481 atexit(nullsub_3); | |
482 }*/ | |
2002 | 483 v106.sParentBillboardID = -1; |
1699 | 484 v115 = monster_popup_y_offsets[((signed __int16)pActors[uActorID].pMonsterInfo.uID - 1) / 3] - 40; |
485 if ( pActors[uActorID].pMonsterInfo.uID == pMonsterInfoUI_Doll.pMonsterInfo.uID ) | |
1298 | 486 v9 = pMonsterInfoUI_Doll.uCurrentActionLength; |
487 else | |
488 { | |
1699 | 489 memcpy(&pMonsterInfoUI_Doll, &pActors[uActorID], sizeof(pMonsterInfoUI_Doll)); |
1298 | 490 pMonsterInfoUI_Doll.uCurrentActionAnimation = ANIM_Bored; |
491 pMonsterInfoUI_Doll.uCurrentActionTime = 0; | |
2093 | 492 v9 = rand() % 256 + 128; |
493 pMonsterInfoUI_Doll.uCurrentActionLength = v9; | |
1298 | 494 } |
495 | |
496 if ( (signed int)pMonsterInfoUI_Doll.uCurrentActionTime > (signed __int16)v9 ) | |
497 { | |
498 pMonsterInfoUI_Doll.uCurrentActionTime = 0; | |
499 if ( pMonsterInfoUI_Doll.uCurrentActionAnimation == ANIM_Bored || pMonsterInfoUI_Doll.uCurrentActionAnimation == ANIM_AtkMelee) | |
500 { | |
501 pMonsterInfoUI_Doll.uCurrentActionAnimation = ANIM_Standing; | |
502 pMonsterInfoUI_Doll.uCurrentActionLength = rand() % 128 + 128; | |
503 } | |
504 else | |
505 { | |
506 //rand(); | |
507 pMonsterInfoUI_Doll.uCurrentActionAnimation = ANIM_Bored; | |
508 if ( (pMonsterInfoUI_Doll.pMonsterInfo.uID < 115 || pMonsterInfoUI_Doll.pMonsterInfo.uID > 186) && | |
509 (pMonsterInfoUI_Doll.pMonsterInfo.uID < 232 || pMonsterInfoUI_Doll.pMonsterInfo.uID > 249) && rand() % 30 < 100 ) | |
510 pMonsterInfoUI_Doll.uCurrentActionAnimation = ANIM_AtkMelee; | |
1699 | 511 pMonsterInfoUI_Doll.uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[pActors[uActorID].pSpriteIDs[(signed __int16)pMonsterInfoUI_Doll.uCurrentActionAnimation]].uAnimLength; |
1298 | 512 } |
513 } | |
1699 | 514 v10 = pSpriteFrameTable->GetFrame( pActors[uActorID].pSpriteIDs[pMonsterInfoUI_Doll.uCurrentActionAnimation], pMonsterInfoUI_Doll.uCurrentActionTime); |
1298 | 515 v106.pTarget = pRenderer->pTargetSurface; |
516 v106.pTargetZ = pRenderer->pActiveZBuffer; | |
517 v106.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
1699 | 518 v106.uViewportX = window->uFrameX + 13; |
519 v106.uViewportY = window->uFrameY + 52; | |
520 v106.uViewportW = (window->uFrameY + 52) + 128; | |
1298 | 521 v106.uViewportZ = v106.uViewportX + 128; |
522 v106.uScreenSpaceX = (signed int)(v106.uViewportX + 128 + v106.uViewportX) / 2; | |
523 v106._screenspace_x_scaler_packedfloat = 65536; | |
524 v106._screenspace_y_scaler_packedfloat = 65536; | |
1699 | 525 v106.uScreenSpaceY = v115 + (window->uFrameY + 52) + pSprites_LOD->pSpriteHeaders[v10->pHwSpriteIDs[0]].uHeight; |
1298 | 526 v106.pPalette = PaletteManager::Get_Dark_or_Red_LUT(v10->uPaletteIndex, 0, 1); |
527 v106.sZValue = 0; | |
528 v106.uFlags = 0; | |
2093 | 529 pRenderer->SetRasterClipRect(0, 0, 639, 479); |
530 pRenderer->RasterLine2D(v106.uViewportX - 1, v106.uViewportY - 1, v106.uViewportX + 129, v106.uViewportY - 1, Color16(0xE1u, 255, 0x9Bu));//ãîðèçîíòàëüíàÿ âåðõíÿÿ ëèíèÿ | |
531 pRenderer->RasterLine2D(v106.uViewportX - 1, v106.uViewportW + 1, v106.uViewportX - 1, v106.uViewportY - 1, Color16(0xE1u, 255, 0x9Bu));//ãîðèçîíòàëüíàÿ íèæíÿÿ ëèíèÿ | |
532 pRenderer->RasterLine2D(v106.uViewportX + 129, v106.uViewportW + 1, v106.uViewportX - 1, v106.uViewportW + 1, Color16(0xE1u, 255, 0x9Bu));//ëåâàÿ âåðòèêàëüíàÿ ëèíèÿ | |
533 pRenderer->RasterLine2D(v106.uViewportX + 129, v106.uViewportY - 1, v106.uViewportX + 129, v106.uViewportW + 1, Color16(0xE1u, 255, 0x9Bu));//ïðàâàÿ âåðòèêàëüíàÿ ëèíèÿ | |
1298 | 534 if ( pRenderer->pRenderD3D ) |
535 { | |
1699 | 536 v106.uScreenSpaceY = v115 + v106.uViewportY + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferHeight; |
1298 | 537 memset(&Dst, 0, 0x64u); |
538 Dst.dwSize = 100; | |
539 Dst.dwFillColor = 0; | |
540 memset(&pDesc, 0, 0x7Cu); | |
541 pDesc.dwSize = 124; | |
1699 | 542 pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].pTextureSurface->GetSurfaceDesc(&pDesc); |
1298 | 543 v107 = 0; |
1705 | 544 uint i = 0; |
1699 | 545 int dst_x = v106.uScreenSpaceX + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaX - pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferWidth / 2; |
546 int dst_y = v106.uScreenSpaceY + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaY - pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferHeight; | |
547 uint dst_z = v106.uScreenSpaceX + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaX + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaWidth + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferWidth / 2 - pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferWidth; | |
548 uint dst_w = v106.uScreenSpaceY + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaY + pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaHeight - pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uBufferHeight; | |
1298 | 549 if (dst_x < v106.uViewportX) |
550 { | |
551 v18 = v106.uViewportX - dst_x; | |
552 dst_x = v106.uViewportX; | |
553 v107 = v18; | |
554 } | |
555 if (dst_y < v106.uViewportY) | |
556 { | |
557 v19 = v106.uViewportY - dst_y; | |
558 dst_y = v106.uViewportY; | |
559 i = v19; | |
560 } | |
561 if (dst_z > v106.uViewportZ) | |
562 dst_z = v106.uViewportZ; | |
563 if (dst_w > v106.uViewportW) | |
564 dst_w = v106.uViewportW; | |
565 pRenderer->FillRectFast(v106.uViewportX, v106.uViewportY, v106.uViewportZ - v106.uViewportX, v106.uViewportW - v106.uViewportY, pRenderer->uTargetBMask | pRenderer->uTargetGMask); | |
566 pRenderer->FillRectFast(v106.uViewportX, v106.uViewportY, v106.uViewportZ - v106.uViewportX, v106.uViewportW - v106.uViewportY, pRenderer->uTargetBMask | pRenderer->uTargetGMask); | |
567 v84.left = v106.uViewportX; | |
568 v84.top = v106.uViewportY; | |
569 v84.right = v106.uViewportZ; | |
570 v84.bottom = v106.uViewportW; | |
571 ErrD3D(pRenderer->pBackBuffer4->Blt(&v84, 0, 0, 16778240u, &Dst)); | |
572 if ( pRenderer->uTargetGBits == 5 ) | |
573 { | |
2069 | 574 __debugbreak(); // no monster popup for r5g5b5 will be |
1298 | 575 memset(&pDesc, 0, 0x7Cu); |
576 pDesc.dwSize = 124; | |
1699 | 577 if ( pRenderer->LockSurface_DDraw4(pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].pTextureSurface, &pDesc, DDLOCK_WAIT)) |
578 { | |
579 v20 = (char *)dst_y; | |
580 v110 = pDesc.lpSurface; | |
581 if (dst_y < dst_w) | |
582 { | |
583 v21 = dst_x; | |
2069 | 584 //v22 = &pRenderer->pTargetSurface[dst_y * pRenderer->uTargetSurfacePitch + dst_x]; |
1980 | 585 ushort* _v22_2 = v22; |
1699 | 586 v23 = i - dst_y; |
587 v115 = i - dst_y; | |
588 while ( 1 ) | |
589 { | |
590 dst_y = v21; | |
591 if ( v21 < dst_z ) | |
592 { | |
593 v25 = v107 - v21; | |
594 v109 = (int)&v20[v23]; | |
595 for ( i = v107 - v21; ; v25 = i ) | |
596 { | |
597 v108 = (unsigned __int16 *)((pDesc.lPitch >> 1) * pDesc.dwHeight * v109 / pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaHeight); | |
598 v26 = (char *)v108 + pDesc.dwWidth * (v25 + dst_y++) / pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaWidth; | |
599 *v22 = *((short *)v110 + (int)v26); | |
600 ++v22; | |
601 if ( dst_y >= dst_z ) | |
602 break; | |
603 } | |
604 v23 = v115; | |
605 } | |
606 v22 = (unsigned __int16 *)((char *)_v22_2 + 2 * pRenderer->uTargetSurfacePitch); | |
607 _v22_2 = v22; | |
608 v20 = (char *)(dst_y + 1); | |
609 v28 = __OFSUB__(dst_y + 1, dst_w); | |
610 v27 = (signed int)(dst_y++ + 1 - dst_w) < 0; | |
611 if ( !(v27 ^ v28) ) | |
612 break; | |
613 v21 = dst_x; | |
614 } | |
615 } | |
616 pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].pTextureSurface->Unlock(0); | |
617 } | |
1298 | 618 } |
1699 | 619 else |
620 { | |
621 memset(&pDesc, 0, 0x7Cu); | |
622 pDesc.dwSize = 124; | |
623 if ( pRenderer->LockSurface_DDraw4(pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].pTextureSurface, &pDesc, DDLOCK_WAIT) ) | |
624 { | |
1980 | 625 ushort* src = (unsigned __int16 *)pDesc.lpSurface; |
1699 | 626 uint num_top_scanlines_above_frame_y = i - dst_y; |
627 for (uint y = dst_y; y < dst_w; ++y) | |
628 { | |
2069 | 629 //ushort* dst = &pRenderer->pTargetSurface[y * pRenderer->uTargetSurfacePitch + dst_x]; |
1298 | 630 |
1699 | 631 uint src_y = num_top_scanlines_above_frame_y + y; |
632 for (uint x = dst_x; x < dst_z; ++x) | |
633 { | |
634 uint src_x = v107 - dst_x + x; // num scanlines left to frame_x + current x | |
1298 | 635 |
1699 | 636 uint idx = pDesc.dwHeight * src_y / pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaHeight * (pDesc.lPitch / sizeof(short)) + |
637 pDesc.dwWidth * src_x / pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].uAreaWidth; | |
638 uint b = src[idx] & 0x1F; | |
2069 | 639 //*dst++ = b | 2 * (src[idx] & 0xFFE0); |
2093 | 640 pRenderer->WritePixel16(x, y, b | 2 * (src[idx] & 0xFFE0)); |
1699 | 641 } |
642 } | |
643 pSprites_LOD->pHardwareSprites[v10->pHwSpriteIDs[0]].pTextureSurface->Unlock(0); | |
644 } | |
645 } | |
1298 | 646 } |
647 else | |
648 { | |
649 pRenderer->FillRectFast(v106.uViewportX, v106.uViewportY, v106.uViewportZ - v106.uViewportX, v106.uViewportW - v106.uViewportY, 0); | |
1699 | 650 if ( v10->pHwSpriteIDs[0] >= 0 ) |
651 pSprites_LOD->pSpriteHeaders[v10->pHwSpriteIDs[0]].DrawSprite_sw(&v106, 0); | |
1298 | 652 } |
1705 | 653 //name and profession |
1699 | 654 if ( pActors[uActorID].sNPC_ID ) |
1298 | 655 { |
1699 | 656 if (GetNPCData(pActors[uActorID].sNPC_ID)->uProfession) |
657 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], GetNPCData(pActors[uActorID].sNPC_ID)->pName, aNPCProfessionNames[GetNPCData(pActors[uActorID].sNPC_ID)->uProfession]); // "%s the %s" / ^Pi[%s] %s | |
658 else | |
1705 | 659 strncpy(pTmpBuf.data(), GetNPCData(pActors[uActorID].sNPC_ID)->pName, 2000); |
1298 | 660 } |
661 else | |
662 { | |
1699 | 663 if ( pActors[uActorID].dword_000334_unique_name ) |
1705 | 664 strncpy(pTmpBuf.data(), pMonsterStats->pPlaceStrings[pActors[uActorID].dword_000334_unique_name], 2000); |
1298 | 665 else |
1705 | 666 strncpy(pTmpBuf.data(), pMonsterStats->pInfos[pActors[uActorID].pMonsterInfo.uID].pName, 2000); |
1298 | 667 } |
2069 | 668 window->DrawTitleText(pFontComic, 0, 0xCu, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3); |
1705 | 669 //health bar |
1699 | 670 Actor::DrawHealthBar(&pActors[uActorID], window); |
1705 | 671 |
672 normal_level = 0; | |
673 expert_level = 0; | |
674 master_level = 0; | |
675 grandmaster_level = 0; | |
1720 | 676 for_effects = 0; |
1298 | 677 pMonsterInfoUI_Doll.uCurrentActionTime += pMiscTimer->uTimeElapsed; |
1720 | 678 if ( pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_MONSTER_ID) ) |
1298 | 679 { |
1720 | 680 skill_points = (unsigned __int8)pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_MONSTER_ID) & 0x3F; |
681 skill_level = SkillToMastery(pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_MONSTER_ID)) - 1; | |
682 if ( skill_level == 0 )//(normal) | |
1699 | 683 { |
1720 | 684 if ( skill_points + 10 >= pActors[uActorID].pMonsterInfo.uLevel ) |
685 normal_level = 1; | |
686 } | |
687 else if ( skill_level == 1 )//(expert) | |
688 { | |
689 if ( 2 * skill_points + 10 >= pActors[uActorID].pMonsterInfo.uLevel ) | |
1699 | 690 { |
1720 | 691 normal_level = 1; |
692 expert_level = 1; | |
1699 | 693 } |
694 } | |
1720 | 695 else if ( skill_level == 2 )//(master) |
1699 | 696 { |
1720 | 697 if ( 3 * skill_points + 10 >= pActors[uActorID].pMonsterInfo.uLevel ) |
1699 | 698 { |
1720 | 699 normal_level = 1; |
700 expert_level = 1; | |
701 master_level = 1; | |
1699 | 702 } |
1720 | 703 } |
704 else if ( skill_level == 3 )//grandmaster | |
705 { | |
706 normal_level = 1; | |
707 expert_level = 1; | |
708 master_level = 1; | |
709 grandmaster_level = 1; | |
1699 | 710 } |
1298 | 711 } |
1720 | 712 if ( pActors[uActorID].uAIState != Dead |
713 && pActors[uActorID].uAIState != Dying | |
714 && !dword_507BF0_is_there_popup_onscreen && pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_MONSTER_ID) ) | |
715 { | |
716 if ( normal_level | expert_level | master_level | grandmaster_level ) | |
717 { | |
718 if ( pActors[uActorID].pMonsterInfo.uLevel >= pPlayers[uActiveCharacter]->uLevel - 5 ) | |
719 speech = SPEECH_IDENTIFY_MONSTER_STRONGER; | |
720 else | |
721 speech = SPEECH_IDENTIFY_MONSTER_WEAKER; | |
722 } | |
723 else | |
724 speech = SPEECH_IDENTIFY_MONSTER_106; | |
725 pPlayers[uActiveCharacter]->PlaySound(speech, 0); | |
726 } | |
1298 | 727 |
1720 | 728 if ( (signed int)SkillToMastery(pParty->pPlayers[uActiveCharacter - 1].GetActualSkillLevel(PLAYER_SKILL_MONSTER_ID)) >= 3 ) |
729 for_effects = 1; | |
1705 | 730 |
731 if ( monster_full_informations == true ) | |
1298 | 732 { |
1705 | 733 normal_level = 1;// |
734 expert_level = 1;// | |
735 master_level = 1;// | |
736 grandmaster_level = 1;// | |
1720 | 737 for_effects = 1; |
1298 | 738 } |
739 | |
2069 | 740 window->DrawText(pFontSmallnum, 12, 196, Color16(0xE1u, 255, 0x9Bu), pGlobalTXT_LocalizationStrings[631], 0, 0, 0);//Effects |
1720 | 741 if ( !for_effects ) |
2069 | 742 window->DrawText(pFontSmallnum, 28, LOBYTE(pFontSmallnum->uFontHeight) + 193, Color16(0xE1u, 255, 0x9Bu), pGlobalTXT_LocalizationStrings[630], 0, 0, 0);//? |
1298 | 743 else |
744 { | |
1705 | 745 pText = ""; |
746 pTextHeight = LOBYTE(pFontSmallnum->uFontHeight) + 193; | |
747 for ( uint i = 1; i <= 21; ++i ) | |
748 { | |
749 if ( pActors[uActorID].pActorBuffs[i].uExpireTime > 0 ) | |
750 { | |
751 switch ( i - 1 ) | |
752 { | |
753 case 0: | |
754 pTextColorID = 60; | |
755 pText = pGlobalTXT_LocalizationStrings[591];//Charmed | |
756 break; | |
757 case 1: | |
758 pTextColorID = 82; | |
759 pText = pGlobalTXT_LocalizationStrings[649];//Summoned | |
760 break; | |
761 case 2: | |
762 pTextColorID = 92; | |
763 pText = pGlobalTXT_LocalizationStrings[592];//Shrunk | |
764 break; | |
765 case 3: | |
766 pTextColorID = 63; | |
767 pText = pGlobalTXT_LocalizationStrings[4];//Afraid | |
768 break; | |
769 case 4: | |
770 pText = pGlobalTXT_LocalizationStrings[220];//Stoned | |
771 pTextColorID = 81; | |
772 break; | |
773 case 5: | |
774 pText = pGlobalTXT_LocalizationStrings[162];//Paralyzed | |
775 pTextColorID = 81; | |
776 break; | |
777 case 6: | |
778 pText = pGlobalTXT_LocalizationStrings[593];//Slowed | |
779 pTextColorID = 35; | |
780 break; | |
781 case 8: | |
782 pText = pGlobalTXT_LocalizationStrings[608];//Berserk | |
783 pTextColorID = 62; | |
784 break; | |
785 case 7: | |
786 case 9: | |
787 pText = ""; | |
788 pTextColorID = 0; | |
789 continue; | |
790 case 10: | |
791 pTextColorID = 47; | |
792 pText = pGlobalTXT_LocalizationStrings[221];//Fate | |
793 break; | |
794 case 11: | |
795 pTextColorID = 66; | |
796 pText = pGlobalTXT_LocalizationStrings[607];//Enslaved | |
797 break; | |
798 case 12: | |
799 pTextColorID = 85; | |
800 pText = pGlobalTXT_LocalizationStrings[610];//Day of Protection | |
801 break; | |
802 case 13: | |
803 pTextColorID = 86; | |
804 pText = pGlobalTXT_LocalizationStrings[609];//Hour of Power | |
805 break; | |
806 case 14: | |
807 pTextColorID = 17; | |
808 pText = pGlobalTXT_LocalizationStrings[279];//Shield | |
809 break; | |
810 case 15: | |
811 pTextColorID = 38; | |
812 pText = pGlobalTXT_LocalizationStrings[442];//Stoneskin | |
813 break; | |
814 case 16: | |
815 pTextColorID = 46; | |
816 pText = pGlobalTXT_LocalizationStrings[443];//Bless | |
817 break; | |
818 case 17: | |
819 pTextColorID = 51; | |
820 pText = pGlobalTXT_LocalizationStrings[440];//Heroism | |
821 break; | |
822 case 18: | |
823 pTextColorID = 5; | |
824 pText = pGlobalTXT_LocalizationStrings[441];//Haste | |
825 break; | |
826 case 19: | |
827 pTextColorID = 95; | |
828 pText = pGlobalTXT_LocalizationStrings[229];//Pain Reflection | |
829 break; | |
830 case 20: | |
831 pTextColorID = 73; | |
832 pText = pGlobalTXT_LocalizationStrings[228];//Hammerhands | |
833 break; | |
834 default: | |
835 pText = ""; | |
836 break; | |
837 } | |
838 if ( pText != "" ) | |
839 { | |
840 window->DrawText(pFontSmallnum, 28, pTextHeight, GetSpellColor(pTextColorID), pText, 0, 0, 0); | |
841 pTextHeight = pTextHeight + *(char *)((int)pFontSmallnum + 5) - 3; | |
842 } | |
843 } | |
844 } | |
845 if ( pText == "" ) | |
2069 | 846 window->DrawText(pFontSmallnum, 28, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pGlobalTXT_LocalizationStrings[153], 0, 0, 0);//Íåò |
1705 | 847 } |
1298 | 848 |
1705 | 849 if ( normal_level ) |
1298 | 850 { |
1699 | 851 sprintf(pTmpBuf.data(), "%s\f%05u\t100%d\n", pGlobalTXT_LocalizationStrings[108], 0, pActors[uActorID].pMonsterInfo.uHP); |
2069 | 852 window->DrawText(pFontSmallnum, 150, (int)v106.uViewportY, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 853 pTextHeight = v106.uViewportY + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
854 sprintf(pTmpBuf.data(), "%s\f%05u\t100%d\n", pGlobalTXT_LocalizationStrings[12], 0, pActors[uActorID].pMonsterInfo.uAC);//Armor Class | |
1298 | 855 } |
856 else | |
857 { | |
1705 | 858 sprintf(pTmpBuf.data(), "%s\f%05u\t100%s\n", pGlobalTXT_LocalizationStrings[108], 0, pGlobalTXT_LocalizationStrings[630]);//? |
2069 | 859 window->DrawText(pFontSmallnum, 150, (int)v106.uViewportY, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 860 pTextHeight = v106.uViewportY + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
861 sprintf(pTmpBuf.data(), "%s\f%05u\t100%s\n", pGlobalTXT_LocalizationStrings[12], 0, (unsigned int)pGlobalTXT_LocalizationStrings[630]);//? | |
1298 | 862 } |
2069 | 863 window->DrawText(pFontSmallnum, 150, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 864 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 6 + LOBYTE(pFontSmallnum->uFontHeight); |
865 | |
866 content[0] = pGlobalTXT_LocalizationStrings[87]; | |
867 content[1] = pGlobalTXT_LocalizationStrings[6]; | |
868 content[2] = pGlobalTXT_LocalizationStrings[240]; | |
869 content[3] = pGlobalTXT_LocalizationStrings[70]; | |
870 content[4] = pGlobalTXT_LocalizationStrings[624]; | |
871 content[5] = pGlobalTXT_LocalizationStrings[138]; | |
872 content[6] = pGlobalTXT_LocalizationStrings[214]; | |
873 content[7] = pGlobalTXT_LocalizationStrings[142]; | |
874 content[8] = pGlobalTXT_LocalizationStrings[29]; | |
875 content[9] = pGlobalTXT_LocalizationStrings[133]; | |
876 content[10] = pGlobalTXT_LocalizationStrings[54]; | |
877 | |
878 if ( expert_level ) | |
1298 | 879 { |
1705 | 880 sprintf(pTmpBuf.data(), "%s\f%05u\t080%s\n", pGlobalTXT_LocalizationStrings[18], 0, content[pActors[uActorID].pMonsterInfo.uAttack1Type]);//Attack |
2069 | 881 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 882 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
883 if ( pActors[uActorID].pMonsterInfo.uAttack1DamageBonus ) | |
1298 | 884 sprintf(pTmpBuf.data(), "%s\f%05u\t080%dd%d+%d\n", pGlobalTXT_LocalizationStrings[53], |
1705 | 885 0, pActors[uActorID].pMonsterInfo.uAttack1DamageDiceRolls, pActors[uActorID].pMonsterInfo.uAttack1DamageDiceSides, pActors[uActorID].pMonsterInfo.uAttack1DamageBonus); |
1298 | 886 else |
887 sprintf(pTmpBuf.data(), "%s\f%05u\t080%dd%d\n", pGlobalTXT_LocalizationStrings[53], | |
1699 | 888 0, pActors[uActorID].pMonsterInfo.uAttack1DamageDiceRolls, pActors[uActorID].pMonsterInfo.uAttack1DamageDiceSides); |
1298 | 889 } |
890 else | |
891 { | |
892 sprintf(pTmpBuf.data(), "%s\f%05u\t080%s\n", pGlobalTXT_LocalizationStrings[18], 0, pGlobalTXT_LocalizationStrings[630]); | |
2069 | 893 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 894 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
1298 | 895 sprintf(pTmpBuf.data(), "%s\f%05u\t080%s\n", pGlobalTXT_LocalizationStrings[53], 0, pGlobalTXT_LocalizationStrings[630]); |
896 } | |
2069 | 897 window->DrawText(pFontSmallnum, 150, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 898 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 6 + LOBYTE(pFontSmallnum->uFontHeight); |
899 | |
900 if ( !master_level ) | |
1298 | 901 { |
1705 | 902 sprintf(pTmpBuf.data(), "%s\f%05u\t080%s\n", pGlobalTXT_LocalizationStrings[628], 0, pGlobalTXT_LocalizationStrings[630]);//"Spell" "?" |
2069 | 903 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 904 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
1298 | 905 } |
906 else | |
907 { | |
1705 | 908 pText = pGlobalTXT_LocalizationStrings[628];//Spell |
909 if ( pActors[uActorID].pMonsterInfo.uSpell1ID && pActors[uActorID].pMonsterInfo.uSpell2ID ) | |
910 pText = pGlobalTXT_LocalizationStrings[629];//Spells | |
911 if ( pActors[uActorID].pMonsterInfo.uSpell1ID ) | |
912 { | |
1718 | 913 sprintf(pTmpBuf.data(), "%s\f%05u\t070%s\n", pText, 0, pSpellStats->pInfos[pActors[uActorID].pMonsterInfo.uSpell1ID].pShortName);//"%s\f%05u\t060%s\n" |
2069 | 914 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 915 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
916 } | |
917 if ( pActors[uActorID].pMonsterInfo.uSpell2ID ) | |
918 { | |
1718 | 919 sprintf(pTmpBuf.data(), "\f%05u\t070%s\n", 0, pSpellStats->pInfos[pActors[uActorID].pMonsterInfo.uSpell2ID].pShortName);//"%s\f%05u\t060%s\n" |
2069 | 920 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 921 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
922 } | |
923 if ( !pActors[uActorID].pMonsterInfo.uSpell1ID && !pActors[uActorID].pMonsterInfo.uSpell2ID ) | |
924 { | |
1718 | 925 sprintf(pTmpBuf.data(), "%s\f%05u\t070%s\n", pGlobalTXT_LocalizationStrings[628], 0, pGlobalTXT_LocalizationStrings[153]);//"%s\f%05u\t060%s\n" |
2069 | 926 window->DrawText(pFontSmallnum, 150, (int)pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 927 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
928 } | |
1298 | 929 } |
1705 | 930 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
2069 | 931 window->DrawText(pFontSmallnum, 150, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pGlobalTXT_LocalizationStrings[626], 0, 0, 0);//Immune |
1705 | 932 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
933 | |
934 string_name[0] = pGlobalTXT_LocalizationStrings[87];//Fire | |
935 string_name[1] = pGlobalTXT_LocalizationStrings[6];//Air | |
936 string_name[2] = pGlobalTXT_LocalizationStrings[240]; | |
937 string_name[3] = pGlobalTXT_LocalizationStrings[70]; | |
938 string_name[4] = pGlobalTXT_LocalizationStrings[142]; | |
939 string_name[5] = pGlobalTXT_LocalizationStrings[214]; | |
940 string_name[6] = pGlobalTXT_LocalizationStrings[29]; | |
941 string_name[7] = pGlobalTXT_LocalizationStrings[133]; | |
942 string_name[8] = pGlobalTXT_LocalizationStrings[54]; | |
943 string_name[9] = pGlobalTXT_LocalizationStrings[624]; | |
944 | |
945 content[0] = (char *)pActors[uActorID].pMonsterInfo.uResFire; | |
946 content[1] = (char *)pActors[uActorID].pMonsterInfo.uResAir; | |
947 content[2] = (char *)pActors[uActorID].pMonsterInfo.uResWater; | |
948 content[3] = (char *)pActors[uActorID].pMonsterInfo.uResEarth; | |
949 content[4] = (char *)pActors[uActorID].pMonsterInfo.uResMind; | |
950 content[5] = (char *)pActors[uActorID].pMonsterInfo.uResSpirit; | |
951 content[6] = (char *)pActors[uActorID].pMonsterInfo.uResBody; | |
952 content[7] = (char *)pActors[uActorID].pMonsterInfo.uResLight; | |
953 content[8] = (char *)pActors[uActorID].pMonsterInfo.uResPhysical; | |
954 content[9] = (char *)pActors[uActorID].pMonsterInfo.uResDark; | |
955 | |
956 if ( grandmaster_level ) | |
1298 | 957 { |
1705 | 958 for ( uint i = 0; i < 10; i++ ) |
1298 | 959 { |
1705 | 960 if ( content[i] == (char *)200 ) |
1298 | 961 { |
1705 | 962 pText = pGlobalTXT_LocalizationStrings[625];//Immune |
1298 | 963 } |
964 else | |
965 { | |
1705 | 966 if ( content[i] ) |
967 pText = pGlobalTXT_LocalizationStrings[627];//Resistant | |
1298 | 968 else |
1705 | 969 pText = pGlobalTXT_LocalizationStrings[153];//None |
1298 | 970 } |
1705 | 971 sprintf(pTmpBuf.data(), "%s\f%05u\t070%s\n", string_name[i], 0, pText); |
2069 | 972 window->DrawText(pFontSmallnum, 170, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 973 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
1298 | 974 } |
975 } | |
976 else | |
977 { | |
1705 | 978 for ( uint i = 0; i < 10; ++i ) |
1298 | 979 { |
1705 | 980 sprintf(pTmpBuf.data(), "%s\f%05u\t070%s\n", string_name[i], 0, pGlobalTXT_LocalizationStrings[630]); // "?" |
2069 | 981 window->DrawText(pFontSmallnum, 170, pTextHeight, Color16(0xE1u, 255, 0x9Bu), pTmpBuf.data(), 0, 0, 0); |
1705 | 982 pTextHeight = pTextHeight + LOBYTE(pFontSmallnum->uFontHeight) - 3; |
1298 | 983 } |
984 } | |
1720 | 985 //cast spell: Detect life |
1298 | 986 if ( (signed __int64)pParty->pPartyBuffs[PARTY_BUFF_DETECT_LIFE].uExpireTime > 0 ) |
987 { | |
1705 | 988 sprintf(pTmpBuf.data(), "%s: %d", pGlobalTXT_LocalizationStrings[650], pActors[uActorID].sCurrentHP);//Current Hit Points |
1298 | 989 pFontSmallnum->GetLineWidth(pTmpBuf.data()); |
1699 | 990 window->DrawTitleText(pFontSmallnum, 0, window->uFrameHeight - LOBYTE(pFontSmallnum->uFontHeight) - 12, 0, pTmpBuf.data(), 3); |
1298 | 991 } |
992 } | |
993 | |
994 //----- (00417BB5) -------------------------------------------------------- | |
995 const char *CharacterUI_GetSkillDescText(unsigned int uPlayerID, PLAYER_SKILL_TYPE uPlayerSkillType) | |
996 { | |
1720 | 997 char a2[1200]; // [sp+Ch] [bp-538h]@7 |
998 char Source[120]; // [sp+4BCh] [bp-88h]@7 | |
999 int v35; // [sp+53Ch] [bp-8h]@1 | |
1000 | |
1001 v35 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[431]);// Normal | |
1002 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[433]) > (signed int)v35 ) | |
1003 v35 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[433]);// Expert | |
1004 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[432]) > (signed int)v35 ) | |
1005 v35 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[432]);// Master | |
1006 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[96]) > (signed int)v35 ) | |
1007 v35 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[96]);// Grand | |
1298 | 1008 |
1720 | 1009 a2[0] = 0; |
1010 Source[0] = 0; | |
1011 strcpy(a2, "%s\n\n"); | |
1012 sprintf(Source, "\f%05d", GetSkillColor(pParty->pPlayers[uPlayerID].classType, uPlayerSkillType, 1)); | |
1013 strcat(a2, Source); | |
1014 strcat(a2, "%s\t%03d:\t%03d%s\t000\n"); | |
1015 sprintf(Source, "\f%05d", GetSkillColor(pParty->pPlayers[uPlayerID].classType, uPlayerSkillType, 2)); | |
1016 strcat(a2, Source); | |
1017 strcat(a2, "%s\t%03d:\t%03d%s\t000\n"); | |
1018 sprintf(Source, "\f%05d", GetSkillColor(pParty->pPlayers[uPlayerID].classType, uPlayerSkillType, 3)); | |
1019 strcat(a2, Source); | |
1020 strcat(a2, "%s\t%03d:\t%03d%s\t000\n"); | |
1021 sprintf(Source, "\f%05d", GetSkillColor(pParty->pPlayers[uPlayerID].classType, uPlayerSkillType, 4)); | |
1022 strcat(a2, Source); | |
1023 strcat(a2, "%s\t%03d:\t%03d%s\t000\n"); | |
1024 if ( (pParty->pPlayers[uPlayerID].pActiveSkills[uPlayerSkillType] & 0x3F) == (pParty->pPlayers[uPlayerID].GetActualSkillLevel(uPlayerSkillType) & 0x3F) ) | |
1025 { | |
1026 sprintf(static_sub_417BB5_out_string, a2, pSkillDesc[uPlayerSkillType], | |
1027 pGlobalTXT_LocalizationStrings[431], v35 + 3, v35 + 5, pNormalSkillDesc[uPlayerSkillType], // Normal | |
1028 pGlobalTXT_LocalizationStrings[433], v35 + 3, v35 + 5, pExpertSkillDesc[uPlayerSkillType], // Expert | |
1029 pGlobalTXT_LocalizationStrings[432], v35 + 3, v35 + 5, pMasterSkillDesc[uPlayerSkillType], // Master | |
1030 pGlobalTXT_LocalizationStrings[96], v35 + 3, v35 + 5, pGrandSkillDesc[uPlayerSkillType]); // Grand | |
1031 } | |
1032 else | |
1033 { | |
2069 | 1034 sprintf(Source, "\f%05d", Color16(0xFFu, 0xFFu, 0xFFu)); |
1720 | 1035 strcat(a2, Source); |
1036 strcat(a2, "%s: +%d"); | |
1037 sprintf(static_sub_417BB5_out_string, a2, pSkillDesc[uPlayerSkillType], | |
1038 pGlobalTXT_LocalizationStrings[431], v35 + 3, v35 + 5, pNormalSkillDesc[uPlayerSkillType], | |
1039 pGlobalTXT_LocalizationStrings[433], v35 + 3, v35 + 5, pExpertSkillDesc[uPlayerSkillType], | |
1040 pGlobalTXT_LocalizationStrings[432], v35 + 3, v35 + 5, pMasterSkillDesc[uPlayerSkillType], | |
1041 pGlobalTXT_LocalizationStrings[96], v35 + 3, v35 + 5, pGrandSkillDesc[uPlayerSkillType], | |
1042 pGlobalTXT_LocalizationStrings[623], //Bonus | |
1043 (pParty->pPlayers[uPlayerID].GetActualSkillLevel(uPlayerSkillType) & 0x3F) - (pParty->pPlayers[uPlayerID].pActiveSkills[uPlayerSkillType] & 0x3F)); | |
1044 } | |
1045 return static_sub_417BB5_out_string; | |
1046 } | |
1298 | 1047 |
1048 //----- (00417FE5) -------------------------------------------------------- | |
1720 | 1049 void CharacterUI_SkillsTab_ShowHint() |
1050 { | |
1051 GUIButton *pButton; // esi@6 | |
1052 unsigned int pX; // [sp+4h] [bp-8h]@1 | |
1053 unsigned int pY; // [sp+8h] [bp-4h]@1 | |
1298 | 1054 |
1720 | 1055 pMouse->GetClickPos(&pX, &pY); |
1056 if ( (signed int)pX < 24 || (signed int)pX > 455 || (signed int)pY < 18 || (signed int)pY > 36 ) | |
1057 { | |
1058 for ( pButton = pGUIWindow_CurrentMenu->pControlsHead; pButton; pButton = pButton->pNext ) | |
1059 { | |
1060 if ( pButton->msg == UIMSG_SkillUp | |
1061 && (signed int)pX >= (signed int)pButton->uX | |
1062 && (signed int)pX <= (signed int)pButton->uZ | |
1063 && (signed int)pY >= (signed int)pButton->uY | |
1064 && (signed int)pY <= (signed int)pButton->uW ) | |
1065 { | |
1066 CharacterUI_DrawTooltip(pSkillNames[pButton->msg_param], CharacterUI_GetSkillDescText(uActiveCharacter - 1, (PLAYER_SKILL_TYPE)pButton->msg_param)); | |
1067 } | |
1298 | 1068 } |
1720 | 1069 } |
1070 else | |
1071 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[207], pSkillPointsAttributeDescription);//Î÷êè íàâûêîâ | |
1072 } | |
1298 | 1073 |
1074 //----- (00418083) -------------------------------------------------------- | |
1458 | 1075 void CharacterUI_StatsTab_ShowHint() |
1393 | 1076 { |
1298 | 1077 int pStringNum; // edi@1 |
1078 signed int pTextColor; // eax@15 | |
1838 | 1079 const char *pHourWord; // ecx@17 |
1080 const char *pDayWord; // eax@20 | |
1298 | 1081 int v15; // ebx@28 |
1082 POINT a2; // [sp+Ch] [bp-24h]@1 | |
1083 int pHour; // [sp+14h] [bp-1Ch]@15 | |
1084 unsigned int pDay; // [sp+24h] [bp-Ch]@15 | |
1085 | |
1393 | 1086 pMouse->GetCursorPos(&a2); |
1087 for ( pStringNum = 0; pStringNum < stat_string_coord.size(); ++pStringNum ) | |
1298 | 1088 { |
1393 | 1089 if (a2.x >= stat_string_coord[pStringNum].x && a2.x <= stat_string_coord[pStringNum].x + stat_string_coord[pStringNum].width ) |
1298 | 1090 { |
1393 | 1091 if (a2.y >= stat_string_coord[pStringNum].y && a2.y <= stat_string_coord[pStringNum].y + stat_string_coord[pStringNum].height ) |
1298 | 1092 break; |
1093 } | |
1094 } | |
1393 | 1095 |
1298 | 1096 switch ( pStringNum ) |
1097 { | |
1098 case 0:// Attributes | |
1099 case 1: | |
1100 case 2: | |
1101 case 3: | |
1102 case 4: | |
1103 case 5: | |
1104 case 6: | |
1105 if ( aAttributeNames[pStringNum] && pAttributeDescriptions[pStringNum] ) | |
1393 | 1106 CharacterUI_DrawTooltip(aAttributeNames[pStringNum], pAttributeDescriptions[pStringNum]); |
1298 | 1107 break; |
1108 case 7:// Health Points | |
1109 if ( pGlobalTXT_LocalizationStrings[108] && pHealthPointsAttributeDescription ) | |
1393 | 1110 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[108], pHealthPointsAttributeDescription); |
1298 | 1111 break; |
1112 case 8:// Spell Points | |
1113 if ( pGlobalTXT_LocalizationStrings[212] && pSpellPointsAttributeDescription ) | |
1393 | 1114 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[212], pSpellPointsAttributeDescription); |
1298 | 1115 break; |
1116 case 9:// Armor Class | |
1117 if ( pGlobalTXT_LocalizationStrings[12] && pArmourClassAttributeDescription ) | |
1393 | 1118 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[12], pArmourClassAttributeDescription); |
1298 | 1119 break; |
1120 case 10:// Player Condition | |
1121 strcpy(pTmpBuf2.data(), pPlayerConditionAttributeDescription); | |
1122 strcat(pTmpBuf2.data(), "\n"); | |
1123 extern std::array<unsigned int, 18> pConditionImportancyTable; | |
1124 for ( uint i = 0; i < 18; ++i ) | |
1125 { | |
1126 if ( pPlayers[uActiveCharacter]->pConditions[pConditionImportancyTable[i]] ) | |
1127 { | |
1128 strcat(pTmpBuf2.data(), " \n"); | |
1129 pHour = pParty->uTimePlayed - pPlayers[uActiveCharacter]->pConditions[pConditionImportancyTable[i]]; | |
1130 pHour = (unsigned int)((pHour * 0.234375) / 60 / 60); | |
1131 pDay = (unsigned int)pHour / 24; | |
1132 pHour %= 24i64; | |
1133 pTextColor = GetConditionDrawColor(pConditionImportancyTable[i]); | |
1134 sprintfex(pTmpBuf.data(), format_4E2DE8, pTextColor, aCharacterConditionNames[pConditionImportancyTable[i]]); | |
1135 strcat(pTmpBuf2.data(), pTmpBuf.data()); | |
1136 if ( pHour && pHour <= 1 ) | |
1137 pHourWord = pGlobalTXT_LocalizationStrings[109]; | |
1138 else | |
1139 pHourWord = pGlobalTXT_LocalizationStrings[110]; | |
1140 if ( !pDay || (pDayWord = pGlobalTXT_LocalizationStrings[56], pDay > 1) ) | |
1141 pDayWord = pGlobalTXT_LocalizationStrings[57]; | |
1142 sprintfex(pTmpBuf.data(), "%lu %s, %lu %s", pDay, pDayWord, pHour, pHourWord); | |
1143 strcat(pTmpBuf2.data(), pTmpBuf.data()); | |
1144 } | |
1145 } | |
1146 if ( pGlobalTXT_LocalizationStrings[47] && pTmpBuf2.data() ) | |
1393 | 1147 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[47], pTmpBuf2.data()); |
1298 | 1148 break; |
1149 case 11:// Fast Spell | |
1150 if ( pGlobalTXT_LocalizationStrings[172] && pFastSpellAttributeDescription ) | |
1393 | 1151 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[172], pFastSpellAttributeDescription); |
1298 | 1152 break; |
1153 case 12:// Player Age | |
1154 if ( pGlobalTXT_LocalizationStrings[5] && pPlayerAgeAttributeDescription ) | |
1393 | 1155 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[5], pPlayerAgeAttributeDescription); |
1298 | 1156 break; |
1157 case 13:// Player Level | |
1158 if ( pGlobalTXT_LocalizationStrings[131] && pPlayerLevelAttributeDescription ) | |
1393 | 1159 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[131], pPlayerLevelAttributeDescription); |
1298 | 1160 break; |
1161 case 14://Experience | |
1162 v15 = pPlayers[uActiveCharacter]->uLevel; | |
1163 do | |
1164 { | |
1459 | 1165 if ( (signed __int64)pPlayers[uActiveCharacter]->uExperience < (unsigned int)GetExperienceRequiredForLevel(v15) ) |
1298 | 1166 break; |
1167 ++v15; | |
1168 } | |
1169 while ( v15 <= 10000 ); | |
1170 pTmpBuf[0] = 0; | |
1171 pTmpBuf2[0] = 0; | |
1172 if ( v15 > pPlayers[uActiveCharacter]->uLevel ) | |
1173 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[147], v15); | |
1720 | 1174 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[538], GetExperienceRequiredForLevel(v15) - LODWORD(pPlayers[uActiveCharacter]->uExperience), v15 + 1); |
1298 | 1175 strcat(pTmpBuf.data(), "\n"); |
1176 strcat(pTmpBuf.data(), pTmpBuf2.data()); | |
1177 sprintf(pTmpBuf2.data(), "%s\n \n%s", pPlayerExperienceAttributeDescription, pTmpBuf.data()); | |
1178 if ( pGlobalTXT_LocalizationStrings[83] && pTmpBuf2.data() ) | |
1393 | 1179 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[83], pTmpBuf2.data()); |
1298 | 1180 break; |
1181 case 15:// Attack Bonus | |
1182 if ( pGlobalTXT_LocalizationStrings[587] && pAttackBonusAttributeDescription ) | |
1393 | 1183 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[587], pAttackBonusAttributeDescription); |
1298 | 1184 break; |
1185 case 16:// Attack Damage | |
1186 if ( pGlobalTXT_LocalizationStrings[588] && pAttackDamageAttributeDescription ) | |
1393 | 1187 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[588], pAttackDamageAttributeDescription); |
1298 | 1188 break; |
1189 case 17:// Missle Bonus | |
1190 if ( pGlobalTXT_LocalizationStrings[589] && pMissleBonusAttributeDescription ) | |
1393 | 1191 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[589], pMissleBonusAttributeDescription); |
1298 | 1192 break; |
1193 case 18:// Missle Damage | |
1194 if ( pGlobalTXT_LocalizationStrings[590] && pMissleDamageAttributeDescription ) | |
1393 | 1195 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[590], pMissleDamageAttributeDescription); |
1298 | 1196 break; |
1197 case 19:// Fire Resistance | |
1198 if ( pGlobalTXT_LocalizationStrings[87] && pFireResistanceAttributeDescription ) | |
1393 | 1199 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[87], pFireResistanceAttributeDescription); |
1298 | 1200 break; |
1201 case 20:// Air Resistance | |
1202 if ( pGlobalTXT_LocalizationStrings[6] && pAirResistanceAttributeDescription ) | |
1393 | 1203 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[6], pAirResistanceAttributeDescription); |
1298 | 1204 break; |
1205 case 21:// Water Resistance | |
1206 if ( pGlobalTXT_LocalizationStrings[240] && pWaterResistanceAttributeDescription ) | |
1393 | 1207 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[240], pWaterResistanceAttributeDescription); |
1298 | 1208 break; |
1209 case 22:// Earth Resistance | |
1210 if ( pGlobalTXT_LocalizationStrings[70] && pEarthResistanceAttributeDescription ) | |
1393 | 1211 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[70], pEarthResistanceAttributeDescription); |
1298 | 1212 break; |
1213 case 23:// Mind Resistance | |
1214 if ( pGlobalTXT_LocalizationStrings[142] && pMindResistanceAttributeDescription ) | |
1393 | 1215 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[142], pMindResistanceAttributeDescription); |
1298 | 1216 break; |
1217 case 24:// Body Resistance | |
1218 if ( pGlobalTXT_LocalizationStrings[29] && pBodyResistanceAttributeDescription ) | |
1393 | 1219 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[29], pBodyResistanceAttributeDescription); |
1298 | 1220 break; |
1221 case 25: // Skill Points | |
1222 if ( pGlobalTXT_LocalizationStrings[207] && pSkillPointsAttributeDescription ) | |
1393 | 1223 CharacterUI_DrawTooltip(pGlobalTXT_LocalizationStrings[207], pSkillPointsAttributeDescription); |
1298 | 1224 break; |
1393 | 1225 case 26: // Class description |
1226 { | |
1678 | 1227 if (pClassDescriptions[pPlayers[uActiveCharacter]->classType] && pClassNames[pPlayers[uActiveCharacter]->classType]) |
1228 CharacterUI_DrawTooltip(pClassNames[pPlayers[uActiveCharacter]->classType], pClassDescriptions[pPlayers[uActiveCharacter]->classType]); | |
1393 | 1229 } |
1230 break; | |
1231 | |
1298 | 1232 default: |
1233 break; | |
1234 } | |
1235 } | |
1236 | |
1720 | 1237 //----- (00410B28) -------------------------------------------------------- |
1238 void DrawSpellDescriptionPopup(int spell_index) | |
1239 { | |
1240 SpellInfo *spell; // esi@1 | |
1241 unsigned int v3; // eax@2 | |
1242 LONG v5; // ecx@4 | |
1243 GUIWindow spell_info_window; // [sp+Ch] [bp-68h]@4 | |
1244 POINT mouse; // [sp+64h] [bp-10h]@1 | |
1298 | 1245 |
1720 | 1246 spell = &pSpellStats->pInfos[spell_index + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage + 1]; |
1247 if ( pMouse->GetCursorPos(&mouse)->y <= 250 ) | |
1248 v3 = pMouse->GetCursorPos(&mouse)->y + 30; | |
1249 else | |
1250 v3 = 30; | |
1251 spell_info_window.uFrameY = v3; | |
1252 spell_info_window.uFrameWidth = 328; | |
1253 spell_info_window.uFrameHeight = 68; | |
1254 spell_info_window.uFrameX = 90; | |
1255 spell_info_window.uFrameZ = 417; | |
1256 spell_info_window.uFrameW = v3 + 67; | |
1257 spell_info_window.Hint = 0; | |
1258 v5 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_NORMAL]); | |
1259 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_MASTER]) > v5 ) | |
1260 v5 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_MASTER]); | |
1261 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_EXPERT]) > v5 ) | |
1262 v5 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_EXPERT]); | |
1263 if ( pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_GRAND]) > v5 ) | |
1264 v5 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[LOCSTR_GRAND]); | |
1265 sprintf(pTmpBuf2.data(), | |
1298 | 1266 "%s\n\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s", |
1720 | 1267 spell->pDescription, |
1268 pGlobalTXT_LocalizationStrings[LOCSTR_NORMAL], v5 + 3, v5 + 10, spell->pBasicSkillDesc, | |
1269 pGlobalTXT_LocalizationStrings[LOCSTR_EXPERT], v5 + 3, v5 + 10, spell->pExpertSkillDesc, | |
1270 pGlobalTXT_LocalizationStrings[LOCSTR_MASTER], v5 + 3, v5 + 10, spell->pMasterSkillDesc, | |
1271 pGlobalTXT_LocalizationStrings[LOCSTR_GRAND], v5 + 3, v5 + 10, spell->pGrandmasterSkillDesc); | |
1272 spell_info_window.uFrameHeight += pFontSmallnum->CalcTextHeight(pTmpBuf2.data(), &spell_info_window, 0, 0); | |
1273 if ( (signed int)spell_info_window.uFrameHeight < 150 ) | |
1274 spell_info_window.uFrameHeight = 150; | |
1275 spell_info_window.uFrameWidth = game_viewport_width; | |
1276 spell_info_window.DrawMessageBox(0); | |
1277 spell_info_window.uFrameWidth -= 12; | |
1278 spell_info_window.uFrameHeight -= 12; | |
1279 spell_info_window.uFrameZ = spell_info_window.uFrameX + spell_info_window.uFrameWidth - 1; | |
1280 spell_info_window.uFrameW = spell_info_window.uFrameHeight + spell_info_window.uFrameY - 1; | |
2069 | 1281 spell_info_window.DrawTitleText(pFontArrus, 0x78u, 0xCu, Color16(0xFFu, 0xFFu, 0x9Bu), spell->pName, 3); |
1720 | 1282 spell_info_window.DrawText(pFontSmallnum, 120, 44, 0, pTmpBuf2.data(), 0, 0, 0); |
1283 spell_info_window.uFrameWidth = 108; | |
1284 spell_info_window.uFrameZ = spell_info_window.uFrameX + 107; | |
1285 spell_info_window.DrawTitleText(pFontComic, 0xCu, 0x4Bu, 0, pSkillNames[pPlayers[uActiveCharacter]->lastOpenedSpellbookPage + 12], 3); | |
1286 sprintf( pTmpBuf.data(), "%s\n%d", pGlobalTXT_LocalizationStrings[LOCSTR_SP_COST], | |
1287 pSpellDatas[spell_index + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage + 1].mana_per_skill[pPlayers[uActiveCharacter]->pActiveSkills[pPlayers[uActiveCharacter]->lastOpenedSpellbookPage + PLAYER_SKILL_FIRE]]); | |
1288 spell_info_window.DrawTitleText(pFontComic, 0xCu, spell_info_window.uFrameHeight - LOBYTE(pFontComic->uFontHeight) - 16, 0, pTmpBuf.data(), 3); | |
1289 dword_507B00_spell_info_to_draw_in_popup = 0; | |
1290 } | |
1298 | 1291 // 507B00: using guessed type int dword_507B00_spell_info_to_draw_in_popup; |
1292 | |
1293 //----- (00416D62) -------------------------------------------------------- | |
1802 | 1294 void UI_OnMouseRightClick(Vec2_int_ *_this) |
1298 | 1295 { |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1296 int v5; // esi@62 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1297 GUIButton *pButton; // esi@84 |
1838 | 1298 const char *pStr; // edi@85 |
1843
2e6d3cd052e0
some char* cast removal + adding const_casts where appropriate
Grumpy7
parents:
1842
diff
changeset
|
1299 const char *pHint; // edx@113 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1300 GUIWindow popup_window; // [sp+4h] [bp-74h]@32 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1301 struct tagPOINT Point; // [sp+60h] [bp-18h]@6 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1302 unsigned int pX; // [sp+70h] [bp-8h]@3 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1303 unsigned int pY; // [sp+74h] [bp-4h]@3 |
1298 | 1304 |
2098 | 1305 if ( pCurrentScreen == SCREEN_VIDEO || GetCurrentMenuID() == MENU_MAIN ) |
1720 | 1306 return; |
1307 if ( _this ) | |
1308 { | |
1309 pX = _this->x; | |
1310 pY = _this->y; | |
1311 } | |
1312 else | |
1313 { | |
1314 pMouse->GetClickPos(&pX, &pY); | |
1315 } | |
1316 if ( pRenderer->bWindowMode ) | |
1317 { | |
1318 GetCursorPos(&Point); | |
1802 | 1319 ScreenToClient(window->GetApiHandle(), &Point); |
1720 | 1320 if ( Point.x < 1 || Point.y < 1 || Point.x > 638 || Point.y > 478 ) |
1321 { | |
1322 back_to_game(); | |
1323 return; | |
1324 } | |
1325 } | |
1326 if ( pParty->pPickedItem.uItemID )//íàæàòèå íà ïîðòðåò ïåðñà ïðàâîé êíîïêîé ìûøè ñ ðàñòâîðîì | |
1327 { | |
1328 for ( uint i = 0; i < 4; ++i ) | |
1329 { | |
1330 if ( (signed int)pX > RightClickPortraitXmin[i] && (signed int)pX < RightClickPortraitXmax[i] | |
1331 && (signed int)pY > 375 && (signed int)pY < 466 ) | |
1332 { | |
1333 pPlayers[uActiveCharacter]->UseItem_DrinkPotion_etc(i + 1, 1); | |
1334 return; | |
1335 } | |
1336 } | |
1337 } | |
1298 | 1338 |
1720 | 1339 pEventTimer->Pause(); |
1340 switch(pCurrentScreen) | |
1341 { | |
1342 case SCREEN_CASTING: | |
1343 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1344 Inventory_ItemPopupAndAlchemy(); |
1720 | 1345 break; |
1346 } | |
1347 case SCREEN_CHEST: | |
1348 { | |
1349 if ( !pPlayers[uActiveCharacter]->CanAct() ) | |
1350 { | |
1351 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[427], pPlayers[uActiveCharacter]->pName, pGlobalTXT_LocalizationStrings[541]);//%s íå â ñîñòîÿíèè %s Îïîçíàòü ïðåäìåòû | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1352 popup_window.Hint = pTmpBuf.data(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1353 popup_window.uFrameWidth = 384; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1354 popup_window.uFrameHeight = 180; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1355 popup_window.uFrameY = 40; |
1720 | 1356 if ( (signed int)pX <= 320 ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1357 popup_window.uFrameX = pX + 30; |
1720 | 1358 else |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1359 popup_window.uFrameX = pX - 414; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1360 popup_window.DrawMessageBox(0); |
1720 | 1361 } |
1362 else | |
1363 { | |
1364 if ( pRenderer->pActiveZBuffer[pX + pSRZBufferLineOffsets[pY]] & 0xFFFF ) | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1365 GameUI_DrawItemInfo(&pChests[pChestWindow->par1C].igChestItems[pChests[pChestWindow->par1C].pInventoryIndices[(pRenderer->pActiveZBuffer[pX + pSRZBufferLineOffsets[pY]] & 0xFFFF) - 1] - 1]); |
1720 | 1366 } |
1367 break; | |
1368 } | |
1730 | 1369 case SCREEN_GAME://In the main menu displays a pop-up window(Â ãëàâíîì ìåíþ ïîêàçûâàåò âñïëûâàþùåå îêíî) |
1720 | 1370 { |
1371 if (GetCurrentMenuID() > 0) | |
1372 break; | |
1373 if ( (signed int)pY > (signed int)pViewport->uViewportBR_Y ) | |
1374 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1375 popup_window.ptr_1C = (void *)((signed int)pX / 118); |
1720 | 1376 if ( (signed int)pX / 118 < 4 )//portaits zone |
1377 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1378 popup_window.Hint = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1379 popup_window.uFrameWidth = 400; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1380 popup_window.uFrameHeight = 200; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1381 popup_window.uFrameX = 38; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1382 popup_window.uFrameY = 60; |
1720 | 1383 pAudioPlayer->StopChannels(-1, -1); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1384 GameUI_CharacterQuickRecord_Draw(&popup_window, pPlayers[(int)popup_window.ptr_1C + 1]); |
1720 | 1385 } |
1386 } | |
1387 else if ( (signed int)pX > (signed int)pViewport->uViewportBR_X ) | |
1388 { | |
1389 if ( (signed int)pY >= 130 ) | |
1390 { | |
1391 if ( (signed int)pX >= 476 && (signed int)pX <= 636 && (signed int)pY >= 240 && (signed int)pY <= 300 )//buff_tooltip zone | |
1392 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1393 popup_window.Hint = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1394 popup_window.uFrameWidth = 400; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1395 popup_window.uFrameHeight = 200; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1396 popup_window.uFrameX = 38; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1397 popup_window.uFrameY = 60; |
1720 | 1398 pAudioPlayer->StopChannels(-1, -1); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1399 popup_window._41D73D_draw_buff_tooltip(); |
1720 | 1400 } |
1401 else if ( (signed int)pX < 485 || (signed int)pX > 548 || (signed int)pY < 156 || (signed int)pY > 229 )//NPC zone | |
1402 { | |
1403 if (!( (signed int)pX < 566 || (signed int)pX > 629 || (signed int)pY < 156 || (signed int)pY > 229 )) | |
1404 { | |
1405 pAudioPlayer->StopChannels(-1, -1); | |
1406 GameUI_DrawNPCPopup((void *)1);//NPC 2 | |
1298 | 1407 } |
1720 | 1408 } |
1409 else | |
1410 { | |
1298 | 1411 pAudioPlayer->StopChannels(-1, -1); |
1720 | 1412 GameUI_DrawNPCPopup(0);//NPC 1 |
1413 } | |
1414 } | |
1415 else//minimap zone | |
1416 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1417 popup_window.Hint = (char *)GameUI_GetMinimapHintText(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1418 popup_window.uFrameWidth = 256; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1419 popup_window.uFrameX = 130; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1420 popup_window.uFrameY = 140; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1421 popup_window.uFrameHeight = 64; |
1720 | 1422 pAudioPlayer->StopChannels(-1, -1); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1423 popup_window.DrawMessageBox(0); |
1720 | 1424 } |
1425 } | |
1426 else//game zone | |
1427 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1428 popup_window.Hint = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1429 popup_window.uFrameWidth = 320; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1430 popup_window.uFrameHeight = 320; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1431 popup_window.uFrameX = pX - 350; |
1720 | 1432 if ( (signed int)pX <= 320 ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1433 popup_window.uFrameX = pX + 30; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1434 popup_window.uFrameY = 40; |
1720 | 1435 if ( pRenderer->pRenderD3D ) |
1436 LOWORD(v5) = pGame->pVisInstance->get_picked_object_zbuf_val(); | |
1437 else | |
1438 v5 = pRenderer->pActiveZBuffer[pX + pSRZBufferLineOffsets[pY]]; | |
1439 if (PID_TYPE((unsigned __int16)v5) == OBJECT_Actor) | |
1440 { | |
1441 if ( pRenderer->uNumSceneBegins ) | |
1442 { | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1443 popup_window.DrawMessageBox(1); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1444 MonsterPopup_Draw(PID_ID((unsigned __int16)v5), &popup_window); |
1720 | 1445 } |
1446 else | |
1447 { | |
1448 pRenderer->BeginScene(); | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1449 popup_window.DrawMessageBox(1); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1450 MonsterPopup_Draw(PID_ID((unsigned __int16)v5), &popup_window); |
1720 | 1451 pRenderer->EndScene(); |
1452 } | |
1453 } | |
1454 if (PID_TYPE((unsigned __int16)v5) == OBJECT_Item) | |
1455 { | |
1456 if ( !(pObjectList->pObjects[pSpriteObjects[PID_ID((unsigned __int16)v5)].uObjectDescID].uFlags & 0x10 ) ) | |
1457 { | |
1458 GameUI_DrawItemInfo(&pSpriteObjects[PID_ID((unsigned __int16)v5)].stru_24); | |
1459 } | |
1460 } | |
1461 } | |
1462 break; | |
1463 } | |
1464 case SCREEN_BOOKS: | |
1465 { | |
1466 if ( !dword_506364 | |
1467 || (signed int)pX < (signed int)pViewport->uViewportTL_X || (signed int)pX > (signed int)pViewport->uViewportBR_X | |
1468 || (signed int)pY < (signed int)pViewport->uViewportTL_Y || (signed int)pY > (signed int)pViewport->uViewportBR_Y | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1469 || ((popup_window.Hint = (char *)GetMapBookHintText()) == 0) ) |
1720 | 1470 break; |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1471 popup_window.uFrameWidth = (pFontArrus->GetLineWidth(popup_window.Hint) + 32) + 0.5f; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1472 popup_window.uFrameX = pX + 5; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1473 popup_window.uFrameY = pY + 5; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1474 popup_window.uFrameHeight = 64; |
1720 | 1475 pAudioPlayer->StopChannels(-1, -1); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1476 popup_window.DrawMessageBox(0); |
1720 | 1477 break; |
1478 } | |
1479 case SCREEN_CHARACTERS: | |
1723 | 1480 case SCREEN_E: |
1481 case SCREEN_CHEST_INVENTORY: | |
1482 { | |
1483 if ( (signed int)pX > 467 && pCurrentScreen != SCREEN_E ) | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1484 Inventory_ItemPopupAndAlchemy(); |
1723 | 1485 else if ( (signed int)pY >= 345 ) |
1486 break; | |
1487 else if ( pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] == 100 )//2DEvent - CharacerScreenStats | |
1488 CharacterUI_StatsTab_ShowHint(); | |
1489 else if ( pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] == 101 )//2DEvent - CharacerScreenSkills | |
1490 CharacterUI_SkillsTab_ShowHint(); | |
1725 | 1491 else if ( pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] == 103 )//2DEvent - CharacerScreenInventory |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1492 Inventory_ItemPopupAndAlchemy(); |
1723 | 1493 break; |
1494 } | |
1495 case SCREEN_SPELL_BOOK: | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1496 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1497 if ( dword_507B00_spell_info_to_draw_in_popup ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1498 DrawSpellDescriptionPopup(dword_507B00_spell_info_to_draw_in_popup - 1); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1499 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1500 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1501 case SCREEN_HOUSE: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1502 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1503 if ( (signed int)pY < 345 && (signed int)pX < 469 ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1504 ShowPopupShopItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1505 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1506 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1507 case SCREEN_PARTY_CREATION: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1508 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1509 popup_window.Hint = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1510 pStr = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1511 for ( pButton = pGUIWindow_CurrentMenu->pControlsHead; pButton; pButton = pButton->pNext) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1512 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1513 if ( pButton->uButtonType == 1 && pButton->uButtonType != 3 && (signed int)pX > (signed int)pButton->uX && (signed int)pX < (signed int)pButton->uZ |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1514 && (signed int)pY > (signed int)pButton->uY && (signed int)pY < (signed int)pButton->uW ) |
1298 | 1515 { |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1516 switch ( pButton->msg ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1517 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1518 case UIMSG_0: //stats info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1519 popup_window.Hint = pAttributeDescriptions[(signed int)pButton->msg_param % 7]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1520 pStr = aAttributeNames[(signed int)pButton->msg_param % 7]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1521 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1522 case UIMSG_PlayerCreationClickPlus: //Plus button info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1523 pStr = pGlobalTXT_LocalizationStrings[670];//Äîáàâèòü |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1524 popup_window.Hint = pGlobalTXT_LocalizationStrings[671];//"Äîáàâëÿåò î÷êî ê âûäåëåííîìó íàâûêó, çàáèðàÿ åãî èç íàêîïèòåëÿ î÷êîâ" |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1525 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1526 case UIMSG_PlayerCreationClickMinus: //Minus button info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1527 pStr = pGlobalTXT_LocalizationStrings[668];//Âû÷åñòü |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1528 popup_window.Hint = pGlobalTXT_LocalizationStrings[669];//"Âû÷èòàåò î÷êî èç âûäåëåííîãî íàâûêà, âîçâðàùàÿ åãî â íàêîïèòåëü î÷êîâ" |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1529 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1530 case UIMSG_PlayerCreationSelectActiveSkill: //Available skill button info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1531 pStr = pSkillNames[pParty->pPlayers[uPlayerCreationUI_SelectedCharacter].GetSkillIdxByOrder(pButton->msg_param + 4)]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1532 popup_window.Hint = pSkillDesc[pParty->pPlayers[uPlayerCreationUI_SelectedCharacter].GetSkillIdxByOrder(pButton->msg_param + 4)]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1533 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1534 case UIMSG_PlayerCreationSelectClass: //Available Class Info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1535 popup_window.Hint = pClassDescriptions[pButton->msg_param]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1536 pStr = pClassNames[pButton->msg_param]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1537 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1538 case UIMSG_PlayerCreationClickOK: //OK Info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1539 popup_window.Hint = pGlobalTXT_LocalizationStrings[664];//Ùåëêíèòå çäåñü äëÿ óòâåðæäåíèÿ ñîñòàâà îòðÿäà è ïðîäîëæåíèÿ èãðû. |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1540 pStr = pGlobalTXT_LocalizationStrings[665];//Êíîïêà ÎÊ |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1541 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1542 case UIMSG_PlayerCreationClickReset: //Clear info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1543 popup_window.Hint = pGlobalTXT_LocalizationStrings[666];//Ñáðàñûâàåò âñå ïàðàìåòðû è íàâûêè îòðÿäà. |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1544 pStr = pGlobalTXT_LocalizationStrings[667];//Êíîïêà Î÷èñòèòü |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1545 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1546 case UIMSG_PlayerCreation_SelectAttribute: // Character info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1547 pStr = pParty->pPlayers[pButton->msg_param].pName; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1548 popup_window.Hint = pClassDescriptions[pParty->pPlayers[pButton->msg_param].classType]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1549 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1550 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1551 if ( pButton->msg > UIMSG_44 && pButton->msg <= UIMSG_PlayerCreationRemoveDownSkill ) //Sellected skills info |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1552 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1553 pY = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1554 if ( (signed int)pParty->pPlayers[pButton->msg_param].GetSkillIdxByOrder(pButton->msg - UIMSG_48) < 37 ) |
1298 | 1555 { |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1556 strcpy(pTmpBuf2.data(), CharacterUI_GetSkillDescText(pButton->msg_param, (PLAYER_SKILL_TYPE)pParty->pPlayers[pButton->msg_param].GetSkillIdxByOrder(pButton->msg - UIMSG_48))); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1557 popup_window.Hint = pTmpBuf2.data(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1558 pStr = pSkillNames[pParty->pPlayers[pButton->msg_param].GetSkillIdxByOrder(pButton->msg - UIMSG_48)]; |
1298 | 1559 } |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1560 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1561 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1562 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1563 if ( popup_window.Hint ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1564 { |
1843
2e6d3cd052e0
some char* cast removal + adding const_casts where appropriate
Grumpy7
parents:
1842
diff
changeset
|
1565 pHint = popup_window.Hint; |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1566 popup_window.Hint = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1567 popup_window.uFrameWidth = 384; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1568 popup_window.uFrameHeight = 256; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1569 popup_window.uFrameX = 128; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1570 popup_window.uFrameY = 40; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1571 popup_window.uFrameHeight = pFontSmallnum->CalcTextHeight(pHint, &popup_window, 24, 0) + 2 * LOBYTE(pFontLucida->uFontHeight) + 24; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1572 popup_window.uFrameZ = popup_window.uFrameX + popup_window.uFrameWidth - 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1573 popup_window.uFrameW = popup_window.uFrameY + popup_window.uFrameHeight - 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1574 popup_window.DrawMessageBox(0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1575 popup_window.uFrameX += 12; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1576 popup_window.uFrameWidth -= 24; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1577 popup_window.uFrameY += 12; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1578 popup_window.uFrameHeight -= 12; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1579 popup_window.uFrameZ = popup_window.uFrameX + popup_window.uFrameWidth - 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1580 popup_window.uFrameW = popup_window.uFrameY + popup_window.uFrameHeight - 1; |
2069 | 1581 sprintf(pTmpBuf.data(), "\f%05d%s\f00000\n", Color16(0xFF, 0xFF, 0x9B), pStr); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1582 popup_window.DrawTitleText(pFontCreate, 0, 0, 0, pTmpBuf.data(), 3); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1583 popup_window.DrawText(pFontSmallnum, 1, pFontLucida->uFontHeight, 0, pHint, 0, 0, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1584 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1585 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1586 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1587 default: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1588 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1589 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1590 dword_507BF0_is_there_popup_onscreen = 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1591 viewparams->bRedrawGameUI = 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1592 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1593 int no_rightlick_in_inventory = false; // 0050CDCC |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1594 //----- (00416196) -------------------------------------------------------- |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1595 void Inventory_ItemPopupAndAlchemy() |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1596 { |
1733 | 1597 int potion1_id; // edx@25 |
1598 unsigned int potion2_id; // edi@25 | |
1599 signed int potionID; // edx@27 | |
1600 unsigned int pOut_y; // edx@57 | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1601 double v31; // st7@112 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1602 Vec3_int_ v39; // [sp-18h] [bp-A8h]@83 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1603 GUIWindow message_window; // [sp+Ch] [bp-84h]@137 |
1837 | 1604 POINT cursor; // [sp+78h] [bp-18h]@2 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1605 unsigned int damage_level; // [sp+8Ch] [bp-4h]@23 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1606 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1607 if (no_rightlick_in_inventory) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1608 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1609 |
1837 | 1610 pMouse->GetCursorPos(&cursor); |
1611 int item_pid = (pRenderer->pActiveZBuffer[cursor.x + pSRZBufferLineOffsets[cursor.y]] & 0xFFFF) - 1; | |
1944 | 1612 if (item_pid == -1) //added here to avoid crash |
1613 return; | |
1980 | 1614 ItemGen* item = &pPlayers[uActiveCharacter]->pInventoryItemList[item_pid]; |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1615 |
1837 | 1616 if (cursor.x <= 13 || cursor.x >= 462)//items out of inventory(âåùè âíå èíâåíòàðÿ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1617 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1618 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1619 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1620 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1621 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1622 if (!item_pid) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1623 { |
1837 | 1624 int inventory_mouse_x = cursor.x - 14; |
1625 int inventory_mouse_y = cursor.y - 17; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1626 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1627 int mouse_cell_x = inventory_mouse_x / 32; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1628 int mouse_cell_y = inventory_mouse_y / 32; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1629 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1630 if (mouse_cell_x + mouse_cell_y < 0) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1631 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1632 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1633 int inventory_idx = mouse_cell_x + 14 * mouse_cell_y; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1634 if (inventory_idx > 126) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1635 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1636 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1637 if (pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex(&inventory_idx) == 0) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1638 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1639 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1640 item_pid = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex(&inventory_idx); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1641 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1642 //check character condition(ïðîâåðêà ñîñòîÿíèÿ ïåðñîíàæà) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1643 if (!pPlayers[uActiveCharacter]->CanAct()) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1644 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1645 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[427], pPlayers[uActiveCharacter]->pName, pGlobalTXT_LocalizationStrings[541]);//%s íå â ñîñòîÿíèè %s Îïîçíàòü ïðåäìåòû |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1646 message_window.Hint = pTmpBuf.data(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1647 message_window.uFrameWidth = 384; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1648 message_window.uFrameHeight = 180; |
1837 | 1649 if (cursor.x <= 320 ) |
1650 message_window.uFrameX = cursor.x + 30; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1651 else |
1837 | 1652 message_window.uFrameX = cursor.x - 414; |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1653 message_window.uFrameY = 40; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1654 message_window.DrawMessageBox(0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1655 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1656 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1657 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1658 int alchemy_skill_points = (int8_t)pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_ALCHEMY) & 0x3F; |
1733 | 1659 int alchemy_skill_level = SkillToMastery(pPlayers[uActiveCharacter]->GetActualSkillLevel(PLAYER_SKILL_ALCHEMY)); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1660 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1661 // for potion bottle(ïðîñòàÿ áóòûëêà) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1662 if (pParty->pPickedItem.uItemID == ITEM_POTION_BOTTLE) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1663 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1664 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1665 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1666 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1667 //for recharge potion(çåëüå ïåðåçàðÿäêà) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1668 if (pParty->pPickedItem.uItemID == ITEM_POTION_RECHARGE_ITEM) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1669 { |
1733 | 1670 if (item->uItemID < ITEM_POTION_BOTTLE || item->uItemID > ITEM_POTION_REJUVENATION)// all potions |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1671 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1672 if (item->GetItemEquipType() != EQUIP_WAND) // can recharge only wands |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1673 { |
1754 | 1674 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1675 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1676 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1677 |
1733 | 1678 v31 = (70.0 - (double)pParty->pPickedItem.uEnchantmentType) * 0.01; |
1679 if ( v31 < 0.0 ) | |
1680 v31 = 0.0; | |
1681 item->uMaxCharges = (signed __int64)((double)item->uMaxCharges - v31 * (double)item->uMaxCharges); | |
1682 item->uNumCharges = (signed __int64)((double)item->uMaxCharges - v31 * (double)item->uMaxCharges); | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1683 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1684 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1685 no_rightlick_in_inventory = 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1686 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1687 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1688 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1689 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1690 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1691 // for harden potion(çåëüå çàêàëêà) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1692 else if (pParty->pPickedItem.uItemID == ITEM_POTION_HARDEN_ITEM) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1693 { |
1733 | 1694 if (item->uItemID < ITEM_POTION_BOTTLE || item->uItemID > ITEM_POTION_REJUVENATION) // bottle and all potions |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1695 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1696 if (item->IsBroken() || // cant harden broken items |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1697 item->uItemID >= ITEM_ARTIFACT_PUCK || // cant harden artifacts |
1989 | 1698 item->GetItemEquipType() < EQUIP_SINGLE_HANDED || |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1699 item->GetItemEquipType() > EQUIP_WAND) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1700 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1701 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1702 no_rightlick_in_inventory = true; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1703 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1704 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1705 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1706 item->uAttributes |= ITEM_AURA_EFFECT_RED | ITEM_HARDENED; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1707 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1708 _50C9A8_item_enchantment_timer = 256; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1709 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1710 no_rightlick_in_inventory = true; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1711 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1712 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1713 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1714 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1715 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1716 // several potions(íåñêîëüêî çåëèé) |
1733 | 1717 else if (pParty->pPickedItem.uItemID >= ITEM_POTION_FLAMING_POTION && pParty->pPickedItem.uItemID <= ITEM_POTION_SWIFT_POTION || |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1718 pParty->pPickedItem.uItemID == ITEM_POTION_SLAYING_POTION) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1719 { |
1733 | 1720 if ( item->uItemID < ITEM_POTION_BOTTLE || item->uItemID > ITEM_POTION_REJUVENATION) // all potions |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1721 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1722 if (item->uItemID >= ITEM_BLASTER && item->uItemID <= ITEM_LASER_RIFLE || |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1723 item->uItemID >= ITEM_ARTIFACT_PUCK || |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1724 item->IsBroken() || |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1725 item->uSpecEnchantmentType || |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1726 item->uEnchantmentType || |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1727 item->GetItemEquipType() >= EQUIP_ARMOUR) // only melee weapons and bows |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1728 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1729 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1730 no_rightlick_in_inventory = true; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1731 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1732 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1733 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1734 item->UpdateTempBonus(pParty->uTimePlayed); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1735 if (pParty->pPickedItem.uItemID == ITEM_POTION_SLAYING_POTION) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1736 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1737 item->uSpecEnchantmentType = 40; // of Slaying |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1738 v31 = (double)(1800 * pParty->pPickedItem.uEnchantmentType * 128); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1739 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1740 else |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1741 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1742 static int _4E2904_enchantment_by_potion_lut[] = |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1743 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1744 164, 93, 22, |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1745 164, 93, 22, |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1746 11, 5, 13, 7, 59 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1747 }; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1748 item->uSpecEnchantmentType = _4E2904_enchantment_by_potion_lut[pParty->pPickedItem.uItemID - 240]; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1749 v31 = (double)(1800 * pParty->pPickedItem.uEnchantmentType * 128); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1750 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1751 |
1733 | 1752 item->uExpireTime = pParty->uTimePlayed + v31 * 0.033333335; |
1753 item->uAttributes = alchemy_skill_level | 0x18; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1754 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1755 _50C9A8_item_enchantment_timer = 256; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1756 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1757 no_rightlick_in_inventory = true; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1758 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1759 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1760 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1761 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1762 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1763 // use reagents(ïðèìåíåíèå ðåàãåíòîâ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1764 if (pParty->pPickedItem.uItemID >= ITEM_REAGENT_WIDOWSWEEP_BERRIES && pParty->pPickedItem.uItemID <= ITEM_REAGENT_PHILOSOPHERS_STONE && |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1765 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID == ITEM_POTION_BOTTLE) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1766 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1767 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uEnchantmentType = alchemy_skill_points + pParty->pPickedItem.GetDamageDice(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1768 switch ( pParty->pPickedItem.uItemID ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1769 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1770 case 200: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1771 case 201: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1772 case 202: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1773 case 203: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1774 case 204: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1775 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = 222; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1776 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1777 case 205: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1778 case 206: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1779 case 207: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1780 case 208: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1781 case 209: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1782 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = 223; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1783 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1784 case 210: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1785 case 211: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1786 case 212: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1787 case 213: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1788 case 214: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1789 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = 224; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1790 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1791 case 215: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1792 case 216: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1793 case 217: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1794 case 218: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1795 case 219: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1796 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = 221; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1797 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1798 default: |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1799 break; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1800 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1801 pMouse->RemoveHoldingItem(); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1802 no_rightlick_in_inventory = 1; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1803 if ( dword_4E455C ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1804 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1805 pPlayers[uActiveCharacter]->PlaySound(SPEECH_DO_POTION_FINE, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1806 dword_4E455C = 0; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1807 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1808 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1809 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1810 //potions mixing(ñìåøèâàíèå äâóõ çåëèé) |
1733 | 1811 if (pParty->pPickedItem.uItemID >= ITEM_POTION_CATALYST && pParty->pPickedItem.uItemID <= ITEM_POTION_REJUVENATION && |
1812 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID >= ITEM_POTION_CATALYST && | |
1813 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID <= ITEM_POTION_REJUVENATION) | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1814 { |
1733 | 1815 potion1_id = item->uItemID - ITEM_POTION_CURE_WOUNDS; |
1816 potion2_id = pParty->pPickedItem.uItemID - ITEM_POTION_CURE_WOUNDS; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1817 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1818 if ( pParty->pPickedItem.uItemID == ITEM_POTION_CATALYST || item->uItemID == ITEM_POTION_CATALYST ) |
1733 | 1819 potionID = 5; |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1820 else |
1733 | 1821 potionID = pItemsTable->potion_data[potion2_id][potion1_id]; |
1822 damage_level = 0; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1823 if ( alchemy_skill_points ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1824 { |
1733 | 1825 if ( potionID < ITEM_POTION_CURE_DISEASE || potionID > ITEM_POTION_AWAKEN )//< 225 >227 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1826 { |
1733 | 1827 if ( potionID >= ITEM_POTION_HASTE && potionID <= ITEM_POTION_CURE_INSANITY && alchemy_skill_level == 1)//228 >= potionID <= 239 |
1828 damage_level = 2; | |
1829 if ( potionID >= ITEM_POTION_MIGHT_BOOST && potionID <= ITEM_POTION_BODY_RESISTANE && alchemy_skill_level <= 2)//240 >= potionID <= 261 | |
1830 damage_level = 3; | |
1831 if ( potionID >= ITEM_POTION_STONE_TO_FLESH && alchemy_skill_level <= 3 )// 262 < potionID | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1832 damage_level = 4; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1833 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1834 } |
1733 | 1835 else//no skill(íåò íàâûêà) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1836 { |
1733 | 1837 if ( potionID >= ITEM_POTION_CURE_DISEASE && potionID <= ITEM_POTION_AWAKEN )//225 <= v16 <= 227 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1838 damage_level = 1; |
1733 | 1839 if ( potionID >= ITEM_POTION_HASTE && potionID <= ITEM_POTION_CURE_INSANITY )//228 <= v16 <= 239 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1840 damage_level = 2; |
1733 | 1841 if ( potionID >= ITEM_POTION_MIGHT_BOOST && potionID <= ITEM_POTION_BODY_RESISTANE )//240 <= v16 <= 261 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1842 damage_level = 3; |
1733 | 1843 if ( potionID >= ITEM_POTION_STONE_TO_FLESH )//262 <= v16 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1844 damage_level = 4; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1845 } |
1733 | 1846 |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1847 int pOut_x = item_pid + 1; |
1733 | 1848 for ( uint i = 0; i < 126; ++i ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1849 { |
1733 | 1850 if ( pPlayers[uActiveCharacter]->pInventoryMatrix[i] == pOut_x ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1851 { |
1733 | 1852 pOut_y = i; |
1853 break; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1854 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1855 } |
1733 | 1856 if ( !potionID ) |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1857 { |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1858 GameUI_DrawItemInfo(item); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1859 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1860 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1861 if ( damage_level == 1 ) |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1862 { |
1733 | 1863 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(pOut_y); |
1864 pPlayers[uActiveCharacter]->ReceiveDamage(rand() % 11 + 10, DMGT_FIRE); | |
1865 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0); | |
1866 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
1867 v39.z = pParty->vPosition.z + pParty->sEyelevel; | |
1868 v39.x = pParty->vPosition.x; | |
1869 v39.y = pParty->vPosition.y; | |
1870 | |
1871 int rot_x, rot_y, rot_z; | |
1872 Vec3_int_::Rotate(64, pParty->sRotationY, pParty->sRotationX, v39, &rot_x, &rot_y, &rot_z); | |
1873 sub_42F7EB_DropItemAt(0x41Bu, rot_x, rot_y, rot_z, 0, 1, 0, 0, 0); | |
1874 if ( dword_4E455C ) | |
1875 { | |
1876 if ( pPlayers[uActiveCharacter]->CanAct() ) | |
1877 pPlayers[uActiveCharacter]->PlaySound(SPEECH_17, 0); | |
1878 ShowStatusBarString(pGlobalTXT_LocalizationStrings[444], 2);//Îé! | |
1879 dword_4E455C = 0; | |
1880 } | |
1881 pMouse->RemoveHoldingItem(); | |
1882 no_rightlick_in_inventory = 1; | |
1883 return; | |
1884 } | |
1885 if ( damage_level == 2 ) | |
1886 { | |
1887 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(pOut_y); | |
1888 pPlayers[uActiveCharacter]->ReceiveDamage(rand() % 71 + 30, DMGT_FIRE); | |
1889 pPlayers[uActiveCharacter]->ItemsEnchant(1); | |
1890 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0); | |
1891 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
1892 | |
1893 v39.z = pParty->vPosition.z + pParty->sEyelevel; | |
1894 v39.x = pParty->vPosition.x; | |
1895 v39.y = pParty->vPosition.y; | |
1896 | |
1897 int rot_x, rot_y, rot_z; | |
1898 Vec3_int_::Rotate(64, pParty->sRotationY, pParty->sRotationX, v39, &rot_x, &rot_y, &rot_z); | |
1899 sub_42F7EB_DropItemAt(0x41Bu, rot_x, rot_y, rot_z, 0, 1, 0, 0, 0); | |
1900 if ( dword_4E455C ) | |
1901 { | |
1902 if ( pPlayers[uActiveCharacter]->CanAct() ) | |
1903 pPlayers[uActiveCharacter]->PlaySound(SPEECH_17, 0); | |
1904 ShowStatusBarString(pGlobalTXT_LocalizationStrings[444], 2);//Îé! | |
1905 dword_4E455C = 0; | |
1906 } | |
1907 pMouse->RemoveHoldingItem(); | |
1908 no_rightlick_in_inventory = 1; | |
1909 return; | |
1910 } | |
1911 if ( damage_level == 3 ) | |
1912 { | |
1913 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(pOut_y); | |
1914 pPlayers[uActiveCharacter]->ReceiveDamage(rand() % 201 + 50, DMGT_FIRE); | |
1915 pPlayers[uActiveCharacter]->ItemsEnchant(5); | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1916 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1917 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1918 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1919 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1920 v39.z = pParty->vPosition.z + pParty->sEyelevel; |
1733 | 1921 v39.x = pParty->vPosition.x; |
1922 v39.y = pParty->vPosition.y; | |
1923 | |
1924 int rot_x, rot_y, rot_z; | |
1925 Vec3_int_::Rotate(64, pParty->sRotationY, pParty->sRotationX, v39, &rot_x, &rot_y, &rot_z); | |
1926 sub_42F7EB_DropItemAt(0x41Bu, rot_x, rot_y, rot_z, 0, 1, 0, 0, 0); | |
1927 if ( dword_4E455C ) | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1928 { |
1733 | 1929 if ( pPlayers[uActiveCharacter]->CanAct() ) |
1930 pPlayers[uActiveCharacter]->PlaySound(SPEECH_17, 0); | |
1931 ShowStatusBarString(pGlobalTXT_LocalizationStrings[444], 2);//Îé! | |
1932 dword_4E455C = 0; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1933 } |
1733 | 1934 pMouse->RemoveHoldingItem(); |
1935 no_rightlick_in_inventory = 1; | |
1936 return; | |
1937 } | |
1938 if ( damage_level == 4 ) | |
1939 { | |
1940 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(pOut_y); | |
1941 pPlayers[uActiveCharacter]->SetCondition(0x10u, 0); | |
1942 pPlayers[uActiveCharacter]->ItemsEnchant(0); | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1943 pAudioPlayer->PlaySound(SOUND_8, 0, 0, -1, 0, 0, 0, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1944 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1945 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1946 |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1947 v39.z = pParty->vPosition.z + pParty->sEyelevel; |
1733 | 1948 v39.x = pParty->vPosition.x; |
1949 v39.y = pParty->vPosition.y; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1950 |
1733 | 1951 int rot_x, rot_y, rot_z; |
1952 Vec3_int_::Rotate(64, pParty->sRotationY, pParty->sRotationX, v39, &rot_x, &rot_y, &rot_z); | |
1953 sub_42F7EB_DropItemAt(0x41Bu, rot_x, rot_y, rot_z, 0, 1, 0, 0, 0); | |
1954 if ( dword_4E455C ) | |
1955 { | |
1956 if ( pPlayers[uActiveCharacter]->CanAct() ) | |
1957 pPlayers[uActiveCharacter]->PlaySound(SPEECH_17, 0); | |
1958 ShowStatusBarString(pGlobalTXT_LocalizationStrings[444], 2);//Îé! | |
1959 dword_4E455C = 0; | |
1960 } | |
1961 pMouse->RemoveHoldingItem(); | |
1962 no_rightlick_in_inventory = 1; | |
1963 return; | |
1964 } | |
1965 if ( damage_level == 0 ) | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
1966 { |
1733 | 1967 if ( alchemy_skill_points ) |
1968 { | |
1969 if ( pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID == 221 || pParty->pPickedItem.uItemID == 221 )//catalyst(êàòàëèçàòîð) | |
1970 { | |
1971 if ( pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID == 221 ) | |
1972 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = pParty->pPickedItem.uItemID; | |
1973 if ( pParty->pPickedItem.uItemID == 221 ) | |
1974 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uEnchantmentType = pParty->pPickedItem.uEnchantmentType; | |
1975 } | |
1976 else | |
1977 { | |
1978 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID = potionID; | |
1979 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uEnchantmentType = (pParty->pPickedItem.uEnchantmentType | |
1980 + pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uEnchantmentType) / 2; | |
1981 pPlayers[uActiveCharacter]->SetVariable(VAR_AutoNotes, pItemsTable->potion_note[potion1_id][potion2_id]); | |
1982 } | |
1983 int bottle = pPlayers[uActiveCharacter]->AddItem(-1, 220);//áóòûëêà | |
1984 if ( bottle ) | |
1985 pPlayers[uActiveCharacter]->pOwnItems[bottle - 1].uAttributes = ITEM_IDENTIFIED; | |
1986 if ( !(pItemsTable->pItems[pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uItemID].uItemID_Rep_St) ) | |
1987 pPlayers[uActiveCharacter]->pInventoryItemList[item_pid].uAttributes |= 1; | |
1988 if ( !dword_4E455C ) | |
1989 { | |
1990 pMouse->RemoveHoldingItem(); | |
1991 no_rightlick_in_inventory = 1; | |
1992 return; | |
1993 } | |
1994 pPlayers[uActiveCharacter]->PlaySound(SPEECH_DO_POTION_FINE, 0); | |
1995 dword_4E455C = 0; | |
1996 pMouse->RemoveHoldingItem(); | |
1997 no_rightlick_in_inventory = 1; | |
1998 return; | |
1999 } | |
2000 GameUI_DrawItemInfo(item); | |
2001 return; | |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
2002 } |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
2003 } |
1733 | 2004 GameUI_DrawItemInfo(item); |
1729
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
2005 return; |
f44b6e02e81c
pop-up window in character(paperdill) window, alchemy
Ritor1
parents:
1725
diff
changeset
|
2006 } |
1754 | 2007 |