summaryrefslogtreecommitdiff
path: root/src/resources/dye.cpp
blob: 4b5c1268c33784b4377e0290aaee7d9b322bcd9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
 *  The ManaPlus Client
 *  Copyright (C) 2007-2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2012  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "resources/dye.h"

#include "logger.h"

#include <math.h>
#include <sstream>

#include "debug.h"

DyePalette::DyePalette(const std::string &description, const int8_t blockSize)
{
    const int size = static_cast<int>(description.length());
    if (size == 0)
        return;
    if (description[0] != '#')
    {
        // TODO: load palette from file.
        return;
    }

    int pos = 1;
    for ( ; ; )
    {
        if (pos + blockSize > size)
            break;

        Color color =
        {
            {0, 0, 0, 0}
        };

        for (int i = 0, colorIdx = 0; i < blockSize && colorIdx < 4;
             i +=2, colorIdx ++)
        {
            color.value[colorIdx] = static_cast<unsigned char>((
                hexDecode(description[pos + i]) << 4)
                + hexDecode(description[pos + i + 1]));
        }
        mColors.push_back(color);
        pos += blockSize;

        if (pos == size)
            return;
        if (description[pos] != ',')
            break;

        ++pos;
    }

    logger->log("Error, invalid embedded palette: %s", description.c_str());
}

int DyePalette::hexDecode(const char c)
{
    if ('0' <= c && c <= '9')
        return c - '0';
    else if ('A' <= c && c <= 'F')
        return c - 'A' + 10;
    else if ('a' <= c && c <= 'f')
        return c - 'a' + 10;
    else
        return 0;
}

void DyePalette::getColor(const int intensity, int color[3]) const
{
    if (intensity == 0)
    {
        color[0] = 0;
        color[1] = 0;
        color[2] = 0;
        return;
    }

    int last = static_cast<int>(mColors.size());
    if (last == 0)
        return;

    const int i = intensity * last / 255;
    const int t = intensity * last % 255;

    int j = t != 0 ? i : i - 1;

    if (j >= last)
        j = 0;

    // Get the exact color if any, the next color otherwise.
    const int r2 = mColors[j].value[0];
    const int g2 = mColors[j].value[1];
    const int b2 = mColors[j].value[2];

    if (t == 0)
    {
        // Exact color.
        color[0] = r2;
        color[1] = g2;
        color[2] = b2;
        return;
    }

    // Get the previous color. First color is implicitly black.
    int r1 = 0, g1 = 0, b1 = 0;
    if (i > 0 && i < last + 1)
    {
        r1 = mColors[i - 1].value[0];
        g1 = mColors[i - 1].value[1];
        b1 = mColors[i - 1].value[2];
    }

    // Perform a linear interpolation.
    color[0] = ((255 - t) * r1 + t * r2) / 255;
    color[1] = ((255 - t) * g1 + t * g2) / 255;
    color[2] = ((255 - t) * b1 + t * b2) / 255;
}

void DyePalette::getColor(double intensity, int color[3]) const
{
    // Nothing to do here
    if (mColors.empty())
        return;

    // Force range
    if (intensity > 1.0)
        intensity = 1.0;
    else if (intensity < 0.0)
        intensity = 0.0;

    // Scale up
    intensity = intensity * static_cast<double>(mColors.size() - 1);

    // Color indices
    const int i = static_cast<int>(floor(intensity));
    const int j = static_cast<int>(ceil(intensity));

    if (i == j)
    {
        // Exact color.
        color[0] = mColors[i].value[0];
        color[1] = mColors[i].value[1];
        color[2] = mColors[i].value[2];
        return;
    }

    intensity -= i;
    const double rest = 1 - intensity;

    // Get the colors
    const int r1 = mColors[i].value[0];
    const int g1 = mColors[i].value[1];
    const int b1 = mColors[i].value[2];
    const int r2 = mColors[j].value[0];
    const int g2 = mColors[j].value[1];
    const int b2 = mColors[j].value[2];

    // Perform the interpolation.
    color[0] = static_cast<int>(rest * r1 + intensity * r2);
    color[1] = static_cast<int>(rest * g1 + intensity * g2);
    color[2] = static_cast<int>(rest * b1 + intensity * b2);
}

void DyePalette::replaceSColor(uint8_t *const color) const
{
    std::vector<Color>::const_iterator it = mColors.begin();
    const std::vector<Color>::const_iterator it_end = mColors.end();
    while (it != it_end)
    {
        const Color &col = *it;
        ++ it;
        if (it == it_end)
            return;
        const Color &col2 = *it;
        if (color[0] == col.value[0] && color[1] == col.value[1]
            && color[2] == col.value[2])
        {
            color[2] = col2.value[0];
            color[1] = col2.value[1];
            color[0] = col2.value[2];
            return;
        }
        ++ it;
    }
}

void DyePalette::replaceAColor(uint8_t *const color) const
{
    std::vector<Color>::const_iterator it = mColors.begin();
    const std::vector<Color>::const_iterator it_end = mColors.end();
    while (it != it_end)
    {
        const Color &col = *it;
        ++ it;
        if (it == it_end)
            return;
        const Color &col2 = *it;
        if (color[1] == col.value[0] && color[2] == col.value[1]
            && color[3] == col.value[2] && color[0] == col.value[3])
        {
            color[3] = col2.value[0];
            color[2] = col2.value[1];
            color[1] = col2.value[2];
            color[0] = col2.value[3];
            return;
        }
        ++ it;
    }
}

