mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-16 21:53:08 +02:00
e6be835038
This is in preparation of replacing SDL_image with direct use of libpng.
142 lines
4.2 KiB
C++
142 lines
4.2 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2006 by Massimiliano Torromeo *
|
|
* massimiliano.torromeo@gmail.com *
|
|
* *
|
|
* 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 *
|
|
* (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., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
|
|
#include "surfacecollection.h"
|
|
#include "surface.h"
|
|
#include "utilities.h"
|
|
#include "debug.h"
|
|
|
|
#include <iostream>
|
|
|
|
using std::endl;
|
|
using std::string;
|
|
|
|
SurfaceCollection::SurfaceCollection(bool defaultAlpha, const string &skin) {
|
|
this->defaultAlpha = defaultAlpha;
|
|
setSkin(skin);
|
|
}
|
|
|
|
SurfaceCollection::~SurfaceCollection() {}
|
|
|
|
void SurfaceCollection::setSkin(const string &skin) {
|
|
this->skin = skin;
|
|
}
|
|
|
|
string SurfaceCollection::getSkinFilePath(const string &file) {
|
|
string prefix = "/usr/share/gmenu2x/";
|
|
if (fileExists("skins/"+skin+"/"+file))
|
|
return "skins/"+skin+"/"+file;
|
|
else if (fileExists("skins/Default/"+file))
|
|
return "skins/Default/"+file;
|
|
else if (fileExists(prefix+"skins/Default/"+file))
|
|
return prefix+"skins/Default/"+file;
|
|
else
|
|
return "";
|
|
}
|
|
|
|
void SurfaceCollection::debug() {
|
|
SurfaceHash::iterator end = surfaces.end();
|
|
for(SurfaceHash::iterator curr = surfaces.begin(); curr != end; curr++){
|
|
DEBUG("key: %i\n", curr->first);
|
|
}
|
|
}
|
|
|
|
bool SurfaceCollection::exists(const string &path) {
|
|
return surfaces.find(path) != surfaces.end();
|
|
}
|
|
|
|
Surface *SurfaceCollection::add(Surface *s, const string &path) {
|
|
if (exists(path)) del(path);
|
|
surfaces[path] = s;
|
|
return s;
|
|
}
|
|
|
|
Surface *SurfaceCollection::add(const string &path, bool alpha) {
|
|
DEBUG("Adding surface: '%s'\n", path.c_str());
|
|
|
|
if (exists(path)) del(path);
|
|
string filePath = path;
|
|
|
|
if (filePath.substr(0,5)=="skin:") {
|
|
filePath = getSkinFilePath(filePath.substr(5,filePath.length()));
|
|
if (filePath.empty())
|
|
return NULL;
|
|
} else if (!fileExists(filePath)) return NULL;
|
|
|
|
Surface *s = new Surface(filePath,alpha);
|
|
surfaces[path] = s;
|
|
return s;
|
|
}
|
|
|
|
Surface *SurfaceCollection::addSkinRes(const string &path, bool alpha) {
|
|
DEBUG("Adding skin surface: '%s'\n", path.c_str());
|
|
|
|
if (path.empty()) return NULL;
|
|
if (exists(path)) del(path);
|
|
|
|
string skinpath = getSkinFilePath(path);
|
|
if (skinpath.empty())
|
|
return NULL;
|
|
Surface *s = new Surface(skinpath,alpha);
|
|
if (s != NULL)
|
|
surfaces[path] = s;
|
|
return s;
|
|
}
|
|
|
|
void SurfaceCollection::del(const string &path) {
|
|
SurfaceHash::iterator i = surfaces.find(path);
|
|
if (i != surfaces.end()) {
|
|
free(i->second);
|
|
surfaces.erase(i);
|
|
}
|
|
}
|
|
|
|
void SurfaceCollection::clear() {
|
|
while (surfaces.size()>0) {
|
|
surfaces.begin()->second->free();
|
|
free(surfaces.begin()->second);
|
|
surfaces.erase(surfaces.begin());
|
|
}
|
|
}
|
|
|
|
void SurfaceCollection::move(const string &from, const string &to) {
|
|
del(to);
|
|
surfaces[to] = surfaces[from];
|
|
surfaces.erase(from);
|
|
}
|
|
|
|
Surface *SurfaceCollection::operator[](const string &key) {
|
|
SurfaceHash::iterator i = surfaces.find(key);
|
|
if (i == surfaces.end())
|
|
return add(key, defaultAlpha);
|
|
else
|
|
return i->second;
|
|
}
|
|
|
|
Surface *SurfaceCollection::skinRes(const string &key) {
|
|
if (key.empty()) return NULL;
|
|
|
|
SurfaceHash::iterator i = surfaces.find(key);
|
|
if (i == surfaces.end())
|
|
return addSkinRes(key, defaultAlpha);
|
|
else
|
|
return i->second;
|
|
}
|