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