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
|
/*
Copyright (C) 1997 Mathias Mueller <in5y158@public.uni-hamburg.de>
Copyright (C) 2006 Mauricio Piacentini <mauricio@tabuleiro.com>
Libkmahjongg 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
(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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
// own
#include "kmahjonggbackground.h"
// Qt
#include <QFile>
#include <QImage>
#include <QMap>
#include <QPainter>
#include <QPixmap>
#include <QPixmapCache>
#include <QSvgRenderer>
// KDE
#include <KConfig>
#include <KConfigGroup>
#include <KLocalizedString>
// LibKMahjongg
#include "libkmahjongg_debug.h"
class KMahjonggBackgroundPrivate
{
public:
KMahjonggBackgroundPrivate()
: w(1)
, h(1)
, graphicsLoaded(false)
, isPlain(false)
, isTiled(true)
, isSVG(false)
{
}
QMap<QString, QString> authorproperties;
QString pixmapCacheNameFromElementId(const QString & elementid);
QPixmap renderBG(short width, short height);
QPixmap backgroundPixmap;
QBrush backgroundBrush;
QString filename;
QString graphicspath;
short w;
short h;
QSvgRenderer svg;
bool graphicsLoaded;
bool isPlain;
bool isTiled;
bool isSVG;
};
KMahjonggBackground::KMahjonggBackground()
: d(new KMahjonggBackgroundPrivate)
{
static bool _inited = false;
if (_inited) {
return;
}
_inited = true;
}
KMahjonggBackground::~KMahjonggBackground()
{
delete d;
}
bool KMahjonggBackground::loadDefault()
{
// Set default background here.
QLatin1String idx("egyptian.desktop");
QString bgPath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "kmahjongglib/backgrounds/" + idx);
qCDebug(LIBKMAHJONGG_LOG) << "Inside LoadDefault(), located background at" << bgPath;
if (bgPath.isEmpty()) {
return false;
}
return load(bgPath, 0, 0);
}
#define kBGVersionFormat 1
bool KMahjonggBackground::load(const QString & file, short width, short height)
{
//qCDebug(LIBKMAHJONGG_LOG) << "Background loading";
d->isSVG = false;
//qCDebug(LIBKMAHJONGG_LOG) << "Attempting to load .desktop at" << file;
// verify if it is a valid file first and if we can open it
QFile bgfile(file);
if (!bgfile.open(QIODevice::ReadOnly)) {
return false;
}
bgfile.close();
KConfig bgconfig(file, KConfig::SimpleConfig);
KConfigGroup group = bgconfig.group("KMahjonggBackground");
d->authorproperties.insert(QLatin1String("Name"), group.readEntry("Name")); // Returns translated data
d->authorproperties.insert(QLatin1String("Author"), group.readEntry("Author"));
d->authorproperties.insert(QLatin1String("Description"), group.readEntry("Description"));
d->authorproperties.insert(QLatin1String("AuthorEmail"), group.readEntry("AuthorEmail"));
//The "Plain" key is set to 1 by the color_plain background.
d->isPlain = group.readEntry("Plain", 0) != 0;
d->authorproperties.insert(QLatin1String("Plain"), d->isPlain ? QLatin1String("1") : QLatin1String("0"));
//Version control
int bgversion = group.readEntry("VersionFormat", 0);
//Format is increased when we have incompatible changes, meaning that older clients are not able to use the remaining information safely
if (bgversion > kBGVersionFormat) {
return false;
}
if (d->isPlain) {
//qCDebug(LIBKMAHJONGG_LOG) << "Using plain background";
d->graphicspath.clear();
d->filename = file;
return true;
}
QString graphName = group.readEntry("FileName");
d->graphicspath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "kmahjongglib/backgrounds/" + graphName);
qCDebug(LIBKMAHJONGG_LOG) << "Using background at" << d->graphicspath;
if (d->graphicspath.isEmpty()) {
return false;
}
if (group.readEntry("Tiled", 0) != 0) {
d->w = group.readEntry("Width", 0);
d->h = group.readEntry("Height", 0);
d->isTiled = true;
} else {
d->w = width;
d->h = height;
d->isTiled = false;
}
d->graphicsLoaded = false;
d->filename = file;
return true;
}
bool KMahjonggBackground::loadGraphics()
{
if (d->graphicsLoaded || d->isPlain) {
return true;
}
d->svg.load(d->graphicspath);
if (d->svg.isValid()) {
d->isSVG = true;
} else {
//qCDebug(LIBKMAHJONGG_LOG) << "could not load svg";
return false;
}
return true;
}
void KMahjonggBackground::sizeChanged(int newW, int newH)
{
//in tiled mode we do not care about the whole field size
if (d->isTiled || d->isPlain) {
return;
}
if (newW == d->w && newH == d->h) {
return;
}
d->w = newW;
d->h = newH;
}
QString KMahjonggBackgroundPrivate::pixmapCacheNameFromElementId(const QString & elementid)
{
return authorproperties[QLatin1String("Name")] + elementid + QString::fromLatin1("W%1H%2").arg(w).arg(h);
}
QPixmap KMahjonggBackgroundPrivate::renderBG(short width, short height)
{
QImage qiRend(QSize(width, height), QImage::Format_ARGB32_Premultiplied);
qiRend.fill(0);
if (svg.isValid()) {
QPainter p(&qiRend);
svg.render(&p);
}
return QPixmap::fromImage(qiRend);
}
QBrush & KMahjonggBackground::getBackground()
{
if (d->isPlain) {
d->backgroundBrush = QBrush(QPixmap());
} else {
if (!QPixmapCache::find(d->pixmapCacheNameFromElementId(d->filename), &d->backgroundPixmap)) {
d->backgroundPixmap = d->renderBG(d->w, d->h);
QPixmapCache::insert(d->pixmapCacheNameFromElementId(d->filename), d->backgroundPixmap);
}
d->backgroundBrush = QBrush(d->backgroundPixmap);
}
return d->backgroundBrush;
}
QString KMahjonggBackground::path() const
{
return d->filename;
}
QString KMahjonggBackground::authorProperty(const QString & key) const
{
return d->authorproperties[key];
}
|