summaryrefslogtreecommitdiff
path: root/src/gui/palette.cpp
blob: 948660d27a8fb3f8f2e77940071c3810bc2878cf (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
/*
 *  Configurable text colors
 *  Copyright (C) 2008  Douglas Boffey <dougaboffey@netscape.net>
 *  Copyright (C) 2009  The Mana World Development Team
 *  Copyright (C) 2009-2012  The Mana Developers
 *
 *  This file is part of The Mana 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 "palette.h"

#include <cmath>

static constexpr double PI = 3.14159265;
Timer Palette::mRainbowTimer;
Palette::Palettes Palette::mInstances;

const gcn::Color Palette::RAINBOW_COLORS[7] = {
    gcn::Color(255, 0, 0),
    gcn::Color(255, 153, 0),
    gcn::Color(255, 255, 0),
    gcn::Color(0, 153, 0),
    gcn::Color(0, 204, 204),
    gcn::Color(51, 0, 153),
    gcn::Color(153, 0, 153)
};
/** Number of Elemets of RAINBOW_COLORS */
const int Palette::RAINBOW_COLOR_COUNT = 7;

Palette::Palette(int size) :
    mColors(size)
{
    mInstances.insert(this);
}

Palette::Palette(Palette &&pal)
    : mColors(std::move(pal.mColors))
    , mGradVector(std::move(pal.mGradVector))
{
    mInstances.insert(this);
}

Palette::~Palette()
{
    mInstances.erase(this);
}

Palette &Palette::operator=(Palette &&pal)
{
    if (this != &pal)
    {
        mColors = std::move(pal.mColors);
        mGradVector = std::move(pal.mGradVector);
    }
    return *this;
}

void Palette::setColor(int type,
                       const gcn::Color &color,
                       const std::optional<gcn::Color> &outlineColor,
                       GradientType grad,
                       int delay)
{
    auto &elem = mColors[type];
    elem.set(type, color, grad, delay);
    elem.outlineColor = outlineColor;
}

void Palette::advanceGradients()
{
    const int advance = mRainbowTimer.elapsed() / 5;
    if (advance <= 0)
        return;

    mRainbowTimer.extend(advance * 5);

    for (auto palette : mInstances)
        palette->advanceGradient(advance);
}

void Palette::advanceGradient(int advance)
{
    for (auto elem : mGradVector)
    {
        int delay = elem->delay;

        if (elem->grad == PULSE)
            delay = delay / 20;

        const int numOfColors = (elem->grad == SPECTRUM ? 6 :
                                 elem->grad == PULSE ? 127 :
                                 RAINBOW_COLOR_COUNT);

        elem->gradientIndex = (elem->gradientIndex + advance) %
                              (delay * numOfColors);

        const int pos = elem->gradientIndex % delay;
        const int colIndex = elem->gradientIndex / delay;

        switch (elem->grad) {
        case STATIC:
            break;
        case PULSE: {
            const int colVal = (int) (255.0 * sin(PI * colIndex / numOfColors));
            const gcn::Color &col = elem->testColor;

            elem->color.r = ((colVal * col.r) / 255) % (col.r + 1);
            elem->color.g = ((colVal * col.g) / 255) % (col.g + 1);
            elem->color.b = ((colVal * col.b) / 255) % (col.b + 1);
            break;
        }
        case SPECTRUM: {
            int colVal;

            if (colIndex % 2)
            { // falling curve
                colVal = (int)(255.0 * (cos(PI * pos / delay) + 1) / 2);
            }
            else
            { // ascending curve
                colVal = (int)(255.0 * (cos(PI * (delay - pos) / delay) +
                                1) / 2);
            }

            elem->color.r =
                    (colIndex == 0 || colIndex == 5) ? 255 :
                    (colIndex == 1 || colIndex == 4) ? colVal : 0;
            elem->color.g =
                    (colIndex == 1 || colIndex == 2) ? 255 :
                    (colIndex == 0 || colIndex == 3) ? colVal : 0;
            elem->color.b =
                    (colIndex == 3 || colIndex == 4) ? 255 :
                    (colIndex == 2 || colIndex == 5) ? colVal : 0;
            break;
        }
        case RAINBOW: {
            const gcn::Color &startCol = RAINBOW_COLORS[colIndex];
            const gcn::Color &destCol =
                    RAINBOW_COLORS[(colIndex + 1) % numOfColors];

            const double startColVal = (cos(PI * pos / delay) + 1) / 2;
            const double destColVal = 1 - startColVal;

            elem->color.r =(int)(startColVal * startCol.r +
                                            destColVal * destCol.r);

            elem->color.g =(int)(startColVal * startCol.g +
                                            destColVal * destCol.g);

            elem->color.b =(int)(startColVal * startCol.b +
                                            destColVal * destCol.b);
            break;
        }
        }
    }
}