annotate Spells.cpp @ 2030:47ab41698f9d

sudden drop in flight fix
author Ritor1
date Mon, 18 Nov 2013 13:17:12 +0600
parents 4da5644df18f
children 7a9477135943
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
4
0
Ritor1
parents:
diff changeset
5 #include <stdlib.h>
Ritor1
parents:
diff changeset
6
Ritor1
parents:
diff changeset
7 #include "Spells.h"
Ritor1
parents:
diff changeset
8 #include "Overlays.h"
Ritor1
parents:
diff changeset
9 #include "LOD.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 142
diff changeset
10 #include "texts.h"
0
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12 #include "mm7_data.h"
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
13 #include "Party.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
14 #include "Math.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
15 #include "SpriteObject.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
16 #include "ObjectList.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
17 #include "Indoor.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
18 #include "AudioPlayer.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
19 #include "Actor.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
20 #include "Game.h"
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
21 #include "stru6.h"
0
Ritor1
parents:
diff changeset
22
Ritor1
parents:
diff changeset
23
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
24 std::array<TownPortalData, 6> TownPortalList = //4ECBB8
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
25 {{
839
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
26 {Vec3_int_(-5121, 2107, 1), 1536, 0, 21, 0},
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
27 {Vec3_int_(-15148, -10240, 1473), 0, 0, 4, 0},
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
28 {Vec3_int_(-10519, 5375, 753), 512, 0, 3, 0},
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
29 {Vec3_int_(3114, -11055, 513), 0, 0, 10, 0},
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
30 {Vec3_int_(-158, 7624, 1), 512, 0, 7, 0},
ae8f83e1b0cf coordinates for the town portal
x1diablo
parents: 490
diff changeset
31 {Vec3_int_(-1837, -4247, 65), 65, 0, 8, 0}
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
32 }} ;
0
Ritor1
parents:
diff changeset
33
Ritor1
parents:
diff changeset
34 struct SpellStats *pSpellStats;
Ritor1
parents:
diff changeset
35
Ritor1
parents:
diff changeset
36
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
37 std::array<stru324_spell, 103> stru_4E3ACC =
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
38 {{
488
Nomad
parents: 363
diff changeset
39 {10, 0},
Nomad
parents: 363
diff changeset
40 {1000, 0}, {1010, 0}, {1020, 0}, {1030, 0}, {1040, 0}, {1050, 0}, {1060, 0}, {1070, 0}, {1080, 0}, {1090, 0}, {1100, 0},
Nomad
parents: 363
diff changeset
41 {2000, 0}, {2010, 0}, {2020, 0}, {2030, 0}, {2040, 0}, {2050, 0}, {2060, 0}, {2070, 0}, {2080, 0}, {2090, 0}, {2100, 0},
Nomad
parents: 363
diff changeset
42 {3000, 0}, {3010, 0}, {3020, 0}, {3030, 0}, {3040, 0}, {3050, 0}, {3060, 0}, {3070, 0}, {3080, 0}, {3090, 0}, {3100, 0},
Nomad
parents: 363
diff changeset
43 {4000, 0}, {4010, 0}, {4020, 0}, {4030, 0}, {4040, 0}, {4050, 0}, {4060, 0}, {4070, 0}, {4080, 0}, {4090, 0}, {4100, 0},
Nomad
parents: 363
diff changeset
44 {5000, 0}, {5010, 0}, {5020, 0}, {5030, 0}, {5040, 0}, {5050, 0}, {5060, 0}, {5070, 0}, {5080, 0}, {5090, 0}, {5100, 0},
Nomad
parents: 363
diff changeset
45 {6000, 0}, {6010, 0}, {6020, 0}, {6030, 0}, {6040, 0}, {6050, 0}, {6060, 0}, {6070, 0}, {6080, 0}, {6090, 0}, {6100, 0},
Nomad
parents: 363
diff changeset
46 {7000, 0}, {7010, 0}, {7020, 0}, {7030, 0}, {7040, 0}, {7050, 0}, {7060, 0}, {7070, 0}, {7080, 0}, {7090, 0}, {7100, 0},
Nomad
parents: 363
diff changeset
47 {8000, 0}, {8010, 0}, {8020, 0}, {8030, 0}, {8040, 0}, {8050, 0}, {8060, 0}, {8070, 0}, {8080, 0}, {8090, 0}, {8100, 0},
1086
74ab0ed7e308 arrows working
zipi
parents: 1016
diff changeset
48 {9000, 0}, {9010, 0}, {9020, 0}, {9030, 0}, {9040, 0}, {9050, 0}, {9060, 0}, {9070, 0}, {9080, 0}, {9090, 0}, {9100, 0},
74ab0ed7e308 arrows working
zipi
parents: 1016
diff changeset
49 {545, 0},
74ab0ed7e308 arrows working
zipi
parents: 1016
diff changeset
50 {545, 0},
74ab0ed7e308 arrows working
zipi
parents: 1016
diff changeset
51 {555, 0}
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
52 }};
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
53 //9 spellbook pages 11 spells per page 9*11 =99 +1 zero struct at 0. It counted from 1!
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
54 std::array<SpellData, 100> pSpellDatas={{
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
55 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
56
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
57 {1, 1, 1, 1, 60, 60, 60, 40, 0, 0},//0
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
58 {2, 2, 2, 2, 110, 110, 100, 90, 768, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
59 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
60 {4, 4, 4, 4, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
61 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
62 {8, 8, 8, 8, 100, 100, 90, 80, 1536, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
63 {10, 10, 10, 10, 150, 150, 150, 150, 1536, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
64 {15, 15, 15, 15, 120, 120, 120, 120, 1536, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
65 {20, 20, 20, 20, 100, 100, 100, 90, 264, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
66 {25, 25, 25, 25, 100, 100, 100, 90, 268, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
67 {30, 30, 30, 30, 90, 90, 90, 90, 3855, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
68
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
69 {1, 1, 1, 0, 60, 60, 60, 60, 0, 0}, //1
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
70 {2, 2, 2, 2, 120, 120, 120, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
71 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
72 {4, 4, 4, 4, 110, 100, 90, 80, 258, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
73 {5, 5, 5, 5, 90, 90, 70, 50, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
74 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
75 {10, 10, 10, 10, 100, 100, 90, 70, 2048, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
76 {15, 15, 15, 15, 200, 200, 200, 200, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
77 {20, 20, 20, 20, 100, 100, 100, 90, 2570, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
78 {25, 25, 25, 25, 250, 250, 250, 250, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
79 {30, 30, 30, 30, 90, 90, 90, 90, 276, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
80
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
81 {1, 1, 1, 1, 60, 60, 60, 20, 0, 0}, //2
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
82 {2, 2, 2, 2, 110, 100, 90, 70, 514, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
83 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
84 {4, 4, 4, 4, 110, 100, 90, 80, 1024, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
85 {5, 5, 5, 5, 150, 150, 150, 150, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
86 {8, 8, 8, 8, 200, 200, 200, 200, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
87 {10, 10, 10, 10, 100, 100, 90, 80, 2313, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
88 {15, 15, 15, 15, 140, 140, 140, 140, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
89 {20, 20, 20, 20, 200, 200, 200, 200, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
90 {25, 25, 25, 25, 80, 80, 80, 80, 780, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
91 {30, 30, 30, 30, 250, 250, 250, 250, 0, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
92
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
93 {1, 1, 1, 1, 80, 80, 80, 80, 0, 0}, //3
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
94 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
95 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
96 {4, 4, 4, 4, 110, 100, 90, 80, 773, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
97 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
98 {8, 8, 8, 8, 100, 100, 90, 80, 2304, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
99 {10, 10, 10, 10, 140, 140, 140, 140, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
100 {15, 15, 15, 15, 90, 90, 90, 80, 2048, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
101 {20, 20, 20, 20, 150, 150, 150, 150, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
102 {25, 25, 25, 25, 100, 100, 100, 90, 276, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
103 {30, 30, 30, 30, 90, 90, 90, 90, 25, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
104
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
105 {1, 1, 1, 1, 100, 100, 100, 100, 0, 0}, //4
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
106 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
107 {3, 3, 3, 3, 90, 90, 90, 90, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
108 {4, 4, 4, 4, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
109 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
110 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
111 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
112 {15, 15, 15, 15, 100, 100, 100, 100, 2058, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
113 {20, 20, 20, 20, 240, 240, 240, 240, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
114 {25, 25, 25, 25, 150, 150, 150, 150, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
115 {30, 30, 30, 30, 1000, 1000, 1000, 1000, 0, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
116
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
117 {1, 1, 1, 1, 120, 120, 120, 120, 0, 0}, //5
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
118 {2, 2, 2, 2, 110, 110, 110, 110, 771, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
119 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
120 {4, 4, 4, 4, 110, 100, 90, 80, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
121 {5, 5, 5, 5, 100, 100, 100, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
122 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
123 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
124 {15, 15, 15, 15, 80, 80, 80, 80, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
125 {20, 20, 20, 20, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
126 {25, 25, 25, 25, 110, 110, 110, 100, 268, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
127 {30, 30, 30, 30, 120, 120, 120, 120, 0, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
128
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
129 {1, 1, 1, 1, 120, 120, 120, 120, 0, 0}, //6
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
130 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
131 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
132 {4, 4, 4, 4, 110, 100, 90, 80, 520, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
133 {5, 5, 5, 5, 110, 110, 110, 110, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
134 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
135 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
136 {15, 15, 15, 15, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
137 {20, 20, 20, 20, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
138 {25, 25, 25, 25, 110, 110, 110, 100, 1310, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
139 {30, 30, 30, 30, 100, 100, 100, 100, 0, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
140
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
141 {5, 5, 5, 5, 110, 100, 90, 80, 1024, 0}, //7
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
142 {10, 10, 10, 10, 120, 110, 100, 90, 4112, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
143 {15, 15, 15, 15, 120, 110, 100, 90, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
144 {20, 20, 20, 20, 160, 140, 120, 100, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
145 {25, 25, 25, 25, 140, 140, 140, 140, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
146 {30, 30, 30, 30, 500, 500, 500, 500, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
147 {35, 35, 35, 35, 135, 135, 120, 100, 281, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
148 {40, 40, 40, 40, 500, 500, 500, 500, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
149 {45, 45, 45, 45, 250, 250, 250, 250, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
150 {50, 50, 50, 50, 150, 150, 150, 135, 5140, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
151 {55, 55, 55, 55, 300, 300, 300, 300, 0, 0},
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
152
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
153 {10, 10, 10, 10, 140, 140, 140, 140, 0, 0}, //8
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
154 {15, 15, 15, 15, 120, 110, 100, 90, 2585, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
155 {20, 20, 20, 20, 120, 100, 90, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
156 {25, 25, 25, 25, 120, 120, 120, 120, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
157 {30, 30, 30, 30, 90, 90, 80, 70, 1542, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
158 {35, 35, 35, 35, 120, 120, 100, 80, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
159 {40, 40, 40, 40, 110, 110, 110, 110, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
160 {45, 45, 45, 45, 200, 200, 200, 150, 0, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
161 {50, 50, 50, 50, 120, 120, 120, 100, 6400, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
162 {55, 55, 55, 55, 250, 250, 250, 250, 306, 0},
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
163 {60, 60, 60, 60, 300, 300, 300, 300, 2073, 0}
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
164 }};
0
Ritor1
parents:
diff changeset
165
490
Nomad
parents: 488
diff changeset
166
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
167 std::array<unsigned int, 25> wand_spell_ids =
490
Nomad
parents: 488
diff changeset
168 {
Nomad
parents: 488
diff changeset
169 // 135 Wand of Fire 136 Wand of Sparks 137 Wand of Poison 138 Wand of Stunning 139 Wand of Harm
Nomad
parents: 488
diff changeset
170 SPELL_FIRE_FIRE_BOLT, SPELL_AIR_SPARKS, SPELL_WATER_POISON_SPRAY, SPELL_EARTH_STUN, SPELL_BODY_HARM,
Nomad
parents: 488
diff changeset
171 // 140 Fairy Wand of Light 141 Fairy Wand of Ice 142 Fairy Wand of Lashing 143 Fairy Wand of Mind 144 Fairy Wand of Swarms
Nomad
parents: 488
diff changeset
172 SPELL_LIGHT_LIGHT_BOLT, SPELL_WATER_ICE_BOLT, SPELL_SPIRIT_SPIRIT_LASH, SPELL_MIND_MIND_BLAST, SPELL_EARTH_DEADLY_SWARM,
Nomad
parents: 488
diff changeset
173 // 145 Alacorn Wand of Fireballs 146 Alacorn Wand of Acid 147 Alacorn Wand of Lightning 148 Alacorn Wand of Blades 149 Alacorn Wand of Charms
Nomad
parents: 488
diff changeset
174 SPELL_FIRE_FIREBALL, SPELL_WATER_ACID_BURST, SPELL_AIR_LIGHNING_BOLT, SPELL_EARTH_BLADES, SPELL_MIND_CHARM,
Nomad
parents: 488
diff changeset
175 // 150 Arcane Wand of Blasting 151 Arcane Wand of The Fist 152 Arcane Wand of Rocks 153 Arcane Wand of Paralyzing 154 Arcane Wand of Clouds
Nomad
parents: 488
diff changeset
176 SPELL_WATER_ICE_BLAST, SPELL_BODY_FLYING_FIST, SPELL_EARTH_ROCK_BLAST, SPELL_LIGHT_PARALYZE, SPELL_DARK_TOXIC_CLOUD,
Nomad
parents: 488
diff changeset
177 // 155 Mystic Wand of Implosion 156 Mystic Wand of Distortion 157 Mystic Wand of Sharpmetal 158 Mystic Wand of Shrinking 159 Mystic Wand of Incineration
Nomad
parents: 488
diff changeset
178 SPELL_AIR_IMPLOSION, SPELL_EARTH_MASS_DISTORTION, SPELL_DARK_SHARPMETAL, SPELL_DARK_SHRINKING_RAY, SPELL_FIRE_INCINERATE
Nomad
parents: 488
diff changeset
179 };
Nomad
parents: 488
diff changeset
180
Nomad
parents: 488
diff changeset
181
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1165
diff changeset
182 std::array<std::array<unsigned char, 12>, 9> pSpellbookSpellIndices = // 4E2430
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1165
diff changeset
183 {{ //0 1 2 3 4 5 6 7 8 9 10 11
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
184 {0, 3, 1, 8, 11, 7, 4, 10, 6, 2, 5, 9},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
185 {0, 11, 2, 9, 6, 8, 5, 10, 3, 7, 1, 4},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
186 {0, 4, 8, 9, 1, 10, 3, 11, 7, 6, 2, 5},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
187 {0, 7, 10, 8, 2, 11, 1, 5, 3, 6, 4, 9},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
188 {0, 5, 10, 11, 7, 2, 8, 1, 4, 9, 3, 6},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
189 {0, 5, 9, 8, 3, 7, 6, 4, 1, 11, 2, 10},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
190 {0, 1, 6, 9, 3, 5, 8, 11, 7, 10, 4, 2},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
191 {0, 1, 10, 11, 9, 4, 3, 6, 5, 7, 8, 2},
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
192 {0, 9, 3, 7, 1, 5, 2, 10, 11, 8, 6, 4}
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1165
diff changeset
193 }};
0
Ritor1
parents:
diff changeset
194
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
195 std::array<std::array<struct SpellBookIconPos, 12>, 9> pIconPos={{
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
196
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
197 { 0, 0, 17, 13, 115, 2, 217, 15,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
198 299, 6, 28, 125, 130, 133, 294, 114,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
199 11, 232, 134, 233, 237, 171, 296, 231},
0
Ritor1
parents:
diff changeset
200
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
201 { 0, 0, 19, 9, 117, 3, 206, 13,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
202 285, 7, 16, 123, 113, 101, 201, 118,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
203 317, 110, 11, 230, 149, 236, 296, 234},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
204
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
205 { 0, 0, 17, 9, 140, 0, 210, 34,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
206 293, 5, 15, 98, 78, 121, 175, 136,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
207 301, 115, 15, 226, 154, 225, 272, 220},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
208
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
209 { 0, 0, 7, 9, 156, 2, 277, 9,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
210 11, 117, 111, 82, 180, 102, 303, 108,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
211 10, 229, 120, 221, 201, 217, 296, 225},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
212
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
213 { 0, 0, 18, 8, 89, 15, 192, 14,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
214 292, 7, 22, 129, 125, 146, 217, 136,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
215 305, 115, 22, 226, 174, 237, 290, 231},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
216
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
217 { 0, 0, 18, 12, 148, 9, 292, 7,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
218 17, 122, 121, 99, 220, 87, 293, 112,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
219 13, 236, 128, 213, 220, 223, 315, 223},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
220
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
221 { 0, 0, 23, 14, 127, 8, 204, 0,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
222 306, 8, 14, 115, 122, 132, 200, 116,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
223 293, 122, 20, 228, 154, 228, 294, 239},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
224
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
225 { 0, 0, 19, 14, 124, 10, 283, 12,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
226 8, 105, 113, 89, 190, 82, 298, 108,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
227 18, 181, 101, 204, 204, 203, 285, 218},
357
b07cf89108d5 Spell positions in book
Gloval
parents: 210
diff changeset
228
1206
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
229 { 0, 0, 18, 17, 110, 16, 201, 15,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
230 307, 15, 18, 148, 125, 166, 201, 123,
ab6560001f5b arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents: 1205
diff changeset
231 275, 120, 28, 235, 217, 222, 324, 216}}};
0
Ritor1
parents:
diff changeset
232
Ritor1
parents:
diff changeset
233
Ritor1
parents:
diff changeset
234 //----- (0042EB31) --------------------------------------------------------
Ritor1
parents:
diff changeset
235 bool SpellBuff::NotExpired()
Ritor1
parents:
diff changeset
236 {
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 142
diff changeset
237 return (signed __int64)this->uExpireTime > 0 ? true:false;
0
Ritor1
parents:
diff changeset
238 }
Ritor1
parents:
diff changeset
239
Ritor1
parents:
diff changeset
240
Ritor1
parents:
diff changeset
241 //----- (00458585) --------------------------------------------------------
Ritor1
parents:
diff changeset
242 void SpellBuff::Reset()
Ritor1
parents:
diff changeset
243 {
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
244 uSkill = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
245 uPower = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
246 uExpireTime = 0i64;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
247 uCaster = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
248 uFlags = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
249 if (uOverlayID)
0
Ritor1
parents:
diff changeset
250 {
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
251 pOtherOverlayList->pOverlays[uOverlayID - 1].Reset();
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 0
diff changeset
252 pOtherOverlayList->bRedraw = true;
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
253 uOverlayID = 0;
0
Ritor1
parents:
diff changeset
254 }
Ritor1
parents:
diff changeset
255 }
Ritor1
parents:
diff changeset
256
Ritor1
parents:
diff changeset
257 //----- (004585CA) --------------------------------------------------------
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
258 bool SpellBuff::IsBuffExpiredToTime( __int64 time_end )
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
259 {
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
260 if (uExpireTime && (uExpireTime < time_end))
0
Ritor1
parents:
diff changeset
261 {
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
262 uExpireTime = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
263 uPower = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
264 uSkill = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
265 uOverlayID = 0;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
266 return true;
0
Ritor1
parents:
diff changeset
267 }
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
268 return false;
0
Ritor1
parents:
diff changeset
269 }
Ritor1
parents:
diff changeset
270
Ritor1
parents:
diff changeset
271 //----- (004584E0) --------------------------------------------------------
1340
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
272 bool SpellBuff::Apply( signed __int64 uExpireTime, unsigned __int16 uSkillLevel, unsigned __int16 uPower, int uOverlayID, unsigned __int8 caster )
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
273 {
22cb507446a4 turnengine refactoring continue
Gloval
parents: 1306
diff changeset
274 if (this->uExpireTime && (uExpireTime < this->uExpireTime))
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
275 return false;
0
Ritor1
parents:
diff changeset
276
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
277 this->uSkill = uSkillLevel;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
278 this->uPower = uPower;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
279 this->uExpireTime = uExpireTime;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
280 if (this->uOverlayID && this->uOverlayID != uOverlayID)
0
Ritor1
parents:
diff changeset
281 {
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
282 pOtherOverlayList->pOverlays[this->uOverlayID - 1].Reset();
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
283 pOtherOverlayList->bRedraw = true;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
284 this->uOverlayID = 0;
0
Ritor1
parents:
diff changeset
285 }
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
286 this->uOverlayID = uOverlayID;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
287 this->uCaster = caster;
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
288
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
289 return true;
0
Ritor1
parents:
diff changeset
290 }
Ritor1
parents:
diff changeset
291
Ritor1
parents:
diff changeset
292 //----- (0045384A) --------------------------------------------------------
Ritor1
parents:
diff changeset
293 void SpellStats::Initialize()
982
08fd1436ef35 enums & lod
Nomad
parents: 910
diff changeset
294 {
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
295 int decode_step;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
296 char* test_string;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
297 bool break_loop;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
298 unsigned char c;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
299 unsigned int temp_str_len;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
300 char* tmp_pos;
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 142
diff changeset
301
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
302 if ( pSpellsTXT_Raw )
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1519
diff changeset
303 free(pSpellsTXT_Raw);
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
304 pSpellsTXT_Raw = NULL;
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 142
diff changeset
305
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
306 pSpellsTXT_Raw = (char *)pEvents_LOD->LoadRaw("spells.txt", 0);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
307 strtok(pSpellsTXT_Raw, "\r");
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
308 strtok(NULL, "\r");
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
309 for(int i=1; i<100; ++i)
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
310 {
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
311 test_string=strtok(NULL, "\r")+1;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
312 decode_step =0;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
313 break_loop=false;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
314 do
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
315 {
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
316 c = *(unsigned char*)test_string;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
317 temp_str_len = 0;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
318 while((c!='\t')&&(c>0))
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
319 {
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
320 ++temp_str_len;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
321 c=test_string[temp_str_len];
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
322 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
323 tmp_pos=test_string+temp_str_len;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
324 if (*tmp_pos == 0)
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
325 break_loop = true;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
326 *tmp_pos = 0;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
327 if (temp_str_len)
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
328 {
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
329 switch (decode_step)
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
330 {
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
331 case 2:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
332 pInfos[i].pName=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
333 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
334 case 3:
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
335 pInfos[i].uSchool = SPELL_SCHOOL_NONE;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
336 if (!_stricmp("fire", test_string) )
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
337 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
338 pInfos[i].uSchool =SPELL_SCHOOL_FIRE;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
339 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
340 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
341 if ( !_stricmp("air", test_string) )
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
342 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
343 pInfos[i].uSchool = SPELL_SCHOOL_AIR;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
344 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
345 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
346 if ( !_stricmp("water", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
347 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
348 pInfos[i].uSchool = SPELL_SCHOOL_WATER;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
349 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
350 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
351 if ( !_stricmp("earth", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
352 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
353 pInfos[i].uSchool = SPELL_SCHOOL_EARTH;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
354 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
355 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
356 if ( !_stricmp("spirit", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
357 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
358 pInfos[i].uSchool = SPELL_SCHOOL_SPIRIT;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
359 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
360 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
361 if ( !_stricmp("mind", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
362 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
363 pInfos[i].uSchool = SPELL_SCHOOL_MIND;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
364 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
365 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
366 if ( !_stricmp("body", test_string) )
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
367 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
368 pInfos[i].uSchool = SPELL_SCHOOL_BODY;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
369 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
370 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
371 if ( !_stricmp("light", test_string) )
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
372 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
373 pInfos[i].uSchool = SPELL_SCHOOL_LIGHT;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
374 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
375 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
376 if ( !_stricmp("dark", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
377 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
378 pInfos[i].uSchool = SPELL_SCHOOL_DARK;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
379 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
380 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
381
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1086
diff changeset
382 if ( !_stricmp("magic", test_string))
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
383 {
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
384 pInfos[i].uSchool = SPELL_SCHOOL_MAGIC;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
385 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
386 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
387 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
388 case 4:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
389 pInfos[i].pShortName=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
390 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
391 case 5:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
392 pInfos[i].pDescription=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
393 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
394 case 6:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
395 pInfos[i].pBasicSkillDesc=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
396 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
397 case 7:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
398 pInfos[i].pExpertSkillDesc=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
399 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
400 case 8:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
401 pInfos[i].pMasterSkillDesc=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
402 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
403 case 9:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
404 pInfos[i].pGrandmasterSkillDesc=RemoveQuotes(test_string);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
405 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
406 case 10:
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
407 int in_string_pos=0;
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
408 unsigned char test;
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
409 int in_str_len=strlen(test_string);
192
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
410 for (int j=0; j<in_str_len; ++j)
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
411 {
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
412 test= tolower(test_string[j]);
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
413 switch (test)
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
414 {
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
415 case 109:
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
416 pSpellDatas[i].field_12|=1;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
417 break;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
418 case 101:
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
419 pSpellDatas[i].field_12|=2;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
420 break;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
421 case 99:
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
422 pSpellDatas[i].field_12|=4;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
423 break;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
424 case 120:
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
425 pSpellDatas[i].field_12|=8;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
426 break;
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
427 }
1c8add70bcf9 spell init fixed
Gloval
parents: 191
diff changeset
428 }
191
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
429 break;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
430 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
431 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
432 else
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
433 break_loop=true;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
434 ++decode_step;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
435 test_string=tmp_pos+1;
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
436 } while ((decode_step<11)&&!break_loop);
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
437 if ((i%11)==0)
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
438 strtok(NULL, "\r");
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
439 }
4813b57396ba spell init in progress
Gloval
parents: 189
diff changeset
440
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
441 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
442 //----- (00448DF8) --------------------------------------------------------
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
443 void __fastcall EventCastSpell(int uSpellID, int uSkillLevel, int uSkill, int fromx, int fromy, int fromz, int tox, int toy, int toz)//sub_448DF8
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
444 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
445 int v9; // esi@1
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
446 double v10; // st7@4
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
447 double v11; // st6@4
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
448 double v12; // st5@4
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
449 double v13; // st7@6
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
450 int v14; // ST44_4@7
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
451 signed int v15; // ebx@9
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
452 signed int v16; // edx@15
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
453 char *v17; // ecx@16
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
454 unsigned __int16 v18; // ax@20
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
455 char *v19; // ecx@31
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
456 int v20; // edx@35
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
457 signed int v21; // edx@37
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
458 char *v22; // ecx@38
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
459 unsigned __int16 v23; // ax@41
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
460 int i; // esi@42
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
461 signed int v25; // edx@55
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
462 char *v26; // ecx@56
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
463 unsigned __int16 v27; // ax@59
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
464 int j; // esi@60
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
465 signed int v29; // edx@66
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
466 char *v30; // ecx@67
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
467 unsigned __int16 v31; // ax@70
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
468 //Player *v32; // eax@80
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
469 //unsigned __int16 v33; // si@85
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
470 int v34; // eax@96
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
471 int v35; // eax@97
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
472 unsigned __int64 v36; // qax@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
473 SpellBuff *v37; // ecx@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
474 int v38; // esi@103
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
475 signed __int64 v39; // qax@105
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
476 int v40; // ebx@108
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
477 int v41; // ebx@109
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
478 int v42; // esi@111
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
479 int v43; // ebx@111
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
480 int v44; // eax@117
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
481 //unsigned __int16 v45; // si@137
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
482 unsigned __int16 v46; // [sp-8h] [bp-BCh]@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
483 int v47; // [sp-4h] [bp-B8h]@35
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
484 unsigned __int16 v48; // [sp-4h] [bp-B8h]@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
485 int v49; // [sp+0h] [bp-B4h]@35
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
486 int v50; // [sp+0h] [bp-B4h]@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
487 int v51; // [sp+4h] [bp-B0h]@35
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
488 unsigned __int8 v52; // [sp+4h] [bp-B0h]@99
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
489 float v53; // [sp+14h] [bp-A0h]@4
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
490 float v54; // [sp+18h] [bp-9Ch]@4
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
491 int v55; // [sp+28h] [bp-8Ch]@7
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
492 unsigned int yaw; // [sp+30h] [bp-84h]@7
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
493 int pitch; // [sp+34h] [bp-80h]@7
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
494 //SpriteObject a1; // [sp+38h] [bp-7Ch]@12
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
495 int v59; // [sp+A8h] [bp-Ch]@1
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
496 int v60; // [sp+ACh] [bp-8h]@1
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
497 //int spellnum_; // [sp+B0h] [bp-4h]@1
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
498 //signed int levela; // [sp+BCh] [bp+8h]@80
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
499 int a6_4; // [sp+C8h] [bp+14h]@117
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
500 float a7a; // [sp+CCh] [bp+18h]@6
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
501 signed int a7b; // [sp+CCh] [bp+18h]@12
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
502 int a7c; // [sp+CCh] [bp+18h]@29
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
503 int a7d; // [sp+CCh] [bp+18h]@55
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
504 float a8a; // [sp+D0h] [bp+1Ch]@6
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
505 int a8b; // [sp+D0h] [bp+1Ch]@37
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
506 int a8c; // [sp+D0h] [bp+1Ch]@55
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
507 float toza; // [sp+D4h] [bp+20h]@6
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
508
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
509 v9 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
510 v59 = uSkillLevel + 1;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
511 //spellnum_ = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
512 v60 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
513 if ( tox || toy || toz )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
514 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
515 v10 = (double)tox - (double)fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
516 v53 = v10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
517 v11 = (double)toy - (double)fromy;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
518 v54 = v11;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
519 v12 = (double)toz;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
520 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
521 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
522 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
523 v10 = (double)pParty->vPosition.x - (double)fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
524 v53 = v10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
525 v11 = (double)pParty->vPosition.y - (double)fromy;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
526 v54 = v11;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
527 v12 = (double)(pParty->vPosition.z + pParty->sEyelevel);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
528 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
529 a7a = v12 - (double)fromz;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
530 toza = v11 * v11;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
531 a8a = v10 * v10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
532 v13 = sqrt(a7a * a7a + a8a + toza);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
533 if ( v13 <= 1.0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
534 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
535 LOBYTE(v55) = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
536 yaw = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
537 pitch = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
538 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
539 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
540 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
541 v55 = (signed __int64)v13;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
542 v14 = (signed __int64)sqrt(a8a + toza);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
543 yaw = stru_5C6E00->Atan2((signed __int64)v53, (signed __int64)v54);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
544 pitch = stru_5C6E00->Atan2(v14, (signed __int64)a7a);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
545 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
546 v15 = v59;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
547 if ( v59 <= 0 || v59 > 4 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
548 v15 = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
549 a7b = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
550
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
551 SpriteObject a1; // [sp+38h] [bp-7Ch]@12
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
552 //SpriteObject::SpriteObject(&a1);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
553
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
554 a1.uType = stru_4E3ACC[uSpellID].uType;
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
555 if ( uSpellID > 58 )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
556 {
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
557 if ( uSpellID == 69 )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
558 goto LABEL_117;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
559 if ( uSpellID != 83 )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
560 return;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
561 v40 = v15 - 2;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
562 if ( v40 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
563 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
564 v41 = v40 - 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
565 if ( !v41 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
566 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
567 v42 = 14400 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
568 v43 = 4 * uSkill + 10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
569 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
570 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 1u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
571 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 2u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
572 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 3u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
573 v39 = (signed __int64)((double)(v42 << 7) * 0.033333335);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
574 v37 = &pParty->pPartyBuffs[PARTY_BUFF_DAY_OF_GODS];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
575 v36 = pParty->uTimePlayed + v39;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
576 v37->Apply(v36, a7b, v43, 0, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
577 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
578 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
579 if ( v41 == 1 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
580 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
581 v42 = 18000 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
582 v43 = 5 * uSkill + 10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
583 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
584 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 1u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
585 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 2u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
586 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 3u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
587 v39 = (signed __int64)((double)(v42 << 7) * 0.033333335);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
588 v37 = &pParty->pPartyBuffs[PARTY_BUFF_DAY_OF_GODS];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
589 v36 = pParty->uTimePlayed + v39;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
590 v37->Apply(v36, a7b, v43, 0, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
591 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
592 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
593 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
594 v42 = 10800 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
595 v43 = 3 * uSkill + 10;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
596 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
597 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 1u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
598 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 2u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
599 pGame->pStru6Instance->SetPlayerBuffAnim(0x53u, 3u);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
600 v39 = (signed __int64)((double)(v42 << 7) * 0.033333335);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
601 v37 = &pParty->pPartyBuffs[PARTY_BUFF_DAY_OF_GODS];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
602 v36 = pParty->uTimePlayed + v39;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
603 v37->Apply(v36, a7b, v43, 0, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
604 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
605 }
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
606 if ( uSpellID != 58 )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
607 {
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
608 switch ( uSpellID )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
609 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
610 case 2:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
611 case 6:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
612 case 18:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
613 case 26:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
614 case 29:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
615 case 32:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
616 case 39:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
617 case 41:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
618 a1.stru_24.Reset();
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
619 v16 = 0;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
620 a1.spell_id = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
621 a1.spell_level = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
622 a1.spell_skill = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
623 if ( (signed int)pObjectList->uNumObjects <= 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
624 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
625 v18 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
626 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
627 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
628 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
629 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
630 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
631 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
632 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
633 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
634 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
635 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
636 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
637 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
638 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
639 a1.Create(v20, pitch, v49, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
640 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
641 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
642 v17 = (char *)&pObjectList->pObjects->uObjectID;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
643 while ( (short)a1.uType != *(short *)v17 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
644 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
645 ++v16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
646 v17 += 56;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
647 if ( v16 >= (signed int)pObjectList->uNumObjects )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
648 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
649 v18 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
650 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
651 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
652 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
653 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
654 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
655 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
656 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
657 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
658 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
659 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
660 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
661 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
662 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
663 a1.Create(v20, pitch, v49, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
664 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
665 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
666 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
667 v18 = v16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
668 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
669 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
670 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
671 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
672 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
673 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
674 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
675 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
676 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
677 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
678 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
679 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
680 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
681 a1.Create(v20, pitch, v49, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
682 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
683 case 24:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
684 switch ( v15 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
685 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
686 case 1:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
687 v60 = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
688 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
689 case 2:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
690 v60 = 3;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
691 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
692 case 3:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
693 v60 = 5;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
694 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
695 case 4:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
696 v60 = 7;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
697 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
698 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
699 a7c = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
700 if ( v60 != 1 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
701 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
702 a8b = a7c / (v60 - 1);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
703 a1.stru_24.Reset();
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
704 v21 = 0;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
705 a1.spell_id = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
706 a1.spell_level = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
707 a1.spell_skill = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
708 if ( (signed int)pObjectList->uNumObjects <= 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
709 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
710 v23 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
711 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
712 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
713 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
714 v22 = (char *)&pObjectList->pObjects->uObjectID;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
715 while ( (short)a1.uType != *(short *)v22 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
716 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
717 ++v21;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
718 v22 += 56;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
719 if ( v21 >= (signed int)pObjectList->uNumObjects )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
720 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
721 v23 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
722 a1.uObjectDescID = v23;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
723 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
724 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
725 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
726 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
727 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
728 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
729 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
730 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
731 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
732 for ( i = a7c / -2; i <= a7c / 2; i += a8b )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
733 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
734 a1.uFacing = i + yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
735 a1.Create((signed __int16)(i + (short)yaw), pitch, pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
736 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
737 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
738 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
739 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
740 v23 = v21;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
741 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
742 a1.uObjectDescID = v23;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
743 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
744 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
745 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
746 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
747 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
748 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
749 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
750 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
751 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
752 for ( i = a7c / -2; i <= a7c / 2; i += a8b )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
753 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
754 a1.uFacing = i + yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
755 a1.Create((signed __int16)(i + (short)yaw), pitch, pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
756 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
757 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
758 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
759 a1.stru_24.Reset();
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
760 v16 = 0;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
761 a1.spell_id = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
762 a1.spell_level = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
763 a1.spell_skill = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
764 if ( (signed int)pObjectList->uNumObjects <= 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
765 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
766 v18 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
767 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
768 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
769 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
770 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
771 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
772 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
773 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
774 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
775 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
776 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
777 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
778 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
779 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
780 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
781 v47 = pitch;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
782 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
783 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
784 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
785 v19 = (char *)&pObjectList->pObjects->uObjectID;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
786 do
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
787 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
788 if ( (short)a1.uType == *(short *)v19 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
789 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
790 v18 = v16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
791 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
792 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
793 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
794 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
795 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
796 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
797 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
798 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
799 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
800 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
801 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
802 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
803 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
804 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
805 v47 = pitch;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
806 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
807 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
808 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
809 ++v16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
810 v19 += 56;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
811 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
812 while ( v16 < (signed int)pObjectList->uNumObjects );
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
813 v18 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
814 a1.uObjectDescID = v18;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
815 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
816 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
817 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
818 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
819 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
820 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
821 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
822 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
823 a1.spell_target_pid = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
824 a1.uFacing = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
825 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
826 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
827 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
828 v47 = pitch;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
829 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
830 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
831 case 15:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
832 switch ( v15 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
833 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
834 case 1:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
835 v60 = 3;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
836 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
837 case 2:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
838 v60 = 5;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
839 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
840 case 3:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
841 v60 = 7;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
842 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
843 case 4:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
844 v60 = 9;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
845 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
846 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
847 a7d = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
848 a8c = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360 / (v60 - 1);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
849 a1.stru_24.Reset();
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
850 v25 = 0;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
851 a1.spell_id = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
852 a1.spell_level = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
853 a1.spell_skill = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
854 if ( (signed int)pObjectList->uNumObjects <= 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
855 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
856 v27 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
857 a1.uObjectDescID = v27;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
858 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
859 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
860 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
861 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
862 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
863 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
864 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
865 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
866 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
867 for ( j = a7d / -2; j <= a7d / 2; j += a8c )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
868 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
869 a1.uFacing = j + yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
870 a1.Create((signed __int16)(j + (short)yaw), pitch, pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
871 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
872 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
873 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
874 v26 = (char *)&pObjectList->pObjects->uObjectID;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
875 while ( (short)a1.uType != *(short *)v26 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
876 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
877 ++v25;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
878 v26 += 56;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
879 if ( v25 >= (signed int)pObjectList->uNumObjects )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
880 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
881 v27 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
882 a1.uObjectDescID = v27;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
883 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
884 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
885 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
886 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
887 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
888 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
889 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
890 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
891 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
892 for ( j = a7d / -2; j <= a7d / 2; j += a8c )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
893 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
894 a1.uFacing = j + yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
895 a1.Create((signed __int16)(j + (short)yaw), pitch, pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
896 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
897 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
898 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
899 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
900 v27 = v25;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
901 a1.uObjectDescID = v27;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
902 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
903 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
904 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
905 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
906 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
907 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
908 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
909 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
910 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
911 for ( j = a7d / -2; j <= a7d / 2; j += a8c )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
912 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
913 a1.uFacing = j + yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
914 a1.Create(
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
915 (signed __int16)(j + (short)yaw),
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
916 pitch,
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
917 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed,
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
918 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
919 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
920 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
921 case 43:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
922 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
923 return;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
924 a1.stru_24.Reset();
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
925 v29 = 0;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
926 a1.spell_id = uSpellID;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
927 a1.spell_level = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
928 a1.spell_skill = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
929 if ( (signed int)pObjectList->uNumObjects <= 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
930 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
931 v31 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
932 a1.uObjectDescID = v31;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
933 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
934 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
935 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
936 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
937 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
938 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
939 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
940 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
941 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
942 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
943 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
944 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
945 v47 = (signed int)stru_5C6E00->uIntegerHalfPi / 2;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
946 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
947 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
948 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
949 v30 = (char *)&pObjectList->pObjects->uObjectID;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
950 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
951
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
952 case SPELL_FIRE_HASTE:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
953 if ( v15 > 0 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
954 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
955 if ( v15 <= 2 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
956 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
957 v9 = 60 * (uSkill + 60);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
958 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
959 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
960 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
961 if ( v15 == 3 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
962 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
963 v9 = 180 * (uSkill + 20);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
964 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
965 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
966 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
967 if ( v15 == 4 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
968 v9 = 240 * (uSkill + 15);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
969 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
970 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
971 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
972 //levela = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
973 //v32 = pParty->pPlayers;//[0].pConditions[1];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
974 //do
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
975 for (uint i = 0; i < 4; ++i)
1362
d6cf8ead9242 Condition checking functions slightly renamed, some final changes in Player::SetCondition
Grumpy7
parents: 1361
diff changeset
976 if (pParty->pPlayers[i].IsWeak())
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
977 return;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
978 //while ( v32 <= &pParty->pPlayers[3] );
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
979 //if ( !levela )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
980 // return;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
981 pParty->pPartyBuffs[PARTY_BUFF_HASTE].Apply(pParty->uTimePlayed + (signed int)(signed __int64)((double)(v9 * 128) * 0.033333335),
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
982 v15,
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
983 0,
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
984 0,
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
985 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
986 //v33 = spellnum_;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
987 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 0);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
988 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 1);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
989 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 2);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
990 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 3);
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
991 goto LABEL_138;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
992 case 17:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
993 case 38:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
994 case 51:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
995 switch ( v15 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
996 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
997 case 1:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
998 case 2:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
999 v9 = 300 * (uSkill + 12);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1000 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1001 case 3:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1002 v9 = 900 * (uSkill + 4);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1003 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1004 case 4:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1005 v9 = 3600 * (uSkill + 1);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1006 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1007 }
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1008 switch ( uSpellID )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1009 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1010 case 17:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1011 v60 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1012 uSkill = 14;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1013 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1014 case 38:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1015 v35 = uSkill + 5;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1016 uSkill = 15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1017 v60 = v35;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1018 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1019 case 51:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1020 v34 = uSkill + 5;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1021 uSkill = 9;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1022 v60 = v34;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1023 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1024 }
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1025 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 0);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1026 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 1);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1027 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 2);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1028 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 3);
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1029 v52 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1030 v50 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1031 v48 = v60;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1032 v46 = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1033 v36 = pParty->uTimePlayed + (signed int)(signed __int64)((double)(v9 << 7) * 0.033333335);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1034 v37 = &pParty->pPartyBuffs[uSkill];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1035 v37->Apply(v36, v46, v48, v50, v52);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1036 goto LABEL_139;;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1037 case 8:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1038 if ( v15 == 2 || v15 == 3 || v15 != 4 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1039 v38 = 60 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1040 else
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1041 v38 = 600 * uSkill;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1042 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 0);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1043 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 1);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1044 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 2);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1045 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 3);
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1046 v52 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1047 v50 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1048 v48 = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1049 v46 = v15;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1050 v39 = (signed __int64)((double)(v38 << 7) * 0.033333335);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1051 v37 = &pParty->pPartyBuffs[PARTY_BUFF_IMMOLATION];
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1052 v36 = pParty->uTimePlayed + v39;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1053 v37->Apply(v36, v46, v48, v50, v52);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1054 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1055 case 3:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1056 case 14:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1057 case 25:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1058 case 36:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1059 goto LABEL_117;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1060 default:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1061 return;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1062 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1063 while ( (short)a1.uType != *(short *)v30 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1064 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1065 ++v29;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1066 v30 += 56;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1067 if ( v29 >= (signed int)pObjectList->uNumObjects )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1068 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1069 v31 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1070 a1.uObjectDescID = v31;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1071 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1072 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1073 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1074 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1075 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1076 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1077 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1078 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1079 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1080 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1081 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1082 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1083 v47 = (signed int)stru_5C6E00->uIntegerHalfPi / 2;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1084 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1085 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1086 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1087 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1088 v31 = v29;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1089 a1.uObjectDescID = v31;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1090 *(_QWORD *)&a1.vPosition.y = __PAIR__(fromz, fromy);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1091 a1.vPosition.x = fromx;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1092 a1.uAttributes = 16;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1093 a1.uSectorID = pIndoor->GetSector(fromx, fromy, fromz);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1094 a1.field_60_distance_related_prolly_lod = v55;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1095 a1.uSpriteFrameID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1096 a1.spell_caster_pid = 8000 | OBJECT_Item;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1097 a1.spell_target_pid = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1098 a1.uSoundID = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1099 v51 = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1100 v49 = pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1101 v20 = yaw;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1102 v47 = (signed int)stru_5C6E00->uIntegerHalfPi / 2;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1103 a1.Create(v20, v47, v49, v51);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1104 goto LABEL_139;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1105 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1106 LABEL_117:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1107 v44 = uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1108 a6_4 = 3600 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1109 if ( v15 == 1 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1110 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1111 v60 = v44;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1112 goto LABEL_125;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1113 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1114 if ( v15 == 2 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1115 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1116 v44 = 2 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1117 v60 = v44;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1118 goto LABEL_125;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1119 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1120 if ( v15 == 3 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1121 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1122 v44 = 3 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1123 v60 = v44;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1124 goto LABEL_125;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1125 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1126 if ( v15 == 4 )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1127 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1128 v44 = 4 * uSkill;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1129 v60 = v44;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1130 goto LABEL_125;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1131 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1132 LABEL_125:
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1133 switch ( uSpellID )
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1134 {
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1135 case 3:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1136 uSkill = 6;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1137 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1138 case 14:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1139 uSkill = 0;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1140 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1141 case 25:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1142 uSkill = 17;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1143 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1144 case 36:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1145 uSkill = 4;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1146 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1147 case 58:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1148 uSkill = 12;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1149 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1150 case 69:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1151 uSkill = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1152 break;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1153 }
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1154 //v45 = spellnum_;
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1155 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 0);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1156 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 1);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1157 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 2);
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1158 pGame->pStru6Instance->SetPlayerBuffAnim(uSpellID, 3);
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1159 pParty->pPartyBuffs[uSkill].Apply(pParty->uTimePlayed + (signed int)(signed __int64)((double)a6_4 * 4.2666669), v15, v60, 0, 0);
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1160 //levela = 1;
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1161 LABEL_138:
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1162 //if ( levela )
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1163 LABEL_139:
1519
4c787c28ddce Clean CastSpellInfo. (2)
yoctozepto
parents: 1362
diff changeset
1164 pAudioPlayer->PlaySound((SoundID)word_4EE088_sound_ids[uSpellID], 0, 0, fromx, fromy, 0, 0, 0);
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1165 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1166 //----- (00427769) --------------------------------------------------------
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1167 bool __fastcall sub_427769_spell(unsigned int uSpellID)
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1168 {
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1169 bool result; // eax@2
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1170
1679
4da5644df18f Cosmetics
Nomad
parents: 1583
diff changeset
1171 __debugbreak(); // wut is dat?
4da5644df18f Cosmetics
Nomad
parents: 1583
diff changeset
1172 if ( pSpellDatas[uSpellID].field_12 & 0xC )
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1173 result = 1;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1174 else
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1175 result = 0;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
1176 return result;
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1177 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1178 //----- (0043AFE3) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1179 int __fastcall _43AFE3_calc_spell_damage(int a1, int a2, signed int a3, int a4)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1180 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1181 int result; // eax@1
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1182 unsigned int v5; // [sp-4h] [bp-8h]@9
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1183
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1184 result = 0;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1185 if ( a1 == 7 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1186 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1187 if ( a3 <= 0 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1188 return result;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1189 if ( a3 <= 2 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1190 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1191 v5 = 6;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1192 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1193 else
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1194 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1195 if ( a3 == 3 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1196 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1197 v5 = 8;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1198 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1199 else
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1200 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1201 if ( a3 != 4 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1202 return result;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1203 v5 = 10;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1204 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1205 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1206 result = GetDiceResult(a2, v5);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1207 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1208 else
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1209 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1210 if ( a1 == 44 )
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1211 result = a4 * (LOBYTE(pSpellDatas[40].field_10) + 2 * a2) / 100;
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1212 else
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1213 result = *((char *)&pSpellDatas[0].field_10 + 20 * a1)
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1214 + GetDiceResult(a2, *((char *)&pSpellDatas[0].field_10 + 20 * a1 + 1));
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1215 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
1216 return result;
1295
86a83e12d795 moving files
Ritor1
parents: 1206
diff changeset
1217 }