-
Notifications
You must be signed in to change notification settings - Fork 15
/
FF8Image.h
50 lines (43 loc) · 1.91 KB
/
FF8Image.h
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
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <[email protected]>
**
** 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 3 of the License, or
** (at your option) 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/>.
****************************************************************************/
#ifndef FF8IMAGE_H
#define FF8IMAGE_H
#include <QtGui>
#include "LZS.h"
#define COEFF_COLOR 8.2258064516129032258064516129032 // 255/31
class FF8Image
{
public:
static inline quint16 toPsColor(const QRgb &color) {
return (qRound(qRed(color)/COEFF_COLOR) & 31) | ((qRound(qGreen(color)/COEFF_COLOR) & 31) << 5) | ((qRound(qBlue(color)/COEFF_COLOR) & 31) << 10) | ((qAlpha(color)==255) << 15);
}
static inline QRgb fromPsColor(quint16 color, bool useAlpha=false) {
quint8 r = color & 31,
g = (color >> 5) & 31,
b = (color >> 10) & 31;
return qRgba((r << 3) + (r >> 2), (g << 3) + (g >> 2), (b << 3) + (b >> 2), color == 0 && useAlpha ? 0 : 255);
}
static QPixmap lzs(const QByteArray &data);
static QByteArray toLzs(const QImage &image, quint16 u1, quint16 u2);
static QList<int> findTims(const QByteArray &data);
static QImage errorImage();
static QPixmap errorPixmap();
private:
static void error(QPaintDevice *pd);
};
#endif // FF8IMAGE_H