Root/src/surfacecollection.h

Source at commit 73ceffa51d3450d2d20ce933e7fc6da187e09fc8 created 8 years 5 months ago.
By Maarten ter Huurne, Fix bug in section directory creation method
1/***************************************************************************
2 * Copyright (C) 2006 by Massimiliano Torromeo *
3 * massimiliano.torromeo@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20#ifndef SURFACECOLLECTION_H
21#define SURFACECOLLECTION_H
22
23#include <string>
24#include <unordered_map>
25
26class OffscreenSurface;
27class Surface;
28
29typedef std::unordered_map<std::string, OffscreenSurface *> SurfaceHash;
30
31/**
32Hash Map of surfaces that loads surfaces not already loaded and reuses already loaded ones.
33
34    @author Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
35*/
36class SurfaceCollection {
37public:
38    SurfaceCollection();
39    ~SurfaceCollection();
40
41    void setSkin(const std::string &skin);
42    std::string getSkinFilePath(const std::string &file, bool useDefault = true);
43    static std::string getSkinPath(const std::string &skin);
44
45    void debug();
46
47    OffscreenSurface *addSkinRes(const std::string &path, bool useDefault = true);
48    void del(const std::string &path);
49    void clear();
50    void move(const std::string &from, const std::string &to);
51    bool exists(const std::string &path);
52
53    OffscreenSurface *operator[](const std::string &);
54    OffscreenSurface *skinRes(const std::string &key, bool useDefault = true);
55
56private:
57    OffscreenSurface *add(const std::string &path);
58
59    SurfaceHash surfaces;
60    std::string skin;
61};
62
63#endif
64

Archive Download this file



interactive