annotate PaletteManager.cpp @ 2334:ddb803517a48

unused local variables I commented
author Ritor1
date Wed, 02 Apr 2014 21:05:19 +0600
parents aff7a7b072b7
children 6e3ca612f132
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2153
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
0
Ritor1
parents:
diff changeset
2 #include "PaletteManager.h"
Ritor1
parents:
diff changeset
3 #include "Texture.h"
Ritor1
parents:
diff changeset
4 #include "Game.h"
Ritor1
parents:
diff changeset
5 #include "LOD.h"
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
6 #include "Log.h"
0
Ritor1
parents:
diff changeset
7
Ritor1
parents:
diff changeset
8 #include "mm7_data.h"
Ritor1
parents:
diff changeset
9
Ritor1
parents:
diff changeset
10
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12
Ritor1
parents:
diff changeset
13 PaletteManager *pPaletteManager = new PaletteManager;
Ritor1
parents:
diff changeset
14
Ritor1
parents:
diff changeset
15
Ritor1
parents:
diff changeset
16
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
17 //----- (00452AE2) --------------------------------------------------------
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
18 int __fastcall MakeColorMaskFromBitDepth(int a1)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
19 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
20 signed __int64 v1; // qax@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
21
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
22 v1 = 4294967296i64;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
23 if ( a1 > 0 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
24 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
25 do
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
26 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
27 LODWORD(v1) = HIDWORD(v1) + v1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
28 HIDWORD(v1) *= 2;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
29 --a1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
30 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
31 while ( a1 );
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
32 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
33 return v1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 1545
diff changeset
34 }
0
Ritor1
parents:
diff changeset
35
Ritor1
parents:
diff changeset
36 //----- (0048A643) --------------------------------------------------------
Ritor1
parents:
diff changeset
37 bool __fastcall HSV2RGB(float *a1, float *a2, float *a3, float a4, float a5, float a6)
Ritor1
parents:
diff changeset
38 {
Ritor1
parents:
diff changeset
39 float *v6; // ebx@1
Ritor1
parents:
diff changeset
40 float *v7; // edi@1
Ritor1
parents:
diff changeset
41 float *v8; // esi@1
Ritor1
parents:
diff changeset
42 double v9; // st7@5
Ritor1
parents:
diff changeset
43 signed __int64 v10; // qax@5
Ritor1
parents:
diff changeset
44 double v11; // st7@5
Ritor1
parents:
diff changeset
45 double v12; // st5@5
Ritor1
parents:
diff changeset
46 int v13; // eax@6
Ritor1
parents:
diff changeset
47 int v14; // eax@7
Ritor1
parents:
diff changeset
48 int v15; // eax@8
Ritor1
parents:
diff changeset
49 int v16; // eax@9
Ritor1
parents:
diff changeset
50 float v17; // eax@11
Ritor1
parents:
diff changeset
51 float a3a; // [sp+1Ch] [bp+8h]@14
Ritor1
parents:
diff changeset
52 float a4b; // [sp+20h] [bp+Ch]@5
Ritor1
parents:
diff changeset
53 float a4c; // [sp+20h] [bp+Ch]@5
Ritor1
parents:
diff changeset
54 float a4a; // [sp+20h] [bp+Ch]@5
Ritor1
parents:
diff changeset
55
Ritor1
parents:
diff changeset
56 v6 = a3;
Ritor1
parents:
diff changeset
57 v7 = a2;
Ritor1
parents:
diff changeset
58 v8 = a1;
Ritor1
parents:
diff changeset
59 if ( a5 == 0.0 )
Ritor1
parents:
diff changeset
60 {
Ritor1
parents:
diff changeset
61 *a3 = a6;
Ritor1
parents:
diff changeset
62 *a2 = a6;
Ritor1
parents:
diff changeset
63 *a1 = a6;
Ritor1
parents:
diff changeset
64 goto LABEL_20;
Ritor1
parents:
diff changeset
65 }
Ritor1
parents:
diff changeset
66 if ( a4 == 360.0 )
Ritor1
parents:
diff changeset
67 a4 = 0.0;
Ritor1
parents:
diff changeset
68 v9 = a4 * 0.01666666666666667;
Ritor1
parents:
diff changeset
69 a4b = v9;
Ritor1
parents:
diff changeset
70 floor(v9);
Ritor1
parents:
diff changeset
71 v10 = (signed __int64)v9;
Ritor1
parents:
diff changeset
72 a4c = a4b - (double)(signed int)(signed __int64)v9;
Ritor1
parents:
diff changeset
73 v11 = (1.0 - a5) * a6;
Ritor1
parents:
diff changeset
74 v12 = (1.0 - a4c * a5) * a6;
Ritor1
parents:
diff changeset
75 a4a = (1.0 - (1.0 - a4c) * a5) * a6;
Ritor1
parents:
diff changeset
76 if ( (int)v10 )
Ritor1
parents:
diff changeset
77 {
Ritor1
parents:
diff changeset
78 v13 = v10 - 1;
Ritor1
parents:
diff changeset
79 if ( v13 )
Ritor1
parents:
diff changeset
80 {
Ritor1
parents:
diff changeset
81 v14 = v13 - 1;
Ritor1
parents:
diff changeset
82 if ( v14 )
Ritor1
parents:
diff changeset
83 {
Ritor1
parents:
diff changeset
84 v15 = v14 - 1;
Ritor1
parents:
diff changeset
85 if ( v15 )
Ritor1
parents:
diff changeset
86 {
Ritor1
parents:
diff changeset
87 v16 = v15 - 1;
Ritor1
parents:
diff changeset
88 if ( v16 )
Ritor1
parents:
diff changeset
89 {
Ritor1
parents:
diff changeset
90 if ( v16 != 1 )
Ritor1
parents:
diff changeset
91 goto LABEL_20;
Ritor1
parents:
diff changeset
92 *v8 = a6;
Ritor1
parents:
diff changeset
93 v17 = v12;
Ritor1
parents:
diff changeset
94 *v7 = v11;
Ritor1
parents:
diff changeset
95 goto LABEL_12;
Ritor1
parents:
diff changeset
96 }
Ritor1
parents:
diff changeset
97 *(int *)v8 = LODWORD(a4a);
Ritor1
parents:
diff changeset
98 *v7 = v11;
Ritor1
parents:
diff changeset
99 }
Ritor1
parents:
diff changeset
100 else
Ritor1
parents:
diff changeset
101 {
Ritor1
parents:
diff changeset
102 *v8 = v11;
Ritor1
parents:
diff changeset
103 a3a = v12;
Ritor1
parents:
diff changeset
104 *(int *)v7 = LODWORD(a3a);
Ritor1
parents:
diff changeset
105 }
Ritor1
parents:
diff changeset
106 v17 = a6;
Ritor1
parents:
diff changeset
107 }
Ritor1
parents:
diff changeset
108 else
Ritor1
parents:
diff changeset
109 {
Ritor1
parents:
diff changeset
110 *v8 = v11;
Ritor1
parents:
diff changeset
111 *(int *)v7 = LODWORD(a6);
Ritor1
parents:
diff changeset
112 v17 = a4a;
Ritor1
parents:
diff changeset
113 }
Ritor1
parents:
diff changeset
114 LABEL_12:
Ritor1
parents:
diff changeset
115 *(int *)v6 = LODWORD(v17);
Ritor1
parents:
diff changeset
116 goto LABEL_20;
Ritor1
parents:
diff changeset
117 }
Ritor1
parents:
diff changeset
118 *v8 = v12;
Ritor1
parents:
diff changeset
119 *v7 = a6;
Ritor1
parents:
diff changeset
120 }
Ritor1
parents:
diff changeset
121 else
Ritor1
parents:
diff changeset
122 {
Ritor1
parents:
diff changeset
123 *v8 = a6;
Ritor1
parents:
diff changeset
124 *(int *)v7 = LODWORD(a4a);
Ritor1
parents:
diff changeset
125 }
Ritor1
parents:
diff changeset
126 *a3 = v11;
Ritor1
parents:
diff changeset
127 LABEL_20:
Ritor1
parents:
diff changeset
128 if ( *v8 > 1.0 )
Ritor1
parents:
diff changeset
129 *v8 = 1.0;
Ritor1
parents:
diff changeset
130 if ( *v7 > 1.0 )
Ritor1
parents:
diff changeset
131 *v7 = 1.0;
Ritor1
parents:
diff changeset
132 if ( *v6 > 1.0 )
Ritor1
parents:
diff changeset
133 *v6 = 1.0;
Ritor1
parents:
diff changeset
134 if ( *v8 < 0.0 )
Ritor1
parents:
diff changeset
135 *v8 = 0.0;
Ritor1
parents:
diff changeset
136 if ( *v7 < 0.0 )
Ritor1
parents:
diff changeset
137 *v7 = 0.0;
Ritor1
parents:
diff changeset
138 if ( *v6 < 0.0 )
Ritor1
parents:
diff changeset
139 *v6 = 0.0;
Ritor1
parents:
diff changeset
140 return 1;
Ritor1
parents:
diff changeset
141 }
Ritor1
parents:
diff changeset
142
Ritor1
parents:
diff changeset
143 //----- (0048A7AA) --------------------------------------------------------
Ritor1
parents:
diff changeset
144 void __fastcall RGB2HSV(float *a1, float *a2, float a3, float a4, float a5, float *a6)
Ritor1
parents:
diff changeset
145 {
Ritor1
parents:
diff changeset
146 double v6; // st7@2
Ritor1
parents:
diff changeset
147 double v7; // st6@7
Ritor1
parents:
diff changeset
148 double v8; // st5@12
Ritor1
parents:
diff changeset
149 double v9; // st7@15
Ritor1
parents:
diff changeset
150 double v10; // st7@17
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
151 // double v11; // st7@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
152 // __int16 v12; // fps@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
153 // unsigned __int8 v13; // c0@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
154 // unsigned __int8 v14; // c2@21
0
Ritor1
parents:
diff changeset
155 float a6a; // [sp+14h] [bp+14h]@16
Ritor1
parents:
diff changeset
156
Ritor1
parents:
diff changeset
157 if ( a3 <= (double)a4 )
Ritor1
parents:
diff changeset
158 v6 = a4;
Ritor1
parents:
diff changeset
159 else
Ritor1
parents:
diff changeset
160 v6 = a3;
Ritor1
parents:
diff changeset
161 if ( v6 < a5 )
Ritor1
parents:
diff changeset
162 v6 = a5;
Ritor1
parents:
diff changeset
163 if ( a3 <= (double)a4 )
Ritor1
parents:
diff changeset
164 v7 = a3;
Ritor1
parents:
diff changeset
165 else
Ritor1
parents:
diff changeset
166 v7 = a4;
Ritor1
parents:
diff changeset
167 if ( v7 > a5 )
Ritor1
parents:
diff changeset
168 v7 = a5;
Ritor1
parents:
diff changeset
169 *a6 = v6;
Ritor1
parents:
diff changeset
170 if ( v6 == 0.0 )
Ritor1
parents:
diff changeset
171 v8 = 0.0;
Ritor1
parents:
diff changeset
172 else
Ritor1
parents:
diff changeset
173 v8 = (v6 - v7) / v6;
Ritor1
parents:
diff changeset
174 *a2 = v8;
Ritor1
parents:
diff changeset
175 if ( v8 == 0.0 )
Ritor1
parents:
diff changeset
176 {
Ritor1
parents:
diff changeset
177 v9 = 0.0;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
178 //LABEL_23:
0
Ritor1
parents:
diff changeset
179 *a1 = v9;
Ritor1
parents:
diff changeset
180 return;
Ritor1
parents:
diff changeset
181 }
Ritor1
parents:
diff changeset
182 a6a = v6 - v7;
Ritor1
parents:
diff changeset
183 if ( a3 == v6 )
Ritor1
parents:
diff changeset
184 {
Ritor1
parents:
diff changeset
185 v10 = (a4 - a5) / a6a;
Ritor1
parents:
diff changeset
186 }
Ritor1
parents:
diff changeset
187 else
Ritor1
parents:
diff changeset
188 {
Ritor1
parents:
diff changeset
189 if ( a4 == v6 )
Ritor1
parents:
diff changeset
190 v10 = (a5 - a3) / a6a + 2.0;
Ritor1
parents:
diff changeset
191 else
Ritor1
parents:
diff changeset
192 v10 = (a3 - a4) / a6a + 4.0;
Ritor1
parents:
diff changeset
193 }
Ritor1
parents:
diff changeset
194 //*a1 = v10;
Ritor1
parents:
diff changeset
195 //v11 = *a1 * 60.0;
Ritor1
parents:
diff changeset
196 //UNDEF(v12);
Ritor1
parents:
diff changeset
197 *a1 = v10 * 60.0;
Ritor1
parents:
diff changeset
198 if (*a1 < 0)
Ritor1
parents:
diff changeset
199 {
Ritor1
parents:
diff changeset
200 *a1 += 360.0;
Ritor1
parents:
diff changeset
201 }
Ritor1
parents:
diff changeset
202 }
Ritor1
parents:
diff changeset
203
Ritor1
parents:
diff changeset
204
Ritor1
parents:
diff changeset
205
Ritor1
parents:
diff changeset
206 //----- (0048A8A3) --------------------------------------------------------
Ritor1
parents:
diff changeset
207 int PaletteManager::LockAll()
Ritor1
parents:
diff changeset
208 {
Ritor1
parents:
diff changeset
209 int *v1; // edx@1
Ritor1
parents:
diff changeset
210 signed int v2; // eax@1
Ritor1
parents:
diff changeset
211
Ritor1
parents:
diff changeset
212 v1 = &this->pPaletteIDs[1];
Ritor1
parents:
diff changeset
213 v2 = 1;
Ritor1
parents:
diff changeset
214 do
Ritor1
parents:
diff changeset
215 {
Ritor1
parents:
diff changeset
216 if ( *v1 )
Ritor1
parents:
diff changeset
217 this->_num_locked = v2 + 1;
Ritor1
parents:
diff changeset
218 ++v2;
Ritor1
parents:
diff changeset
219 ++v1;
Ritor1
parents:
diff changeset
220 }
Ritor1
parents:
diff changeset
221 while ( v2 < 50 );
Ritor1
parents:
diff changeset
222 return this->_num_locked;
Ritor1
parents:
diff changeset
223 }
Ritor1
parents:
diff changeset
224
Ritor1
parents:
diff changeset
225 //----- (0048A8CC) --------------------------------------------------------
Ritor1
parents:
diff changeset
226 int PaletteManager::LockTestAll()
Ritor1
parents:
diff changeset
227 {
Ritor1
parents:
diff changeset
228 char *v1; // edx@1
Ritor1
parents:
diff changeset
229 signed int v2; // eax@1
Ritor1
parents:
diff changeset
230
Ritor1
parents:
diff changeset
231 v1 = (char *)&this->pPaletteIDs[1];
Ritor1
parents:
diff changeset
232 v2 = 1;
Ritor1
parents:
diff changeset
233 do
Ritor1
parents:
diff changeset
234 {
Ritor1
parents:
diff changeset
235 if ( *(int *)v1 )
Ritor1
parents:
diff changeset
236 this->_pal_lock_test = v2 + 1;
Ritor1
parents:
diff changeset
237 ++v2;
Ritor1
parents:
diff changeset
238 v1 += 4;
Ritor1
parents:
diff changeset
239 }
Ritor1
parents:
diff changeset
240 while ( v2 < 50 );
Ritor1
parents:
diff changeset
241 return this->_pal_lock_test;
Ritor1
parents:
diff changeset
242 }
Ritor1
parents:
diff changeset
243
Ritor1
parents:
diff changeset
244
Ritor1
parents:
diff changeset
245 //----- (0048A8F5) --------------------------------------------------------
Ritor1
parents:
diff changeset
246 void PaletteManager::SetColorChannelInfo(int uNumRBits, int uNumGBits, int uNumBBits)
Ritor1
parents:
diff changeset
247 {
Ritor1
parents:
diff changeset
248 PaletteManager *v4; // esi@1
Ritor1
parents:
diff changeset
249 int v5; // edi@1
Ritor1
parents:
diff changeset
250 int v6; // eax@1
Ritor1
parents:
diff changeset
251 int v7; // ebx@1
Ritor1
parents:
diff changeset
252
Ritor1
parents:
diff changeset
253 v4 = this;
Ritor1
parents:
diff changeset
254 this->uNumTargetRBits = uNumRBits;
Ritor1
parents:
diff changeset
255 this->uNumTargetGBits = uNumGBits;
Ritor1
parents:
diff changeset
256 v5 = this->uNumTargetGBits;
Ritor1
parents:
diff changeset
257 this->uNumTargetBBits = uNumBBits;
Ritor1
parents:
diff changeset
258 v6 = MakeColorMaskFromBitDepth(uNumRBits);
Ritor1
parents:
diff changeset
259 v7 = v4->uNumTargetBBits;
Ritor1
parents:
diff changeset
260 v4->uTargetRMask = v6 << (v5 + v4->uNumTargetBBits);
Ritor1
parents:
diff changeset
261 v4->uTargetGMask = MakeColorMaskFromBitDepth(v5) << v7;
Ritor1
parents:
diff changeset
262 v4->uTargetBMask = MakeColorMaskFromBitDepth(v7);
Ritor1
parents:
diff changeset
263 }
Ritor1
parents:
diff changeset
264
Ritor1
parents:
diff changeset
265
Ritor1
parents:
diff changeset
266 //----- (00489BE0) --------------------------------------------------------
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
267 void PaletteManager::CalcPalettes_LUT(int a2)
0
Ritor1
parents:
diff changeset
268 {
Ritor1
parents:
diff changeset
269 PaletteManager *v2; // esi@1
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
270 //char *v3; // edi@1
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
271 //signed int v4; // ebx@4
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
272 //float v5; // ST08_4@5
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
273 //float v6; // ST04_4@5
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
274 //float v7; // ST00_4@5
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
275 //int v8; // eax@7
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
276 //float *v9; // edx@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
277 //float *v10; // ST0C_4@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
278 //float *v11; // ecx@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
279 //int v12; // ebx@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
280 //int v13; // eax@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
281 //float v14; // ebx@8
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
282 // float v15; // ST08_4@8
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
283 // float v16; // ST04_4@8
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
284 // float v17; // ST00_4@8
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
285 //unsigned __int8 v18; // sf@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
286 //unsigned __int8 v19; // of@8
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
287 //int v20; // eax@10
0
Ritor1
parents:
diff changeset
288 double v21; // st5@11
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
289 //float v22; // ST0C_4@13
0
Ritor1
parents:
diff changeset
290 unsigned int v23; // eax@13
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
291 //__int16 v24; // bx@16
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
292 //int v25; // eax@16
0
Ritor1
parents:
diff changeset
293 double v26; // st7@20
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
294 //float v27; // ST0C_4@22
0
Ritor1
parents:
diff changeset
295 unsigned int v28; // eax@22
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
296 //__int16 v29; // bx@25
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
297 //__int16 *v30; // eax@25
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
298 //int v31; // eax@27
0
Ritor1
parents:
diff changeset
299 double v32; // st5@28
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
300 //float v33; // ST0C_4@30
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
301 //float v34; // ST08_4@30
0
Ritor1
parents:
diff changeset
302 unsigned int v35; // ebx@30
Ritor1
parents:
diff changeset
303 signed __int64 v36; // qax@33
Ritor1
parents:
diff changeset
304 signed int v37; // edx@33
Ritor1
parents:
diff changeset
305 char v38; // cl@33
Ritor1
parents:
diff changeset
306 unsigned int v39; // ebx@33
Ritor1
parents:
diff changeset
307 signed int v40; // edi@33
Ritor1
parents:
diff changeset
308 unsigned int v41; // ecx@33
Ritor1
parents:
diff changeset
309 unsigned int v42; // ecx@35
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
310 //int v43; // eax@39
0
Ritor1
parents:
diff changeset
311 signed int v44; // edx@39
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
312 //unsigned __int8 v45; // al@40
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
313 //double v46; // st6@43
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
314 //signed int v47; // eax@43
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
315 //int v48; // eax@45
0
Ritor1
parents:
diff changeset
316 double v49; // st6@47
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
317 //float v50; // ST08_4@49
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
318 //unsigned int v51; // ebx@49
0
Ritor1
parents:
diff changeset
319 int v52; // edi@55
Ritor1
parents:
diff changeset
320 int v53; // ebx@55
Ritor1
parents:
diff changeset
321 signed __int64 v54; // qax@55
Ritor1
parents:
diff changeset
322 double v55; // st7@56
Ritor1
parents:
diff changeset
323 unsigned int v56; // ecx@57
Ritor1
parents:
diff changeset
324 unsigned int v57; // ecx@59
Ritor1
parents:
diff changeset
325 //int v58; // edx@61
Ritor1
parents:
diff changeset
326 unsigned int v59; // ecx@61
Ritor1
parents:
diff changeset
327 unsigned int v60; // eax@63
Ritor1
parents:
diff changeset
328 char v61; // cl@63
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
329 //int result; // eax@63
0
Ritor1
parents:
diff changeset
330 float v63[256]; // [sp+1Ch] [bp-C38h]@5
Ritor1
parents:
diff changeset
331 float v64[256]; // [sp+41Ch] [bp-838h]@5
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
332 float a6[256]; // [sp+81Ch] [bp-438h]@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
333 // int v66; // [sp+C1Ch] [bp-38h]@43
0
Ritor1
parents:
diff changeset
334 float v67; // [sp+C20h] [bp-34h]@43
Ritor1
parents:
diff changeset
335 float v68; // [sp+C24h] [bp-30h]@43
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
336 //PaletteManager *v69; // [sp+C28h] [bp-2Ch]@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
337 //float v70; // [sp+C2Ch] [bp-28h]@43
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
338 //double v71; // [sp+C30h] [bp-24h]@10
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
339 //int v72; // [sp+C38h] [bp-1Ch]@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
340 //int v73; // [sp+C3Ch] [bp-18h]@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
341 //int i; // [sp+C40h] [bp-14h]@7
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
342 //float v75; // [sp+C44h] [bp-10h]@5
0
Ritor1
parents:
diff changeset
343 float a2a; // [sp+C48h] [bp-Ch]@13
Ritor1
parents:
diff changeset
344 float a1; // [sp+C4Ch] [bp-8h]@13
Ritor1
parents:
diff changeset
345 float a3; // [sp+C50h] [bp-4h]@13
Ritor1
parents:
diff changeset
346 signed int v79; // [sp+C5Ch] [bp+8h]@33
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
347 //signed int v80; // [sp+C5Ch] [bp+8h]@43
0
Ritor1
parents:
diff changeset
348 int v81; // [sp+C5Ch] [bp+8h]@57
Ritor1
parents:
diff changeset
349
Ritor1
parents:
diff changeset
350 v2 = this;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
351 //v3 = (char *)pBaseColors[a2];
0
Ritor1
parents:
diff changeset
352 if (pPalette_tintColor[0] || pPalette_tintColor[1] || pPalette_tintColor[2])
Ritor1
parents:
diff changeset
353 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
354 //v8 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
355 //i = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
356
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
357 for (uint i = 0; i < 256; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
358 RGB2HSV(&v64[i], &v63[i], (pBaseColors[a2][i][0] + pPalette_tintColor[0]) / (255.0f + 255.0f),
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
359 (pBaseColors[a2][i][1] + pPalette_tintColor[1]) / (255.0f + 255.0f),
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
360 (pBaseColors[a2][i][2] + pPalette_tintColor[2]) / (255.0f + 255.0f), &a6[i]);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
361 //do
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
362 //{
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
363 //v9 = (float *)((char *)v63 + v8);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
364 //v10 = (float *)((char *)a6 + v8);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
365 //v11 = (float *)((char *)v64 + v8);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
366 //v12 = pPalette_tintColor[1];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
367 //LODWORD(v75) = pPalette_tintColor[2] + (unsigned __int8)v3[2];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
368 //v13 = pPalette_tintColor[1] + (unsigned __int8)v3[1];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
369 //LODWORD(v14) = (unsigned __int8)*v3;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
370 //v15 = (double)((unsigned __int8)v3[2] + pPalette_tintColor[2]) / (2.0f * 255.0f);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
371 //LODWORD(v75) = v13;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
372 //LODWORD(v75) = (unsigned __int8)*v3 + pPalette_tintColor[0];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
373 //v16 = (double)((unsigned __int8)v3[1] + pPalette_tintColor[1]) / 510.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
374 //v17 = (double)((unsigned __int8)*v3 + pPalette_tintColor[0]) / 510.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
375 //RGB2HSV(&v64[i], &v63[i], v17, v16, v15, &a6[i]);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
376 //v3 += 3;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
377 //v8 = i + 4;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
378 //v19 = __OFSUB__(i + 4, 1024);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
379 //v18 = i - 1020 < 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
380 //i += 4;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
381 //}
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
382 //while ( i < );
0
Ritor1
parents:
diff changeset
383 }
Ritor1
parents:
diff changeset
384 else
Ritor1
parents:
diff changeset
385 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
386 for (uint i = 0; i < 256; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
387 RGB2HSV(&v64[i], &v63[i], pBaseColors[a2][i][0] / 255.0f,
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
388 pBaseColors[a2][i][1] / 255.0f,
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
389 pBaseColors[a2][i][2] / 255.0f, &a6[i]);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
390 /*v4 = 0;
0
Ritor1
parents:
diff changeset
391 do
Ritor1
parents:
diff changeset
392 {
Ritor1
parents:
diff changeset
393 LODWORD(v75) = (unsigned __int8)v3[2];
Ritor1
parents:
diff changeset
394 v5 = (double)SLODWORD(v75) * 0.00392156862745098;
Ritor1
parents:
diff changeset
395 LODWORD(v75) = (unsigned __int8)v3[1];
Ritor1
parents:
diff changeset
396 v6 = (double)SLODWORD(v75) * 0.00392156862745098;
Ritor1
parents:
diff changeset
397 LODWORD(v75) = (unsigned __int8)*v3;
Ritor1
parents:
diff changeset
398 v7 = (double)SLODWORD(v75) * 0.00392156862745098;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
399 RGB2HSV(&v64[v4], &v63[v4], v7, v6, v5, &a6[v4]);
0
Ritor1
parents:
diff changeset
400 ++v4;
Ritor1
parents:
diff changeset
401 v3 += 3;
Ritor1
parents:
diff changeset
402 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
403 while ( v4 < 256 );*/
0
Ritor1
parents:
diff changeset
404 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
405
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
406 //v69 = (PaletteManager *)((char *)v2 + 16384 * a2);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
407 //v72 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
408 //v73 = (int)pPalette1[a2];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
409 for (uint i = 0; i < 32; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
410 //do
0
Ritor1
parents:
diff changeset
411 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
412 //v20 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
413 //i = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
414 //v71 = 1.0 - (double)v72 / 31.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
415 //do
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
416 for (uint j = 0; j < 256; ++j)
0
Ritor1
parents:
diff changeset
417 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
418 v21 = a6[j] * (1.0f - i / 32.0f);
0
Ritor1
parents:
diff changeset
419 if ( v21 < 0.0 )
Ritor1
parents:
diff changeset
420 v21 = 0.0;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
421
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
422 //v22 = v21;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
423 HSV2RGB(&a1, &a2a, &a3, v64[j], v63[j], v21);
0
Ritor1
parents:
diff changeset
424 v23 = v2->uNumTargetGBits;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
425 if ( v23 == 6 ) // r5g6b5
0
Ritor1
parents:
diff changeset
426 {
Ritor1
parents:
diff changeset
427 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
428 a2a = a2a * 62.0;
Ritor1
parents:
diff changeset
429 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
430 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
431 else if (v23 == 5) // r5g5b5
0
Ritor1
parents:
diff changeset
432 {
Ritor1
parents:
diff changeset
433 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
434 a2a = a2a * 31.0;
Ritor1
parents:
diff changeset
435 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
436 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
437 else if (v23 == 0)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
438 Log::Warning(L"Calling palette manager with num_target_bits == 0");
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1165
diff changeset
439 else Error("(%u)", v23);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
440 //v24 = (unsigned __int32)a3 | ((unsigned __int32)a2a << v2->uNumTargetBBits) | ((unsigned __int32)a1 << (v2->uNumTargetBBits + v2->uNumTargetGBits));
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
441 //v25 = v73;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
442 //v73 += 2;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
443 //*(short *)v25 = v24;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
444 pPalette1[a2][i][j] = (unsigned __int32)a3 |
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
445 ((unsigned __int32)a2a << v2->uNumTargetBBits) |
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
446 ((unsigned __int32)a1 << (v2->uNumTargetBBits + v2->uNumTargetGBits));
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
447 //v20 = i + 4;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
448 //v19 = __OFSUB__(i + 4, 1024);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
449 //v18 = i - 1020 < 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
450 //i += 4;
0
Ritor1
parents:
diff changeset
451 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
452 //while ( v18 ^ v19 );
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
453 //++v72;
0
Ritor1
parents:
diff changeset
454 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
455 //while ( v72 < 32 );
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
456
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
457 //v72 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
458 //v73 = (int)v69->field_199600_palettes;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
459 //do
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
460 for (uint i = 0; i < 32; ++i)
0
Ritor1
parents:
diff changeset
461 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
462 //i = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
463 //v71 = 1.0 - (double)v72 / 31.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
464 //do
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
465 for (uint j = 0; j < 256; ++j)
0
Ritor1
parents:
diff changeset
466 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
467 v26 = a6[j] * (1.0 - i / 31.0f);
0
Ritor1
parents:
diff changeset
468 if ( v26 < 0.0 )
Ritor1
parents:
diff changeset
469 v26 = 0.0;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
470
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
471 //v27 = v26;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
472 HSV2RGB(&a1, &a2a, &a3, 1.0, 1.0, v26);
0
Ritor1
parents:
diff changeset
473 v28 = v2->uNumTargetGBits;
Ritor1
parents:
diff changeset
474 if ( v28 == 6 )
Ritor1
parents:
diff changeset
475 {
Ritor1
parents:
diff changeset
476 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
477 a2a = a2a * 62.0;
Ritor1
parents:
diff changeset
478 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
479 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
480 else if (v28 == 5)
0
Ritor1
parents:
diff changeset
481 {
Ritor1
parents:
diff changeset
482 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
483 a2a = a2a * 31.0;
Ritor1
parents:
diff changeset
484 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
485 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
486 else if (v23 == 0)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
487 Log::Warning(L"Calling palette manager with num_target_bits == 0");
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1165
diff changeset
488 else Error("(%u)", v23);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
489
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
490 //v29 = (unsigned __int64)(signed __int64)a3 | ((unsigned __int16)(signed __int64)a2a << v2->uNumTargetBBits) | (unsigned __int16)((unsigned __int16)(signed __int64)a1 << (v2->uNumTargetBBits + v28));
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
491 //v30 = (__int16 *)v73;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
492 //++i;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
493 //v73 += 2;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
494 //v19 = __OFSUB__(i, 256);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
495 //v18 = i - 256 < 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
496 //*v30 = v29;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
497 field_199600_palettes[a2][i][j] = (unsigned __int64)(signed __int64)a3 | ((unsigned __int16)(signed __int64)a2a << v2->uNumTargetBBits) | (unsigned __int16)((unsigned __int16)(signed __int64)a1 << (v2->uNumTargetBBits + v28));
0
Ritor1
parents:
diff changeset
498 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
499 //while ( v18 ^ v19 );
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
500 //++v72;
0
Ritor1
parents:
diff changeset
501 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
502 //while ( v72 < 32 );
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
503
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
504 //v73 = (int)((char *)v2 + 512 * (a2 + 4875)); // field_261600[a2]
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
505 //v31 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
506 //i = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
507 for (uint i = 0; i < 256; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
508 //do
0
Ritor1
parents:
diff changeset
509 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
510 //v32 = (*(float *)((char *)a6 + v31) - 0.8) * 0.8387096774193549 + 0.8;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
511 v32 = (a6[i] - 0.8f) * 0.8387096774193549 + 0.8;
0
Ritor1
parents:
diff changeset
512 if ( v32 < 0.0 )
Ritor1
parents:
diff changeset
513 v32 = 0.0;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
514
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
515 //v33 = v32;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
516 //v34 = v63[i] * 0.7034339229968783;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
517 HSV2RGB(&a1, &a2a, &a3, v64[i], v63[i] * 0.7034339229968783, v32);
0
Ritor1
parents:
diff changeset
518 v35 = v2->uNumTargetGBits;
Ritor1
parents:
diff changeset
519 if ( v35 == 6 )
Ritor1
parents:
diff changeset
520 {
Ritor1
parents:
diff changeset
521 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
522 a2a = a2a * 62.0;
Ritor1
parents:
diff changeset
523 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
524 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
525 else if (v35 == 5)
0
Ritor1
parents:
diff changeset
526 {
Ritor1
parents:
diff changeset
527 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
528 a2a = a2a * 31.0;
Ritor1
parents:
diff changeset
529 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
530 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
531 else if (v23 == 0)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
532 Log::Warning(L"Calling palette manager with num_target_bits == 0");
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1165
diff changeset
533 else Error("(%u)", v23);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
534
0
Ritor1
parents:
diff changeset
535 v36 = (signed __int64)((a1 + a2a + a3) * 0.3333333333333333 * 8.0);
Ritor1
parents:
diff changeset
536 v37 = (signed int)v36 >> (8 - v2->uNumTargetRBits);
Ritor1
parents:
diff changeset
537 v38 = 8 - v35;
Ritor1
parents:
diff changeset
538 v39 = v2->uNumTargetBBits;
Ritor1
parents:
diff changeset
539 v40 = (signed int)v36 >> v38;
Ritor1
parents:
diff changeset
540 v41 = v2->uNumTargetRBits;
Ritor1
parents:
diff changeset
541 v79 = (signed int)v36 >> (8 - v39);
Ritor1
parents:
diff changeset
542 if ( v37 > (1 << v41) - 1 )
Ritor1
parents:
diff changeset
543 v37 = (1 << v41) - 1;
Ritor1
parents:
diff changeset
544 v42 = v2->uNumTargetGBits;
Ritor1
parents:
diff changeset
545 if ( v40 > (1 << v42) - 1 )
Ritor1
parents:
diff changeset
546 v40 = (1 << v42) - 1;
Ritor1
parents:
diff changeset
547 if ( v79 > (1 << v39) - 1 )
Ritor1
parents:
diff changeset
548 v79 = (1 << v39) - 1;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
549 //v43 = v73;
0
Ritor1
parents:
diff changeset
550 v44 = v37 << (v39 + v2->uNumTargetGBits);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
551 //v73 += 2;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
552 //*(short *)v43 = v79 | ((short)v40 << v39) | (unsigned __int16)v44;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
553 field_261600[a2][i] = v79 | ((unsigned short)v40 << v39) | (unsigned __int16)v44;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
554 //v31 = i + 4;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
555 //v19 = __OFSUB__(i + 4, 1024);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
556 //v18 = i - 1020 < 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
557 //i += 4;
0
Ritor1
parents:
diff changeset
558 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
559 //while ( v18 ^ v19 );
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
560
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
561 //v45 = pPalette_mistColor[0];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
562 float mist_a, mist_b, mist_c;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
563 if (pPalette_mistColor[0] || pPalette_mistColor[1] || pPalette_mistColor[2])
0
Ritor1
parents:
diff changeset
564 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
565 //v46 = (double)v45;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
566 //v80 = pPalette_mistColor[1];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
567 //v47 = pPalette_mistColor[2];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
568 //v70 = v46 * 0.00392156862745098;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
569 //*((float *)&v71 + 1) = (double)v80 * 0.00392156862745098;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
570 //v75 = (double)v47 * 0.00392156862745098;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
571 mist_a = pPalette_mistColor[0] / 255.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
572 mist_b = pPalette_mistColor[1] / 255.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
573 mist_c = pPalette_mistColor[2] / 255.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
574
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
575 float unused;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
576 RGB2HSV(&v68, &v67, mist_a, mist_b, mist_c, &unused);
0
Ritor1
parents:
diff changeset
577 }
Ritor1
parents:
diff changeset
578
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
579 //v72 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
580 //v73 = (int)v69->field_D1600;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
581 //do
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
582 for (uint i = 0; i < 32; ++i)
0
Ritor1
parents:
diff changeset
583 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
584 //v48 = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
585 //for ( i = 0; ; v48 = i )
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
586 for (uint j = 0; j < 256; ++j)
0
Ritor1
parents:
diff changeset
587 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
588 v49 = v63[j];
0
Ritor1
parents:
diff changeset
589 if ( v49 < 0.0 )
Ritor1
parents:
diff changeset
590 v49 = 0.0;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
591
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
592 //v50 = v49;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
593 HSV2RGB(&a1, &a2a, &a3, v64[j], v49, a6[j]);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
594 //v51 = v2->uNumTargetGBits;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
595 if ( v2->uNumTargetGBits == 6 )
0
Ritor1
parents:
diff changeset
596 {
Ritor1
parents:
diff changeset
597 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
598 a2a = a2a * 62.0;
Ritor1
parents:
diff changeset
599 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
600 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
601 else if (v2->uNumTargetGBits == 5)
0
Ritor1
parents:
diff changeset
602 {
Ritor1
parents:
diff changeset
603 a1 = a1 * 31.0;
Ritor1
parents:
diff changeset
604 a2a = a2a * 31.0;
Ritor1
parents:
diff changeset
605 a3 = a3 * 31.0;
Ritor1
parents:
diff changeset
606 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
607 else if (v23 == 0)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
608 Log::Warning(L"Calling palette manager with num_target_bits == 0");
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1165
diff changeset
609 else Error("(%u)", v23);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
610
0
Ritor1
parents:
diff changeset
611 if (pPalette_mistColor[0] || pPalette_mistColor[1] || pPalette_mistColor[2])
Ritor1
parents:
diff changeset
612 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
613 v55 = (double)i / 31.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
614 v52 = (signed __int64)((double)(1 << v2->uNumTargetRBits) * mist_a * v55 + a1 * (1.0 - v55));
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
615 v53 = (signed __int64)((double)(1 << v2->uNumTargetGBits) * mist_b * v55 + a2a * (1.0 - v55));
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
616 v54 = (signed __int64)((double)(1 << v2->uNumTargetBBits) * mist_c * v55 + a3 * (1.0 - v55));
0
Ritor1
parents:
diff changeset
617 }
Ritor1
parents:
diff changeset
618 else
Ritor1
parents:
diff changeset
619 {
Ritor1
parents:
diff changeset
620 v52 = (signed __int64)a1;
Ritor1
parents:
diff changeset
621 v53 = (signed __int64)a2a;
Ritor1
parents:
diff changeset
622 v54 = (signed __int64)a3;
Ritor1
parents:
diff changeset
623 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
624
0
Ritor1
parents:
diff changeset
625 v56 = v2->uNumTargetRBits;
Ritor1
parents:
diff changeset
626 v81 = v54;
Ritor1
parents:
diff changeset
627 if ( v52 > (1 << v56) - 1 )
Ritor1
parents:
diff changeset
628 v52 = (1 << v56) - 1;
Ritor1
parents:
diff changeset
629 v57 = v2->uNumTargetGBits;
Ritor1
parents:
diff changeset
630 if ( v53 > (1 << v57) - 1 )
Ritor1
parents:
diff changeset
631 v53 = (1 << v57) - 1;
Ritor1
parents:
diff changeset
632 HIDWORD(v54) = v2->uNumTargetBBits;
Ritor1
parents:
diff changeset
633 v59 = v2->uNumTargetBBits;
Ritor1
parents:
diff changeset
634 if ( (signed int)v54 > (1 << v59) - 1 )
Ritor1
parents:
diff changeset
635 v81 = (1 << v59) - 1;
Ritor1
parents:
diff changeset
636 v60 = v2->uNumTargetGBits;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
637 //i += 4;
0
Ritor1
parents:
diff changeset
638 v61 = uNumTargetBBits + v60;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
639 //result = v73;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
640 //v73 += 2;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
641 //v19 = __OFSUB__(i, 1024);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
642 //v18 = i - 1024 < 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
643 //*(short *)result = v81 | ((short)v53 << uNumTargetBBits) | (v52 << v61);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
644 field_D1600[a2][i][j] = v81 | ((short)v53 << uNumTargetBBits) | (v52 << v61);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
645 //if ( !(v18 ^ v19) )
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
646 // break;
0
Ritor1
parents:
diff changeset
647 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
648 //++v72;
0
Ritor1
parents:
diff changeset
649 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
650 //while ( v72 < 32 );
0
Ritor1
parents:
diff changeset
651 }
Ritor1
parents:
diff changeset
652
Ritor1
parents:
diff changeset
653
Ritor1
parents:
diff changeset
654 //----- (0048A300) --------------------------------------------------------
Ritor1
parents:
diff changeset
655 PaletteManager::PaletteManager():
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 0
diff changeset
656 uNumTargetRBits(0), uNumTargetGBits(0),uNumTargetBBits(0),_num_locked(0)
0
Ritor1
parents:
diff changeset
657 {
Ritor1
parents:
diff changeset
658 for (uint i = 0; i < 256; ++i)
Ritor1
parents:
diff changeset
659 {
Ritor1
parents:
diff changeset
660 pBaseColors[0][i][0] = i;
Ritor1
parents:
diff changeset
661 pBaseColors[0][i][1] = i;
Ritor1
parents:
diff changeset
662 pBaseColors[0][i][2] = i;
Ritor1
parents:
diff changeset
663 }
Ritor1
parents:
diff changeset
664
Ritor1
parents:
diff changeset
665 CalcPalettes_LUT(0);
Ritor1
parents:
diff changeset
666 memset(pPaletteIDs, 0, sizeof(pPaletteIDs));
Ritor1
parents:
diff changeset
667 }
Ritor1
parents:
diff changeset
668
Ritor1
parents:
diff changeset
669 //----- (0048A336) --------------------------------------------------------
Ritor1
parents:
diff changeset
670 // make grayscale palette at 0, clear all palettes ids that aren't locked
Ritor1
parents:
diff changeset
671 int PaletteManager::ResetNonLocked()
Ritor1
parents:
diff changeset
672 {
Ritor1
parents:
diff changeset
673 PaletteManager *v1; // esi@1
Ritor1
parents:
diff changeset
674 signed int v2; // ecx@1
Ritor1
parents:
diff changeset
675 int v3; // eax@1
Ritor1
parents:
diff changeset
676 signed int result; // eax@3
Ritor1
parents:
diff changeset
677 void *v5; // edi@4
Ritor1
parents:
diff changeset
678 int v6; // ecx@4
Ritor1
parents:
diff changeset
679
Ritor1
parents:
diff changeset
680 v1 = this;
Ritor1
parents:
diff changeset
681 v2 = 0;
Ritor1
parents:
diff changeset
682 v3 = (int)&v1->pBaseColors[0][0][1];
Ritor1
parents:
diff changeset
683 do
Ritor1
parents:
diff changeset
684 {
Ritor1
parents:
diff changeset
685 *(char *)(v3 + 1) = v2;
Ritor1
parents:
diff changeset
686 *(char *)v3 = v2;
Ritor1
parents:
diff changeset
687 *(char *)(v3 - 1) = v2++;
Ritor1
parents:
diff changeset
688 v3 += 3;
Ritor1
parents:
diff changeset
689 }
Ritor1
parents:
diff changeset
690 while ( v2 < 256 );
Ritor1
parents:
diff changeset
691 CalcPalettes_LUT(0);
Ritor1
parents:
diff changeset
692 result = v1->_num_locked;
Ritor1
parents:
diff changeset
693 if ( result < 50 )
Ritor1
parents:
diff changeset
694 {
Ritor1
parents:
diff changeset
695 v5 = &v1->pPaletteIDs[result];
Ritor1
parents:
diff changeset
696 v6 = 50 - result;
Ritor1
parents:
diff changeset
697 result = 0;
Ritor1
parents:
diff changeset
698 memset(v5, 0, 4 * v6);
Ritor1
parents:
diff changeset
699 }
Ritor1
parents:
diff changeset
700 return result;
Ritor1
parents:
diff changeset
701 }
Ritor1
parents:
diff changeset
702
Ritor1
parents:
diff changeset
703 //----- (0048A379) --------------------------------------------------------
Ritor1
parents:
diff changeset
704 // make grayscale palette at 0, clear all palettes ids that aren't in "lock_test"
Ritor1
parents:
diff changeset
705 int PaletteManager::ResetNonTestLocked()
Ritor1
parents:
diff changeset
706 {
Ritor1
parents:
diff changeset
707 PaletteManager *v1; // esi@1
Ritor1
parents:
diff changeset
708 signed int v2; // ecx@1
Ritor1
parents:
diff changeset
709 int v3; // eax@1
Ritor1
parents:
diff changeset
710 signed int result; // eax@3
Ritor1
parents:
diff changeset
711 void *v5; // edi@4
Ritor1
parents:
diff changeset
712 int v6; // ecx@4
Ritor1
parents:
diff changeset
713
Ritor1
parents:
diff changeset
714 v1 = this;
Ritor1
parents:
diff changeset
715 v2 = 0;
Ritor1
parents:
diff changeset
716 v3 = (int)&v1->pBaseColors[0][0][1];
Ritor1
parents:
diff changeset
717 do
Ritor1
parents:
diff changeset
718 {
Ritor1
parents:
diff changeset
719 *(char *)(v3 + 1) = v2;
Ritor1
parents:
diff changeset
720 *(char *)v3 = v2;
Ritor1
parents:
diff changeset
721 *(char *)(v3 - 1) = v2++;
Ritor1
parents:
diff changeset
722 v3 += 3;
Ritor1
parents:
diff changeset
723 }
Ritor1
parents:
diff changeset
724 while ( v2 < 256 );
Ritor1
parents:
diff changeset
725 CalcPalettes_LUT(0);
Ritor1
parents:
diff changeset
726 result = v1->_pal_lock_test;
Ritor1
parents:
diff changeset
727 if ( result < 50 )
Ritor1
parents:
diff changeset
728 {
Ritor1
parents:
diff changeset
729 v5 = &v1->pPaletteIDs[result];
Ritor1
parents:
diff changeset
730 v6 = 50 - result;
Ritor1
parents:
diff changeset
731 result = 0;
Ritor1
parents:
diff changeset
732 memset(v5, 0, 4 * v6);
Ritor1
parents:
diff changeset
733 }
Ritor1
parents:
diff changeset
734 return result;
Ritor1
parents:
diff changeset
735 }
Ritor1
parents:
diff changeset
736
Ritor1
parents:
diff changeset
737 //----- (0048A3BC) --------------------------------------------------------
Ritor1
parents:
diff changeset
738 int PaletteManager::LoadPalette(unsigned int uPaletteID)
Ritor1
parents:
diff changeset
739 {
Ritor1
parents:
diff changeset
740 unsigned int *v2; // ecx@1
Ritor1
parents:
diff changeset
741 signed int result; // eax@1
Ritor1
parents:
diff changeset
742 signed int v4; // esi@6
Ritor1
parents:
diff changeset
743 double v5; // st7@7
Ritor1
parents:
diff changeset
744 double v6; // st7@12
Ritor1
parents:
diff changeset
745 double v7; // st6@17
Ritor1
parents:
diff changeset
746 signed __int64 v8; // qax@17
Ritor1
parents:
diff changeset
747 double v9; // st6@17
Ritor1
parents:
diff changeset
748 char v10[768]; // [sp+18h] [bp-388h]@6
Ritor1
parents:
diff changeset
749 //char v11; // [sp+19h] [bp-387h]@17
Ritor1
parents:
diff changeset
750 //char v12[766]; // [sp+1Ah] [bp-386h]@17
Ritor1
parents:
diff changeset
751 char Source[32]; // [sp+360h] [bp-40h]@4
Ritor1
parents:
diff changeset
752 PaletteManager *v15; // [sp+380h] [bp-20h]@1
Ritor1
parents:
diff changeset
753 float v16; // [sp+384h] [bp-1Ch]@7
Ritor1
parents:
diff changeset
754 int v17; // [sp+388h] [bp-18h]@6
Ritor1
parents:
diff changeset
755 float v18; // [sp+38Ch] [bp-14h]@7
Ritor1
parents:
diff changeset
756 float a2a; // [sp+390h] [bp-10h]@7
Ritor1
parents:
diff changeset
757 float a1; // [sp+394h] [bp-Ch]@7
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
758 float a6; // [sp+398h] [bp-8h]@7
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
759 float a3; // [sp+39Ch] [bp-4h]@7
0
Ritor1
parents:
diff changeset
760
Ritor1
parents:
diff changeset
761 v15 = this;
Ritor1
parents:
diff changeset
762 v2 = (unsigned int *)&this->pPaletteIDs[1];
Ritor1
parents:
diff changeset
763 result = 1;
Ritor1
parents:
diff changeset
764 while ( *v2 != uPaletteID )
Ritor1
parents:
diff changeset
765 {
Ritor1
parents:
diff changeset
766 ++result;
Ritor1
parents:
diff changeset
767 ++v2;
Ritor1
parents:
diff changeset
768 if ( result >= 50 )
Ritor1
parents:
diff changeset
769 {
Ritor1
parents:
diff changeset
770 sprintf(Source, "pal%03i", uPaletteID);
Ritor1
parents:
diff changeset
771
Ritor1
parents:
diff changeset
772 Texture tex; // [sp+318h] [bp-88h]@4
Ritor1
parents:
diff changeset
773 //Texture::Texture(&tex);
Ritor1
parents:
diff changeset
774
Ritor1
parents:
diff changeset
775 if ( pBitmaps_LOD->LoadTextureFromLOD(&tex, Source, TEXTURE_24BIT_PALETTE) == 1 )
Ritor1
parents:
diff changeset
776 {
Ritor1
parents:
diff changeset
777 v4 = 0;
Ritor1
parents:
diff changeset
778 v17 = 1 - (int)&v10;
Ritor1
parents:
diff changeset
779 do
Ritor1
parents:
diff changeset
780 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
781 //LODWORD(a1) = tex.pPalette24[v4];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
782 a1 = (double)tex.pPalette24[v4] / 255.0f;
0
Ritor1
parents:
diff changeset
783 LODWORD(a2a) = (unsigned __int8)*(&v10 + v4 + v17 + (unsigned int)tex.pPalette24);
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
784 a2a = (double)tex.pPalette24[v4 + 1] / 255.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
785 //a3 = tex.pPalette24[v4 + 2];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
786 a3 = (double)tex.pPalette24[v4 + 2] / 255.0f;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
787 RGB2HSV(&v16, &v18, a1, a2a, a3, &a6);
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
788 v5 = a6 * 1.1;
0
Ritor1
parents:
diff changeset
789 if ( v5 >= 0.0 && v5 >= 1.0 )
Ritor1
parents:
diff changeset
790 {
Ritor1
parents:
diff changeset
791 v5 = 1.0;
Ritor1
parents:
diff changeset
792 }
Ritor1
parents:
diff changeset
793 else
Ritor1
parents:
diff changeset
794 {
Ritor1
parents:
diff changeset
795 if ( v5 < 0.0 )
Ritor1
parents:
diff changeset
796 v5 = 0.0;
Ritor1
parents:
diff changeset
797 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
798 a6 = v5;
0
Ritor1
parents:
diff changeset
799 v6 = v18 * 0.64999998;
Ritor1
parents:
diff changeset
800 if ( v6 >= 0.0 && v6 >= 1.0 )
Ritor1
parents:
diff changeset
801 {
Ritor1
parents:
diff changeset
802 v6 = 1.0;
Ritor1
parents:
diff changeset
803 }
Ritor1
parents:
diff changeset
804 else
Ritor1
parents:
diff changeset
805 {
Ritor1
parents:
diff changeset
806 if ( v6 < 0.0 )
Ritor1
parents:
diff changeset
807 v6 = 0.0;
Ritor1
parents:
diff changeset
808 }
Ritor1
parents:
diff changeset
809 v18 = v6;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
810 HSV2RGB(&a1, &a2a, &a3, v16, v18, a6);
0
Ritor1
parents:
diff changeset
811 v7 = a2a * 255.0;
Ritor1
parents:
diff changeset
812 v10[v4] = (signed __int64)(a1 * 255.0);
Ritor1
parents:
diff changeset
813 v8 = (signed __int64)v7;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
814 v9 = a3 * 255.0;
0
Ritor1
parents:
diff changeset
815 v10[v4 + 1] = v8;
Ritor1
parents:
diff changeset
816 v10[v4 + 2] = (signed __int64)v9;
Ritor1
parents:
diff changeset
817 v4 += 3;
Ritor1
parents:
diff changeset
818 }
Ritor1
parents:
diff changeset
819 while ( v4 < 768 );
Ritor1
parents:
diff changeset
820 tex.Release();
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
821 result = v15->MakeBasePaletteLut(uPaletteID, v10);
0
Ritor1
parents:
diff changeset
822 }
Ritor1
parents:
diff changeset
823 else
Ritor1
parents:
diff changeset
824 {
Ritor1
parents:
diff changeset
825 result = 0;
Ritor1
parents:
diff changeset
826 }
Ritor1
parents:
diff changeset
827 return result;
Ritor1
parents:
diff changeset
828 }
Ritor1
parents:
diff changeset
829 }
Ritor1
parents:
diff changeset
830 return result;
Ritor1
parents:
diff changeset
831 }
Ritor1
parents:
diff changeset
832 // 48A3BC: using guessed type char var_386[766];
Ritor1
parents:
diff changeset
833
Ritor1
parents:
diff changeset
834 //----- (0048A5A4) --------------------------------------------------------
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
835 int PaletteManager::MakeBasePaletteLut(int idx, char *entries)
0
Ritor1
parents:
diff changeset
836 {
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
837 //PaletteManager *v3; // edi@1
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
838 //signed int result; // eax@1
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
839 //int *v5; // ecx@1
0
Ritor1
parents:
diff changeset
840 int v6; // eax@4
Ritor1
parents:
diff changeset
841 int v7; // esi@4
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
842 //int v8; // eax@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
843 //signed int v9; // ecx@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
844 //int v10; // edx@9
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
845
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
846 //v3 = this;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
847 //result = 0;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
848 //v5 = this->pPaletteIDs;
0
Ritor1
parents:
diff changeset
849
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
850 for (uint i = 0; i < 50; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
851 if (pPaletteIDs[i] == idx)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
852 return i;
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
853
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
854
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
855
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
856 v6 = (int)&pPaletteIDs[1];
0
Ritor1
parents:
diff changeset
857 v7 = 1;
Ritor1
parents:
diff changeset
858 while ( *(int *)v6 )
Ritor1
parents:
diff changeset
859 {
Ritor1
parents:
diff changeset
860 ++v7;
Ritor1
parents:
diff changeset
861 v6 += 4;
Ritor1
parents:
diff changeset
862 if ( v7 >= 50 )
Ritor1
parents:
diff changeset
863 return 0;
Ritor1
parents:
diff changeset
864 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
865 /*v8 = (int)pBaseColors[v7];//(int)((char *)v3 + 768 * v7);
0
Ritor1
parents:
diff changeset
866 v9 = 768;
Ritor1
parents:
diff changeset
867 v10 = (int)(entries - v8);
Ritor1
parents:
diff changeset
868 do
Ritor1
parents:
diff changeset
869 {
Ritor1
parents:
diff changeset
870 *(char *)v8 = *(char *)(v10 + v8);
Ritor1
parents:
diff changeset
871 ++v8;
Ritor1
parents:
diff changeset
872 --v9;
Ritor1
parents:
diff changeset
873 }
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
874 while ( v9 );*/
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
875 unsigned __int8 *dst = (unsigned __int8 *)pBaseColors[v7];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
876 for (uint i = 0; i < 768; ++i)
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
877 dst[i] = entries[i];
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
878
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
879 pPaletteIDs[v7] = idx;
0
Ritor1
parents:
diff changeset
880 CalcPalettes_LUT(v7);
Ritor1
parents:
diff changeset
881 return v7;
700
1d05543f522d Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents: 670
diff changeset
882
0
Ritor1
parents:
diff changeset
883 }
Ritor1
parents:
diff changeset
884
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
885 // inlined
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
886 //----- (mm6c::0045C610) ---------------------------------------------------
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
887 void PaletteManager::SetMistColor(unsigned char r, unsigned char g, unsigned char b)
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
888 {
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
889 pPalette_mistColor[0] = r;
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
890 pPalette_mistColor[1] = g;
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
891 pPalette_mistColor[2] = b;
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
892 }
cf2fbac6edc9 Misc cleaning
Nomad
parents: 700
diff changeset
893
0
Ritor1
parents:
diff changeset
894 //----- (0048A614) --------------------------------------------------------
Ritor1
parents:
diff changeset
895 void PaletteManager::RecalculateAll()
Ritor1
parents:
diff changeset
896 {
Ritor1
parents:
diff changeset
897 CalcPalettes_LUT(0);
Ritor1
parents:
diff changeset
898
Ritor1
parents:
diff changeset
899 for (uint i = 1; i < 50; ++i)
Ritor1
parents:
diff changeset
900 if (pPaletteIDs[i])
Ritor1
parents:
diff changeset
901 CalcPalettes_LUT(i);
Ritor1
parents:
diff changeset
902 }
Ritor1
parents:
diff changeset
903
Ritor1
parents:
diff changeset
904
Ritor1
parents:
diff changeset
905 //----- (0047BE67) --------------------------------------------------------
Ritor1
parents:
diff changeset
906 unsigned __int16 *PaletteManager::Get(int a1)
Ritor1
parents:
diff changeset
907 {
Ritor1
parents:
diff changeset
908 return (unsigned __int16 *)pPaletteManager->field_199600_palettes[a1];
Ritor1
parents:
diff changeset
909 }
Ritor1
parents:
diff changeset
910
Ritor1
parents:
diff changeset
911 //----- (0047BE72) --------------------------------------------------------
Ritor1
parents:
diff changeset
912 unsigned __int16 *PaletteManager::Get_Mist_or_Red_LUT(int a1, int a2, char a3)
Ritor1
parents:
diff changeset
913 {
Ritor1
parents:
diff changeset
914 int v3; // eax@4
Ritor1
parents:
diff changeset
915
Ritor1
parents:
diff changeset
916 if ( a3 & 2 || byte_4D864C && BYTE2(pGame->uFlags) & 4 )
Ritor1
parents:
diff changeset
917 v3 = 32 * a1 + a2 + 3275;
Ritor1
parents:
diff changeset
918 else
Ritor1
parents:
diff changeset
919 v3 = 32 * a1 + a2 + 1675;
Ritor1
parents:
diff changeset
920 return (unsigned __int16 *)((char *)&pPaletteManager + 512 * v3);
Ritor1
parents:
diff changeset
921 }
Ritor1
parents:
diff changeset
922 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
923
Ritor1
parents:
diff changeset
924
Ritor1
parents:
diff changeset
925 //----- (0041F50D) --------------------------------------------------------
Ritor1
parents:
diff changeset
926 unsigned __int16 *PaletteManager::Get_Dark_or_Red_LUT(int a1, int a2, char a3)
Ritor1
parents:
diff changeset
927 {
Ritor1
parents:
diff changeset
928 int v3; // eax@4
Ritor1
parents:
diff changeset
929
Ritor1
parents:
diff changeset
930 if ( a3 & 2 || byte_4D864C && BYTE2(pGame->uFlags) & 4 )
Ritor1
parents:
diff changeset
931 v3 = 32 * a1 + a2 + 3275;
Ritor1
parents:
diff changeset
932 else
Ritor1
parents:
diff changeset
933 v3 = 32 * a1 + a2 + 75;
Ritor1
parents:
diff changeset
934 return (unsigned __int16 *)((char *)&pPaletteManager + 512 * v3);
Ritor1
parents:
diff changeset
935 }
Ritor1
parents:
diff changeset
936 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
937
Ritor1
parents:
diff changeset
938
Ritor1
parents:
diff changeset
939 //----- (0047C30E) --------------------------------------------------------
Ritor1
parents:
diff changeset
940 unsigned __int16 *PaletteManager::_47C30E_get_palette(int a1, char a2)
Ritor1
parents:
diff changeset
941 {
Ritor1
parents:
diff changeset
942 char *result; // eax@4
Ritor1
parents:
diff changeset
943
Ritor1
parents:
diff changeset
944 if ( a2 & 2 || byte_4D864C && BYTE2(pGame->uFlags) & 4 )
Ritor1
parents:
diff changeset
945 result = (char *)pPaletteManager->field_199600_palettes[a1];
Ritor1
parents:
diff changeset
946 else
Ritor1
parents:
diff changeset
947 result = (char *)pPaletteManager->field_D1600[a1];
Ritor1
parents:
diff changeset
948 return (unsigned __int16 *)result;
Ritor1
parents:
diff changeset
949 }
Ritor1
parents:
diff changeset
950
Ritor1
parents:
diff changeset
951
Ritor1
parents:
diff changeset
952 //----- (0047C33F) --------------------------------------------------------
Ritor1
parents:
diff changeset
953 unsigned __int16 *PaletteManager::_47C33F_get_palette(int a1, char a2)
Ritor1
parents:
diff changeset
954 {
Ritor1
parents:
diff changeset
955 unsigned __int16 *result; // eax@4
Ritor1
parents:
diff changeset
956
Ritor1
parents:
diff changeset
957 if ( a2 & 2 || byte_4D864C && BYTE2(pGame->uFlags) & 4 )
Ritor1
parents:
diff changeset
958 result = (unsigned __int16 *)pPaletteManager->field_199600_palettes[a1];
Ritor1
parents:
diff changeset
959 else
Ritor1
parents:
diff changeset
960 result = (unsigned __int16 *)pPaletteManager->pPalette1[a1];
Ritor1
parents:
diff changeset
961 return result;
Ritor1
parents:
diff changeset
962 }
Ritor1
parents:
diff changeset
963 // 4D864C: using guessed type char byte_4D864C;