Root/
Source at commit 7b10f9448bb9965e94f9a37a59f0999e9c51e68f created 8 years 1 month ago. By Maarten ter Huurne, Suppress Clang analyzer warnings about dead assignments | |
---|---|
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 | |
26 | class OffscreenSurface; |
27 | class Surface; |
28 | |
29 | typedef std::unordered_map<std::string, OffscreenSurface *> SurfaceHash; |
30 | |
31 | /** |
32 | Hash Map of surfaces that loads surfaces not already loaded and reuses already loaded ones. |
33 | |
34 | @author Massimiliano Torromeo <massimiliano.torromeo@gmail.com> |
35 | */ |
36 | class SurfaceCollection { |
37 | public: |
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 | |
56 | private: |
57 | OffscreenSurface *add(const std::string &path); |
58 | |
59 | SurfaceHash surfaces; |
60 | std::string skin; |
61 | }; |
62 | |
63 | #endif |
64 |
Branches:
install_locations
master
opkrun
packages