void DyePalette::replaceSOGLColor(uint8_t *const color) const
{
    std::vector<Color>::const_iterator it = mColors.begin();
    const std::vector<Color>::const_iterator it_end = mColors.end();
    while (it != it_end)
    {
        const Color &col = *it;
        ++ it;
        if (it == it_end)
            return;
        const Color &col2 = *it;
        if (color[2] == col.value[0] && color[1] == col.value[1]
            && color[0] == col.value[2])
        {
            color[0] = col2.value[0];
            color[1] = col2.value[1];
            color[2] = col2.value[2];
            return;
        }
        ++ it;
    }
}

void DyePalette::replaceAOGLColor(uint8_t *const color) const
{
    std::vector<Color>::const_iterator it = mColors.begin();
    const std::vector<Color>::const_iterator it_end = mColors.end();
    while (it != it_end)
    {
        const Color &col = *it;
        ++ it;
        if (it == it_end)
            return;
        const Color &col2 = *it;
        if (color[2] == col.value[0] && color[1] == col.value[1]
            && color[0] == col.value[2] && color[3] == col.value[3])
        {
            color[0] = col2.value[0];
            color[1] = col2.value[1];
            color[2] = col2.value[2];
            color[3] = col2.value[3];
            return;
        }
        ++ it;
    }
}

Dye::Dye(const std::string &description)
{
    for (int i = 0; i < dyePalateSize; ++i)
        mDyePalettes[i] = nullptr;

    if (description.empty())
        return;

    size_t next_pos = 0;
    const size_t length = description.length();
    do
    {
        const size_t pos = next_pos;
        next_pos = description.find(';', pos);

        if (next_pos == std::string::npos)
            next_pos = length;

        if (next_pos <= pos + 3 || description[pos + 1] != ':')
        {
            logger->log("Error, invalid dye: %s", description.c_str());
            return;
        }

        int i = 0;

        switch (description[pos])
        {
            case 'R': i = 0; break;
            case 'G': i = 1; break;
            case 'Y': i = 2; break;
            case 'B': i = 3; break;
            case 'M': i = 4; break;
            case 'C': i = 5; break;
            case 'W': i = 6; break;
            case 'S': i = 7; break;
            case 'A': i = 8; break;
            default:
                logger->log("Error, invalid dye: %s", description.c_str());
                return;
        }
        mDyePalettes[i] = new DyePalette(description.substr(
            pos + 2, next_pos - pos - 2), i != 8 ? 6 : 8);
        ++next_pos;
    }
    while (next_pos < length);
}

Dye::~Dye()
{
    for (int i = 0; i < dyePalateSize; ++i)
    {
        delete mDyePalettes[i];
        mDyePalettes[i] = nullptr;
    }
}

void Dye::update(int color[3]) const
{
    const int cmax = std::max(color[0], std::max(color[1], color[2]));
    if (cmax == 0)
        return;

    const int cmin = std::min(color[0], std::min(color[1], color[2]));
    const int intensity = color[0] + color[1] + color[2];

    if (cmin != cmax && (cmin != 0 || (intensity != cmax
        && intensity != 2 * cmax)))
    {
        // not pure
        return;
    }

    const int i = (color[0] != 0) | ((color[1] != 0) << 1)
        | ((color[2] != 0) << 2);

    if (mDyePalettes[i - 1])
        mDyePalettes[i - 1]->getColor(cmax, color);
}

void Dye::instantiate(std::string &target, const std::string &palettes)
{
    size_t next_pos = target.find('|');

    if (next_pos == std::string::npos || palettes.empty())
        return;

    ++next_pos;

    std::ostringstream s;
    s << target.substr(0, next_pos);
    size_t last_pos = target.length(), pal_pos = 0;
    do
    {
        const size_t pos = next_pos;
        next_pos = target.find(';', pos);

        if (next_pos == std::string::npos)
            next_pos = last_pos;

        if (next_pos == pos + 1 && pal_pos != std::string::npos)
        {
            const size_t pal_next_pos = palettes.find(';', pal_pos);
            s << target[pos] << ':';
            if (pal_next_pos == std::string::npos)
            {
                s << palettes.substr(pal_pos);
                s << target.substr(next_pos);
                //pal_pos = std::string::npos;
                break;
            }
            s << palettes.substr(pal_pos, pal_next_pos - pal_pos);
            pal_pos = pal_next_pos + 1;
        }
        else if (next_pos > pos + 2)
        {
            s << target.substr(pos, next_pos - pos);
        }
        else
        {
            logger->log("Error, invalid dye placeholder: %s", target.c_str());
            return;
        }
        s << target[next_pos];
        ++next_pos;
    }
    while (next_pos < last_pos);

    target = s.str();
}

int Dye::getType() const
{
    if (mDyePalettes[sPaleteIndex])
        return 1;
    if (mDyePalettes[aPaleteIndex])
        return 2;
    return 0;
}