annotate PaletteManager.cpp @ 1011:f85a8305a57c

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