Root/src/surfacecollection.h

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 Surface;
27
28typedef std::unordered_map<std::string, Surface *> SurfaceHash;
29
30/**
31Hash Map of surfaces that loads surfaces not already loaded and reuses already loaded ones.
32
33    @author Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
34*/
35class SurfaceCollection {
36public:
37    SurfaceCollection();
38    ~SurfaceCollection();
39
40    void setSkin(const std::string &skin);
41    std::string getSkinFilePath(const std::string &file, bool useDefault = true);
42    static std::string getSkinFilePath(const std::string &skin, const std::string &file, bool useDefault = true);
43    static std::string getSkinPath(const std::string &skin);
44
45    bool defaultAlpha;
46    void debug();
47
48    Surface *add(Surface *s, const std::string &path);
49    Surface *add(const std::string &path);
50    Surface *addSkinRes(const std::string &path, bool useDefault = true);
51    void del(const std::string &path);
52    void clear();
53    void move(const std::string &from, const std::string &to);
54    bool exists(const std::string &path);
55
56    Surface *operator[](const std::string &);
57    Surface *skinRes(const std::string &key, bool useDefault = true);
58
59private:
60    SurfaceHash surfaces;
61    std::string skin;
62};
63
64#endif
65

Archive Download this file



interactive