1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
4 |
|
|
* Copyright (C) 2019-2021 Andrei Karas |
5 |
|
|
* |
6 |
|
|
* This file is part of The ManaPlus Client. |
7 |
|
|
* |
8 |
|
|
* This program is free software; you can redistribute it and/or modify |
9 |
|
|
* it under the terms of the GNU General Public License as published by |
10 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
11 |
|
|
* any later version. |
12 |
|
|
* |
13 |
|
|
* This program is distributed in the hope that it will be useful, |
14 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 |
|
|
* GNU General Public License for more details. |
17 |
|
|
* |
18 |
|
|
* You should have received a copy of the GNU General Public License |
19 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 |
|
|
*/ |
21 |
|
|
|
22 |
|
|
#ifdef USE_OPENGL |
23 |
|
|
|
24 |
|
|
#include "resources/atlas/atlasmanager.h" |
25 |
|
|
#include "resources/atlas/atlasresource.h" |
26 |
|
|
|
27 |
|
|
#include "resources/loaders/emptyatlasloader.h" |
28 |
|
|
|
29 |
|
|
#include "resources/resourcemanager/resourcemanager.h" |
30 |
|
|
|
31 |
|
|
#include "utils/checkutils.h" |
32 |
|
|
|
33 |
|
|
#include "debug.h" |
34 |
|
|
|
35 |
|
|
struct EmptyAtlasLoader final |
36 |
|
|
{ |
37 |
|
|
A_DEFAULT_COPY(EmptyAtlasLoader) |
38 |
|
|
|
39 |
|
|
const std::string name; |
40 |
|
|
const StringVect *const files; |
41 |
|
|
|
42 |
|
|
static Resource *load(const void *const v) |
43 |
|
|
{ |
44 |
|
|
if (v == nullptr) |
45 |
|
|
return nullptr; |
46 |
|
|
|
47 |
|
|
const EmptyAtlasLoader *const rl = |
48 |
|
|
static_cast<const EmptyAtlasLoader *>(v); |
49 |
|
|
AtlasResource *const resource = AtlasManager::loadEmptyAtlas( |
50 |
|
|
rl->name, *rl->files); |
51 |
|
|
if (resource == nullptr) |
52 |
|
|
reportAlways("Empty atlas creation error: %s", rl->name.c_str()) |
53 |
|
|
return resource; |
54 |
|
|
} |
55 |
|
|
}; |
56 |
|
|
|
57 |
|
|
Resource *Loader::getEmptyAtlas(const std::string &name, |
58 |
|
|
const StringVect &files) |
59 |
|
|
{ |
60 |
|
|
EmptyAtlasLoader rl = { name, &files }; |
61 |
|
|
return ResourceManager::get("atlas_" + name, EmptyAtlasLoader::load, &rl); |
62 |
|
|
} |
63 |
|
|
|
64 |
|
|
#endif // USE_OPENGL |