Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | // resource.cpp - Source to manage GUI resources |
| 2 | |
| 3 | #include <stdarg.h> |
| 4 | #include <stdio.h> |
| 5 | #include <stdlib.h> |
| 6 | #include <string.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 7 | #include <unistd.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 8 | |
| 9 | #include <string> |
| 10 | #include <sstream> |
| 11 | #include <iostream> |
| 12 | #include <iomanip> |
| 13 | |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 14 | #include "../minzip/Zip.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 15 | extern "C" { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 16 | #include "../twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 17 | #include "../minuitwrp/minui.h" |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 18 | #include "gui.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | #include "rapidxml.hpp" |
| 22 | #include "objects.hpp" |
| 23 | |
| 24 | #define TMP_RESOURCE_NAME "/tmp/extract.bin" |
| 25 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 26 | Resource::Resource(xml_node<>* node, ZipArchive* pZip __unused) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 27 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 28 | if (node && node->first_attribute("name")) |
| 29 | mName = node->first_attribute("name")->value(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 30 | } |
| 31 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 32 | int Resource::ExtractResource(ZipArchive* pZip, std::string folderName, std::string fileName, std::string fileExtn, std::string destFile) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 33 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 34 | if (!pZip) |
| 35 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 36 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 37 | std::string src = folderName + "/" + fileName + fileExtn; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 38 | |
| 39 | const ZipEntry* binary = mzFindZipEntry(pZip, src.c_str()); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 40 | if (binary == NULL) { |
| 41 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 42 | } |
| 43 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 44 | unlink(destFile.c_str()); |
| 45 | int fd = creat(destFile.c_str(), 0666); |
| 46 | if (fd < 0) |
| 47 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 48 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 49 | int ret = 0; |
| 50 | if (!mzExtractZipEntryToFile(pZip, binary, fd)) |
| 51 | ret = -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 52 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 53 | close(fd); |
| 54 | return ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 55 | } |
| 56 | |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 57 | void Resource::LoadImage(ZipArchive* pZip, std::string file, gr_surface* source) |
| 58 | { |
| 59 | if (ExtractResource(pZip, "images", file, ".png", TMP_RESOURCE_NAME) == 0) |
| 60 | { |
| 61 | res_create_surface(TMP_RESOURCE_NAME, source); |
| 62 | unlink(TMP_RESOURCE_NAME); |
| 63 | } |
| 64 | else if (ExtractResource(pZip, "images", file, "", TMP_RESOURCE_NAME) == 0) |
| 65 | { |
| 66 | // JPG includes the .jpg extension in the filename so extension should be blank |
| 67 | res_create_surface(TMP_RESOURCE_NAME, source); |
| 68 | unlink(TMP_RESOURCE_NAME); |
| 69 | } |
| 70 | else if (!pZip) |
| 71 | { |
| 72 | // File name in xml may have included .png so try without adding .png |
| 73 | res_create_surface(file.c_str(), source); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void Resource::CheckAndScaleImage(gr_surface source, gr_surface* destination, int retain_aspect) |
| 78 | { |
| 79 | if (!source) { |
| 80 | *destination = NULL; |
| 81 | return; |
| 82 | } |
| 83 | if (get_scale_w() != 0 && get_scale_h() != 0) { |
| 84 | float scale_w = get_scale_w(), scale_h = get_scale_h(); |
| 85 | if (retain_aspect) { |
| 86 | if (scale_w < scale_h) |
| 87 | scale_h = scale_w; |
| 88 | else |
| 89 | scale_w = scale_h; |
| 90 | } |
| 91 | if (res_scale_surface(source, destination, scale_w, scale_h)) { |
| 92 | LOGINFO("Error scaling image, using regular size.\n"); |
| 93 | *destination = source; |
| 94 | } |
| 95 | } else { |
| 96 | *destination = source; |
| 97 | } |
| 98 | } |
| 99 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 100 | FontResource::FontResource(xml_node<>* node, ZipArchive* pZip) |
| 101 | : Resource(node, pZip) |
| 102 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 103 | std::string file; |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 104 | xml_attribute<>* attr; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 105 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 106 | mFont = NULL; |
| 107 | if (!node) |
| 108 | return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 109 | |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 110 | attr = node->first_attribute("filename"); |
| 111 | if (!attr) |
| 112 | return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 113 | |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 114 | file = attr->value(); |
| 115 | |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 116 | if(file.size() >= 4 && file.compare(file.size()-4, 4, ".ttf") == 0) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 117 | { |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 118 | m_type = TYPE_TTF; |
| 119 | |
| 120 | attr = node->first_attribute("size"); |
| 121 | if(!attr) |
| 122 | return; |
| 123 | |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 124 | int size = scale_theme_min(atoi(attr->value())); |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 125 | int dpi = 300; |
| 126 | |
| 127 | attr = node->first_attribute("dpi"); |
| 128 | if(attr) |
| 129 | dpi = atoi(attr->value()); |
| 130 | |
| 131 | if (ExtractResource(pZip, "fonts", file, "", TMP_RESOURCE_NAME) == 0) |
| 132 | { |
| 133 | mFont = gr_ttf_loadFont(TMP_RESOURCE_NAME, size, dpi); |
| 134 | unlink(TMP_RESOURCE_NAME); |
| 135 | } |
| 136 | else |
| 137 | { |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 138 | file = std::string(TWRES "fonts/") + file; |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 139 | mFont = gr_ttf_loadFont(file.c_str(), size, dpi); |
| 140 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 141 | } |
| 142 | else |
| 143 | { |
Ethan Yonker | 88037f4 | 2015-10-04 22:09:08 -0500 | [diff] [blame] | 144 | LOGERR("Non-TTF fonts are no longer supported.\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 145 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | FontResource::~FontResource() |
| 149 | { |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 150 | if(mFont) |
| 151 | { |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 152 | if(m_type == TYPE_TTF) |
| 153 | gr_ttf_freeFont(mFont); |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 154 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 155 | } |
| 156 | |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 157 | ImageResource::ImageResource(xml_node<>* node, ZipArchive* pZip) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 158 | : Resource(node, pZip) |
| 159 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 160 | std::string file; |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 161 | gr_surface temp_surface = NULL; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 162 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 163 | mSurface = NULL; |
Ethan Yonker | 619a721 | 2014-12-03 16:47:37 -0600 | [diff] [blame] | 164 | if (!node) { |
| 165 | LOGERR("ImageResource node is NULL\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 166 | return; |
Ethan Yonker | 619a721 | 2014-12-03 16:47:37 -0600 | [diff] [blame] | 167 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 168 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 169 | if (node->first_attribute("filename")) |
| 170 | file = node->first_attribute("filename")->value(); |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 171 | else { |
| 172 | LOGERR("No filename specified for image resource.\n"); |
| 173 | return; |
| 174 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 175 | |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 176 | bool retain_aspect = (node->first_attribute("retainaspect") != NULL); |
| 177 | // the value does not matter, if retainaspect is present, we assume that we want to retain it |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 178 | LoadImage(pZip, file, &temp_surface); |
| 179 | CheckAndScaleImage(temp_surface, &mSurface, retain_aspect); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | ImageResource::~ImageResource() |
| 183 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 184 | if (mSurface) |
| 185 | res_free_surface(mSurface); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 186 | } |
| 187 | |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 188 | AnimationResource::AnimationResource(xml_node<>* node, ZipArchive* pZip) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 189 | : Resource(node, pZip) |
| 190 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 191 | std::string file; |
| 192 | int fileNum = 1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 193 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 194 | if (!node) |
| 195 | return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 196 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 197 | if (node->first_attribute("filename")) |
| 198 | file = node->first_attribute("filename")->value(); |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 199 | else { |
| 200 | LOGERR("No filename specified for image resource.\n"); |
| 201 | return; |
| 202 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 203 | |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 204 | bool retain_aspect = (node->first_attribute("retainaspect") != NULL); |
| 205 | // the value does not matter, if retainaspect is present, we assume that we want to retain it |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 206 | for (;;) |
| 207 | { |
| 208 | std::ostringstream fileName; |
| 209 | fileName << file << std::setfill ('0') << std::setw (3) << fileNum; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 210 | |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 211 | gr_surface surface, temp_surface = NULL; |
| 212 | LoadImage(pZip, fileName.str(), &temp_surface); |
| 213 | CheckAndScaleImage(temp_surface, &surface, retain_aspect); |
| 214 | if (surface) { |
| 215 | mSurfaces.push_back(surface); |
| 216 | fileNum++; |
| 217 | } else |
| 218 | break; // Done loading animation images |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 219 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | AnimationResource::~AnimationResource() |
| 223 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 224 | std::vector<gr_surface>::iterator it; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 225 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 226 | for (it = mSurfaces.begin(); it != mSurfaces.end(); ++it) |
| 227 | res_free_surface(*it); |
| 228 | |
| 229 | mSurfaces.clear(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 230 | } |
| 231 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 232 | FontResource* ResourceManager::FindFont(const std::string& name) const |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 233 | { |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 234 | for (std::vector<FontResource*>::const_iterator it = mFonts.begin(); it != mFonts.end(); ++it) |
| 235 | if (name == (*it)->GetName()) |
| 236 | return *it; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 237 | return NULL; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 238 | } |
| 239 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 240 | ImageResource* ResourceManager::FindImage(const std::string& name) const |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 241 | { |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 242 | for (std::vector<ImageResource*>::const_iterator it = mImages.begin(); it != mImages.end(); ++it) |
| 243 | if (name == (*it)->GetName()) |
| 244 | return *it; |
| 245 | return NULL; |
| 246 | } |
| 247 | |
| 248 | AnimationResource* ResourceManager::FindAnimation(const std::string& name) const |
| 249 | { |
| 250 | for (std::vector<AnimationResource*>::const_iterator it = mAnimations.begin(); it != mAnimations.end(); ++it) |
| 251 | if (name == (*it)->GetName()) |
| 252 | return *it; |
| 253 | return NULL; |
| 254 | } |
| 255 | |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 256 | std::string ResourceManager::FindString(const std::string& name) const |
| 257 | { |
| 258 | std::map<std::string, std::string>::const_iterator it = mStrings.find(name); |
| 259 | if (it != mStrings.end()) |
| 260 | return it->second; |
| 261 | return "[" + name + ("]"); |
| 262 | } |
| 263 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 264 | ResourceManager::ResourceManager() |
| 265 | { |
Ethan Yonker | 780cd39 | 2014-07-21 15:24:39 -0500 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | void ResourceManager::LoadResources(xml_node<>* resList, ZipArchive* pZip) |
| 269 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 270 | if (!resList) |
| 271 | return; |
that | 0f42506 | 2015-03-04 23:05:00 +0100 | [diff] [blame] | 272 | |
| 273 | for (xml_node<>* child = resList->first_node(); child; child = child->next_sibling()) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 274 | { |
that | 0f42506 | 2015-03-04 23:05:00 +0100 | [diff] [blame] | 275 | std::string type = child->name(); |
| 276 | if (type == "resource") { |
| 277 | // legacy format : <resource type="..."> |
| 278 | xml_attribute<>* attr = child->first_attribute("type"); |
| 279 | type = attr ? attr->value() : "*unspecified*"; |
| 280 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 281 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 282 | bool error = false; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 283 | if (type == "font") |
| 284 | { |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 285 | FontResource* res = new FontResource(child, pZip); |
| 286 | if (res->GetResource()) |
| 287 | mFonts.push_back(res); |
| 288 | else { |
| 289 | error = true; |
| 290 | delete res; |
| 291 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 292 | } |
| 293 | else if (type == "image") |
| 294 | { |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 295 | ImageResource* res = new ImageResource(child, pZip); |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 296 | if (res->GetResource()) |
| 297 | mImages.push_back(res); |
| 298 | else { |
| 299 | error = true; |
| 300 | delete res; |
| 301 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 302 | } |
| 303 | else if (type == "animation") |
| 304 | { |
that | 5267a21 | 2015-05-06 23:45:57 +0200 | [diff] [blame] | 305 | AnimationResource* res = new AnimationResource(child, pZip); |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 306 | if (res->GetResourceCount()) |
| 307 | mAnimations.push_back(res); |
| 308 | else { |
| 309 | error = true; |
| 310 | delete res; |
| 311 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 312 | } |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 313 | else if (type == "string") |
| 314 | { |
| 315 | if (xml_attribute<>* attr = child->first_attribute("name")) |
| 316 | mStrings[attr->value()] = child->value(); |
| 317 | else |
| 318 | error = true; |
| 319 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 320 | else |
| 321 | { |
| 322 | LOGERR("Resource type (%s) not supported.\n", type.c_str()); |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 323 | error = true; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 324 | } |
that | f6ed8fc | 2015-02-14 20:23:16 +0100 | [diff] [blame] | 325 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 326 | if (error) |
that | f74ac87 | 2015-01-18 12:00:02 +0100 | [diff] [blame] | 327 | { |
| 328 | std::string res_name; |
| 329 | if (child->first_attribute("name")) |
| 330 | res_name = child->first_attribute("name")->value(); |
| 331 | if (res_name.empty() && child->first_attribute("filename")) |
| 332 | res_name = child->first_attribute("filename")->value(); |
| 333 | |
| 334 | if (!res_name.empty()) { |
| 335 | LOGERR("Resource (%s)-(%s) failed to load\n", type.c_str(), res_name.c_str()); |
| 336 | } else |
| 337 | LOGERR("Resource type (%s) failed to load\n", type.c_str()); |
that | f74ac87 | 2015-01-18 12:00:02 +0100 | [diff] [blame] | 338 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 339 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | ResourceManager::~ResourceManager() |
| 343 | { |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 344 | for (std::vector<FontResource*>::iterator it = mFonts.begin(); it != mFonts.end(); ++it) |
| 345 | delete *it; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 346 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 347 | for (std::vector<ImageResource*>::iterator it = mImages.begin(); it != mImages.end(); ++it) |
| 348 | delete *it; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 349 | |
that | 74ac606 | 2015-03-04 22:39:34 +0100 | [diff] [blame] | 350 | for (std::vector<AnimationResource*>::iterator it = mAnimations.begin(); it != mAnimations.end(); ++it) |
| 351 | delete *it; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 352 | } |