annotate UI/UIHouses.cpp @ 2495:7b076fe64f23

GetItemTextureFilename fix
author Ritor1
date Wed, 17 Sep 2014 17:35:13 +0600
parents 0a0c6d75aabe
children 5abd8fc8f1c6
rev   line source
2415
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
1 #define _CRTDBG_MAP_ALLOC
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
2 #include <stdlib.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
3 #include <crtdbg.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2402
diff changeset
4
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2234
diff changeset
5 #define _CRT_SECURE_NO_WARNINGS
2350
7c10dfb6d802 Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents: 2349
diff changeset
6 #include "UIGuilds.h"
7c10dfb6d802 Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents: 2349
diff changeset
7 #include "UIPartyCreation.h"
7c10dfb6d802 Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents: 2349
diff changeset
8 #include "UIShops.h"
2349
7ebc07cd6c53 Adding GUIButton.h
Grumpy7
parents: 2346
diff changeset
9 #include "..\GUIButton.h"
2343
5d263539bbec Moving functions from unsorted_subs.h pt5
Grumpy7
parents: 2336
diff changeset
10 #include "..\SaveLoad.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
11 #include "..\Texture.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
12 #include "..\mm7_data.h"
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2335
diff changeset
13 #include "..\ErrorHandling.h"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
14 #include "UIHouses.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
15 #include "..\Party.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
16 #include "..\texts.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
17 #include "..\Events.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
18 #include "..\Arcomage.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
19 #include "..\LOD.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
20 #include "..\Mouse.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
21 #include "..\GUIWindow.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
22 #include "..\GUIFont.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
23 #include "..\Overlays.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
24 #include "..\Outdoor.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
25 #include "..\AudioPlayer.h"
2450
90349b8048a5 remove VideoPlayer.cpp/.h
Ritor1
parents: 2415
diff changeset
26 #include "..\MediaPlayer.h"
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
27 #include "..\Monsters.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
28 #include "..\Viewport.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
29 #include "..\Keyboard.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
30 #include "..\MapInfo.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
31 #include "..\Log.h"
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
32 #include "..\Game.h"
2343
5d263539bbec Moving functions from unsorted_subs.h pt5
Grumpy7
parents: 2336
diff changeset
33 #include "..\CastSpellInfo.h"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
34
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
35 #include "../Level/Decoration.h"
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
36
1299
8c2f689b5f0b folder UI
Ritor1
parents: 1298
diff changeset
37 #include "..\stru159.h"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
38 int uHouse_ExitPic; // weak
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
39
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
40 int dword_591080; // weak
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
41
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
42 BuildingType in_current_building_type; // 00F8B198
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
43 HOUSE_DIALOGUE_MENU dialog_menu_id; // 00F8B19C
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
44
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
45 #pragma pack(push, 1)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
46 struct stru365_travel_info
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
47 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
48 unsigned char uMapInfoID;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
49 unsigned char pSchedule[7];
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
50 unsigned int uTravelTime;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
51 int arrival_x;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
52 int arrival_y;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
53 int arrival_z;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
54 int arrival_rot_y;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
55 unsigned int uQuestBit; // quest bit required to set for this travel option to be enabled; otherwise 0
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
56 };
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
57 #pragma pack(pop)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
58 stru365_travel_info transport_schedule[35] = // 004F09B0
2490
0a0c6d75aabe two_handed_left_fist
Ritor1
parents: 2464
diff changeset
59 {// location name days x y z
0a0c6d75aabe two_handed_left_fist
Ritor1
parents: 2464
diff changeset
60 {MAP_STEADWICK, {1, 0, 1, 0, 1, 0, 0}, 2, -18048, 4636, 833, 1536, 0},//for stable
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
61 {MAP_PIERPONT, {0, 1, 0, 1, 0, 1, 0}, 2, -2527, -6773, 1153, 896, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
62 {MAP_TATALIA, {1, 0, 1, 0, 1, 0, 0}, 2, 4730, -10580, 320, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
63 {MAP_HARMONDALE, {0, 1, 0, 1, 0, 1, 0}, 2, -5692, 11137, 1, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
64 {MAP_DEYJA, {1, 0, 0, 1, 0, 0, 0}, 3, 7227, -16007, 2625, 640, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
65 {MAP_BRAKADA_DESERT, {0, 0, 1, 0, 0, 1, 0}, 3, 8923, 17191, 1, 512, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
66 {MAP_AVLEE, {1, 0, 1, 0, 1, 0, 0}, 3, 17059, 12331, 512, 1152, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
67 {MAP_DEYJA, {0, 1, 0, 0, 1, 0, 1}, 2, 7227, -16007, 2625, 640, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
68 {MAP_HARMONDALE, {0, 1, 0, 1, 0, 1, 0}, 2, -5692, 11137, 1, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
69 {MAP_STEADWICK, {1, 0, 1, 0, 1, 0, 0}, 3, -18048, 4636, 833, 1536, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
70 {MAP_PIERPONT, {0, 1, 0, 1, 0, 1, 0}, 2, -2527, -6773, 1153, 896, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
71 {MAP_STEADWICK, {1, 0, 1, 0, 1, 0, 1}, 3, -18048, 4636, 833, 1536, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
72 {MAP_HARMONDALE, {0, 1, 0, 0, 0, 1, 0}, 5, -5692, 11137, 1, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
73 {MAP_STEADWICK, {0, 1, 0, 1, 0, 1, 0}, 2, -18048, 4636, 833, 1536, 0},
2490
0a0c6d75aabe two_handed_left_fist
Ritor1
parents: 2464
diff changeset
74 {MAP_PIERPONT, {0, 1, 0, 1, 0, 1, 0}, 3, -2527, -6773, 1153, 896, 0},
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
75 {MAP_DEYJA, {0, 0, 1, 0, 0, 0, 1}, 5, 7227, -16007, 2625, 640, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
76 {MAP_TATALIA, {0, 1, 0, 1, 0, 1, 0}, 2, -2183, -6941, 97, 0, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
77 {MAP_AVLEE, {1, 0, 0, 0, 1, 0, 0}, 4, 7913, 9476, 193, 0, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
78 {MAP_EVENMORN_ISLE, {0, 0, 0, 0, 0, 0, 1}, 7, 15616, 6390, 193, 1536, PARTY_QUEST_EVENMORN_MAP_FOUND},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
79 {MAP_BRAKADA_DESERT, {0, 0, 1, 0, 0, 0, 0}, 6, 19171, -19722, 193, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
80 {MAP_AVLEE, {0, 1, 0, 1, 0, 1, 0}, 3, 7913, 9476, 193, 0, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
81 {MAP_BRAKADA_DESERT, {1, 0, 1, 0, 0, 0, 0}, 6, 19171, -19722, 193, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
82 {MAP_TATALIA, {1, 0, 1, 0, 1, 0, 0}, 4, -2183, -6941, 97, 0, 0},
2490
0a0c6d75aabe two_handed_left_fist
Ritor1
parents: 2464
diff changeset
83 {MAP_PIERPONT, {0, 0, 0, 0, 0, 1, 0}, 6, -709, -14087, 193, 1024, 0},//for boat
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
84 {MAP_STEADWICK, {0, 0, 0, 0, 0, 0, 1}, 6, -10471, 13497, 193, 1536, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
85 {MAP_EVENMORN_ISLE, {0, 1, 0, 1, 0, 0, 0}, 1, 15616, 6390, 193, 1536, PARTY_QUEST_EVENMORN_MAP_FOUND},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
86 {MAP_BRAKADA_DESERT, {0, 1, 0, 1, 0, 0, 0}, 1, 19171, -19722, 193, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
87 {MAP_STEADWICK, {0, 1, 0, 1, 0, 1, 0}, 2, -10471, 13497, 193, 1536, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
88 {MAP_BRAKADA_DESERT, {1, 0, 1, 0, 0, 0, 0}, 4, 19171, -19722, 193, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
89 {MAP_EVENMORN_ISLE, {0, 0, 0, 0, 0, 0, 1}, 5, 15616, 6390, 193, 1536, PARTY_QUEST_EVENMORN_MAP_FOUND},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
90 {MAP_AVLEE, {0, 0, 0, 0, 1, 0, 0}, 5, 7913, 9476, 193, 0, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
91 {MAP_STEADWICK, {0, 1, 0, 0, 0, 1, 0}, 4, -10471, 13497, 193, 1536, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
92 {MAP_PIERPONT, {1, 0, 1, 0, 1, 0, 0}, 3, -709, -14087, 193, 1024, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
93 {MAP_TATALIA, {0, 0, 0, 1, 0, 0, 0}, 5, -2183, -6941, 97, 0, 0},
2490
0a0c6d75aabe two_handed_left_fist
Ritor1
parents: 2464
diff changeset
94 {MAP_ARENA, {0, 0, 0, 0, 0, 0, 1}, 4, 3844, 2906, 193, 512, 0}
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
95 };
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
96
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
97 unsigned char transport_routes[20][4] =
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
98 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
99 { 0, 1, 1, 34}, // HOUSE_STABLES_HARMONDALE
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
100 { 2, 3, 4, 5}, // HOUSE_STABLES_STEADWICK
1589
Ritor1
parents: 1588
diff changeset
101 { 6, 7, 8, 8}, // HOUSE_STABLES_TULAREAN_FOREST
Ritor1
parents: 1588
diff changeset
102 { 9, 10, 10, 10}, // HOUSE_STABLES_DEYJA
1610
Ritor1
parents: 1609
diff changeset
103 { 11, 11, 12, 12}, // HOUSE_STABLES_BRACADA_DESERT
Ritor1
parents: 1609
diff changeset
104 { 13, 13, 13, 13}, // HOUSE_STABLES_TATALIA
Ritor1
parents: 1609
diff changeset
105 { 14, 14, 15, 15}, // HOUSE_STABLES_AVLEE
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
106 {255, 255, 255, 255}, // HOUSE_STABLES_61
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
107 {255, 255, 255, 255}, // HOUSE_STABLES_62
1610
Ritor1
parents: 1609
diff changeset
108 {255, 255, 255, 255}, // HOUSE_BOATS_EMERALD_ISLE
Ritor1
parents: 1609
diff changeset
109 { 16, 17, 18, 19}, // HOUSE_BOATS_ERATHIA
Ritor1
parents: 1609
diff changeset
110 { 18, 20, 21, 21}, // HOUSE_BOATS_TULAREAN_FOREST
Ritor1
parents: 1609
diff changeset
111 { 22, 23, 24, 25}, // HOUSE_BOATS_BRACADA_DESERT
Ritor1
parents: 1609
diff changeset
112 { 22, 22, 23, 23}, // HOUSE_BOATS_EVENMORN_ISLAND
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
113 {255, 255, 255, 255}, // HOUSE_BOATS_68
1610
Ritor1
parents: 1609
diff changeset
114 { 27, 28, 29, 30}, // HOUSE_BOATS_TATALIA
Ritor1
parents: 1609
diff changeset
115 { 31, 32, 33, 33}, // HOUSE_BOATS_AVLEE
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
116 { 24, 24, 24, 24}, // HOUSE_BOATS_71
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
117 {255, 255, 255, 255}, // HOUSE_BOATS_72
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
118 {255, 255, 255, 255} // HOUSE_BOATS_73
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
119 };
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
120
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
121 std::array<const stru159, 196> pAnimatedRooms = //0x4E5F70
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
122 {{
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
123 {"", 0x4, 0x1F4, 0, 0, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
124 {"Human Armor01", 0x20, 0x2C0, 2, 58, 0},
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
125 {"Necromancer Armor01", 0x20, 0x2D7, 2, 70, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
126 {"Dwarven Armor01", 0x20, 0x2EE, 2, 5, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
127 {"Wizard Armor", 0x20, 0x3BD, 2, 19, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
128 {"Warlock Armor", 0x20, 0x2D6, 2, 35, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
129 {"Elf Armor", 0x20, 0x2BC, 2, 79, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
130 {"Human Alchemisht01", 0xE, 0x2BE, 4, 95, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
131 {"Necromancer Alchemist01", 0xE, 0x2D6, 4, 69, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
132 {"Dwarven Achemist01", 0xE, 0x387, 4, 4, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
133 {"Wizard Alchemist", 0xE, 0x232, 4, 25, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
134 {"Warlock Alchemist", 0xE, 0x2BE, 4, 42, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
135 {"Elf Alchemist", 0xE, 0x38A, 4, 84, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
136 {"Human Bank01", 0x6, 0x384, 22, 52, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
137 {"Necromancer Bank01", 0x6, 0x2D8, 22, 71, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
138 {"Dwarven Bank", 0x6, 0x2F3, 22, 6, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
139 {"Wizard Bank", 0x6, 0x3BA, 22, 20, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
140 {"Warlock Bank", 0x6, 0x39F, 22, 36, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
141 {"Elf Bank", 0x6, 0x2BC, 22, 71, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
142 {"Boat01", 0xF, 0x4C, 28, 53, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
143 {"Boat01d", 0xF, 0x4C, 28, 53, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
144 {"Human Magic Shop01", 0xA, 0x2C8, 3, 54, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
145 {"Necromancer Magic Shop01", 0xE, 0x2DC, 3, 66, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
146 {"Dwarven Magic Shop01", 0x2A, 0x2EF, 3, 91, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
147 {"Wizard Magic Shop", 0x1E, 0x2DF, 3, 15, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
148 {"Warlock Magic Shop", 0x7, 0x3B9, 3, 15, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
149 {"Elf Magic Shop", 0x24, 0x2CC, 3, 82, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
150 {"Human Stables01", 0x21, 0x31, 27, 48, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
151 {"Necromancer Stables", 0x21, 0x2DD, 27, 67, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
152 {"", 0x21, 0x2F0, 27, 91, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
153 {"Wizard Stables", 0x21, 0x3BA, 27, 16, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
154 {"Warlock Stables", 0x21, 0x181, 27, 77, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
155 {"Elf Stables", 0x21, 0x195, 27, 77, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
156 {"Human Tavern01", 0xD, 0x2C2, 21, 49, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
157 {"Necromancer Tavern01", 0xD, 0x3B0, 21, 57, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
158 {"Dwarven Tavern01", 0xD, 0x2FE, 21, 94, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
159 {"Wizard Tavern", 0xD, 0x3BB, 21, 17, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
160 {"Warlock Tavern", 0xD, 0x3A8, 21, 33, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
161 {"Elf Tavern", 0xD, 0x2CD, 21, 78, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
162 {"Human Temple01", 0x24, 0x2DB, 23, 50, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
163 {"Necromancer Temple", 0x24, 0x2DF, 23, 60, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
164 {"Dwarven Temple01", 0x24, 0x2F1, 23, 86, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
165 {"Wizard Temple", 0x24, 0x2E0, 23, 10, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
166 {"Warlock Temple", 0x24, 0x3A4, 23, 27, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
167 {"Elf Temple", 0x24, 0x2CE, 23, 72, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
168 {"Human Town Hall", 0x10, 0x39C, 17, 14, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
169 {"Necromancer Town Hall01", 0x10, 0x3A4, 17, 61, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
170 {"Dwarven Town Hall", 0x10, 0x2DB, 17, 88, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
171 {"Wizard Town Hall", 0x10, 0x3BD, 17, 11, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
172 {"Warlock Town Hall", 0x10, 0x2DB, 17, 28, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
173 {"Elf Town Hall", 0x10, 0x27A, 17, 73, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
174 {"Human Training Ground01", 0x18, 0x2C7, 30, 44, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
175 {"Necromancer Training Ground", 0x18, 0x3AD, 30, 62, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
176 {"Dwarven Training Ground", 0x18, 0x2F2, 30, 89, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
177 {"Wizard Training Ground", 0x18, 0x3A3, 30, 12, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
178 {"Warlock Training Ground", 0x18, 0x3A6, 30, 29, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
179 {"Elf Training Ground", 0x18, 0x19F, 30, 74, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
180 {"Human Weapon Smith01", 0x16, 0x2C1, 1, 45, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
181 {"Necromancer Weapon Smith01", 0x16, 0x2D9, 1, 63, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
182 {"Dwarven Weapon Smith01", 0x16, 0x2EE, 1, 82, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
183 {"Wizard Weapon Smith", 0x16, 0x2D5, 1, 13, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
184 {"Warlock Weapon Smith", 0x16, 0x2D7, 1, 23, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
185 {"Elf Weapon Smith", 0x16, 0x2CA, 1, 75, 4 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
186 {"Air Guild", 0x1D, 0xA4, 6, 1, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
187 {"Body Guild", 0x19, 0x3BF, 11, 2, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
188 {"DarkGuild", 0x19, 0x2D1, 13, 3, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
189 {"EarthGuild", 0x19, 0x2CB, 8, 83, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
190 {"Fire Guild", 0x1C, 0x2BF, 5, 56, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
191 {"Light Guild", 0x1C, 0x2D5, 12, 46, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
192 {"Mind Guild", 0x1C, 0xE5, 10, 40, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
193 {"Spirit Guild", 0x1C, 0x2D2, 9, 41, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
194 {"Water Guild", 0x1B, 0x2D3, 7, 24, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
195 {"Lord And Judge Out01", 1, 0, 29, 39, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
196 {"Human Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
197 {"Human Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
198 {"Human Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
199 {"Human Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
200 {"Human Medium House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
201 {"Human Medium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
202 {"Human Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
203 {"Human Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
204 {"Human Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
205 {"Elven Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
206 {"Elven Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
207 {"Elven Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
208 {"Elven Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
209 {"Elven Medium House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
210 {"Elven Medium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
211 {"Elven Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
212 {"Elven Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
213 {"Elven Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
214 {"Dwarven Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
215 {"Dwarven Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
216 {"Dwarven Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
217 {"Dwarven Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
218 {"Dwarven Medium house 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
219 {"Dwarven Medium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
220 {"Dwarven Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
221 {"Dwarven Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
222 {"Dwarven Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
223 {"Wizard Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
224 {"Wizard Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
225 {"Wizard Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
226 {"Wizard Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
227 {"Wizard Medium House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
228 {"Wizard Mdeium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
229 {"Wizard Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
230 {"Wizard Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
231 {"Wizard Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
232 {"Necromancer Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
233 {"Necromancer Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
234 {"Necromancer Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
235 {"Necromancer Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
236 {"Necromancer Medium House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
237 {"Necromancer Mdeium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
238 {"Necromancer Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
239 {"Necromancer Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
240 {"Necromancer Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
241 {"Warlock Poor House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
242 {"Warlock Poor House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
243 {"Warlock Poor House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
244 {"Warlock Medium House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
245 {"Warlock Medium House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
246 {"Warlock Mdeium House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
247 {"Warlock Rich House 1", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
248 {"Warlock Rich House 2", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
249 {"Warlock Rich House 3", 8, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
250 {"Out01 Temple of the Moon", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
251 {"Out01 Dragon Cave", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
252 {"Out02 Castle Harmondy", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
253 {"Out02 White Cliff Cave", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
254 {"Out03 Erathian Sewer", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
255 {"Out03 Fort Riverstride", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
256 {"Out03 Castle Gryphonheart", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
257 {"Out04 Elf Castle", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
258 {"Out04 Tularean Caves", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
259 {"Out04 Clanker's Laboratory", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
260 {"Out05 Hall of the Pit", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
261 {"Out05 Watchtower 6", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
262 {"Out06 School of Sorcery", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
263 {"Out06 Red Dwarf Mines", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
264 {"Out07 Castle Lambert", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
265 {"Out07 Walls of Mist", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
266 {"Out07 Temple of the Light", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
267 {"Out08 Evil Entrance", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
268 {"Out08 Breeding Zone", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
269 {"Out08 Temple of the Dark", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
270 {"Out09 Grand Temple of the Moon", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
271 {"Out09 Grand Tempple of the Sun", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
272 {"Out10 Thunderfist Mountain", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
273 {"Out10 The Maze", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
274 {"Out10 Connecting Tunnel Cave #1", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
275 {"", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
276 {"", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
277 {"Out11 Stone City", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
278 {"", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
279 {"Out12 Colony Zod", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
280 {"Out12 Connecting Tunnel Cave #1", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
281 {"", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
282 {"", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
283 {"Out13 Mercenary Guild", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
284 {"Out13 Tidewater Caverns", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
285 {"Out13 Wine Cellar", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
286 {"Out14 Titan's Stronghold", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
287 {"Out14 Temple Of Baa", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
288 {"Out14 Hall under the Hill", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
289 {"Out15 The Linclon", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
290 {"Jail", 0x24, 0, 31, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
291 {"Harmondale Throne Room", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
292 {"Gryphonheart Throne Room", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
293 {"Elf Castle Throne Room", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
294 {"Wizard Castle Throne Room", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
295 {"Necromancer Casstle Trone Room", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
296 {"Master Thief", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
297 {"Dwarven King", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
298 {"Arms Master", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
299 {"Warlock", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
300 {"Lord Markam", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
301 {"Arbiter Neutral Town", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
302 {"Arbiter Good Town", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
303 {"Arbiter Evil Town", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
304 {"Necromancer Throne Room Empty", 0x24, 0, 20, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
305 {"", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
306 {"", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
307 {"", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
308 {"", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
309 {"Boat01", 0xF, 0, 29, 53, 3 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
310 {"", 0x24, 0, 28, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
311 {"", 0x24, 0, 28, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
312 {"", 0x24, 0, 28, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
313 {"", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
314 {"Arbiter Room Neutral", 0x24, 0, 29, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
315 {"Out02 Castle Harmondy Abandoned", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
316 {"Human Temple02", 0x24, 0x3AB, 23, 27, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
317 {"Player Castle Good", 0x24, 0, 25, 0, 0 },
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
318 {"Player Castle Bad", 0x24, 0, 25, 0, 0}
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
319 }};
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
320
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
321
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
322
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
323 //----- (004B3A72) --------------------------------------------------------
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
324 void InitializaDialogueOptions_Tavern(BuildingType type)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
325 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
326 int num_buttons; // esi@1
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
327
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
328 num_buttons = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
329 if (type == BuildingType_Tavern)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
330 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
331 num_buttons = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
332 CreateButtonInColumn(0, 102);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
333 CreateButtonInColumn(1, 103);
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
334 if ( pParty->HasItem(651) ) //Arcomage Deck
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
335 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
336 num_buttons = 3;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
337 CreateButtonInColumn(2, 104);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
338 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
339 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
340 pDialogueWindow->_41D08F_set_keyboard_control_group(num_buttons, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
341 dword_F8B1E0 = pDialogueWindow->pNumPresenceButton;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
342 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
343 // F8B1E0: using guessed type int dword_F8B1E0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
344
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
345 //----- (004B3AD4) --------------------------------------------------------
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
346 void InitializaDialogueOptions_Shops(BuildingType type)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
347 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
348 switch (type)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
349 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
350 case BuildingType_WeaponShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
351 case BuildingType_ArmorShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
352 case BuildingType_MagicShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
353 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
354 CreateButtonInColumn(0, 3);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
355 CreateButtonInColumn(1, 4);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
356 CreateButtonInColumn(2, 5);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
357 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
358 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
359 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
360
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
361 case BuildingType_AlchemistShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
362 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
363 CreateButtonInColumn(0, 3);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
364 CreateButtonInColumn(1, 4);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
365 pDialogueWindow->_41D08F_set_keyboard_control_group(2, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
366 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
367 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
368 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
369
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
370 dword_F8B1E0 = pDialogueWindow->pNumPresenceButton;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
371 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
372 // F8B1E0: using guessed type int dword_F8B1E0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
373
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
374 //----- (004B3B42) --------------------------------------------------------
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
375 void InitializaDialogueOptions(BuildingType type)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
376 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
377 switch (type)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
378 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
379 case BuildingType_WeaponShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
380 case BuildingType_ArmorShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
381 case BuildingType_MagicShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
382 case BuildingType_AlchemistShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
383 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
384 CreateButtonInColumn(0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
385 CreateButtonInColumn(1, 95);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
386 CreateButtonInColumn(2, 94);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
387 CreateButtonInColumn(3, 96);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
388 pDialogueWindow->_41D08F_set_keyboard_control_group(4, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
389 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
390 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
391
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
392 case BuildingType_FireGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
393 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
394 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
395 CreateButtonInColumn(1, 48);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
396 CreateButtonInColumn(2, 72);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
397 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
398 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
399 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
400
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
401 case BuildingType_AirGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
402 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
403 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
404 CreateButtonInColumn(1, 49);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
405 CreateButtonInColumn(2, 72);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
406 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
407 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
408 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
409
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
410 case BuildingType_WaterGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
411 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
412 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
413 CreateButtonInColumn(1, 50);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
414 CreateButtonInColumn(2, 72);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
415 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
416 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
417 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
418
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
419 case BuildingType_EarthGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
420 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
421 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
422 CreateButtonInColumn(1, 51);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
423 CreateButtonInColumn(2, 72);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
424 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
425 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
426 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
427
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
428 case BuildingType_SpiritGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
429 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
430 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
431 CreateButtonInColumn(1, 52);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
432 CreateButtonInColumn(2, 61);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
433 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
434 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
435 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
436
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
437 case BuildingType_MindGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
438 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
439 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
440 CreateButtonInColumn(1, 53);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
441 CreateButtonInColumn(2, 61);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
442 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
443 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
444 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
445
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
446 case BuildingType_BodyGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
447 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
448 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
449 CreateButtonInColumn(1, 54);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
450 CreateButtonInColumn(2, 61);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
451 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
452 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
453 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
454
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
455 case BuildingType_LightGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
456 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
457 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
458 CreateButtonInColumn(1, 55);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
459 pDialogueWindow->_41D08F_set_keyboard_control_group(2, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
460 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
461 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
462
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
463 case BuildingType_DarkGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
464 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
465 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
466 CreateButtonInColumn(1, 56);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
467 pDialogueWindow->_41D08F_set_keyboard_control_group(2, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
468 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
469 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
470
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1640
diff changeset
471 case BuildingType_ElementalGuild:
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
472 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
473 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
474 CreateButtonInColumn(1, 48);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
475 CreateButtonInColumn(2, 49);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
476 CreateButtonInColumn(3, 50);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
477 CreateButtonInColumn(4, 51);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
478 pDialogueWindow->_41D08F_set_keyboard_control_group(5, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
479 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
480 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
481
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1640
diff changeset
482 case BuildingType_SelfGuild:
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
483 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
484 CreateButtonInColumn(0, 18);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
485 CreateButtonInColumn(1, 52);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
486 CreateButtonInColumn(2, 53);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
487 CreateButtonInColumn(3, 54);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
488 pDialogueWindow->_41D08F_set_keyboard_control_group(4, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
489 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
490 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
491
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
492 case BuildingType_16:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
493 case BuildingType_TownHall:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
494 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
495 int num_buttons = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
496 CreateButtonInColumn(0, 99);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
497
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
498 if (pParty->uFine)
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
499 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
500 num_buttons++;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
501 CreateButtonInColumn(1, 100);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
502 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
503
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
504 pDialogueWindow->_41D08F_set_keyboard_control_group(num_buttons, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
505 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
506 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
507
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
508 case BuildingType_Bank:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
509 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
510 CreateButtonInColumn(0, 7);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
511 CreateButtonInColumn(1, 8);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
512 pDialogueWindow->_41D08F_set_keyboard_control_group(2, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
513 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
514 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
515
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
516 case BuildingType_Temple:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
517 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
518 CreateButtonInColumn(0, 10);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
519 CreateButtonInColumn(1, 11);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
520 CreateButtonInColumn(2, 96);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
521 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
522 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
523 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
524
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
525 case BuildingType_Stables:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
526 case BuildingType_Boats:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
527 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
528 CreateButtonInColumn(0, 105);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
529 CreateButtonInColumn(1, 106);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
530 CreateButtonInColumn(2, 107);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
531 CreateButtonInColumn(3, 108);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
532 pDialogueWindow->_41D08F_set_keyboard_control_group(4, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
533 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
534 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
535
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
536 case BuildingType_Training:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
537 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
538 CreateButtonInColumn(0, 17);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
539 CreateButtonInColumn(1, 96);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
540 pDialogueWindow->_41D08F_set_keyboard_control_group(2, 1, 0, 2);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
541 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
542 break;
1429
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
543
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
544 case BuildingType_Tavern:
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
545 {
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
546 CreateButtonInColumn(0, 0xFu);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
547 CreateButtonInColumn(1, 0x10u);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
548 CreateButtonInColumn(2, 0x60u);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
549 if ( (signed int)window_SpeakInHouse->ptr_1C < 108 || (signed int)window_SpeakInHouse->ptr_1C > 120 )
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
550 {
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
551 pDialogueWindow->_41D08F_set_keyboard_control_group(3, 1, 0, 2);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
552 break;
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
553 }
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
554 CreateButtonInColumn(3, 101);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
555 pDialogueWindow->_41D08F_set_keyboard_control_group(4, 1, 0, 2);
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
556 }
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
557 break;
c7489dd19f88 BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents: 1411
diff changeset
558
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
559 case BuildingType_18:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
560 case BuildingType_19:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
561 case BuildingType_Throne_Room:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
562 case BuildingType_24:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
563 case BuildingType_Unic:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
564 case BuildingType_1A:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
565 case BuildingType_House:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
566 case BuildingType_Jail:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
567 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
568
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
569 default:
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1531
diff changeset
570 Error("Invalid enumeration value: %u", type);
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
571 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
572
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
573 /* if ( a1 > 13 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
574 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
575 if ( a1 > 22 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
576 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
577 if ( a1 == 23 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
578 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
579 CreateButtonInColumn(0, 0xAu);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
580 CreateButtonInColumn(1, 0xBu);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
581 v14 = 96;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
582 LABEL_41:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
583 CreateButtonInColumn(2, v14);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
584 v17 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
585 v11 = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
586 v10 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
587 v9 = 3;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
588 goto LABEL_42;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
589 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
590 if ( a1 <= 26 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
591 goto LABEL_43;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
592 if ( a1 > 28 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
593 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
594 if ( a1 != 30 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
595 goto LABEL_43;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
596 CreateButtonInColumn(0, 0x11u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
597 v16 = 96;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
598 goto LABEL_37;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
599 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
600 CreateButtonInColumn(0, 0x69u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
601 CreateButtonInColumn(1, 0x6Au);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
602 CreateButtonInColumn(2, 0x6Bu);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
603 v12 = 108;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
604 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
605 else
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
606 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
607 if ( a1 == 22 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
608 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
609 CreateButtonInColumn(0, 7u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
610 v16 = 8;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
611 goto LABEL_37;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
612 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
613 v1 = a1 - 14;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
614 if ( !v1 ) // == 14
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
615 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
616 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
617 CreateButtonInColumn(1, 0x30u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
618 CreateButtonInColumn(2, 0x31u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
619 CreateButtonInColumn(3, 0x32u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
620 CreateButtonInColumn(4, 0x33u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
621 v17 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
622 v11 = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
623 v10 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
624 v9 = 5;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
625 goto LABEL_42;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
626 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
627 v2 = v1 - 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
628 if ( v2 ) // > 15
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
629 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
630 v3 = v2 - 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
631 if ( v3 ) // > 17
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
632 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
633 if ( v3 != 4 ) // 18, 19, 20
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
634 goto LABEL_43;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
635 CreateButtonInColumn(0, 0xFu); // 21
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
636 CreateButtonInColumn(1, 0x10u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
637 v4 = 3;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
638 CreateButtonInColumn(2, 0x60u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
639 v5 = (signed int)window_SpeakInHouse->ptr_1C;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
640 if ( v5 < 108 || v5 > 120 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
641 goto LABEL_28;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
642 v4 = 4;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
643 v6 = 101;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
644 v7 = 3;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
645 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
646 else // 16, 17
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
647 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
648 v4 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
649 CreateButtonInColumn(0, 0x63u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
650 if ( !pParty->uFine )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
651 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
652 LABEL_28:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
653 v17 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
654 v11 = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
655 v10 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
656 v9 = v4;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
657 LABEL_42:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
658 pDialogueWindow->_41D08F_set_keyboard_control_group(v9, v10, v11, v17);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
659 goto LABEL_43;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
660 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
661 v4 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
662 v7 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
663 v6 = 100;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
664 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
665 CreateButtonInColumn(v7, v6);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
666 goto LABEL_28;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
667 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
668 CreateButtonInColumn(0, 0x12u); // 15
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
669 CreateButtonInColumn(1, 0x34u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
670 CreateButtonInColumn(2, 0x35u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
671 v12 = 54;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
672 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
673 LABEL_39:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
674 CreateButtonInColumn(3, v12);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
675 v17 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
676 v11 = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
677 v10 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
678 v9 = 4;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
679 goto LABEL_42;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
680 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
681 if ( a1 == 13 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
682 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
683 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
684 v16 = 56;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
685 LABEL_37:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
686 CreateButtonInColumn(1, v16);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
687 v17 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
688 v11 = 0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
689 v10 = 1;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
690 v9 = 2;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
691 goto LABEL_42;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
692 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
693 switch ( a1 )
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
694 {
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
695 case 1:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
696 case 2:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
697 case 3:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
698 case 4:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
699 CreateButtonInColumn(0, 2u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
700 CreateButtonInColumn(1, 0x5Fu);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
701 CreateButtonInColumn(2, 0x5Eu);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
702 v12 = 96;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
703 goto LABEL_39;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
704 case 5:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
705 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
706 v13 = 48;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
707 goto LABEL_9;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
708 case 6:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
709 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
710 v13 = 49;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
711 goto LABEL_9;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
712 case 7:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
713 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
714 v13 = 50;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
715 goto LABEL_9;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
716 case 8:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
717 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
718 v13 = 51;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
719 LABEL_9:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
720 CreateButtonInColumn(1, v13);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
721 v14 = 72;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
722 goto LABEL_41;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
723 case 9:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
724 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
725 v15 = 52;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
726 goto LABEL_13;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
727 case 10:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
728 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
729 v15 = 53;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
730 goto LABEL_13;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
731 case 11:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
732 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
733 v15 = 54;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
734 LABEL_13:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
735 CreateButtonInColumn(1, v15);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
736 v14 = 61;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
737 goto LABEL_41;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
738 case 12:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
739 CreateButtonInColumn(0, 0x12u);
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
740 v16 = 55;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
741 goto LABEL_37;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
742 default:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
743 break;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
744 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
745 LABEL_43:*/
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
746 dword_F8B1E0 = pDialogueWindow->pNumPresenceButton;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
747 }
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
748 // F8B1E0: using guessed type int dword_F8B1E0;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
749
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
750
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
751 //----- (004B1784) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1445
diff changeset
752 bool HouseUI_CheckIfPlayerCanInteract()
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
753 {
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
754 GUIWindow window; // [sp+4h] [bp-54h]@3
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
755
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
756 if ( pPlayers[uActiveCharacter]->CanAct() )
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
757 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
758 pDialogueWindow->pNumPresenceButton = dword_F8B1E0;
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
759 return true;
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
760 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
761 else
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
762 {
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
763 pDialogueWindow->pNumPresenceButton = 0;
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
764 memcpy(&window, pPrimaryWindow, sizeof(window));
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
765 window.uFrameX = 483;
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
766 window.uFrameWidth = 148;
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
767 window.uFrameZ = 334;
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
768 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[427], pPlayers[uActiveCharacter]->pName,
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
769 pGlobalTXT_LocalizationStrings[562]); // "%s is in no condition to %s""do anything"
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
770 window.DrawTitleText(pFontArrus, 0, (212 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &window, 0, 0)) / 2 + 101, ui_house_player_cant_interact_color, pTmpBuf.data(), 3);
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
771 return false;
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
772 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
773 }
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
774
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
775 //----- (0044622E) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
776 bool EnterHouse(enum HOUSE_ID uHouseID)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
777 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
778 signed int uOpenTime; // eax@5
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
779 signed int uCloseTime; // esi@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
780 // unsigned int v5; // esi@5
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
781 // int v6; // edx@5
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
782 signed int am_pm_flag_open; // ecx@10
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
783 signed int am_pm_flag_close; // eax@10
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
784 // int v9; // esi@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
785 // int v11; // ecx@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
786 // unsigned int v12; // kr00_4@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
787 // int v14; // eax@25
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
788 unsigned int v17; // eax@37
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
789 signed int v18; // edi@37
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
790 signed int v19; // edi@41
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
791 char pContainer[40]; // [sp+Ch] [bp-30h]@32
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
792 // unsigned int v24; // [sp+34h] [bp-8h]@5
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
793
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
794 GameUI_Footer_TimedString[0] = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
795 pFooterString[0] = 0;
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
796 ShowStatusBarString("", 2);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
797 if ( pMessageQueue_50CBD0->uNumMessages )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
798 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
799 viewparams->bRedrawGameUI = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
800 uDialogueType = 0;
1459
2ca62c9e7b3c Function names
Nomad
parents: 1458
diff changeset
801 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_CANCELLED);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
802 pKeyActionMap->ResetKeys();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
803 if (uHouseID == HOUSE_600 || uHouseID == HOUSE_601)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
804 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
805 GameOverMenu(0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
806 return 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
807 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
808 uOpenTime = p2DEvents[uHouseID - 1].uOpenTime;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
809 uCloseTime = p2DEvents[uHouseID - 1].uCloseTime;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
810 current_npc_text = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
811 dword_F8B1E4 = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
812 memset(byte_F8B1F0.data(), 0, 4);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
813 memset(player_levels.data(), 0, 16);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
814 pRenderer->ClearZBuffer(0, 479);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
815
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
816 if (((uCloseTime - 1 <= uOpenTime)&&((pParty->uCurrentHour <uOpenTime)&&(pParty->uCurrentHour >(uCloseTime - 1))))||
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
817 ((uCloseTime - 1 > uOpenTime)&&((pParty->uCurrentHour < uOpenTime)||(pParty->uCurrentHour > (uCloseTime - 1)))))
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
818
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
819 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
820 am_pm_flag_open = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
821 am_pm_flag_close = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
822 if (uOpenTime > 12 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
823 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
824 uOpenTime -= 12;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
825 am_pm_flag_open = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
826 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
827 if ( uCloseTime > 12 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
828 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
829 uCloseTime -= 12;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
830 am_pm_flag_close = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
831 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
832 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[414], uOpenTime, aAMPMNames[am_pm_flag_open],
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
833 uCloseTime, aAMPMNames[am_pm_flag_close]); //"This place is open from %d%s to %d%s"
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
834 ShowStatusBarString(pTmpBuf.data(), 2u);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
835 if ( uActiveCharacter )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
836 pPlayers[uActiveCharacter]->PlaySound(SPEECH_3, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
837 return 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
838 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
839 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
840 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
841 //v10 = uHouseID;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
842 if ( (signed int)uHouseID < 53 ) //entering shops and guilds
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
843 {
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
844 if ( !(pParty->PartyTimes._shop_ban_times[uHouseID])
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
845 || (pParty->PartyTimes._shop_ban_times[uHouseID] <= pParty->uTimePlayed) )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
846 {
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
847 pParty->PartyTimes._shop_ban_times[uHouseID] = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
848 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
849 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
850 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
851 ShowStatusBarString(pGlobalTXT_LocalizationStrings[191], 2u);// "You've been banned from this shop!"
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
852 return 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
853 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
854 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
855 pAudioPlayer->StopChannels(-1, -1);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
856
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
857 uCurrentHouse_Animation = p2DEvents[uHouseID - 1].uAnimationID;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
858 in_current_building_type = (BuildingType)pAnimatedRooms[uCurrentHouse_Animation].uBuildingType;
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
859 if ( in_current_building_type == BuildingType_Throne_Room && pParty->uFine ) // going 2 jail
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
860 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
861 uCurrentHouse_Animation = (signed __int16)p2DEvents[186].uAnimationID;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
862 uHouseID = HOUSE_JAIL;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
863 pParty->uTimePlayed = pParty->uTimePlayed + 0x7620000;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
864 in_current_building_type = (BuildingType)pAnimatedRooms[p2DEvents[HOUSE_LORD_AND_JUDGE_EMERALD_ISLE].uAnimationID].uBuildingType;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
865 ++pParty->uNumPrisonTerms;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
866 pParty->uFine = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
867 for (uint i = 0; i < 4; ++i)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
868 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
869 pParty->pPlayers[i].uTimeToRecovery = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
870 pParty->pPlayers[i].uNumDivineInterventionCastsThisDay = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
871 pParty->pPlayers[i].SetVariable(VAR_Award, 87);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
872 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
873 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
874 ++pIcons_LOD->uTexturePacksCount;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
875 if ( !pIcons_LOD->uNumPrevLoadedFiles )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
876 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
877 switch (pParty->alignment)
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1531
diff changeset
878 {
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
879 case PartyAlignment_Good: sprintf(pContainer, "evt%02d-b", const_2()); break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
880 case PartyAlignment_Neutral: sprintf(pContainer, "evt%02d", const_2()); break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
881 case PartyAlignment_Evil: sprintf(pContainer, "evt%02d-c", const_2()); break;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1531
diff changeset
882 default: Error("Invalid alignment type: %u", pParty->alignment);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1531
diff changeset
883 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
884
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
885 v17 = pIcons_LOD->LoadTexture(pContainer, TEXTURE_16BIT_PALETTE);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
886 pDialogueNPCCount = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
887 pTexture_Dialogue_Background = &pIcons_LOD->pTextures[v17];
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
888 uTextureID_right_panel_loop = uTextureID_right_panel;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
889 PrepareHouse(uHouseID);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
890 v18 = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
891 uTextureID_right_panel_loop = uTextureID_right_panel;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
892 if ( uNumDialogueNPCPortraits == 1 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
893 pDialogueNPCCount = 1;
2450
90349b8048a5 remove VideoPlayer.cpp/.h
Ritor1
parents: 2415
diff changeset
894 pMediaPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1u);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
895 dword_5C35D4 = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
896 if ( (signed int)uHouseID < 139 || (signed int)uHouseID > 172 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
897 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
898 if ( (signed int)uHouseID >= HOUSE_STABLES_HARMONDALE && (signed int)uHouseID <= 73 && !IsTravelAvailable(uHouseID - HOUSE_STABLES_HARMONDALE) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
899 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
900 return 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
901 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
902 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
903 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
904 { //guilds
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
905 v19 = guild_mambership_flags[uHouseID - HOUSE_FIRE_GUILD_INITIATE_EMERALD_ISLE]; //guilds flags
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
906 //v20 = uHouseID;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
907 //if ( !((unsigned __int8)(0x80u >> v19 % 8) & pPlayers[uActiveCharacter]->_guilds_member_bits[v19 /8]) )
2234
fd0b2a697416 fixing inverted guild greetings
Grumpy7
parents: 2215
diff changeset
908 if(!_449B57_test_bit(pPlayers[uActiveCharacter]->_achieved_awards_bits,v19))
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
909 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
910 PlayHouseSound(uHouseID, HouseSound_Greeting_2);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
911 return 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
912 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
913 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
914 PlayHouseSound(uHouseID, HouseSound_Greeting);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
915 dword_5C35D4 = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
916 return 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
917 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
918 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
919
1300
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
920 //----- (0044606A) --------------------------------------------------------
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
921 void PrepareHouse(HOUSE_ID house)
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
922 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
923 __int16 uExitMapID; // ax@2
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
924 // int v7; // ebx@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
925 // int v13; // [sp+30h] [bp-30h]@11
1300
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
926 int npc_id_arr[6]; // [sp+34h] [bp-2Ch]@1
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
927 int uAnimationID; // [sp+50h] [bp-10h]@1
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
928
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
929
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
930 uAnimationID = p2DEvents[house - 1].uAnimationID;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
931 memset(npc_id_arr, 0, sizeof(npc_id_arr));
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
932 uNumDialogueNPCPortraits = 0;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
933 uHouse_ExitPic = p2DEvents[house - 1].uExitPicID;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
934 if ( uHouse_ExitPic )
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
935 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
936 uExitMapID = p2DEvents[house - 1]._quest_related;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
937 if ( uExitMapID > 0 )
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
938 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
939 if(_449B57_test_bit(pParty->_quest_bits,uExitMapID))
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
940 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
941 uHouse_ExitPic = 0;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
942 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
943 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
944 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
945
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
946 dword_591080 = pAnimatedRooms[uAnimationID].house_npc_id;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
947 HouseNPCData[0]=0;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
948 uNumDialogueNPCPortraits = 0;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
949 if ( dword_591080 )
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
950 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
951
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
952 npc_id_arr[0] = dword_591080;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
953 uNumDialogueNPCPortraits = 1;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
954 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
955
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
956 for (uint i = 1; i < pNPCStats->uNumNewNPCs; ++i)
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
957 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
958 if (pNPCStats->pNewNPCData[i].Location2D == house )
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
959 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
960 if (!(pNPCStats->pNewNPCData[i].uFlags & 0x80))
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
961 {
1313
ae6c8e1ddef4 fix enter house error
Gloval
parents: 1306
diff changeset
962 HouseNPCData[uNumDialogueNPCPortraits+1-((dword_591080 != 0) ? 1 : 0) ] = &pNPCStats->pNewNPCData[i];
1300
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
963 npc_id_arr[uNumDialogueNPCPortraits] = pNPCStats->pNewNPCData[i].uPortraitID;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
964 ++uNumDialogueNPCPortraits;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
965 if ((pNPCStats->pNewNPCData[i].uFlags & 3) != 2)
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
966 ++pNPCStats->pNewNPCData[i].uFlags;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
967 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
968 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
969
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
970 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
971
2335
6e3ca612f132 int -> uint
Ritor1
parents: 2334
diff changeset
972 for (int i = 0; i < uNumDialogueNPCPortraits; ++i)
1300
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
973 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
974
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
975 char icon_name[128];
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
976 sprintfex(icon_name, "npc%03u", npc_id_arr[i]);
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
977 pDialogueNPCPortraits[i] = pIcons_LOD->LoadTexturePtr(icon_name, TEXTURE_16BIT_PALETTE);
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
978 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
979
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
980 if (uHouse_ExitPic)
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
981 {
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
982 pDialogueNPCPortraits[uNumDialogueNPCPortraits] = pIcons_LOD->LoadTexturePtr(pHouse_ExitPictures[uHouse_ExitPic], TEXTURE_16BIT_PALETTE);
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
983 ++uNumDialogueNPCPortraits;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
984 uHouse_ExitPic = p2DEvents[house - 1].uExitMapID;
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
985 }
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
986 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
987 //----- (004B1E92) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
988 void PlayHouseSound(unsigned int uHouseID, HouseSoundID sound)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
989 {
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1396
diff changeset
990 if ( pAnimatedRooms[p2DEvents[uHouseID].uAnimationID].uRoomSoundId )
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1396
diff changeset
991 pAudioPlayer->PlaySound((SoundID)(sound + 100 * (pAnimatedRooms[p2DEvents[uHouseID].uAnimationID].uRoomSoundId + 300)),
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
992 806, 0, -1, 0, 0, 0, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
993 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
994
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
995 //----- (004BCACC) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
996 void __fastcall OnSelectShopDialogueOption(signed int uMessageParam)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
997 {
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
998 int experience_for_next_level; // eax@5
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
999 int v16; // eax@32
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1000 __int16 v24; // ax@163
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1001 signed int v36; // esi@227
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1002 int pPrice; // ecx@227
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1003
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1004 if ( !pDialogueWindow->pNumPresenceButton )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1005 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1006 pRenderer->ClearZBuffer(0, 479);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1007 if (dialog_menu_id == HOUSE_DIALOGUE_MAIN)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1008 {
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1009 if ( in_current_building_type == BuildingType_Training )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1010 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1011 if ( uMessageParam == HOUSE_DIALOGUE_TRAININGHALL_TRAIN )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1012 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1013 experience_for_next_level = 0;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1014 if ( pPlayers[uActiveCharacter]->uLevel > 0 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1015 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1016 for( uint i = 0; i < pPlayers[uActiveCharacter]->uLevel; i++ )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1017 experience_for_next_level += i + 1;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1018 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1019 if (pPlayers[uActiveCharacter]->uLevel < pMaxLevelPerTrainingHallType[(unsigned int)window_SpeakInHouse->ptr_1C - 89] &&
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1020 (signed __int64)pPlayers[uActiveCharacter]->uExperience < 1000 * experience_for_next_level)//test experience
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1021 return;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1022 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1023 pDialogueWindow->Release();
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2214
diff changeset
1024 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 345, WINDOW_MainMenu, 0, 0);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1025 pBtn_ExitCancel = pDialogueWindow->CreateButton(526, 445, 75, 33, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[74],// "End Conversation"
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1026 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1027 pDialogueWindow->CreateButton(8, 8, 450, 320, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", nullptr);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1028 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1029 if ( in_current_building_type != BuildingType_Training )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1030 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1031 if ((in_current_building_type == BuildingType_Stables || in_current_building_type == BuildingType_Boats) &&
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1032 transport_schedule[transport_routes[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_STABLES_HARMONDALE][uMessageParam - HOUSE_DIALOGUE_TRANSPORT_SCHEDULE_1]].pSchedule[pParty->uDaysPlayed % 7]
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1033 || in_current_building_type != BuildingType_Temple || uMessageParam != BuildingType_MindGuild )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1034 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1035 pDialogueWindow->Release();
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2214
diff changeset
1036 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 345, WINDOW_MainMenu, 0, 0);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1037 pBtn_ExitCancel = pDialogueWindow->CreateButton(526, 445, 75, 33, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[74],// "End Conversation"
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1038 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1039 pDialogueWindow->CreateButton(8, 8, 450, 320, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", nullptr);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1040 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1041 else if (uActiveCharacter)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1042 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1043 if ( !pPlayers[uActiveCharacter]->IsPlayerHealableByTemple() )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1044 return;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1045 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1046 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1047 dialog_menu_id = (HOUSE_DIALOGUE_MENU)uMessageParam;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1048 if ( in_current_building_type < BuildingType_19 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1049 ShopTexture = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture(off_4F03B8[(int)in_current_building_type], TEXTURE_16BIT_PALETTE)];
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1050 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1051
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1052 //NEW
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1053 switch (in_current_building_type)
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1054 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1055 case BuildingType_FireGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1056 case BuildingType_AirGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1057 case BuildingType_WaterGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1058 case BuildingType_EarthGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1059 case BuildingType_SpiritGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1060 case BuildingType_MindGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1061 case BuildingType_BodyGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1062 case BuildingType_LightGuild:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1063 case BuildingType_DarkGuild:
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1640
diff changeset
1064 case BuildingType_ElementalGuild:
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1640
diff changeset
1065 case BuildingType_SelfGuild:
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1066 case BuildingType_16:
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1067 {
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
1068 if ( pParty->PartyTimes.Shops_next_generation_time[window_SpeakInHouse->par1C - 139] >= (signed __int64)pParty->uTimePlayed )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1069 {
1526
f47eab1a70d8 UIHouses.cpp cleaning(continue)
Ritor1
parents: 1496
diff changeset
1070 for ( uint i = 0; i < 12; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1071 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1072 if ( pParty->SpellBooksInGuilds[window_SpeakInHouse->par1C - 139][i].uItemID )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1073 ItemsInShopTexture[i] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture(pParty->SpellBooksInGuilds[window_SpeakInHouse->par1C - 139][i].GetIconName(), TEXTURE_16BIT_PALETTE)];
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1074 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1075 }
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1076 else//generation new books
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1077 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1078 SpellBookGenerator();
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
1079 pParty->PartyTimes.Shops_next_generation_time[window_SpeakInHouse->par1C - 139] = pParty->uTimePlayed + (signed __int64)((double)(0xA8C000
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1080 * (signed int)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].field_1C) * 0.033333335);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1081 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1082 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1083 }
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1084 case BuildingType_TownHall:
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1085 {
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1086 if ( uMessageParam == HOUSE_DIALOGUE_TOWNHALL_MESSAGE )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1087 {
1748
Grumpy7
parents: 1747 1739
diff changeset
1088 if ( pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] < (signed __int64)pParty->uTimePlayed )//new generation
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1089 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1090 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false;
1748
Grumpy7
parents: 1747 1739
diff changeset
1091 pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = (signed __int64)((double)(309657600 * (pParty->uCurrentMonth + 12i64 * pParty->uCurrentYear - 14015)) * 0.033333335);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1092 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1093 v16 = (int)((char *)window_SpeakInHouse->ptr_1C - 102);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1094 if ( !v16 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1095 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1096 while ( 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1097 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1098 v24 = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1099 if ( (unsigned __int16)v24 < 115 || (unsigned __int16)v24 > 132 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1100 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1101 if ( ((unsigned __int16)v24 < 235 || (unsigned __int16)v24 > 252)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1102 && ((unsigned __int16)v24 < 133 || (unsigned __int16)v24 > 150)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1103 && ((unsigned __int16)v24 < 0x97u || (unsigned __int16)v24 > 0xBAu)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1104 && ((unsigned __int16)v24 < 0xBEu || (unsigned __int16)v24 > 0xC0u)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1105 && ((unsigned __int16)v24 < 0xC4u || (unsigned __int16)v24 > 0xC6u)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1106 && ((unsigned __int16)v24 < 0x2Bu || (unsigned __int16)v24 > 0x2Du)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1107 && ((unsigned __int16)v24 < 0xCDu || (unsigned __int16)v24 > 0xCFu)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1108 && ((unsigned __int16)v24 < 0x5Eu || (unsigned __int16)v24 > 0x60u)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1109 && ((unsigned __int16)v24 < 0xFDu || (unsigned __int16)v24 > 0xFFu)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1110 && ((unsigned __int16)v24 < 0x6Du || (unsigned __int16)v24 > 0x6Fu)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1111 && ((unsigned __int16)v24 < 0x61u || (unsigned __int16)v24 > 0x63u) )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1112 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1113 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1114 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1115 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1116 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1117 if ( v16 == 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1118 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1119 while ( 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1120 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1121 v24 = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1122 if ( (unsigned __int16)v24 < 115 || (unsigned __int16)v24 > 132 )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1123 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1124 if ( ((unsigned __int16)v24 < 0xE8u || (unsigned __int16)v24 > 0xF9u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1125 && ((unsigned __int16)v24 < 0x85u || (unsigned __int16)v24 > 0x96u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1126 && ((unsigned __int16)v24 < 0x97u || (unsigned __int16)v24 > 0xBAu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1127 && ((unsigned __int16)v24 < 0xBEu || (unsigned __int16)v24 > 0xC0u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1128 && ((unsigned __int16)v24 < 0xC4u || (unsigned __int16)v24 > 0xC6u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1129 && ((unsigned __int16)v24 < 0x2Bu || (unsigned __int16)v24 > 0x2Du)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1130 && ((unsigned __int16)v24 < 0x52u || (unsigned __int16)v24 > 0x54u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1131 && ((unsigned __int16)v24 < 4 || (unsigned __int16)v24 > 6)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1132 && ((unsigned __int16)v24 < 0x37u || (unsigned __int16)v24 > 0x39u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1133 && ((unsigned __int16)v24 < 0x3Au || (unsigned __int16)v24 > 0x3Cu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1134 && ((unsigned __int16)v24 < 0x3Du || (unsigned __int16)v24 > 0x3Fu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1135 && ((unsigned __int16)v24 < 0xFDu || (unsigned __int16)v24 > 0xFFu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1136 && ((unsigned __int16)v24 < 0x61u || (unsigned __int16)v24 > 0x63u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1137 && ((unsigned __int16)v24 < 0xCDu || (unsigned __int16)v24 > 0xCFu) )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1138 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1139 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1140 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1141 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1142 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1143 if ( v16 == 2 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1144 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1145 while ( 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1146 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1147 v24 = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1148 if ( (unsigned __int16)v24 < 0x73u || (unsigned __int16)v24 > 0x84u )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1149 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1150 if ( ((unsigned __int16)v24 < 0xE8u || (unsigned __int16)v24 > 0xF9u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1151 && ((unsigned __int16)v24 < 0x85u || (unsigned __int16)v24 > 0x96u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1152 && ((unsigned __int16)v24 < 0x97u || (unsigned __int16)v24 > 0xBAu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1153 && ((unsigned __int16)v24 < 0xBEu || (unsigned __int16)v24 > 0xC0u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1154 && ((unsigned __int16)v24 < 0xC4u || (unsigned __int16)v24 > 0xC6u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1155 && ((unsigned __int16)v24 < 0x2Bu || (unsigned __int16)v24 > 0x2Du)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1156 && ((unsigned __int16)v24 < 0x31u || (unsigned __int16)v24 > 0x33u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1157 && ((unsigned __int16)v24 < 0x34u || (unsigned __int16)v24 > 0x36u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1158 && ((unsigned __int16)v24 < 0xFDu || (unsigned __int16)v24 > 0xFFu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1159 && ((unsigned __int16)v24 < 0x61u || (unsigned __int16)v24 > 0x63u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1160 && ((unsigned __int16)v24 < 0x1Cu || (unsigned __int16)v24 > 0x1Eu) )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1161 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1162 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1163 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1164 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1165 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1166 if ( v16 == 3 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1167 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1168 while ( 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1169 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1170 v24 = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1171 if ( (unsigned __int16)v24 < 0x73u || (unsigned __int16)v24 > 0x84u )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1172 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1173 if ( ((unsigned __int16)v24 < 0xE8u || (unsigned __int16)v24 > 0xF9u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1174 && ((unsigned __int16)v24 < 0x85u || (unsigned __int16)v24 > 0x96u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1175 && ((unsigned __int16)v24 < 0x97u || (unsigned __int16)v24 > 0xBAu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1176 && ((unsigned __int16)v24 < 0xBEu || (unsigned __int16)v24 > 0xC0u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1177 && ((unsigned __int16)v24 < 0xC4u || (unsigned __int16)v24 > 0xC6u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1178 && ((unsigned __int16)v24 < 0x2Bu || (unsigned __int16)v24 > 0x2Du)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1179 && ((unsigned __int16)v24 < 0x5Eu || (unsigned __int16)v24 > 0x60u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1180 && ((unsigned __int16)v24 < 0x43u || (unsigned __int16)v24 > 0x45u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1181 && ((unsigned __int16)v24 < 0x4Fu || (unsigned __int16)v24 > 0x51u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1182 && ((unsigned __int16)v24 < 0xC1u || (unsigned __int16)v24 > 0xC3u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1183 && ((unsigned __int16)v24 < 0x13u || (unsigned __int16)v24 > 0x15u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1184 && ((unsigned __int16)v24 < 0xFDu || (unsigned __int16)v24 > 0xFFu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1185 && ((unsigned __int16)v24 < 0x61u || (unsigned __int16)v24 > 0x63u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1186 && ((unsigned __int16)v24 < 0x6Au || (unsigned __int16)v24 > 0x6Cu) )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1187 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1188 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1189 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1190 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1191 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1192 if ( v16 == 4 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1193 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1194 while ( 1 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1195 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1196 v24 = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1197 if ( (unsigned __int16)v24 < 0x73u || (unsigned __int16)v24 > 0x84u )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1198 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1199 if ( ((unsigned __int16)v24 < 0xE8u || (unsigned __int16)v24 > 0xF9u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1200 && ((unsigned __int16)v24 < 0x85u || (unsigned __int16)v24 > 0x96u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1201 && ((unsigned __int16)v24 < 0x97u || (unsigned __int16)v24 > 0xBAu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1202 && ((unsigned __int16)v24 < 0xBEu || (unsigned __int16)v24 > 0xC0u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1203 && ((unsigned __int16)v24 < 0xC4u || (unsigned __int16)v24 > 0xC6u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1204 && ((unsigned __int16)v24 < 0x2Bu || (unsigned __int16)v24 > 0x2Du)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1205 && ((unsigned __int16)v24 < 0x6Du || (unsigned __int16)v24 > 0x6Fu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1206 && ((unsigned __int16)v24 < 0x46u || (unsigned __int16)v24 > 0x48u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1207 && ((unsigned __int16)v24 < 0x100u || (unsigned __int16)v24 > 0x102u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1208 && ((unsigned __int16)v24 < 0xD9u || (unsigned __int16)v24 > 0xDBu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1209 && ((unsigned __int16)v24 < 0xC7u || (unsigned __int16)v24 > 0xC9u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1210 && ((unsigned __int16)v24 < 0xE5u || (unsigned __int16)v24 > 0xE7u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1211 && ((unsigned __int16)v24 < 0xDFu || (unsigned __int16)v24 > 0xE1u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1212 && ((unsigned __int16)v24 < 0x5Bu || (unsigned __int16)v24 > 0x5Du)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1213 && ((unsigned __int16)v24 < 0x49u || (unsigned __int16)v24 > 0x4Bu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1214 && ((unsigned __int16)v24 < 0xFDu || (unsigned __int16)v24 > 0xFFu)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1215 && ((unsigned __int16)v24 < 0x61u || (unsigned __int16)v24 > 0x63u)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1216 && ((unsigned __int16)v24 < 0x10u || (unsigned __int16)v24 > 0x12u) )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1217 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1218 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1219 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand() % 258 + 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1220 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1221 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1222 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1223 bountyHunting_monster_id_for_hunting = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1224 if ( !pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1225 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1226 bountyHunting_text = pNPCTopics[351].pText;//" ýòîì ìåñÿöó íàçíà÷åíà íàãðàäà çà ãîëîâó %s..."
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1227 if ( !pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] )
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1228 bountyHunting_text = pNPCTopics[353].pText;//"Êîå êòî óæå ïðèõîäèë â ýòîì ìåñÿöå çà íàãðàäîé"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1229 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1230 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1231 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1232 if ( pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] > 0 )//get prize
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1233 {
1828
35c1e4ff6ba7 party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents: 1754
diff changeset
1234 pParty->PartyFindsGold(100 * pMonsterStats->pInfos[(unsigned __int16)pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel, 0);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1235 for ( uint i = 0; i < 4; ++i )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1236 pParty->pPlayers[i].SetVariable(VAR_Award, 86);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1237 pParty->uNumBountiesCollected += 100 * pMonsterStats->pInfos[pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1238 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = 0;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1239 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1240 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1241 bountyHunting_text = pNPCTopics[352].pText;//"Ïîçäðàâëÿþ! Âû óñïåøíî..."
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1242 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1243 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1244 else if ( uMessageParam == HOUSE_DIALOGUE_TOWNHALL_PAY_FINE )
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1245 pKeyActionMap->EnterText(1, 10, window_SpeakInHouse);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1246 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1247 }
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1248 case BuildingType_Bank:
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1249 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1250 if ( dialog_menu_id >= 7 && dialog_menu_id <= 8 )
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1251 pKeyActionMap->EnterText(1, 10, window_SpeakInHouse);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1252 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1253 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1254 }
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1255 case BuildingType_WeaponShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1256 case BuildingType_ArmorShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1257 case BuildingType_MagicShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1258 case BuildingType_AlchemistShop:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1259 case BuildingType_Tavern:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1260 case BuildingType_Temple:
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1261 case BuildingType_Training:
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1262 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1263 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1264 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1265 default:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1266 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1267 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1268 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1269 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1270 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1271
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1272 switch ( uMessageParam )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1273 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1274 case HOUSE_DIALOGUE_LEARN_SKILLS:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1275 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1276 pDialogueWindow->eWindowType = WINDOW_MainMenu;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1277 UI_CreateEndConversationButton();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1278 FillAviableSkillsToTeach(in_current_building_type);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1279 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1280 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1281 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1282 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1283 pDialogueWindow->eWindowType = WINDOW_MainMenu;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1284 UI_CreateEndConversationButton();
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1285 InitializaDialogueOptions_Tavern(in_current_building_type);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1286 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1287 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1288 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RULES:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1289 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_VICTORY_CONDITIONS:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1290 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1291 dialog_menu_id = (HOUSE_DIALOGUE_MENU)uMessageParam;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1292 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1293 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1294 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RESULT:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1295 {
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1296 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_PlayArcomage, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1297 dialog_menu_id = HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RESULT;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1298 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1299 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1300 case HOUSE_DIALOGUE_SHOP_BUY_STANDARD:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1301 case HOUSE_DIALOGUE_SHOP_BUY_SPECIAL:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1302 {
1748
Grumpy7
parents: 1747 1739
diff changeset
1303 if ( pParty->PartyTimes.Shops_next_generation_time[(unsigned int)window_SpeakInHouse->ptr_1C] < (signed __int64)pParty->uTimePlayed )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1304 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1305 GenerateStandartShopItems();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1306 GenerateSpecialShopItems();
1747
cecb080929c4 Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents: 1709
diff changeset
1307 pParty->PartyTimes.Shops_next_generation_time[window_SpeakInHouse->par1C] = pParty->uTimePlayed + (signed __int64)((double)(11059200 * (signed int)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].field_1C) * 0.033333335);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1308 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1309 if ( uMessageParam == HOUSE_DIALOGUE_SHOP_BUY_STANDARD )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1310 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1311 if ( uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType] )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1312 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1313 for ( uint i = 0; i < (unsigned __int8)uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType]; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1314 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1315 if ( pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][i].uItemID )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1316 ItemsInShopTexture[i] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture(pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][i].GetIconName(), TEXTURE_16BIT_PALETTE)];
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1317 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1318 }
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1319 if ( in_current_building_type == BuildingType_WeaponShop )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1320 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1321 if ( uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType] )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1322 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1323 for ( uint i = 0; i < (unsigned __int8)uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType]; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1324 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1325 if ( pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][i].uItemID)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1326 weapons_Ypos[i] = rand() % (300 - ItemsInShopTexture[i]->uTextureHeight);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1327 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1328 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1329 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1330 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1331 if ( uMessageParam == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1332 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1333 if ( uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType] )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1334 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1335 for ( uint i = 0; i < (unsigned __int8)uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType]; ++i )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1336 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1337 if ( pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1338 ItemsInShopTexture[i] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture(pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].GetIconName(), TEXTURE_16BIT_PALETTE)];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1339 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1340 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1341 if ( in_current_building_type == BuildingType_WeaponShop )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1342 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1343 if ( uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType] )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1344 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1345 for ( uint i = 0; i < (unsigned __int8)uItemsAmountPerShopType[p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType]; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1346 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1347 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1348 weapons_Ypos[i] = rand() % (300 - ItemsInShopTexture[i]->uTextureHeight);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1349 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1350 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1351 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1352 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1353 break;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1354 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1355 case HOUSE_DIALOGUE_SHOP_SELL:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1356 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1357 case HOUSE_DIALOGUE_SHOP_REPAIR:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1358 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1359 dialog_menu_id = (HOUSE_DIALOGUE_MENU)uMessageParam;
1829
e4e27261d84e sub_421B2C_PlaceInInventory_or_DropPickedItem to Party::sub_421B2C_PlaceInInventory_or_DropPickedItem
Grumpy7
parents: 1828
diff changeset
1360 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem();
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1361 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1362 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1363 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1364 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1365 pDialogueWindow->eWindowType = WINDOW_MainMenu;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1366 UI_CreateEndConversationButton();
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1367 InitializaDialogueOptions_Shops(in_current_building_type);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1368 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1369 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1370 default:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1371 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1372 if( uMessageParam >= HOUSE_DIALOGUE_36 && uMessageParam <= HOUSE_DIALOGUE_GUILD_LEARN_SKILL )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1373 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1374 v36 = (signed __int64)(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1375 pPrice = v36 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1376 if ( pPrice < v36 / 3 )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1377 pPrice = v36 / 3;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1378 if(byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][uMessageParam - 36])
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1379 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1380 if ( !pPlayers[uActiveCharacter]->pActiveSkills[uMessageParam - 36] )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1381 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1382 if ( pParty->uNumGold < pPrice )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1383 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1384 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1407
diff changeset
1385 if ( in_current_building_type == BuildingType_Training || in_current_building_type == BuildingType_Tavern )
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1386 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Goodbye);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1387 else
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1388 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1389 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1390 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1391 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1709
diff changeset
1392 Party::TakeGold(pPrice);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1393 dword_F8B1E4 = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1394 pPlayers[uActiveCharacter]->pActiveSkills[uMessageParam - 36] = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1395 pPlayers[uActiveCharacter]->PlaySound(SPEECH_78, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1396 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1397 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1398 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1399 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1400 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1401 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1402 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1403 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1404 //----- (004B6943) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1445
diff changeset
1405 void TravelByTransport()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1406 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1407 signed int v4; // ebx@1
1589
Ritor1
parents: 1588
diff changeset
1408 stru365_travel_info *pTravel; // esi@7
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1409 signed int v12; // esi@13
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1410 signed int v13; // edi@14
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1411 DWORD v14; // eax@26
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1412 DWORD v15; // edi@26
1589
Ritor1
parents: 1588
diff changeset
1413 int pTextHeight; // eax@36
Ritor1
parents: 1588
diff changeset
1414 int pRealTextHeight; // esi@36
Ritor1
parents: 1588
diff changeset
1415 int schedule_id; // esi@39
Ritor1
parents: 1588
diff changeset
1416 GUIButton *pButton; // ebx@39
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1417 signed int v25; // eax@41
1589
Ritor1
parents: 1588
diff changeset
1418 MapInfo pMap; // [sp-3Ch] [bp-2CCh]@62
Ritor1
parents: 1588
diff changeset
1419 char pTopicArray[5][100]; // [sp+14h] [bp-27Ch]@37
Ritor1
parents: 1588
diff changeset
1420 GUIWindow travel_window; // [sp+208h] [bp-88h]@1
Ritor1
parents: 1588
diff changeset
1421 int pPrimaryTextHeight; // [sp+260h] [bp-30h]@36
Ritor1
parents: 1588
diff changeset
1422 int index; // [sp+27Ch] [bp-14h]@36
Ritor1
parents: 1588
diff changeset
1423 unsigned int pPrice; // [sp+288h] [bp-8h]@1
Ritor1
parents: 1588
diff changeset
1424 int travel_time; // [sp+28Ch] [bp-4h]@48
Ritor1
parents: 1588
diff changeset
1425 enum PlayerSpeech pSpeech;
Ritor1
parents: 1588
diff changeset
1426 unsigned int pCurrentButton;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1427
1589
Ritor1
parents: 1588
diff changeset
1428 memcpy(&travel_window, window_SpeakInHouse, sizeof(travel_window));
Ritor1
parents: 1588
diff changeset
1429 travel_window.uFrameX = 483;
Ritor1
parents: 1588
diff changeset
1430 travel_window.uFrameWidth = 148;
Ritor1
parents: 1588
diff changeset
1431 travel_window.uFrameZ = 334;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1432
1587
Ritor1
parents: 1531
diff changeset
1433 v4 = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType == BuildingType_Stables ? 25 : 50;
Ritor1
parents: 1531
diff changeset
1434 v4 *= p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1435
1589
Ritor1
parents: 1588
diff changeset
1436 pPrice = v4 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
Ritor1
parents: 1588
diff changeset
1437 if ( (signed int)pPrice < v4 / 3 )
Ritor1
parents: 1588
diff changeset
1438 pPrice = v4 / 3;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1439 if ( dialog_menu_id == HOUSE_DIALOGUE_MAIN)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1440 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
1441 if ( HouseUI_CheckIfPlayerCanInteract() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1442 {
1589
Ritor1
parents: 1588
diff changeset
1443 index = 0;
Ritor1
parents: 1588
diff changeset
1444 strcpy(pTopicArray[4], "");
Ritor1
parents: 1588
diff changeset
1445 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[405], pPrice); // Price: %lu gold
Ritor1
parents: 1588
diff changeset
1446 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf2.data(), &travel_window, 0, 0);
Ritor1
parents: 1588
diff changeset
1447 pRealTextHeight = pTextHeight + (LOBYTE(pFontArrus->uFontHeight) - 3) + 146;
Ritor1
parents: 1588
diff changeset
1448 pPrimaryTextHeight = pRealTextHeight;
Ritor1
parents: 1588
diff changeset
1449 pCurrentButton = 2;
Ritor1
parents: 1588
diff changeset
1450 for ( uint i = pDialogueWindow->pStartingPosActiveItem; i < (unsigned int)(pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem); ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1451 {
1589
Ritor1
parents: 1588
diff changeset
1452 schedule_id = transport_routes[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_STABLES_HARMONDALE][index];
Ritor1
parents: 1588
diff changeset
1453 pButton = pDialogueWindow->GetControl(i);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1454
1589
Ritor1
parents: 1588
diff changeset
1455 if (schedule_id != 255)
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1456 {
1610
Ritor1
parents: 1609
diff changeset
1457 //if (schedule_id >= 25)
Ritor1
parents: 1609
diff changeset
1458 //Log::Warning(L"Transport UI: schedule overflow");
1589
Ritor1
parents: 1588
diff changeset
1459 if ( pCurrentButton >= 6 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1460 v25 = true;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1461 else
1589
Ritor1
parents: 1588
diff changeset
1462 v25 = transport_schedule[schedule_id].pSchedule[pParty->uDaysPlayed % 7];
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1463 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1464
1589
Ritor1
parents: 1588
diff changeset
1465 if (schedule_id != 255 && v25 && (!transport_schedule[schedule_id].uQuestBit
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
1466 || _449B57_test_bit(pParty->_quest_bits, transport_schedule[schedule_id].uQuestBit)) )//îøèáêà: ðèñóåòñÿ íåñêîëüêî ñòðî÷åê îäíîãî íàïðàâëåíèÿ ïóòåøåñòâèÿ
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1467 {
1610
Ritor1
parents: 1609
diff changeset
1468 //get color for current string(îïðåäåëåíèå öâåòà òåêóùåé ñòðîêè)----------
1589
Ritor1
parents: 1588
diff changeset
1469 if ( pDialogueWindow->pCurrentPosActiveItem == pCurrentButton )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1470 sprintf(pTopicArray[index], "\f%05d", Color16(255, 255, 155));
1589
Ritor1
parents: 1588
diff changeset
1471 else
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1472 sprintf(pTopicArray[index], "\f%05d", Color16(255, 255, 255));
1589
Ritor1
parents: 1588
diff changeset
1473 //hired NPC premium(ïðåìèÿ íà¸ìíîãî ÍÏÑ)----------------------------------
Ritor1
parents: 1588
diff changeset
1474 travel_time = transport_schedule[schedule_id].uTravelTime;
1591
d687f6e7c610 Boat dialogue
Ritor1
parents: 1590
diff changeset
1475 if ( (unsigned int)window_SpeakInHouse->ptr_1C >= HOUSE_BOATS_EMERALD_ISLE )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1476 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1477 if ( CheckHiredNPCSpeciality(Sailor) )
1589
Ritor1
parents: 1588
diff changeset
1478 travel_time -= 2;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1479 if ( CheckHiredNPCSpeciality(Navigator) )
1589
Ritor1
parents: 1588
diff changeset
1480 travel_time -= 3;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1481 if ( CheckHiredNPCSpeciality(Pirate) )
1589
Ritor1
parents: 1588
diff changeset
1482 travel_time -= 2;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1483 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1484 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1485 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1486 if ( CheckHiredNPCSpeciality(Horseman) )
1589
Ritor1
parents: 1588
diff changeset
1487 travel_time -= 2;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1488 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1489 if ( CheckHiredNPCSpeciality(Explorer) )
1589
Ritor1
parents: 1588
diff changeset
1490 --travel_time;
Ritor1
parents: 1588
diff changeset
1491
Ritor1
parents: 1588
diff changeset
1492 if ( travel_time < 1 )
Ritor1
parents: 1588
diff changeset
1493 travel_time = 1;
Ritor1
parents: 1588
diff changeset
1494 if ( schedule_id != 255 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1495 {
1589
Ritor1
parents: 1588
diff changeset
1496 memcpy(&pMap, &pMapStats->pInfos[transport_schedule[schedule_id].uMapInfoID], 0x44u);
Ritor1
parents: 1588
diff changeset
1497 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[404], travel_time, pMap.pName); // Time - %d days, destination %s
Ritor1
parents: 1588
diff changeset
1498 strcat(pTopicArray[index], pTmpBuf.data());
Ritor1
parents: 1588
diff changeset
1499 strcat(pTopicArray[index], "\n \n");
Ritor1
parents: 1588
diff changeset
1500 pButton->uY = pRealTextHeight;
Ritor1
parents: 1588
diff changeset
1501 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &travel_window, 0, 0);
Ritor1
parents: 1588
diff changeset
1502 pButton->uHeight = pTextHeight;
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
1503 pButton->uW = pButton->uY + pTextHeight - 1;
1589
Ritor1
parents: 1588
diff changeset
1504 pRealTextHeight += (LOBYTE(pFontArrus->uFontHeight) - 3) + pTextHeight;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1505 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1506 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1507 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1508 {
1589
Ritor1
parents: 1588
diff changeset
1509 strcpy(pTopicArray[index], "");
Ritor1
parents: 1588
diff changeset
1510 if ( pButton )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1511 {
1589
Ritor1
parents: 1588
diff changeset
1512 pButton->uW = 0;
Ritor1
parents: 1588
diff changeset
1513 pButton->uHeight = 0;
Ritor1
parents: 1588
diff changeset
1514 pButton->uY = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1515 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1516 }
1589
Ritor1
parents: 1588
diff changeset
1517 ++index;
Ritor1
parents: 1588
diff changeset
1518 ++pCurrentButton;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1519 }
1589
Ritor1
parents: 1588
diff changeset
1520 if ( pRealTextHeight != pPrimaryTextHeight )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1521 {
1589
Ritor1
parents: 1588
diff changeset
1522 sprintf(pTmpBuf.data(), "%s\n \n%s%s%s%s%s", pTmpBuf2.data(), pTopicArray[0], pTopicArray[1], pTopicArray[2], pTopicArray[3], pTopicArray[4]);
Ritor1
parents: 1588
diff changeset
1523 travel_window.DrawTitleText(pFontArrus, 0, 146, 0, pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1524 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1525 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1526 {
1589
Ritor1
parents: 1588
diff changeset
1527 travel_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pGlobalTXT_LocalizationStrings[561], &travel_window, 0, 0)) / 2 + 138,//"Èçâèíèòå, ïðèõîäèòå â äðóãîé äåíü"
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1528 Color16(255, 255, 255), pGlobalTXT_LocalizationStrings[561], 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1529 pAudioPlayer->StopChannels(-1, -1);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1530 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1531 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1532 }
1589
Ritor1
parents: 1588
diff changeset
1533 else//ïîñëå íàæàòèÿ òîïèêà
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1534 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1535 if ( dialog_menu_id >= HOUSE_DIALOGUE_TRANSPORT_SCHEDULE_1 && dialog_menu_id <= HOUSE_DIALOGUE_TRANSPORT_SCHEDULE_4 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1536 {
1589
Ritor1
parents: 1588
diff changeset
1537 if ( pParty->uNumGold < pPrice )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1538 {
1589
Ritor1
parents: 1588
diff changeset
1539 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);//"Ó âàñ íå õâàòàåò çîëîòà"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1540 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Greeting_2);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1541 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1542 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1543 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1544
1589
Ritor1
parents: 1588
diff changeset
1545 Party::TakeGold(pPrice);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1546
1589
Ritor1
parents: 1588
diff changeset
1547 pTravel = &transport_schedule[transport_routes[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_STABLES_HARMONDALE][dialog_menu_id - HOUSE_DIALOGUE_TRANSPORT_SCHEDULE_1]];
Ritor1
parents: 1588
diff changeset
1548 if ( pTravel->pSchedule[pParty->uDaysPlayed % 7] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1549 {
1589
Ritor1
parents: 1588
diff changeset
1550 if ( _stricmp(pCurrentMapName, pMapStats->pInfos[pTravel->uMapInfoID].pFilename) )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1551 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1552 SaveGame(1, 0);
1589
Ritor1
parents: 1588
diff changeset
1553 strcpy(pCurrentMapName, pMapStats->pInfos[pTravel->uMapInfoID].pFilename);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1554
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2057
diff changeset
1555 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0001;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1556 _5B65B8_npcdata_hiword_house_or_other = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1557 dword_5B65BC = 0;
1589
Ritor1
parents: 1588
diff changeset
1558 _5B65B4_npcdata_loword_house_or_other = pTravel->arrival_rot_y;
2124
7f403ebf619f GAME_STATE_CHANGE_LOCATION
Ritor1
parents: 2069
diff changeset
1559 uGameState = GAME_STATE_CHANGE_LOCATION;
1589
Ritor1
parents: 1588
diff changeset
1560 _5B65A8_npcdata_uflags_or_other = pTravel->arrival_x;
Ritor1
parents: 1588
diff changeset
1561 _5B65AC_npcdata_fame_or_other = pTravel->arrival_y;
Ritor1
parents: 1588
diff changeset
1562 _5B65B0_npcdata_rep_or_other = pTravel->arrival_z;
Ritor1
parents: 1588
diff changeset
1563 dword_5B65C0 = pTravel->arrival_x | pTravel->arrival_y | pTravel->arrival_z | pTravel->arrival_rot_y;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1564 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1565 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1566 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1639
diff changeset
1567 pGame->pIndoorCameraD3D->sRotationY = 0;
1638
ccde94f02b75 class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents: 1630
diff changeset
1568
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1569 pParty->uFlags |= 2u;
1589
Ritor1
parents: 1588
diff changeset
1570 pParty->vPosition.x = pTravel->arrival_x;
Ritor1
parents: 1588
diff changeset
1571 pParty->vPosition.y = pTravel->arrival_y;
Ritor1
parents: 1588
diff changeset
1572 pParty->vPosition.z = pTravel->arrival_z;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1573 pParty->uFallStartY = pParty->vPosition.z;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1574 pParty->sRotationX = 0;
1589
Ritor1
parents: 1588
diff changeset
1575 pParty->sRotationY = pTravel->arrival_rot_y;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1576 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1577 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
1589
Ritor1
parents: 1588
diff changeset
1578 v12 = pTravel->uTravelTime;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1579 if ( (signed int)window_SpeakInHouse->ptr_1C >= 63 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1580 {
1589
Ritor1
parents: 1588
diff changeset
1581 pSpeech = SPEECH_SetSail;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1582 v13 = 2500;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1583 if ( CheckHiredNPCSpeciality(Sailor) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1584 v12 -= 2;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1585 if ( CheckHiredNPCSpeciality(Navigator) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1586 v12 -= 3;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1587 if ( CheckHiredNPCSpeciality(Pirate) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1588 v12 -= 2;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1589 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1590 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1591 {
1589
Ritor1
parents: 1588
diff changeset
1592 pSpeech = SPEECH_CarriageReady;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1593 v13 = 1500;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1594 if ( CheckHiredNPCSpeciality(Horseman) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1595 v12 -= 2;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1596 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1597 if ( CheckHiredNPCSpeciality(Explorer) )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1598 --v12;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1599 if ( v12 < 1 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1600 v12 = 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1601 RestAndHeal(1440 * v12);
1589
Ritor1
parents: 1588
diff changeset
1602 pPlayers[uActiveCharacter]->PlaySound(pSpeech, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1603 v14 = GetTickCount();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1604 v15 = v14 + v13;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1605 if ( v15 < v14 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1606 v15 = v14;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1607 while ( GetTickCount() < v15 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1608 sqrt(3.1415926);
1919
140ca8123384 Tavern rest fix
Ritor1
parents: 1843
diff changeset
1609 while ( HouseDialogPressCloseBtn() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1610 ;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1611 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1612 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1613 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1614 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1615 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1616 dialog_menu_id = HOUSE_DIALOGUE_MAIN;
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1748
diff changeset
1617 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1618 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1619 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1620 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1621 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1622 //----- (004B68EA) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1623 bool __fastcall IsTravelAvailable(int a1)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1624 {
1587
Ritor1
parents: 1531
diff changeset
1625 for ( uint i = 0; i < 4; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1626 {
1587
Ritor1
parents: 1531
diff changeset
1627 if ( transport_schedule[transport_routes[a1][i]].pSchedule[pParty->uDaysPlayed % 7] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1628 {
1587
Ritor1
parents: 1531
diff changeset
1629 if (!transport_schedule[transport_routes[a1][i]].uQuestBit || _449B57_test_bit(pParty->_quest_bits, transport_schedule[transport_routes[a1][i]].uQuestBit))
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1630 return true;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1631 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1632 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1633 return false;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1634 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1635
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1636 //----- (004B7911) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1445
diff changeset
1637 void TownHallDialog()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1638 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1639 int v1; // eax@10
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1640 int v2; // esi@10
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1641 signed int pStringSum; // ebx@24
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1642 signed int v16; // ebx@28
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1643 int v17; // ebx@28
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1644 GUIButton *pButton; // eax@30
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1645 int pTextHeight; // eax@30
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1646 unsigned __int16 pTextColor; // ax@30
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1647 GUIWindow window; // [sp+60h] [bp-BCh]@21
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1648 GUIWindow townHall_window; // [sp+B4h] [bp-68h]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1649 int v29; // [sp+10Ch] [bp-10h]@28
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1650 int v31; // [sp+114h] [bp-8h]@29
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1651 GUIFont *pOutString; // [sp+118h] [bp-4h]@21
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1652
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1653 memcpy(&townHall_window, window_SpeakInHouse, sizeof(townHall_window));
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1654 townHall_window.uFrameX = 483;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1655 townHall_window.uFrameWidth = 148;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1656 townHall_window.uFrameZ = 334;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1657 sprintf(pTmpBuf.data(), "%s: %d", pGlobalTXT_LocalizationStrings[605], pParty->uFine);//Òåêóùèé øòðàô
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1658 townHall_window.DrawTitleText(pFontArrus, 0, 260, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1659 switch(dialog_menu_id)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1660 {
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1661 case HOUSE_DIALOGUE_MAIN:
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1662 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1663 pStringSum = 1;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1664 pTextHeight = 0;
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1665 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[604]);//Îõîòà çà âîçíàãðàæäåíèå
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1666 if ( pParty->uFine > 0 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1667 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1668 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[603]);//Çàïëàòèòü øòðàô
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1669 pStringSum = 2;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1670 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1671 for ( uint i = 0; i < pStringSum; ++i )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1672 pTextHeight += pFontArrus->CalcTextHeight(pShopOptions[i], &townHall_window, 0, 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1673 v29 = (100 - pTextHeight) / pStringSum;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1674 v16 = 80 - pStringSum * ((100 - pTextHeight) / pStringSum);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1675 v17 = (v16 / 2) - v29 / 2 + 158;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1676 if ( pDialogueWindow->pNumPresenceButton > 0 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1677 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1678 v31 = 2;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1679 uint j = 0;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1680 for ( uint i = pDialogueWindow->pStartingPosActiveItem;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1681 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1682 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1683 pButton = pDialogueWindow->GetControl(i);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1684 pButton->uY = v29 + v17;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1685 pTextHeight = pFontArrus->CalcTextHeight(pShopOptions[j], &townHall_window, 0, 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1686 pButton->uHeight = pTextHeight;
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
1687 v17 = pButton->uY + pTextHeight - 1;
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1688 pButton->uW = v17;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1689 pTextColor = Color16(0xFFu, 0xFFu, 0x9Bu);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1690 if ( pDialogueWindow->pCurrentPosActiveItem != v31 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1691 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
1692 townHall_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pShopOptions[j], 3);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1693 ++v31;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1694 ++j;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1695 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1696 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1697 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1698 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1699 case HOUSE_DIALOGUE_TOWNHALL_MESSAGE:
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1700 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1701 sprintf(pTmpBuf.data(), "\f%05d%s\f%05d", Color16(0xFFu, 0xFFu, 0x9Bu),
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1702 pMonsterStats->pInfos[bountyHunting_monster_id_for_hunting].pName, Color16(0xFFu, 0xFFu, 0xFFu));
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1703 sprintf(pTmpBuf2.data(), bountyHunting_text, pTmpBuf.data(), 100 * pMonsterStats->pInfos[bountyHunting_monster_id_for_hunting].uLevel);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1704 current_npc_text = pTmpBuf2.data();
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1705 memcpy(&window, pDialogueWindow, sizeof(window));
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1706 window.uFrameWidth = 458;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1707 window.uFrameZ = 457;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1708 pOutString = pFontArrus;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1709 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf2.data(), &window, 13, 0) + 7;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1710 if ( 352 - pTextHeight < 8 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1711 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1712 pOutString = pFontCreate;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1713 pTextHeight = pFontCreate->CalcTextHeight(current_npc_text, &window, 13, 0) + 7;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1714 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1715 pRenderer->GetLeather(8, 352 - pTextHeight, pIcons_LOD->GetTexture(uTextureID_Leather), pIcons_LOD->GetTexture(uTextureID_Leather)->uTextureHeight - pTextHeight);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1716 pRenderer->DrawTextureIndexed(8, 347 - pTextHeight, pTexture_591428);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1717 window.DrawText(pOutString, 13, 354 - pTextHeight, 0, FitTextInAWindow(current_npc_text, pOutString, &window, 13, 0), 0, 0, 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1718 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1719 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1720 case HOUSE_DIALOGUE_TOWNHALL_PAY_FINE:
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1721 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1722 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1723 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1724 sprintfex(pTmpBuf.data(), "%s\n%s", pGlobalTXT_LocalizationStrings[606], pGlobalTXT_LocalizationStrings[112]); // "Pay" "How Much?"
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1725 townHall_window.DrawTitleText(pFontArrus, 0, 146, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1726 townHall_window.DrawTitleText(pFontArrus, 0, 186, Color16(0xFFu, 0xFFu, 0xFFu), pKeyActionMap->pPressedKeysBuffer, 3);
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1727 townHall_window.DrawFlashingInputCursor(pFontArrus->GetLineWidth(pKeyActionMap->pPressedKeysBuffer) / 2 + 80, 185, pFontArrus);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1728 return;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1729 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1730 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1731 {
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1732 v1 = atoi(pKeyActionMap->pPressedKeysBuffer);
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1733 v2 = atoi(pKeyActionMap->pPressedKeysBuffer);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1734 if ( v1 <= 0 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1735 {
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1736 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1737 return;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1738 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1739 if ( v1 > pParty->uNumGold )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1740 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1741 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1742 v2 = pParty->uNumGold;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1743 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1744 if ( v2 > pParty->uFine )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1745 v2 = pParty->uFine;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1746 Party::TakeGold(v2);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1747 pParty->uFine -= v2;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1748 if ( pParty->uFine < 0 )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1749 pParty->uFine = 0;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1750 if ( uActiveCharacter )
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1751 pPlayers[uActiveCharacter]->PlaySound(SPEECH_81, 0);
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1752 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1753 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED)
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1754 {
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1755 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1756 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1529
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1757 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1758 break;
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1759 }
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1760 default:
61458df2cb4f bountyHunting fix
Ritor1
parents: 1526
diff changeset
1761 break;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1762 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1763 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1764 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1765
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1766 //----- (004B7D7E) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1445
diff changeset
1767 void BankDialog()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1768 {
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1769 int entered_sum; // eax@19
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1770 unsigned int takes_sum; // esi@19
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1771 unsigned __int16 pColorText; // ax@27
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1772 GUIWindow bank_window; // [sp+Ch] [bp-5Ch]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1773
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1774 memcpy(&bank_window, window_SpeakInHouse, sizeof(bank_window));
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1775 bank_window.uFrameX = 483;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1776 bank_window.uFrameWidth = 148;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1777 bank_window.uFrameZ = 334;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1778 sprintf(pTmpBuf.data(), "%s: %d", pGlobalTXT_LocalizationStrings[25], pParty->uNumGoldInBank);//Áàëàíñ
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1779 bank_window.DrawTitleText(pFontArrus, 0, 220, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1780 switch(dialog_menu_id)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1781 {
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1782 case HOUSE_DIALOGUE_MAIN:
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1783 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1784 pColorText = Color16(0xFFu, 0xFFu, 0x9Bu);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1785 if ( pDialogueWindow->pCurrentPosActiveItem != 2 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1786 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1787 bank_window.DrawTitleText(pFontArrus, 0, 146, pColorText, pGlobalTXT_LocalizationStrings[60], 3);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1788 pColorText = Color16(0xFFu, 0xFFu, 0x9Bu);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1789 if ( pDialogueWindow->pCurrentPosActiveItem != 3 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1790 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1791 bank_window.DrawTitleText(pFontArrus, 0, 176, pColorText, pGlobalTXT_LocalizationStrings[244], 3);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1792 break;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1793 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1794 case HOUSE_DIALOGUE_BANK_PUT_GOLD:
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1795 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1796 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1797 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1798 sprintf(pTmpBuf.data(), "%s\n%s", pGlobalTXT_LocalizationStrings[60], pGlobalTXT_LocalizationStrings[112]);//"Ïîëîæèòü" "Ñêîëüêî?"
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1799 bank_window.DrawTitleText(pFontArrus, 0, 146, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1800 bank_window.DrawTitleText(pFontArrus, 0, 186, Color16(0xFFu, 0xFFu, 0xFFu), pKeyActionMap->pPressedKeysBuffer, 3);
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1801 bank_window.DrawFlashingInputCursor(pFontArrus->GetLineWidth(pKeyActionMap->pPressedKeysBuffer) / 2 + 80, 185, pFontArrus);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1802 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1803 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1804 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1805 {
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1806 entered_sum = atoi(pKeyActionMap->pPressedKeysBuffer);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1807 takes_sum = entered_sum;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1808 if ( !entered_sum )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1809 {
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1810 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1811 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1812 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1813 if ( entered_sum > pParty->uNumGold )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1814 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1815 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1816 takes_sum = pParty->uNumGold;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1817 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1818 if ( takes_sum )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1819 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1820 Party::TakeGold(takes_sum);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1821 pParty->uNumGoldInBank += takes_sum;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1822 if ( uActiveCharacter )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1823 pPlayers[uActiveCharacter]->PlaySound(SPEECH_81, 0);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1824 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1825 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1826 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1827 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1828 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1829 if (window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1830 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1831 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1832 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1833 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1834 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1835 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1836 case HOUSE_DIALOGUE_BANK_GET_GOLD:
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1837 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1838 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1839 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1840 sprintfex(pTmpBuf.data(), "%s\n%s", pGlobalTXT_LocalizationStrings[244], pGlobalTXT_LocalizationStrings[112]);//"Ñíÿòü" "Ñêîëüêî?"
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1841 bank_window.DrawTitleText(pFontArrus, 0, 146, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1842 bank_window.DrawTitleText(pFontArrus, 0, 186, Color16(0xFFu, 0xFFu, 0xFFu), pKeyActionMap->pPressedKeysBuffer, 3);
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1843 bank_window.DrawFlashingInputCursor(pFontArrus->GetLineWidth(pKeyActionMap->pPressedKeysBuffer) / 2 + 80, 185, pFontArrus);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1844 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1845 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1846 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1847 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1848 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
1849 entered_sum = atoi(pKeyActionMap->pPressedKeysBuffer);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1850 takes_sum = entered_sum;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1851 if ( entered_sum )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1852 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1853 if ( entered_sum > pParty->uNumGoldInBank )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1854 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1855 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1856 takes_sum = pParty->uNumGoldInBank;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1857 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1858 if ( takes_sum )
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1859 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1860 Party::SetGold(pParty->uNumGold + takes_sum);
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1861 pParty->uNumGoldInBank -= takes_sum;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1862 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1863 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1864 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1865 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1866 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1867 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1868 if ( window_SpeakInHouse->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED)
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1869 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1870 window_SpeakInHouse->receives_keyboard_input_2 = WINDOW_INPUT_NONE;
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
1871 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1573
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1872 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1873 return;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1874 }
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1875 default:
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1876 {
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1877 break;
6d759814a817 BankDialog() cleaned
Ritor1
parents: 1545
diff changeset
1878 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1879 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1880 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1881 // F8B19C: using guessed type int dword_F8B19C;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1882
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1883 //----- (004B8285) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1445
diff changeset
1884 void TavernDialog()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1885 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1886 int pPriceRoom;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1887 int pPriceFood;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1888 int pPriceSkill;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1889 int pItemNum;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1890 double v2; // st7@1
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1891 int pNumString; // edi@16
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1892 signed int v9; // esi@16
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1893 unsigned int pColorText; // eax@57
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1894 GUIButton *pButton; // eax@65
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1895 int pSkillCount;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1896 signed int pOptionsCount; // edi@77
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1897 signed int i; // esi@79
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
1898 // signed int v53; // edi@81
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1899 int v54; // edi@81
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1900 const char *pText; // [sp-4h] [bp-278h]@93
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1901 char pTopic1[100]; // [sp+Ch] [bp-268h]@55
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1902 char pTopic4[100]; // [sp+70h] [bp-204h]@59
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1903 char pTopic2[100]; // [sp+D4h] [bp-1A0h]@57
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1904 char pTopic3[100]; // [sp+138h] [bp-13Ch]@59
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1905 GUIWindow dialog_window; // [sp+1F0h] [bp-84h]@1
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1906 int v91; // [sp+270h] [bp-4h]@3
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1907 unsigned int pTopic1Height; // [sp+26Fh] [bp-5h]@55
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1908 unsigned __int8 pTopic2Height; // [sp+267h] [bp-Dh]@57
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1909 unsigned __int8 pTopic3Height; // [sp+253h] [bp-21h]@59
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1910 unsigned __int8 pTopic4Height;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1911 int pTextHeight;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1912 int all_text_height; // [sp+260h] [bp-14h]@18
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1913 GUIFont *pOutString;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1914
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1915 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1916 dialog_window.uFrameX = 483;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1917 dialog_window.uFrameWidth = 148;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1918 dialog_window.uFrameZ = 334;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1919 v2 = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1920
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1921 pPriceRoom = ((v2 * v2) / 10) * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1922 if ( pPriceRoom < ((v2 * v2) / 10) / 3 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1923 pPriceRoom = ((v2 * v2) / 10) / 3;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1924 if ( pPriceRoom <= 0 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1925 pPriceRoom = 1;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1926
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1927 pPriceFood = ((v2 * v2) * v2 / 100) * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1928 if ( pPriceFood < ((v2 * v2) * v2 / 100) / 3 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1929 pPriceFood = ((v2 * v2) * v2 / 100) / 3;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1930 if ( pPriceFood <= 0 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1931 pPriceFood = 1;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1932
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1933
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1934 switch(dialog_menu_id)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1935 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1936 case HOUSE_DIALOGUE_MAIN:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1937 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
1938 if ( !HouseUI_CheckIfPlayerCanInteract() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1939 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1940
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1941 sprintf(pTopic1, "\f%05d", pDialogueWindow->pCurrentPosActiveItem == 2 ? Color16(0xFFu, 0xFFu, 0x9Bu) : Color16(0xFFu, 0xFFu, 0xFFu));
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1942 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[178], pPriceRoom); // Rent room for %d gold
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1943 strcat(pTopic1, pTmpBuf2.data());
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1944 pTopic1Height = pFontArrus->CalcTextHeight(pTopic1, &dialog_window, 0, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1945 strcat(pTopic1, "\n \n");
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1946
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1947 sprintf(pTopic2, "\f%05d", pDialogueWindow->pCurrentPosActiveItem == 3 ? Color16(0xFFu, 0xFFu, 0x9Bu) : Color16(0xFFu, 0xFFu, 0xFFu));
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1948 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[86], // Buy food for %d days for %d gold
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1949 (unsigned int)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier, pPriceFood);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1950 strcat(pTopic2, pTmpBuf2.data());
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1951 pTopic2Height = pFontArrus->CalcTextHeight(pTopic2, &dialog_window, 0, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1952 strcat(pTopic2, "\n \n");
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1953
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1954 sprintf(pTopic3, "\f%05d", pDialogueWindow->pCurrentPosActiveItem == 4 ? Color16(0xFFu, 0xFFu, 0x9Bu) : Color16(0xFFu, 0xFFu, 0xFFu));
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1955 strcat(pTopic3, pGlobalTXT_LocalizationStrings[160]); // Learn Skills
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1956 pTopic3Height = pFontArrus->CalcTextHeight(pTopic3, &dialog_window, 0, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1957 strcat(pTopic3, "\n \n");
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1958 pTopic4[0] = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1959 if ( (signed int)window_SpeakInHouse->par1C >= 108 && (signed int)window_SpeakInHouse->par1C <= 120 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1960 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1961 sprintf(pTopic4, "\f%05d", pDialogueWindow->pCurrentPosActiveItem == 5 ? Color16(0xFFu, 0xFFu, 0x9Bu) : Color16(0xFFu, 0xFFu, 0xFFu));
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1962 strcat(pTopic4, pGlobalTXT_LocalizationStrings[611]); // Play Arcomage
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1963 pTopic4Height = pFontArrus->CalcTextHeight(pTopic4, &dialog_window, 0, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1964 }
1610
Ritor1
parents: 1609
diff changeset
1965
Ritor1
parents: 1609
diff changeset
1966 if ( pDialogueWindow->pNumPresenceButton )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1967 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1968 for ( pItemNum = pDialogueWindow->pStartingPosActiveItem;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1969 pItemNum < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++pItemNum )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1970 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1971 pButton = pDialogueWindow->GetControl(pItemNum);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1972 if ( pButton->msg_param == 15 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1973 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1974 pButton->uHeight = pTopic1Height;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1975 pButton->uY = 146;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1976 pButton->uW = pTopic1Height + 145;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1977 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1978 else if ( pButton->msg_param == 16 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1979 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1980 pButton->uHeight = pTopic2Height;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1981 pButton->uY = pTopic1Height + (LOBYTE(pFontArrus->uFontHeight) - 3) + 146;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1982 pButton->uW = (pTopic1Height + (LOBYTE(pFontArrus->uFontHeight) - 3) + 146) + pTopic2Height - 1;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1983 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1984 else if ( pButton->msg_param == 96 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1985 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1986 pButton->uY = pTopic1Height + pTopic2Height + 2 * (LOBYTE(pFontArrus->uFontHeight) - 3) + 146;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1987 pButton->uHeight = pTopic3Height;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1988 pButton->uW = pTopic3Height + (pTopic1Height + pTopic2Height + 2 * (LOBYTE(pFontArrus->uFontHeight) - 3) + 146) - 1;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1989 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1990 else if ( pButton->msg_param == 101 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1991 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1992 pButton->uHeight = pTopic4Height;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1993 pButton->uY = pTopic1Height + 3 * (LOBYTE(pFontArrus->uFontHeight) - 3) + pTopic4Height + pTopic2Height + 146;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
1994 pButton->uW = (pTopic1Height + 3 * (LOBYTE(pFontArrus->uFontHeight) - 3) + pTopic4Height + pTopic2Height + 146) + pTopic4Height - 1;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1995 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1996 }
1610
Ritor1
parents: 1609
diff changeset
1997 sprintfex(pTmpBuf.data(), "%s%s%s%s", pTopic1, pTopic2, pTopic3, pTopic4);
Ritor1
parents: 1609
diff changeset
1998 dialog_window.DrawTitleText(pFontArrus, 0, 146, 0, pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
1999 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2000 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2001 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2002 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RULES:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2003 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2004 pOutString = pFontArrus;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2005 strcpy(pTmpBuf.data(), pNPCTopics[354].pText);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2006 dialog_window.uFrameWidth = game_viewport_width;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2007 dialog_window.uFrameZ = 452;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2008 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 12, 0) + 7;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2009 if ( 352 - pTextHeight < 8 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2010 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2011 pOutString = pFontCreate;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2012 pTextHeight = pFontCreate->CalcTextHeight(pTmpBuf.data(), &dialog_window, 12, 0) + 7;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2013 }
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2014 pRenderer->GetLeather(8, 352 - pTextHeight, pIcons_LOD->GetTexture(uTextureID_Leather), pIcons_LOD->GetTexture(uTextureID_Leather)->uTextureHeight - pTextHeight);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2015 pRenderer->DrawTextureIndexed(8, 347 - pTextHeight, pTexture_591428);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2016 window_SpeakInHouse->DrawText(pOutString, 12, 354 - pTextHeight, 0, FitTextInAWindow(pTmpBuf.data(), pOutString, &dialog_window, 0xCu, 0), 0, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2017 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2018 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2019 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_VICTORY_CONDITIONS:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2020 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2021 strcpy(pTmpBuf.data(), pNPCTopics[(uint)window_SpeakInHouse->ptr_1C + 247].pText);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2022 dialog_window.uFrameWidth = game_viewport_width;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2023 dialog_window.uFrameZ = 452;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2024 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 12, 0) + 7;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2025 pRenderer->GetLeather(8, 352 - pTextHeight, pIcons_LOD->GetTexture(uTextureID_Leather), pIcons_LOD->GetTexture(uTextureID_Leather)->uTextureHeight - pTextHeight);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2026 pRenderer->DrawTextureIndexed(8, 347 - pTextHeight, pTexture_591428);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2027 window_SpeakInHouse->DrawText(pFontArrus, 12, 354 - pTextHeight, 0,
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2028 FitTextInAWindow(pTmpBuf.data(), pFontArrus, &dialog_window, 0xCu, 0), 0, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2029 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2030 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2031 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RESULT:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2032 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2033 if ( pArcomageGame->bGameInProgress == 1 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2034 return;
2214
20995bb8895a GameResultsApply() full refactored
Ritor1
parents: 2185
diff changeset
2035 if ( pArcomageGame->uGameWinner )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2036 {
2214
20995bb8895a GameResultsApply() full refactored
Ritor1
parents: 2185
diff changeset
2037 if ( pArcomageGame->uGameWinner == 1 )
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2038 pText = pGlobalTXT_LocalizationStrings[640];// You won!
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2039 else
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2040 pText = pGlobalTXT_LocalizationStrings[641];// You lost!
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2041 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2042 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2043 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2044 pText = pGlobalTXT_LocalizationStrings[639];// A tie!
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2045 }
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2046 strcpy(pTmpBuf.data(), pText);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2047 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138,
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2048 Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2049 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2050 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2051 case HOUSE_DIALOGUE_TAVERN_REST:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2052 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2053 if ( pParty->uNumGold >= pPriceRoom )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2054 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2055 Party::TakeGold(pPriceRoom);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2056 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
2022
03d9336e862f SOUND_WalkingOnTo3DModel
Ritor1
parents: 1920
diff changeset
2057 dialog_menu_id = HOUSE_DIALOGUE_NULL;
1919
140ca8123384 Tavern rest fix
Ritor1
parents: 1843
diff changeset
2058 HouseDialogPressCloseBtn();
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1396
diff changeset
2059 GetHouseGoodbyeSpeech();
2450
90349b8048a5 remove VideoPlayer.cpp/.h
Ritor1
parents: 2415
diff changeset
2060 pMediaPlayer->Unload();
2022
03d9336e862f SOUND_WalkingOnTo3DModel
Ritor1
parents: 1920
diff changeset
2061 /*if ( pMessageQueue_50CBD0->uNumMessages )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2062 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2063 pMessageQueue_50CBD0->pMessages[0].eType = UIMSG_RentRoom;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2064 pMessageQueue_50CBD0->pMessages[0].param = (int)window_SpeakInHouse->ptr_1C;//107
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2065 pMessageQueue_50CBD0->pMessages[0].field_8 = 1;
2022
03d9336e862f SOUND_WalkingOnTo3DModel
Ritor1
parents: 1920
diff changeset
2066 ++pMessageQueue_50CBD0->uNumMessages;*/
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2067 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_RentRoom, (int)window_SpeakInHouse->ptr_1C, 1);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2068 window_SpeakInHouse->Release();
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2069 window_SpeakInHouse = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2070 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2071 }
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2072 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);//Ó âàñ íå õâàòàåò çîëîòà
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2073 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Goodbye);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2074 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2075 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2076 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2077
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2078 case HOUSE_DIALOGUE_LEARN_SKILLS:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2079 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
2080 if ( !HouseUI_CheckIfPlayerCanInteract() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2081 return;
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2082 pSkillCount = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2083 v9 = (signed __int64)(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2084 pPriceSkill = v9 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2085 if ( pPriceSkill < v9 / 3 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2086 pPriceSkill = v9 / 3;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2087 all_text_height = 0;
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2088 for ( int i = pDialogueWindow->pStartingPosActiveItem;
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2089 i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2090 {
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2091 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2092 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2093 {
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2094 all_text_height = pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &dialog_window, 0, 0);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2095 pSkillCount++;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2096 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2097 }
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2098 if ( pSkillCount )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2099 {
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2100 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPriceSkill);//Ñòîèìîñòü íàâûêà: %lu
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2101 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2102 v91 = (149 - all_text_height) / pSkillCount;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2103 if ( (149 - all_text_height) / pSkillCount > 32 )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2104 v91 = 32;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2105 v54 = (149 - pSkillCount * v91 - all_text_height) / 2 - v91 / 2 + 162;
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2106 for ( int i = pDialogueWindow->pStartingPosActiveItem;
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2107 i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; i++ )
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2108 {
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2109 pButton = pDialogueWindow->GetControl(i);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2110 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2111 || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2112 {
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2113 pButton->uW = 0;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2114 pButton->uHeight = 0;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2115 pButton->uY = 0;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2116 }
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2117 else
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2118 {
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2119 pButton->uY = v91 + v54;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2120 pTextHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2121 pButton->uHeight = pTextHeight;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2122 v54 = pTextHeight + pButton->uY - 1;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2123 pButton->uW = v54;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2124 pColorText = Color16(0xFFu, 0xFFu, 0x9Bu);
1920
05b433b8cb37 GuildDialog fix and cleared
Ritor1
parents: 1919
diff changeset
2125 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2126 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2127 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, pSkillNames[pButton->msg_param - 36], 3);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2128 }
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2129 }
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2130 return;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2131 }
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2132 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName,//Ñîâåòóþ âàì %s %s ïîèñêàòü çíàíèÿ åùå ãäå-íèáóäü
1610
Ritor1
parents: 1609
diff changeset
2133 pClassNames[pPlayers[uActiveCharacter]->classType]);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2134 strcat(pTmpBuf.data(), "\n \n");
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2135 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);//Áîëüøå íè÷åãî íå ìîãó ïðåäëîæèòü.
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2136 pTextHeight = (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2137 dialog_window.DrawTitleText(pFontArrus, 0, pTextHeight, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2138 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2139 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2140
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2141 case HOUSE_DIALOGUE_TAVERN_BUY_FOOD:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2142 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2143 if ( (double)pParty->uNumFoodRations >= p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2144 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2145 ShowStatusBarString(pGlobalTXT_LocalizationStrings[140], 2);//Âû óæå êóïèëè åäó!
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2146 if ( uActiveCharacter )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2147 pPlayers[uActiveCharacter]->PlaySound(SPEECH_67, 0);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2148 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2149 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2150 }
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2151 if ( pParty->uNumGold >= pPriceFood )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2152 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2153 Party::TakeGold(pPriceFood);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2154 pParty->uNumFoodRations = (signed __int64)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2155 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Greeting_2);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2156 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2157 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2158 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2159 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2); // "You don't have enough gold"
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2160 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Goodbye);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2161 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2162 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2163 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2164
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2165 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2166 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
2167 if ( HouseUI_CheckIfPlayerCanInteract() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2168 {
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2169 pOptionsCount = 2;
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2170 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[620]);//Ïðàâèëà
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2171 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[622]);//Óñëîâèÿ ïîáåäû
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2172 if ( pParty->HasItem(651) )//651 - Êîëîäà äëÿ èãðû â ÀðêîÌýéäæ â Items.txt
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2173 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2174 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[621]);//Èãðàòü
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2175 pOptionsCount = 3;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2176 }
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2177 for ( i = 0; i < pOptionsCount; ++i )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2178 all_text_height = pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2179 all_text_height = (174 - all_text_height) / pOptionsCount;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2180
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2181 v54 = (174 - pOptionsCount * (174 - all_text_height) / pOptionsCount - all_text_height) / 2 - (174 - all_text_height) / pOptionsCount / 2 + 138;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2182 pNumString = 0;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2183 for ( pItemNum = pDialogueWindow->pStartingPosActiveItem;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2184 pItemNum < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem ; pItemNum++ )
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2185 {
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2186 pButton = pDialogueWindow->GetControl(pItemNum);
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2187 pButton->uY = all_text_height + v54;
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
2188 pTextHeight = pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2189 pButton->uHeight = pTextHeight;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2190 v54 = pButton->uY + pTextHeight - 1;
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2191 pButton->uW = v54;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2192 pColorText = Color16(0xFFu, 0xFFu, 0x9Bu);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2193 if ( pDialogueWindow->pCurrentPosActiveItem != pItemNum )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2194 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
2389
6a7309a847ea removing some (const char *) casts
Grumpy7
parents: 2374
diff changeset
2195 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, pShopOptions[pNumString], 3);
1630
ee4a65ac9d21 TavernDialog cleared
Ritor1
parents: 1629
diff changeset
2196 ++pNumString;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2197 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2198 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2199 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2200 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2201 default:
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2202 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2203 break;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2204 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2205 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2206 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2207
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2208 //----- (004B705E) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2209 void TempleDialog()
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2210 {
1622
Ritor1
parents: 1612
diff changeset
2211 int pPrice; // edi@1
Ritor1
parents: 1612
diff changeset
2212 int pTextHeight; // eax@11
Ritor1
parents: 1612
diff changeset
2213 unsigned __int16 pTextColor; // ax@21
Ritor1
parents: 1612
diff changeset
2214 DDM_DLV_Header *v26; // edi@29
Ritor1
parents: 1612
diff changeset
2215 unsigned int v30; // edx@36
Ritor1
parents: 1612
diff changeset
2216 int v35; // edi@50
Ritor1
parents: 1612
diff changeset
2217 GUIButton *pButton; // edi@64
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2218 // int v47; // edi@71
1622
Ritor1
parents: 1612
diff changeset
2219 GUIWindow tample_window; // [sp+13Ch] [bp-88h]@1
Ritor1
parents: 1612
diff changeset
2220 unsigned __int8 index; // [sp+1B7h] [bp-Dh]@64
Ritor1
parents: 1612
diff changeset
2221 int v64; // [sp+1B8h] [bp-Ch]@6
Ritor1
parents: 1612
diff changeset
2222 unsigned int pCurrentItem; // [sp+1BCh] [bp-8h]@6
Ritor1
parents: 1612
diff changeset
2223 int all_text_height; // [sp+1C0h] [bp-4h]@6
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2224
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2225 memcpy(&tample_window, window_SpeakInHouse, sizeof(tample_window));
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2226 tample_window.uFrameX = 483;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2227 tample_window.uFrameWidth = 148;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2228 tample_window.uFrameZ = 334;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2229 pPrice = pPlayers[uActiveCharacter]->GetTempleHealCostModifier(p2DEvents[window_SpeakInHouse->par1C - 1].fPriceMultiplier);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2230 if ( dialog_menu_id == HOUSE_DIALOGUE_MAIN )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2231 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2232 index = 1;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2233 pButton = pDialogueWindow->GetControl(pDialogueWindow->pStartingPosActiveItem);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2234 pButton->uHeight = 0;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2235 pButton->uY = 0;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2236 if ( pPlayers[uActiveCharacter]->IsPlayerHealableByTemple() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2237 {
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2238 sprintfex(pTmpBuf.data(), "%s %d %s", pGlobalTXT_LocalizationStrings[104], pPrice, pGlobalTXT_LocalizationStrings[97]);//"Ëå÷èòü" "Çîëîòî"
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2239 pShopOptions[0] = pTmpBuf.data();
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2240 index = 0;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2241 }
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2242 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[68]);//"Ïîæåðòâîâàòü"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2243 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);//"Îáó÷èòüñÿ íàâûêàì"
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2244 all_text_height = 0;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2245 if ( index < pDialogueWindow->pNumPresenceButton )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2246 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2247 uint i = index;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2248 for ( uint j = index; j < pDialogueWindow->pNumPresenceButton; ++j )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2249 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2250 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[1 * i], &tample_window, 0, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2251 i++;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2252 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2253 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2254 v64 = (174 - (signed int)all_text_height) / (pDialogueWindow->pNumPresenceButton - index);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2255 if ( v64 > 32 )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2256 v64 = 32;
1622
Ritor1
parents: 1612
diff changeset
2257 all_text_height = (174 - v64 * (pDialogueWindow->pNumPresenceButton - index) - (signed int)all_text_height) / 2 - v64 / 2 + 138;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2258 if ( index + pDialogueWindow->pStartingPosActiveItem < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2259 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2260 uint i = index;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2261 for ( pCurrentItem = index + pDialogueWindow->pStartingPosActiveItem;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2262 (signed int)pCurrentItem < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++pCurrentItem )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2263 {
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2264 pButton = pDialogueWindow->GetControl(pCurrentItem);
1622
Ritor1
parents: 1612
diff changeset
2265 pButton->uY = v64 + all_text_height;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2266 pTextHeight = pFontArrus->CalcTextHeight(pShopOptions[1 * i], &tample_window, 0, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2267 pButton->uHeight = pTextHeight;
1622
Ritor1
parents: 1612
diff changeset
2268 pButton->uW = pButton->uY + pTextHeight - 1;
Ritor1
parents: 1612
diff changeset
2269 all_text_height = pButton->uW;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2270 pTextColor = Color16(0xFFu, 0xFFu, 0x9Bu);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2271 if ( pDialogueWindow->pCurrentPosActiveItem != index + 2 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2272 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1622
Ritor1
parents: 1612
diff changeset
2273 tample_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pShopOptions[1 * i], 3);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2274 i++;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2275 index++;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2276 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2277 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2278 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2279 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2280 //-------------------------------------------------
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2281 if ( dialog_menu_id == HOUSE_DIALOGUE_TEMPLE_HEAL )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2282 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2283 if ( !pPlayers[uActiveCharacter]->IsPlayerHealableByTemple() )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2284 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2285 if ( pParty->uNumGold < pPrice )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2286 {
1622
Ritor1
parents: 1612
diff changeset
2287 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);//"Ó âàñ íå õâàòàåò çîëîòà"
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2288 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2289 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2290 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2291 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2292 Party::TakeGold(pPrice);
2057
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2293 v35 = LODWORD(pPlayers[uActiveCharacter]->pConditions[Condition_Zombie]);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2294 memset(pPlayers[uActiveCharacter], 0, 0xA0u);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2295 pPlayers[uActiveCharacter]->sHealth = pPlayers[uActiveCharacter]->GetMaxHealth();
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2296 pPlayers[uActiveCharacter]->sMana = pPlayers[uActiveCharacter]->GetMaxMana();
1622
Ritor1
parents: 1612
diff changeset
2297 if ( (signed int)window_SpeakInHouse->ptr_1C != 78 && ((signed int)window_SpeakInHouse->ptr_1C <= 80 || (signed int)window_SpeakInHouse->ptr_1C > 82) )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2298 {
2185
385040580292 CastSpell continue
Ritor1
parents: 2153
diff changeset
2299 if ( (unsigned int)pPlayers[uActiveCharacter]->pConditions[Condition_Zombie] | v35 )// åñëè ñîñòîÿíèå çîìáè
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2300 {
1622
Ritor1
parents: 1612
diff changeset
2301 pPlayers[uActiveCharacter]->uCurrentFace = pPlayers[uActiveCharacter]->uPrevFace;
Ritor1
parents: 1612
diff changeset
2302 pPlayers[uActiveCharacter]->uVoiceID = pPlayers[uActiveCharacter]->uPrevVoiceID;
Ritor1
parents: 1612
diff changeset
2303 ReloadPlayerPortraits(uActiveCharacter - 1, pPlayers[uActiveCharacter]->uPrevFace);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2304 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2305 pAudioPlayer->PlaySound((SoundID)(SOUND_GoldReceived|0x2), -1, 0, -1, 0, 0, 0, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2306 pPlayers[uActiveCharacter]->PlaySound(SPEECH_82, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2307 pOtherOverlayList->_4418B1(20, uActiveCharacter + 99, 0, 65536);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2308 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2309 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2310 }
2057
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2311 if ( (unsigned int)pPlayers[uActiveCharacter]->pConditions[Condition_Zombie] | v35 )
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2312 LODWORD(pPlayers[uActiveCharacter]->pConditions[Condition_Zombie]) = v35;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2313 else
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2314 {
2057
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2315 if ( !pPlayers[uActiveCharacter]->pConditions[Condition_Eradicated]
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2316 && !pPlayers[uActiveCharacter]->pConditions[Condition_Pertified] && !pPlayers[uActiveCharacter]->pConditions[Condition_Dead] )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2317 {
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2318 pAudioPlayer->PlaySound((SoundID)(SOUND_GoldReceived|0x2), -1, 0, -1, 0, 0, 0, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2319 pPlayers[uActiveCharacter]->PlaySound(SPEECH_82, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2320 pOtherOverlayList->_4418B1(20, uActiveCharacter + 99, 0, 65536);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2321 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2322 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2323 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2324 pPlayers[uActiveCharacter]->uPrevFace = pPlayers[uActiveCharacter]->uCurrentFace;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2325 pPlayers[uActiveCharacter]->uPrevVoiceID = pPlayers[uActiveCharacter]->uVoiceID;
2185
385040580292 CastSpell continue
Ritor1
parents: 2153
diff changeset
2326 pPlayers[uActiveCharacter]->SetCondition(Condition_Zombie, 1);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2327 pPlayers[uActiveCharacter]->uVoiceID = (pPlayers[uActiveCharacter]->GetSexByVoice() != 0) + 23;
1622
Ritor1
parents: 1612
diff changeset
2328 pPlayers[uActiveCharacter]->uCurrentFace = (pPlayers[uActiveCharacter]->GetSexByVoice() != 0) + 23;
Ritor1
parents: 1612
diff changeset
2329 ReloadPlayerPortraits(uActiveCharacter - 1, (pPlayers[uActiveCharacter]->GetSexByVoice() != 0) + 23);
2185
385040580292 CastSpell continue
Ritor1
parents: 2153
diff changeset
2330 pPlayers[uActiveCharacter]->pConditions[Condition_Zombie] = pParty->uTimePlayed;
1622
Ritor1
parents: 1612
diff changeset
2331 //v39 = (GUIWindow *)HIDWORD(pParty->uTimePlayed);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2332 }
2057
b7485a6502f2 AgressorAtackInfo
Ritor1
parents: 2022
diff changeset
2333 //HIDWORD(pPlayers[uActiveCharacter]->pConditions[Condition_Zombie]) = (int)v39;
2185
385040580292 CastSpell continue
Ritor1
parents: 2153
diff changeset
2334 pPlayers[uActiveCharacter]->pConditions[Condition_Zombie] = pParty->uTimePlayed;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2335 pAudioPlayer->PlaySound((SoundID)(SOUND_GoldReceived|0x2), -1, 0, -1, 0, 0, 0, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2336 pPlayers[uActiveCharacter]->PlaySound(SPEECH_82, 0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2337 pOtherOverlayList->_4418B1(20, uActiveCharacter + 99, 0, 65536);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2338 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2339 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2340 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2341 //---------------------------------------------------
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2342 if ( dialog_menu_id == HOUSE_DIALOGUE_TEMPLE_DONATE )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2343 {
1622
Ritor1
parents: 1612
diff changeset
2344 pPrice = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
Ritor1
parents: 1612
diff changeset
2345 if ( pParty->uNumGold >= (unsigned int)pPrice )
Ritor1
parents: 1612
diff changeset
2346 {
Ritor1
parents: 1612
diff changeset
2347 Party::TakeGold((unsigned int)pPrice);
Ritor1
parents: 1612
diff changeset
2348 v26 = &pOutdoor->ddm;
Ritor1
parents: 1612
diff changeset
2349 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor )
Ritor1
parents: 1612
diff changeset
2350 v26 = &pIndoor->dlv;
Ritor1
parents: 1612
diff changeset
2351 if ( v26->uReputation > -5 )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2352 {
1622
Ritor1
parents: 1612
diff changeset
2353 v26->uReputation = v26->uReputation - 1;
Ritor1
parents: 1612
diff changeset
2354 if ( v26->uReputation - 1 < -5 )
Ritor1
parents: 1612
diff changeset
2355 v26->uReputation = -5;
Ritor1
parents: 1612
diff changeset
2356 }
Ritor1
parents: 1612
diff changeset
2357 if ( (unsigned __int8)byte_F8B1EF[uActiveCharacter] == pParty->uDaysPlayed % 7 )
Ritor1
parents: 1612
diff changeset
2358 {
Ritor1
parents: 1612
diff changeset
2359 if ( v26->uReputation <= -5 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2360 {
1622
Ritor1
parents: 1612
diff changeset
2361 v30 = pParty->uDaysPlayed % 7 + 1;
Ritor1
parents: 1612
diff changeset
2362 LOBYTE(v30) = v30 | 0x80;
Ritor1
parents: 1612
diff changeset
2363 _42777D_CastSpell_UseWand_ShootArrow(SPELL_AIR_WIZARD_EYE, uActiveCharacter - 1, v30, 48, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2364 }
1622
Ritor1
parents: 1612
diff changeset
2365 if ( v26->uReputation <= -10 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2366 {
1622
Ritor1
parents: 1612
diff changeset
2367 v30 = pParty->uDaysPlayed % 7 + 1;
Ritor1
parents: 1612
diff changeset
2368 LOBYTE(v30) = v30 | 0x80;
Ritor1
parents: 1612
diff changeset
2369 _42777D_CastSpell_UseWand_ShootArrow(SPELL_SPIRIT_PRESERVATION, uActiveCharacter - 1, v30, 48, 0);
Ritor1
parents: 1612
diff changeset
2370 }
Ritor1
parents: 1612
diff changeset
2371 if ( v26->uReputation <= -15 )
Ritor1
parents: 1612
diff changeset
2372 {
Ritor1
parents: 1612
diff changeset
2373 v30 = pParty->uDaysPlayed % 7 + 1;
Ritor1
parents: 1612
diff changeset
2374 LOBYTE(v30) = v30 | 0x80;
Ritor1
parents: 1612
diff changeset
2375 _42777D_CastSpell_UseWand_ShootArrow(SPELL_BODY_PROTECTION_FROM_MAGIC, uActiveCharacter - 1, v30, 48, 0);
Ritor1
parents: 1612
diff changeset
2376 }
Ritor1
parents: 1612
diff changeset
2377 if ( v26->uReputation <= -20 )
Ritor1
parents: 1612
diff changeset
2378 {
Ritor1
parents: 1612
diff changeset
2379 v30 = pParty->uDaysPlayed % 7 + 1;
Ritor1
parents: 1612
diff changeset
2380 LOBYTE(v30) = v30 | 0x80;
Ritor1
parents: 1612
diff changeset
2381 _42777D_CastSpell_UseWand_ShootArrow(SPELL_LIGHT_HOUR_OF_POWER, uActiveCharacter - 1, v30, 48, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2382 }
1622
Ritor1
parents: 1612
diff changeset
2383 if ( v26->uReputation <= -25 )
Ritor1
parents: 1612
diff changeset
2384 {
Ritor1
parents: 1612
diff changeset
2385 v30 = pParty->uDaysPlayed % 7 + 1;
Ritor1
parents: 1612
diff changeset
2386 LOBYTE(v30) = v30 | 0x80;
Ritor1
parents: 1612
diff changeset
2387 _42777D_CastSpell_UseWand_ShootArrow(SPELL_LIGHT_DAY_OF_PROTECTION, uActiveCharacter - 1, v30, 48, 0);
Ritor1
parents: 1612
diff changeset
2388 }
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2389 }
1622
Ritor1
parents: 1612
diff changeset
2390 ++byte_F8B1EF[uActiveCharacter];
Ritor1
parents: 1612
diff changeset
2391 pPlayers[uActiveCharacter]->PlaySound(SPEECH_83, 0);
Ritor1
parents: 1612
diff changeset
2392 ShowStatusBarString(pGlobalTXT_LocalizationStrings[527], 2); // "Thank You!"
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2393 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2394 return;
1622
Ritor1
parents: 1612
diff changeset
2395 }
Ritor1
parents: 1612
diff changeset
2396 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);//"Ó âàñ íå õâàòàåò çîëîòà"
Ritor1
parents: 1612
diff changeset
2397 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2398 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1622
Ritor1
parents: 1612
diff changeset
2399 return;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2400 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2401 //------------------------------------------------
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2402 if ( dialog_menu_id == HOUSE_DIALOGUE_LEARN_SKILLS )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2403 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2404 if ( HouseUI_CheckIfPlayerCanInteract() )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2405 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2406 all_text_height = 0;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2407 pCurrentItem = (signed __int64)(p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2408 v64 = (signed int)(pCurrentItem * (100 - pPlayers[uActiveCharacter]->GetMerchant())) / 100;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2409 if ( v64 < (signed int)pCurrentItem / 3 )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2410 v64 = (signed int)pCurrentItem / 3;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2411 pCurrentItem = 0;
1622
Ritor1
parents: 1612
diff changeset
2412 for ( int i = pDialogueWindow->pStartingPosActiveItem; i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2413 {
1622
Ritor1
parents: 1612
diff changeset
2414 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
Ritor1
parents: 1612
diff changeset
2415 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2416 {
1622
Ritor1
parents: 1612
diff changeset
2417 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &tample_window, 0, 0);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2418 ++pCurrentItem;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2419 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2420 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2421 if ( pCurrentItem )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2422 {
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2423 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], v64);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2424 tample_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2425 v64 = (149 - (signed int)all_text_height) / (signed int)pCurrentItem;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2426 if ( v64 > 32 )
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2427 v64 = 32;
1622
Ritor1
parents: 1612
diff changeset
2428 all_text_height = (signed int)(149 - pCurrentItem * v64 - (int)all_text_height) / 2 - v64 / 2 + 162;
Ritor1
parents: 1612
diff changeset
2429 if ( pDialogueWindow->pStartingPosActiveItem < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2430 {
1622
Ritor1
parents: 1612
diff changeset
2431 pCurrentItem = 2;
Ritor1
parents: 1612
diff changeset
2432 for ( int i = pDialogueWindow->pStartingPosActiveItem;
Ritor1
parents: 1612
diff changeset
2433 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2434 {
1622
Ritor1
parents: 1612
diff changeset
2435 pButton = pDialogueWindow->GetControl(i);
Ritor1
parents: 1612
diff changeset
2436 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
Ritor1
parents: 1612
diff changeset
2437 || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2438 {
1622
Ritor1
parents: 1612
diff changeset
2439 pButton->uW = 0;
Ritor1
parents: 1612
diff changeset
2440 pButton->uHeight = 0;
Ritor1
parents: 1612
diff changeset
2441 pButton->uY = 0;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2442 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2443 else
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2444 {
1622
Ritor1
parents: 1612
diff changeset
2445 pButton->uY = v64 + all_text_height;
Ritor1
parents: 1612
diff changeset
2446 pTextHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &tample_window, 0, 0);
Ritor1
parents: 1612
diff changeset
2447 pButton->uHeight = pTextHeight;
Ritor1
parents: 1612
diff changeset
2448 pButton->uW = pButton->uY + pTextHeight - 1;
Ritor1
parents: 1612
diff changeset
2449 all_text_height = pButton->uW;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2450 pTextColor = Color16(0xFFu, 0xFFu, 0x9Bu);
1622
Ritor1
parents: 1612
diff changeset
2451 if ( pDialogueWindow->pCurrentPosActiveItem != pCurrentItem )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2452 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1622
Ritor1
parents: 1612
diff changeset
2453 tample_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pSkillNames[pButton->msg_param - 36], 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2454 }
1622
Ritor1
parents: 1612
diff changeset
2455 pCurrentItem++;
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2456 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2457 }
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2458 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2459 else
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2460 {
1624
15667a0ec5b9 TampleDialog() cleaning
Ritor1
parents: 1622
diff changeset
2461 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);//"Ñîâåòóþ âàì %s %s ïîèñêàòü çíàíèÿ åùå ãäå-íèáóäü"
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2462 strcat(pTmpBuf.data(), "\n \n");
1624
15667a0ec5b9 TampleDialog() cleaning
Ritor1
parents: 1622
diff changeset
2463 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);//"Áîëüøå íè÷åãî íå ìîãó ïðåäëîæèòü."
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2464 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &tample_window, 0, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2465 tample_window.DrawTitleText(pFontArrus, 0, (174 - pTextHeight) / 2 + 138, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2466 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2467 }
1612
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2468 }
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2469 return;
11f12a34b397 TampleDialog(cleaning continue)
Ritor1
parents: 1610
diff changeset
2470 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2471
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2472 //----- (004B4710) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2473 void TrainingDialog()
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2474 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2475 unsigned __int64 v5; // edi@3
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2476 int v8; // edx@4
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2477 double v9; // st7@6
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2478 signed int v10; // esi@6
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2479 int pPrice; // ecx@6
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2480 signed int v14; // esi@14
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2481 // int v16; // eax@16
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2482 int v19; // ecx@24
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2483 int v33; // eax@36
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2484 unsigned int v36; // eax@38
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2485 unsigned int v42; // eax@46
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2486 int index;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2487 int all_text_height; // eax@68
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2488 int v49; // ebx@69
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2489 GUIButton *pButton; // eax@71
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2490 int pTextHeight; // eax@71
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2491 unsigned __int16 pTextColor; // ax@71
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2492 GUIWindow training_dialog_window; // [sp+Ch] [bp-78h]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2493 int v69; // [sp+70h] [bp-14h]@6
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2494 int v73; // [sp+80h] [bp-4h]@14
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2495
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2496 memcpy(&training_dialog_window, window_SpeakInHouse, sizeof(training_dialog_window));
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2497 training_dialog_window.uFrameX = 483;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2498 training_dialog_window.uFrameWidth = 148;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2499 training_dialog_window.uFrameZ = 334;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2500 v5 = 1000ui64 * pPlayers[uActiveCharacter]->uLevel * (pPlayers[uActiveCharacter]->uLevel + 1) / 2; // E n = n(n + 1) / 2
1634
Ritor1
parents: 1630
diff changeset
2501 //v68 = pMaxLevelPerTrainingHallType[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_TRAINING_HALL_EMERALD_ISLE];
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2502 if (pPlayers[uActiveCharacter]->uExperience >= v5)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2503 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2504 v8 = pPlayers[uActiveCharacter]->classType % 4 + 1;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2505 if ( v8 == 4 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2506 v8 = 3;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2507 v9 = (double)pPlayers[uActiveCharacter]->uLevel;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2508 v69 = v8;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2509 v10 = (signed __int64)(v9 * p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier * (double)v8);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2510 pPrice = v10 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2511 if ( pPrice < v10 / 3 )
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2512 pPrice = v10 / 3;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2513 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2514 //-------------------------------------------------------
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2515 all_text_height = 0;
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
2516 if (HouseUI_CheckIfPlayerCanInteract())
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2517 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2518 if ( dialog_menu_id == HOUSE_DIALOGUE_MAIN )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2519 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2520 if (HouseUI_CheckIfPlayerCanInteract())
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2521 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2522 index = 0;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2523 pShopOptions[0] = pTmpBuf.data();
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
2524 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);// "Learn Skills"
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2525 if ( pDialogueWindow->pStartingPosActiveItem < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2526 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2527 for ( int i = pDialogueWindow->pStartingPosActiveItem;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2528 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2529 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2530 if ( pDialogueWindow->GetControl(i)->msg_param == HOUSE_DIALOGUE_TRAININGHALL_TRAIN )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2531 {
1634
Ritor1
parents: 1630
diff changeset
2532 if (pPlayers[uActiveCharacter]->uLevel >= pMaxLevelPerTrainingHallType[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_TRAINING_HALL_EMERALD_ISLE])
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2533 sprintfex(pShopOptions[index], "%s\n \n%s", pGlobalTXT_LocalizationStrings[536], pGlobalTXT_LocalizationStrings[529]); //"With your skills, you should be working here as a teacher." "Sorry, but we are unable to train you."
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2534 else
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2535 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2536 if (pPlayers[uActiveCharacter]->uExperience < v5)
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2537 sprintfex(pShopOptions[index], pGlobalTXT_LocalizationStrings[538], (uint)(v5 - pPlayers[uActiveCharacter]->uExperience), pPlayers[uActiveCharacter]->uLevel + 1); // "You need %d more experience to train to level %d"
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2538 else
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2539 sprintfex(pShopOptions[index], pGlobalTXT_LocalizationStrings[537], pPlayers[uActiveCharacter]->uLevel + 1, pPrice); // "Train to level %d for %d gold"
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2540 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2541 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2542 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[index], &training_dialog_window, 0, 0);
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2543 ++index;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2544 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2545 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2546 v49 = (2 * (87 - (174 - all_text_height) / 2) - all_text_height) / 2 - (174 - all_text_height) / 2 / 2 + 138;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2547 if (pDialogueWindow->pStartingPosActiveItem < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton)
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2548 {
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2549 index = 0;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2550 for ( int i = pDialogueWindow->pStartingPosActiveItem;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2551 i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++i )
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2552 {
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2553 pButton = pDialogueWindow->GetControl(i);
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2554 pButton->uY = (174 - all_text_height) / 2 + v49;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2555 pTextHeight = pFontArrus->CalcTextHeight(pShopOptions[index], &training_dialog_window, 0, 0);
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2556 pButton->uHeight = pTextHeight;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2557 pButton->uW = pTextHeight + pButton->uY - 1;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2558 v49 = pButton->uW;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2559 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1634
Ritor1
parents: 1630
diff changeset
2560 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2561 pTextColor = Color16(255, 255, 255);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2562 training_dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pShopOptions[index], 3);
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2563 ++index;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2564 }
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2565 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2566 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2567 }
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2568 //------------------------------------------------------------------
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2569 if ( dialog_menu_id == HOUSE_DIALOGUE_TRAININGHALL_TRAIN )
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2570 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
2571 if ( !HouseUI_CheckIfPlayerCanInteract() )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2572 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2573 v33 = pFontArrus->CalcTextHeight(pNPCTopics[122].pText, &training_dialog_window, 0, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2574 training_dialog_window.DrawTitleText(pFontArrus, 0, (212 - v33) / 2 + 101, Color16(0xE1u, 0xCDu, 0x23u), pNPCTopics[122].pText, 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2575 pDialogueWindow->pNumPresenceButton = 0;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2576 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2577 }
1634
Ritor1
parents: 1630
diff changeset
2578 if ( pPlayers[uActiveCharacter]->uLevel < pMaxLevelPerTrainingHallType[(unsigned int)window_SpeakInHouse->ptr_1C - HOUSE_TRAINING_HALL_EMERALD_ISLE] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2579 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2580 if ( (signed __int64)pPlayers[uActiveCharacter]->uExperience >= v5 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2581 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2582 if ( pParty->uNumGold >= pPrice)
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2583 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2584 Party::TakeGold(pPrice);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2585 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_NotEnoughMoney_TrainingSuccessful);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2586 ++pPlayers[uActiveCharacter]->uLevel;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2587 pPlayers[uActiveCharacter]->uSkillPoints += pPlayers[uActiveCharacter]->uLevel / 10 + 5;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2588 pPlayers[uActiveCharacter]->sHealth = pPlayers[uActiveCharacter]->GetMaxHealth();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2589 pPlayers[uActiveCharacter]->sMana = pPlayers[uActiveCharacter]->GetMaxMana();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2590 uint max_level_in_party = player_levels[0];
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2591 for (uint _it = 1; _it < 4; ++_it)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2592 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2593 if (player_levels[_it] > max_level_in_party)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2594 max_level_in_party = player_levels[_it];
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2595 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2596 ++player_levels[uActiveCharacter - 1];
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2597 if (player_levels[uActiveCharacter - 1] > max_level_in_party) // if we reach new maximum party level
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2598 // feature is broken thou, since this array is always zeroed in EnterHouse
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2599 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2600 v42 = 60 * (_494820_training_time(pParty->uCurrentHour) + 4) - pParty->uCurrentMinute;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2601 if ((unsigned int)window_SpeakInHouse->ptr_1C == HOUSE_TRAINING_HALL_94 ||
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2602 (unsigned int)window_SpeakInHouse->ptr_1C == HOUSE_TRAINING_HALL_95)
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2603 v42 += 720;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2604 RestAndHeal((signed int)(v42 + 10080));
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2605 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2606 pOutdoor->SetFog();
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2607 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2608 pPlayers[uActiveCharacter]->PlaySound(SPEECH_87, 0);
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2609 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[430], pPlayers[uActiveCharacter]->pName, pPlayers[uActiveCharacter]->uLevel, pPlayers[uActiveCharacter]->uLevel / 10 + 5);//
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2610 // "%s is now Level %lu and has earned %lu Skill Points!"
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2611 ShowStatusBarString(pTmpBuf.data(), 2);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2612 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2613 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2614 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2615 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);// "You don't have enough gold"
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2616 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)4);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2617 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2618 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2619 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2620 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[538], (unsigned int)(v5 - pPlayers[uActiveCharacter]->uExperience), pPlayers[uActiveCharacter]->uLevel + 1);//
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2621 // "You need %d more experience to train to level %d"
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2622 v36 = (212 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &training_dialog_window, 0, 0)) / 2 + 88;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2623 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2624 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2625 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2626 sprintf(pTmpBuf.data(), "%s\n \n%s", pGlobalTXT_LocalizationStrings[536], pGlobalTXT_LocalizationStrings[529]);//
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2627 // ""With your skills, you should be working here as a teacher.""
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2628 // ""Sorry, but we are unable to train you.""
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2629 v36 = (212 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &training_dialog_window, 0, 0)) / 2 + 101;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2630 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2631 training_dialog_window.DrawTitleText(pFontArrus, 0, v36, Color16(0xE1u, 0xCDu, 0x23u), pTmpBuf.data(), 3);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2632 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)3);
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2633 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2634 return;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2635 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2636 }
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2637 //-------------------------------------------------------------
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2638 if ( dialog_menu_id == HOUSE_DIALOGUE_LEARN_SKILLS )
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2639 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1313
diff changeset
2640 if (HouseUI_CheckIfPlayerCanInteract())
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2641 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2642 v14 = (signed __int64)(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1634
Ritor1
parents: 1630
diff changeset
2643 pPrice = v14 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
Ritor1
parents: 1630
diff changeset
2644 if ( pPrice < v14 / 3 )
Ritor1
parents: 1630
diff changeset
2645 pPrice = v14 / 3;
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2646 index = 0;
1634
Ritor1
parents: 1630
diff changeset
2647 for ( int i = pDialogueWindow->pStartingPosActiveItem;
Ritor1
parents: 1630
diff changeset
2648 (signed int)i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2649 {
1634
Ritor1
parents: 1630
diff changeset
2650 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
Ritor1
parents: 1630
diff changeset
2651 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2652 {
1634
Ritor1
parents: 1630
diff changeset
2653 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &training_dialog_window, 0, 0);
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2654 ++index;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2655 }
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2656 }
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2657 if ( index )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2658 {
1634
Ritor1
parents: 1630
diff changeset
2659 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);// "Skill Cost: %lu"
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2660 training_dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2661 v73 = (signed int)(149 - all_text_height) / index;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2662 if ( v73 > 32 )
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2663 v73 = 32;
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2664 v19 = (signed int)(149 - index * v73 - all_text_height) / 2 - v73 / 2 + 162;
1634
Ritor1
parents: 1630
diff changeset
2665 for ( int i = pDialogueWindow->pStartingPosActiveItem;
Ritor1
parents: 1630
diff changeset
2666 (signed int)i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2667 {
1634
Ritor1
parents: 1630
diff changeset
2668 pButton = pDialogueWindow->GetControl(i);
Ritor1
parents: 1630
diff changeset
2669 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
Ritor1
parents: 1630
diff changeset
2670 || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2671 {
1634
Ritor1
parents: 1630
diff changeset
2672 pButton->uW = 0;
Ritor1
parents: 1630
diff changeset
2673 pButton->uHeight = 0;
Ritor1
parents: 1630
diff changeset
2674 pButton->uY = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2675 }
1634
Ritor1
parents: 1630
diff changeset
2676 else
Ritor1
parents: 1630
diff changeset
2677 {
Ritor1
parents: 1630
diff changeset
2678 pButton->uY = v73 + v19;
Ritor1
parents: 1630
diff changeset
2679 pTextHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &training_dialog_window, 0, 0);
Ritor1
parents: 1630
diff changeset
2680 pButton->uHeight = pTextHeight;
Ritor1
parents: 1630
diff changeset
2681 pButton->uW = pButton->uY + pTextHeight - 1;
Ritor1
parents: 1630
diff changeset
2682 v19 = pButton->uY + pTextHeight - 1;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2683 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1634
Ritor1
parents: 1630
diff changeset
2684 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2685 pTextColor = Color16(255, 255, 255);
1634
Ritor1
parents: 1630
diff changeset
2686 training_dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pSkillNames[pButton->msg_param - 36], 3);
Ritor1
parents: 1630
diff changeset
2687 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2688 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2689 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2690 else
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2691 {
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2692 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);//
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2693 // "Seek knowledge elsewhere %s the %s"
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2694 strcat(pTmpBuf.data(), "\n \n");
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2695 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);// "I can offer you nothing further."
1634
Ritor1
parents: 1630
diff changeset
2696 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &training_dialog_window, 0, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2697 training_dialog_window.DrawTitleText(pFontArrus, 0, (174 - pTextHeight) / 2 + 138, Color16(0xE1u, 0xCDu, 0x23u), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2698 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2699 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2700 }
1625
2d374de0a364 TrainingDialog cleaning(continue)
Ritor1
parents: 1624
diff changeset
2701 return;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2702 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2703
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2704 //----- (004B6478) --------------------------------------------------------
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2705 void sub_4B6478()
1634
Ritor1
parents: 1630
diff changeset
2706 {
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2707 unsigned int v2; // eax@1
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2708 signed int v3; // esi@1
1634
Ritor1
parents: 1630
diff changeset
2709 int pPrice; // ebx@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2710 unsigned int v5; // esi@5
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2711 int v6; // edi@6
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2712 // int result; // eax@13
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2713 int all_text_height; // eax@20
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2714 // int v13; // eax@21
1634
Ritor1
parents: 1630
diff changeset
2715 GUIButton *pButton; // esi@27
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2716 // unsigned int v16; // eax@28
1634
Ritor1
parents: 1630
diff changeset
2717 int pTextHeight; // eax@29
Ritor1
parents: 1630
diff changeset
2718 unsigned __int16 pTextColor; // ax@29
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
2719 // unsigned __int16 v22; // ST14_2@36
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2720 int v27; // [sp-4h] [bp-80h]@8
1634
Ritor1
parents: 1630
diff changeset
2721 GUIWindow dialog_window; // [sp+Ch] [bp-70h]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2722 int v32; // [sp+6Ch] [bp-10h]@1
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2723 int index; // [sp+74h] [bp-8h]@17
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2724
1634
Ritor1
parents: 1630
diff changeset
2725 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
Ritor1
parents: 1630
diff changeset
2726 dialog_window.uFrameX = 483;
Ritor1
parents: 1630
diff changeset
2727 dialog_window.uFrameWidth = 148;
Ritor1
parents: 1630
diff changeset
2728 dialog_window.uFrameZ = 334;
Ritor1
parents: 1630
diff changeset
2729 v2 = 52 * (unsigned int)window_SpeakInHouse->ptr_1C;
Ritor1
parents: 1630
diff changeset
2730 v32 = (unsigned __int8)(((p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].uType != 18) - 1) & 0x96) + 100;
Ritor1
parents: 1630
diff changeset
2731 v3 = (signed __int64)((double)v32 * p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier);
Ritor1
parents: 1630
diff changeset
2732 pPrice = v3 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
Ritor1
parents: 1630
diff changeset
2733 if ( pPrice < v3 / 3 )
Ritor1
parents: 1630
diff changeset
2734 pPrice = v3 / 3;
Ritor1
parents: 1630
diff changeset
2735 if ( dialog_menu_id == HOUSE_DIALOGUE_MAIN)
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2736 {
1634
Ritor1
parents: 1630
diff changeset
2737 if ( !(unsigned __int16)_449B57_test_bit((unsigned __int8 *)pPlayers[uActiveCharacter]->_achieved_awards_bits, word_4F0754[2 * (unsigned int)window_SpeakInHouse->ptr_1C]) )
Ritor1
parents: 1630
diff changeset
2738 {
Ritor1
parents: 1630
diff changeset
2739 pTextHeight = pFontArrus->CalcTextHeight(pNPCTopics[171].pText, &dialog_window, 0, 0);//
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2740 dialog_window.DrawTitleText(pFontArrus, 0, (212 - pTextHeight) / 2 + 101, Color16(0xFFu, 0xFFu, 0x9Bu), pNPCTopics[171].pText, 3);
1634
Ritor1
parents: 1630
diff changeset
2741 pDialogueWindow->pNumPresenceButton = 0;
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2742 return;
1634
Ritor1
parents: 1630
diff changeset
2743 }
Ritor1
parents: 1630
diff changeset
2744 if ( !HouseUI_CheckIfPlayerCanInteract() )
Ritor1
parents: 1630
diff changeset
2745 return;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2746 all_text_height = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2747 index = 0;
1634
Ritor1
parents: 1630
diff changeset
2748 for ( int i = pDialogueWindow->pStartingPosActiveItem;
Ritor1
parents: 1630
diff changeset
2749 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
Ritor1
parents: 1630
diff changeset
2750 {
Ritor1
parents: 1630
diff changeset
2751 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType / 3][pDialogueWindow->GetControl(i)->msg_param - 36]
Ritor1
parents: 1630
diff changeset
2752 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
Ritor1
parents: 1630
diff changeset
2753 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2754 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &dialog_window, 0, 0);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2755 ++index;
1634
Ritor1
parents: 1630
diff changeset
2756 }
Ritor1
parents: 1630
diff changeset
2757 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2758 if ( !index )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2759 {
1634
Ritor1
parents: 1630
diff changeset
2760 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);
Ritor1
parents: 1630
diff changeset
2761 strcat(pTmpBuf.data(), "\n \n");
Ritor1
parents: 1630
diff changeset
2762 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);//Áîëüøå íè÷åãî íå ìîãó ïðåäëîæèòü.
Ritor1
parents: 1630
diff changeset
2763 pTextHeight = pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2764 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pTextHeight) / 2 + 138, Color16(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3);
1634
Ritor1
parents: 1630
diff changeset
2765 return;
Ritor1
parents: 1630
diff changeset
2766 }
Ritor1
parents: 1630
diff changeset
2767 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);//Ñòîèìîñòü íàâûêà: %lu
Ritor1
parents: 1630
diff changeset
2768 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2769 v32 = (149 - all_text_height) / index;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2770 if ( v32 > 32 )
1634
Ritor1
parents: 1630
diff changeset
2771 v32 = 32;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2772 index = (149 - index * v32 - all_text_height) / 2 - v32 / 2 + 162;
1634
Ritor1
parents: 1630
diff changeset
2773 if ( pDialogueWindow->pStartingPosActiveItem < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton )
Ritor1
parents: 1630
diff changeset
2774 {
Ritor1
parents: 1630
diff changeset
2775 for ( int i = pDialogueWindow->pStartingPosActiveItem;
Ritor1
parents: 1630
diff changeset
2776 i <pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2777 {
1634
Ritor1
parents: 1630
diff changeset
2778 pButton = pDialogueWindow->GetControl(i);
Ritor1
parents: 1630
diff changeset
2779 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType / 3][pButton->msg_param - 36] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2780 {
1634
Ritor1
parents: 1630
diff changeset
2781 if ( !pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
Ritor1
parents: 1630
diff changeset
2782 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2783 pButton->uY = v32 + index;
1634
Ritor1
parents: 1630
diff changeset
2784 pTextHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
Ritor1
parents: 1630
diff changeset
2785 pButton->uHeight = pTextHeight;
Ritor1
parents: 1630
diff changeset
2786 pButton->uW = pButton->uY + pTextHeight - 1;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2787 index = pButton->uY + pTextHeight - 1;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2788 pTextColor = Color16(0xFFu, 0xFFu, 0x9Bu);
1634
Ritor1
parents: 1630
diff changeset
2789 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2790 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1634
Ritor1
parents: 1630
diff changeset
2791 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pSkillNames[pButton->msg_param - 36], 3);
Ritor1
parents: 1630
diff changeset
2792 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2793 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2794 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2795 {
1634
Ritor1
parents: 1630
diff changeset
2796 pButton->uW = 0;
Ritor1
parents: 1630
diff changeset
2797 pButton->uHeight = 0;
Ritor1
parents: 1630
diff changeset
2798 pButton->uY = 0;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2799 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2800 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2801 }
1634
Ritor1
parents: 1630
diff changeset
2802 return;
Ritor1
parents: 1630
diff changeset
2803 }
Ritor1
parents: 1630
diff changeset
2804
Ritor1
parents: 1630
diff changeset
2805 if ( HouseUI_CheckIfPlayerCanInteract() )
Ritor1
parents: 1630
diff changeset
2806 {
Ritor1
parents: 1630
diff changeset
2807 v5 = 0;
Ritor1
parents: 1630
diff changeset
2808 __debugbreak();
Ritor1
parents: 1630
diff changeset
2809 //pSkillAvailabilityPerClass[8 + v58->uClass][4 + v23]
Ritor1
parents: 1630
diff changeset
2810 // or
Ritor1
parents: 1630
diff changeset
2811 //byte_4ED970_skill_learn_ability_by_class_table[v58->uClass][v23 - 36]
Ritor1
parents: 1630
diff changeset
2812 // or
Ritor1
parents: 1630
diff changeset
2813 //byte_4ED970_skill_learn_ability_by_class_table[v58->uClass - 1][v23 + 1]
Ritor1
parents: 1630
diff changeset
2814 __debugbreak(); // whacky condition - fix
Ritor1
parents: 1630
diff changeset
2815 if (false
Ritor1
parents: 1630
diff changeset
2816 //if ( !*(&byte_4ED94C[37 * v1->uClass / 3] + dword_F8B19C)
Ritor1
parents: 1630
diff changeset
2817 || (v6 = (int)(&pPlayers[uActiveCharacter]->uIntelligence + dialog_menu_id), *(short *)v6) )
Ritor1
parents: 1630
diff changeset
2818 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1748
diff changeset
2819 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1634
Ritor1
parents: 1630
diff changeset
2820 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2821 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2822 {
1634
Ritor1
parents: 1630
diff changeset
2823 if ( pParty->uNumGold < pPrice )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2824 {
1634
Ritor1
parents: 1630
diff changeset
2825 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);//Ó âàñ íå õâàòàåò çîëîòà
Ritor1
parents: 1630
diff changeset
2826 v27 = 4;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2827 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2828 else
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2829 {
1634
Ritor1
parents: 1630
diff changeset
2830 Party::TakeGold(pPrice);
Ritor1
parents: 1630
diff changeset
2831 *(short *)v6 = 1;
Ritor1
parents: 1630
diff changeset
2832 v27 = 2;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2833 }
1634
Ritor1
parents: 1630
diff changeset
2834 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)v27);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2835 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2836 }
1634
Ritor1
parents: 1630
diff changeset
2837 else
Ritor1
parents: 1630
diff changeset
2838 {
Ritor1
parents: 1630
diff changeset
2839 v5 = 0;
Ritor1
parents: 1630
diff changeset
2840 }
2402
8cee51ce4382 included directx 11
Ritor1
parents: 2389
diff changeset
2841 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, v5);
1634
Ritor1
parents: 1630
diff changeset
2842 return; // void func
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2843 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2844
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2845 //----- (004B2A74) --------------------------------------------------------
1634
Ritor1
parents: 1630
diff changeset
2846 void SimpleHouseDialog()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2847 {
1580
Ritor1
parents: 1573
diff changeset
2848 NPCData *pNPC; // esi@6
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2849 char *v15; // esi@14
1580
Ritor1
parents: 1573
diff changeset
2850 GUIButton *pButton; // eax@15
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2851 char *v29; // esi@42
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2852 int v31; // ST1C_4@42
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2853 int index; // esi@51
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2854 int v36;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2855 signed int all_text_height; // ecx@54
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2856 int v40; // edi@57
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2857 unsigned __int16 pTextColor; // ax@60
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2858 GUIFont *pTextFont; // ebx@64
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2859 int pTextHeight;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2860 GUIWindow w; // [sp+Ch] [bp-110h]@64
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2861 GUIWindow right_panel_window; // [sp+60h] [bp-BCh]@13
1580
Ritor1
parents: 1573
diff changeset
2862 GUIWindow house_window; // [sp+B4h] [bp-68h]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2863 char *pInString; // [sp+114h] [bp-8h]@12
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2864
1580
Ritor1
parents: 1573
diff changeset
2865 memcpy(&house_window, pDialogueWindow, sizeof(house_window));
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2866 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2867 {
1580
Ritor1
parents: 1573
diff changeset
2868 house_window.uFrameX = 493;
Ritor1
parents: 1573
diff changeset
2869 house_window.uFrameWidth = 126;
Ritor1
parents: 1573
diff changeset
2870 house_window.uFrameZ = 366;
Ritor1
parents: 1573
diff changeset
2871 house_window.DrawTitleText(pFontCreate, 0, 2, 0, pMapStats->pInfos[uHouse_ExitPic].pName, 3);
Ritor1
parents: 1573
diff changeset
2872 house_window.uFrameX = 483;
Ritor1
parents: 1573
diff changeset
2873 house_window.uFrameWidth = 148;
Ritor1
parents: 1573
diff changeset
2874 house_window.uFrameZ = 334;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2875 if ( !pTransitionStrings[uHouse_ExitPic] )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2876 {
1580
Ritor1
parents: 1573
diff changeset
2877 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[411], pMapStats->pInfos[uHouse_ExitPic].pName);//Âîéòè â ^Pv[%s]
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2878 house_window.DrawTitleText(pFontCreate, 0, (212 - pFontCreate->CalcTextHeight(pTmpBuf.data(), &house_window, 0, 0)) / 2 + 101, 0, pTmpBuf.data(), 3);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2879 return;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2880 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2881 house_window.DrawTitleText(pFontCreate, 0,
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2882 (212 - pFontCreate->CalcTextHeight(pTransitionStrings[uHouse_ExitPic], &house_window, 0, 0)) / 2 + 101, 0, pTransitionStrings[uHouse_ExitPic], 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2883 return;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2884 }
1580
Ritor1
parents: 1573
diff changeset
2885 house_window.uFrameWidth -= 10;
Ritor1
parents: 1573
diff changeset
2886 house_window.uFrameZ -= 10;
Ritor1
parents: 1573
diff changeset
2887 pNPC = HouseNPCData[(unsigned int)((char *)pDialogueNPCCount + -(dword_591080 != 0) )];//- 1
Ritor1
parents: 1573
diff changeset
2888 if ( pNPC->uProfession )
Ritor1
parents: 1573
diff changeset
2889 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], pNPC->pName, aNPCProfessionNames[pNPC->uProfession]);//^Pi[%s] %s
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2890 else
1580
Ritor1
parents: 1573
diff changeset
2891 strcpy(pTmpBuf.data(), pNPC->pName);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2892 house_window.DrawTitleText(pFontCreate, 483, 113, Color16(0x15u, 0x99u, 0xE9u), pTmpBuf.data(), 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2893 if ( !dword_591080 )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2894 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2895 if ( !uDialogueType )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2896 {
1580
Ritor1
parents: 1573
diff changeset
2897 if ( pNPC->greet )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2898 {
1580
Ritor1
parents: 1573
diff changeset
2899 house_window.uFrameWidth = game_viewport_width;
Ritor1
parents: 1573
diff changeset
2900 house_window.uFrameZ = 452;
1655
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1653
diff changeset
2901 pInString = pNPCStats->pNPCGreetings[pNPC->greet].pGreetings[((pNPC->uFlags & 3) == 2)];
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2902 //pInString = (char *)*(&pNPCStats->field_17884 + ((pNPC->uFlags & 3) == 2) + 2 * pNPC->greet);
1580
Ritor1
parents: 1573
diff changeset
2903 pRenderer->GetLeather(8, 352 - (pFontArrus->CalcTextHeight(pInString, &house_window, 13, 0) + 7),
Ritor1
parents: 1573
diff changeset
2904 pIcons_LOD->GetTexture(uTextureID_Leather), pIcons_LOD->GetTexture(uTextureID_Leather)->uTextureHeight
Ritor1
parents: 1573
diff changeset
2905 - (pFontArrus->CalcTextHeight(pInString, &house_window, 13, 0) + 7));
Ritor1
parents: 1573
diff changeset
2906 pRenderer->DrawTextureIndexed(8, 347 - (pFontArrus->CalcTextHeight(pInString, &house_window, 13, 0) + 7), pTexture_591428);
Ritor1
parents: 1573
diff changeset
2907 pDialogueWindow->DrawText(pFontArrus, 13, 354 - (pFontArrus->CalcTextHeight(pInString, &house_window, 13, 0) + 7),
Ritor1
parents: 1573
diff changeset
2908 0, FitTextInAWindow(pInString, pFontArrus, &house_window, 0xDu, 0), 0, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2909 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2910 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2911 }
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2912 //for right panel
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2913 memcpy(&right_panel_window, pDialogueWindow, sizeof(right_panel_window));
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2914 right_panel_window.uFrameX = 483;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2915 right_panel_window.uFrameWidth = 148;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2916 right_panel_window.uFrameZ = 334;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2917 for ( int i = right_panel_window.pStartingPosActiveItem;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2918 i < right_panel_window.pStartingPosActiveItem + right_panel_window.pNumPresenceButton; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2919 {
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2920 pButton = right_panel_window.GetControl(i);
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2921 switch ( pButton->msg_param )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2922 {
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2923 case 19://evt_A
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2924 v15 = (char *)pNPCTopics[pNPC->evt_A].pTopic;
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2925 if ( !v15 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2926 {
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2927 pButton->msg_param = 0;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2928 v15 = "";
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2929 }
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2930 strcpy(pButton->pButtonName, v15);
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2931 continue;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2932 case 20://evt_B
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2933 v15 = (char *)pNPCTopics[pNPC->evt_B].pTopic;
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2934 if ( !v15 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2935 {
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2936 pButton->msg_param = 0;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2937 v15 = "";
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2938 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2939 if ( uDialogueType != 84 )
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2940 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2941 strcpy(pButton->pButtonName, v15);
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2942 continue;
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2943 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2944 sprintf(pTmpBuf.data(), format_4E2D80, Color16(0xE1u, 0xCDu, 0x23u), pItemsTable->pItems[contract_approved].pUnidentifiedName);
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2945 sprintf(pTmpBuf2.data(), current_npc_text, pTmpBuf.data());
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2946 current_npc_text = pTmpBuf2.data();
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2947 strcpy(pButton->pButtonName, v15);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2948 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2949 case 21://evt_C
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2950 v15 = (char *)pNPCTopics[pNPC->evt_C].pTopic;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2951 if ( !v15 )
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2952 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2953 pButton->msg_param = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2954 v15 = "";
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2955 }
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2956 strcpy(pButton->pButtonName, v15);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2957 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2958 case 22://evt_D
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2959 v15 = (char *)pNPCTopics[pNPC->evt_D].pTopic;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2960 if ( !v15 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2961 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2962 pButton->msg_param = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2963 v15 = "";
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2964 }
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2965 strcpy(pButton->pButtonName, v15);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2966 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2967 case 23://evt_E
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2968 v15 = (char *)pNPCTopics[pNPC->evt_E].pTopic;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2969 if ( !v15 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2970 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2971 pButton->msg_param = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2972 v15 = "";
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
2973 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2974 strcpy(pButton->pButtonName, v15);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2975 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2976 case 24://evt_F
1661
e1d1fe32c194 NPCTopics
Ritor1
parents: 1653
diff changeset
2977 v15 = (char *)pNPCTopics[pNPC->evt_F].pTopic;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2978 if ( !v15 )
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2979 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2980 pButton->msg_param = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2981 v15 = "";
1636
ff3d7af671ec SimpleHouseDialog cleaning(continue)
Ritor1
parents: 1634
diff changeset
2982 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2983 strcpy(pButton->pButtonName, v15);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2984 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2985 case 76:
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2986 strcpy(pButton->pButtonName, pGlobalTXT_LocalizationStrings[406]);//Íàíÿòü
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2987 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2988 case 77:
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2989 strcpy(pButton->pButtonName, pGlobalTXT_LocalizationStrings[407]);//Ïîäðîáíåå
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2990 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2991 case 79:
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2992 strcpy(pButton->pButtonName, _4B254D_SkillMasteryTeacher((int)right_panel_window.ptr_1C));
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2993 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2994 case 82:
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2995 strcpy(pButton->pButtonName, ContractSelectText((int)right_panel_window.ptr_1C));
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2996 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2997 case 83:
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2998 v29 = pMonsterStats->pInfos[bountyHunting_monster_id_for_hunting].pName;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
2999 v31 = *(int *)v29;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3000 sprintfex(pTmpBuf.data(), "\f%05d%s\f%05d", Color16(0xFFu, 0xFFu, 0x9Bu), v31, Color16(0xFFu, 0xFFu, 0xFFu));
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3001 sprintfex(pTmpBuf2.data(), bountyHunting_text, pTmpBuf.data(), 100 * (unsigned __int8)v29[8]);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3002 current_npc_text = pTmpBuf2.data();
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3003 strcpy(pButton->pButtonName, "");
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3004 continue;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3005 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3006 if ( pButton->msg_param > 0 && pButton->msg_param < 13 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3007 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3008 strcpy(pButton->pButtonName, pGlobalTXT_LocalizationStrings[122]);//Âñòóïèòü
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3009 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3010 }
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3011 if ( pButton->msg_param > 13 && pButton->msg_param < 19 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3012 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3013 strcpy(pButton->pButtonName, "");
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3014 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3015 }
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3016 if ( pButton->msg_param != 93 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3017 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3018 strcpy(pButton->pButtonName, "");
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3019 continue;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3020 }
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3021 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3022 index = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3023 all_text_height = 0;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3024 for ( int i = pDialogueWindow->pStartingPosActiveItem;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3025 i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3026 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3027 pButton = pDialogueWindow->GetControl(i);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3028 all_text_height += pFontArrus->CalcTextHeight(pButton->pButtonName, &right_panel_window, 0, 0);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3029 index++;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3030 }
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3031 if ( index )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3032 {
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3033 v36 = (174 - all_text_height) / index;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3034 if ( v36 > 32 )
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3035 v36 = 32;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3036 v40 = (174 - v36 * index - all_text_height) / 2 - v36 / 2 + 138;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3037 for ( int i = pDialogueWindow->pStartingPosActiveItem; i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3038 {
1606
Ritor1
parents: 1580
diff changeset
3039 pButton = pDialogueWindow->GetControl(i);
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3040 pButton->uY = v36 + v40;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3041 pTextHeight = pFontArrus->CalcTextHeight(pButton->pButtonName, &right_panel_window, 0, 0);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3042 pButton->uHeight = pTextHeight;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3043 v40 = pButton->uY + pTextHeight - 1;
1606
Ritor1
parents: 1580
diff changeset
3044 pButton->uW = v40;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3045 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3046 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3047 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3048 right_panel_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pButton->pButtonName, 3);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3049 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3050 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3051 if ( current_npc_text )
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3052 {
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3053 w.uFrameWidth = 458;
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3054 w.uFrameZ = 457;
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3055 pTextFont = pFontArrus;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3056 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &w, 13, 0) + 7;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3057 if ( 352 - pTextHeight < 8 )
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3058 {
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3059 pTextFont = pFontCreate;
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3060 pTextHeight = pFontCreate->CalcTextHeight(current_npc_text, &w, 13, 0) + 7;
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3061 }
1653
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3062 pRenderer->GetLeather(8, 352 - pTextHeight, pIcons_LOD->GetTexture(uTextureID_Leather), pIcons_LOD->GetTexture(uTextureID_Leather)->uTextureHeight - pTextHeight);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3063 pRenderer->DrawTextureIndexed(8, 347 - pTextHeight, pTexture_591428);
d453ed393d6e NPCGreetings
Ritor1
parents: 1644
diff changeset
3064 house_window.DrawText(pTextFont, 13, 354 - pTextHeight, 0, FitTextInAWindow(current_npc_text, pTextFont, &w, 13, 0), 0, 0, 0);
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3065 }
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3066 }
1434
Ritor1
parents: 1306
diff changeset
3067
1300
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
3068 //----- (004B4F4F) --------------------------------------------------------
bedc304ab617 new files in UI
Ritor1
parents: 1299
diff changeset
3069 void JailDialog()
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3070 {
1608
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3071 GUIWindow jail_dialogue_window; // [sp+8h] [bp-54h]@1
1298
b97d0cdd6c79 new folder UI
Ritor1
parents:
diff changeset
3072
1608
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3073 memcpy(&jail_dialogue_window, window_SpeakInHouse, sizeof(jail_dialogue_window));
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3074 jail_dialogue_window.uFrameX = 483;
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3075 jail_dialogue_window.uFrameWidth = 148;
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3076 jail_dialogue_window.uFrameZ = 334;
fb809d1891bd JailDialog
Ritor1
parents: 1606
diff changeset
3077 jail_dialogue_window.DrawTitleText(pFontArrus, 0, (310 - pFontArrus->CalcTextHeight(pGlobalTXT_LocalizationStrings[672], &jail_dialogue_window, 0, 0)) / 2 + 18,
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3078 Color16(0xFFu, 0xFFu, 0x9Bu), pGlobalTXT_LocalizationStrings[672], 3);//"Çà ìíîãî÷èñëåííûå ïðåñòóïëåíèÿ è çëîäåÿíèÿ âû áûëè ïðèãîâîðåíû ê îäíîìó ãîäó çàêëþ÷åíèÿ."
2355
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3079 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3080
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3081
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3082 //----- (00443801) --------------------------------------------------------
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3083 void InitializeBuildingResidents()
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3084 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3085
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3086 int i;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3087 char* test_string;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3088 unsigned char c;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3089 bool break_loop;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3090 unsigned int temp_str_len;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3091 char* tmp_pos;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3092 int decode_step;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3093
2369
bddcaf5d5db2 removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents: 2355
diff changeset
3094 free(p2DEventsTXT_Raw);
2355
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3095 p2DEventsTXT_Raw = (char *)pEvents_LOD->LoadRaw("2dEvents.txt", 0);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3096 strtok(p2DEventsTXT_Raw, "\r");
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3097 strtok(NULL, "\r");
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3098
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3099 for (i=0;i<525;++i)
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3100 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3101 test_string = strtok(NULL, "\r") + 1;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3102 break_loop = false;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3103 decode_step=0;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3104 do
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3105 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3106 c = *(unsigned char*)test_string;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3107 temp_str_len = 0;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3108 while((c!='\t')&&(c>0))
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3109 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3110 ++temp_str_len;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3111 c=test_string[temp_str_len];
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3112 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3113 tmp_pos=test_string+temp_str_len;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3114 if (*tmp_pos == 0)
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3115 break_loop = true;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3116 *tmp_pos = 0;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3117 if (temp_str_len)
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3118 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3119 switch (decode_step)
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3120 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3121 case 2:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3122 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3123 if ( !_strnicmp(test_string, "wea", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3124 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3125 p2DEvents[i].uType = BuildingType_WeaponShop;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3126 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3127 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3128 if ( !_strnicmp(test_string, "arm", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3129 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3130 p2DEvents[i].uType = BuildingType_ArmorShop;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3131 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3132 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3133 if ( !_strnicmp(test_string, "mag", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3134 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3135 p2DEvents[i].uType = BuildingType_MagicShop;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3136 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3137 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3138 if ( !_strnicmp(test_string, "alc", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3139 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3140 p2DEvents[i].uType = BuildingType_AlchemistShop;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3141 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3142 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3143 if ( !_strnicmp(test_string, "sta", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3144 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3145 p2DEvents[i].uType = BuildingType_Stables;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3146 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3147 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3148 if ( !_strnicmp(test_string, "boa", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3149 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3150 p2DEvents[i].uType = BuildingType_Boats;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3151 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3152 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3153 if ( !_strnicmp(test_string, "tem", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3154 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3155 p2DEvents[i].uType = BuildingType_Temple;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3156 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3157 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3158 if ( !_strnicmp(test_string, "tra", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3159 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3160 p2DEvents[i].uType = BuildingType_Training;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3161 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3162 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3163 if ( !_strnicmp(test_string, "tow", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3164 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3165 p2DEvents[i].uType = BuildingType_TownHall;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3166 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3167 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3168
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3169 if ( !_strnicmp(test_string, "tav", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3170 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3171 p2DEvents[i].uType = BuildingType_Tavern;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3172 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3173 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3174 if ( !_strnicmp(test_string, "ban", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3175 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3176 p2DEvents[i].uType = BuildingType_Bank;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3177 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3178 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3179 if ( !_strnicmp(test_string, "fir", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3180 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3181 p2DEvents[i].uType = BuildingType_FireGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3182 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3183 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3184 if ( !_strnicmp(test_string, "air", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3185 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3186 p2DEvents[i].uType = BuildingType_AirGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3187 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3188 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3189 if ( !_strnicmp(test_string, "wat", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3190 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3191 p2DEvents[i].uType = BuildingType_WaterGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3192 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3193 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3194 if ( !_strnicmp(test_string, "ear", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3195 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3196 p2DEvents[i].uType = BuildingType_EarthGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3197 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3198 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3199 if ( !_strnicmp(test_string, "spi", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3200 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3201 p2DEvents[i].uType = BuildingType_SpiritGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3202 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3203 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3204 if ( !_strnicmp(test_string, "min", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3205 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3206 p2DEvents[i].uType = BuildingType_MindGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3207 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3208 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3209 if ( !_strnicmp(test_string, "bod", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3210 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3211 p2DEvents[i].uType = BuildingType_BodyGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3212 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3213 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3214 if ( !_strnicmp(test_string, "lig", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3215 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3216 p2DEvents[i].uType = BuildingType_LightGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3217 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3218 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3219 if ( !_strnicmp(test_string, "dar", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3220 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3221 p2DEvents[i].uType = BuildingType_DarkGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3222 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3223 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3224 if ( !_strnicmp(test_string, "ele", 3) ) // "Element Guild" from mm6
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3225 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3226 p2DEvents[i].uType = BuildingType_ElementalGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3227 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3228 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3229 if ( !_strnicmp(test_string, "sel", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3230 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3231 p2DEvents[i].uType = BuildingType_SelfGuild;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3232 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3233 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3234 if ( !_strnicmp(test_string, "mir", 3) )
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3235 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3236 p2DEvents[i].uType = BuildingType_16;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3237 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3238 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3239 if ( !_strnicmp(test_string, "mer", 3) ) // "Merc Guild" from mm6
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3240 {
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3241 p2DEvents[i].uType = BuildingType_TownHall;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3242 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3243 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3244 p2DEvents[i].uType = BuildingType_18;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3245 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3246 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3247
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3248 case 4:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3249 p2DEvents[i].uAnimationID = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3250 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3251 case 5:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3252 p2DEvents[i].pName = RemoveQuotes(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3253 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3254 case 6:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3255 p2DEvents[i].pProprieterName = RemoveQuotes(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3256 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3257 case 7:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3258 p2DEvents[i].pProprieterTitle = RemoveQuotes(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3259 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3260 case 8:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3261 p2DEvents[i].field_14 = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3262 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3263 case 9:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3264 p2DEvents[i]._state = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3265 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3266 case 10:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3267 p2DEvents[i]._rep = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3268 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3269 case 11:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3270 p2DEvents[i]._per = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3271 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3272 case 12:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3273 p2DEvents[i].fPriceMultiplier = atof(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3274 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3275 case 13:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3276 p2DEvents[i].flt_24 = atof(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3277 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3278 case 15:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3279 p2DEvents[i].field_1C = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3280 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3281 case 18:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3282 p2DEvents[i].uOpenTime = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3283 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3284 case 19:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3285 p2DEvents[i].uCloseTime = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3286 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3287 case 20:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3288 p2DEvents[i].uExitPicID = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3289 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3290 case 21:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3291 p2DEvents[i].uExitMapID = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3292 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3293 case 22:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3294 p2DEvents[i]._quest_related = atoi(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3295 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3296 case 23:
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3297 p2DEvents[i].pEnterText = RemoveQuotes(test_string);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3298 break;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3299 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3300 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3301 ++decode_step;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3302 test_string=tmp_pos+1;
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3303 } while ((decode_step<24)&&!break_loop);
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3304 }
a574a80e7012 Moving more functions out of unsorted_subs
Grumpy7
parents: 2350
diff changeset
3305
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3306 }
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3307
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3308 //----- (004BD8B5) --------------------------------------------------------
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3309 int HouseDialogPressCloseBtn()
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3310 {
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3311 if ( pMessageQueue_50CBD0->uNumMessages )
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3312 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3313 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_CANCELLED);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3314 pKeyActionMap->ResetKeys();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3315 activeLevelDecoration = nullptr;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3316 current_npc_text = 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3317 if ( pDialogueNPCCount == 0)
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3318 return 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3319
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3320 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL && ShopTexture )
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3321 {
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3322 ShopTexture->Release();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3323 ShopTexture = 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3324 }
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3325
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3326 switch(dialog_menu_id)
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3327 {
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3328 case -1:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3329 _4B4224_UpdateNPCTopics((int)((char *)pDialogueNPCCount - 1));
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3330 BackToHouseMenu();
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3331 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3332
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3333 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3334 case HOUSE_DIALOGUE_LEARN_SKILLS:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3335 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN:
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3336 BackToHouseMenu();
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3337 UI_CreateEndConversationButton();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3338 dialog_menu_id = HOUSE_DIALOGUE_MAIN;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3339 InitializaDialogueOptions(in_current_building_type);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3340 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3341
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3342 case HOUSE_DIALOGUE_SHOP_SELL:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3343 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3344 case HOUSE_DIALOGUE_SHOP_REPAIR:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3345 UI_CreateEndConversationButton();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3346 dialog_menu_id = HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3347 InitializaDialogueOptions_Shops(in_current_building_type);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3348 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3349
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3350 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RULES:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3351 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_VICTORY_CONDITIONS:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3352 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RESULT:
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3353 BackToHouseMenu();
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3354 UI_CreateEndConversationButton();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3355 dialog_menu_id = HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3356 InitializaDialogueOptions_Tavern(in_current_building_type);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3357 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3358
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3359 case HOUSE_DIALOGUE_NULL:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3360 case HOUSE_DIALOGUE_MAIN:
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3361 pDialogueNPCCount = 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3362 pDialogueWindow->Release();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3363 dialog_menu_id = HOUSE_DIALOGUE_NULL;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3364 pDialogueWindow = 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3365 pIcons_LOD->SyncLoadedFilesCount();
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3366
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3367 if ( uNumDialogueNPCPortraits == 1 )
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3368 return 0;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3369
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3370 pBtn_ExitCancel = window_SpeakInHouse->pControlsHead;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3371 if ( uNumDialogueNPCPortraits > 0 )
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3372 {
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3373 for ( uint i = 0; i < (unsigned int)uNumDialogueNPCPortraits; ++i )
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3374 {
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3375 HouseNPCPortraitsButtonsList[i] = window_SpeakInHouse->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][i],
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3376 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][i],
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3377 63, 73, 1, 0, UIMSG_ClickHouseNPCPortrait, i, 0, byte_591180[i].data(), 0, 0, 0);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3378 }
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3379 }
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3380
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3381 BackToHouseMenu();
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3382 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3383
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3384 default:
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3385 BackToHouseMenu();
2374
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3386 dialog_menu_id = HOUSE_DIALOGUE_MAIN;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3387 InitializaDialogueOptions(in_current_building_type);
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3388 break;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3389 }
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3390 return 1;
802460e60eee add UIArena.cpp and UIArena.h and other
Ritor1
parents: 2369
diff changeset
3391 }
2453
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3392
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3393 //----- (004BF5B2) --------------------------------------------------------
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3394 void BackToHouseMenu()
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3395 {
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3396 pMouse->_469E24();
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3397 if ( window_SpeakInHouse && window_SpeakInHouse->ptr_1C == (void *)165 && !pMovie_Track)//!this->pSmackerMovie )
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3398 {
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3399 bGameoverLoop = true;
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3400 HouseDialogPressCloseBtn();
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3401 window_SpeakInHouse->Release();
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3402 pParty->uFlags &= 0xFFFFFFFD;
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3403 if ( EnterHouse(HOUSE_BODY_GUILD_ERATHIA) )
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3404 {
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3405 pAudioPlayer->PlaySound(SOUND_Invalid, 0, 0, -1, 0, 0, 0, 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3406 window_SpeakInHouse = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_HouseInterior, 165, 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3407 window_SpeakInHouse->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1, 0x31, "", 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3408 window_SpeakInHouse->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2, 0x32, "", 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3409 window_SpeakInHouse->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3, 0x33, "", 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3410 window_SpeakInHouse->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4, 0x34, "", 0);
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3411 }
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3412 bGameoverLoop = 0;
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3413 }
2a8010d99cf8 _4BF5B2() renamed to BackToHouseMenu()
Ritor1
parents: 2450
diff changeset
3414 }