File: animationmanager.cpp

package info (click to toggle)
fife 0.4.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,204 kB
  • sloc: cpp: 42,642; xml: 18,881; python: 13,521; makefile: 23
file content (470 lines) | stat: -rw-r--r-- 13,866 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/***************************************************************************
 *   Copyright (C) 2005-2013 by the FIFE team                              *
 *   http://www.fifengine.net                                              *
 *   This file is part of FIFE.                                            *
 *                                                                         *
 *   FIFE is free software; you can redistribute it and/or                 *
 *   modify it under the terms of the GNU Lesser General Public            *
 *   License as published by the Free Software Foundation; either          *
 *   version 2.1 of the License, or (at your option) any later version.    *
 *                                                                         *
 *   This library is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 *   Lesser General Public License for more details.                       *
 *                                                                         *
 *   You should have received a copy of the GNU Lesser General Public      *
 *   License along with this library; if not, write to the                 *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
 ***************************************************************************/

// Standard C++ library includes
#include <map>

// 3rd party library includes
#include <tinyxml.h>

// FIFE includes
// These includes are split up in two parts, separated by one empty line
// First block: files included from the FIFE root src directory
// Second block: files included from the same folder
#include "util/log/logger.h"
#include "util/resource/resourcemanager.h"
#include "util/resource/resource.h"
#include "video/renderbackend.h"

#include "animationmanager.h"

namespace FIFE {
	/** Logger to use for this source file.
	 *  @relates Logger
	 */
	static Logger _log(LM_RESMGR);

	AnimationManager::~AnimationManager() {

	}

	size_t AnimationManager::getMemoryUsed() const {
		size_t totalSize = 0;

		AnimationHandleMapConstIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		for ( ; it != itend; ++it) {
			totalSize += it->second->getSize();
		}

		return totalSize;
	}

	size_t AnimationManager::getTotalResourcesCreated() const {
		AnimationHandleMapConstIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();
		size_t count = 0;

		for ( ; it != itend; ++it) {
			if ( it->second->getState() == IResource::RES_NOT_LOADED ) {
				count++;
			}
		}

		return count;
	}

	size_t AnimationManager::getTotalResourcesLoaded() const {
		AnimationHandleMapConstIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();
		size_t count = 0;

		for ( ; it != itend; ++it) {
			if ( it->second->getState() == IResource::RES_LOADED ) {
				count++;
			}
		}

		return count;
	}

	size_t AnimationManager::getTotalResources() const {
		return m_animHandleMap.size();
	}

	AnimationPtr AnimationManager::create(IResourceLoader* loader){
		Animation* ptr = new Animation(loader);
		return add(ptr);
	}

	AnimationPtr AnimationManager::create(const std::string& name, IResourceLoader* loader){
		if (exists(name)) {
			FL_WARN(_log, LMsg("AnimationManager::create(std::string, IResourceLoader* loader) - ") << "Resource name " << name << " was previously created.  Returning original Animation...");
			return getPtr(name);
		}

		Animation* ptr = new Animation(name, loader);
		return add(ptr);
	}

	AnimationPtr AnimationManager::load(const std::string& name, IResourceLoader* loader) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);

		if (nit != m_animNameMap.end()) {
			if ( nit->second->getState() == IResource::RES_NOT_LOADED ) {
				nit->second->load();
			}

			return nit->second;
		}

		//was not found so create and load resource
		AnimationPtr ptr = create(name, loader);
		ptr->load();

		if (ptr->getState() == IResource::RES_NOT_LOADED){
			FL_WARN(_log, LMsg("AnimationManager::load(std::string) - ") << "Resource name " << name << " was not found and could not be loaded.");
			remove(name);
		}

		return ptr;
	}

	AnimationPtr AnimationManager::add(Animation* res) {
		assert(res);
		assert(!(exists(res->getHandle()) || exists(res->getName())));

		AnimationPtr resptr(res);

		std::pair<AnimationHandleMapIterator, bool> returnValue;
		returnValue = m_animHandleMap.insert ( AnimationHandleMapPair(res->getHandle(), resptr));

		if (returnValue.second) {
			m_animNameMap.insert ( AnimationNameMapPair(returnValue.first->second->getName(), returnValue.first->second) );
		}
		else {
			FL_WARN(_log, LMsg("AnimationManager::add(IResource*) - ") << "Resource " << res->getName() << " already exists.... ignoring.");
		}

		return returnValue.first->second;
	}

	bool AnimationManager::exists(const std::string& name) {
		AnimationNameMapIterator it = m_animNameMap.find(name);
		if (it != m_animNameMap.end()) {
			return true;
		}

		return false;
	}

	bool AnimationManager::exists(ResourceHandle handle) {
		AnimationHandleMapConstIterator it = m_animHandleMap.find(handle);
		if (it != m_animHandleMap.end()) {
			return true;
		}

		return false;
	}

	void AnimationManager::reload(const std::string& name) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);

		if (nit != m_animNameMap.end()) {
			if ( nit->second->getState() == IResource::RES_LOADED) {
				nit->second->free();
			}
			nit->second->load();
			return;
		}

		FL_WARN(_log, LMsg("AnimationManager::reload(std::string) - ") << "Resource name " << name << " not found.");
	}

	void AnimationManager::reload(ResourceHandle handle) {
		AnimationHandleMapIterator it = m_animHandleMap.find(handle);

		if ( it != m_animHandleMap.end()) {
			if ( it->second->getState() == IResource::RES_LOADED) {
				it->second->free();
			}
			it->second->load();
			return;
		}

		FL_WARN(_log, LMsg("AnimationManager::reload(ResourceHandle) - ") << "Resource handle " << handle << " not found.");

	}

	void AnimationManager::reloadAll() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		for ( ; it != itend; ++it) {
			if ( it->second->getState() == IResource::RES_LOADED) {
				it->second->free();
			}
			it->second->load();
		}
	}

	void AnimationManager::loadUnreferenced() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		int32_t count = 0;
		for ( ; it != itend; ++it) {
			if (it->second.useCount() == 2 && it->second->getState() != IResource::RES_LOADED){
				it->second->load();
				count++;
			}
		}
		FL_DBG(_log, LMsg("AnimationManager::loadUnreferenced() - ") << "Loaded " << count << " unreferenced resources.");
	}

	void AnimationManager::free(const std::string& name) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);

		if (nit != m_animNameMap.end()) {
			if ( nit->second->getState() == IResource::RES_LOADED) {
				nit->second->free();
			}
			return;
		}

		FL_WARN(_log, LMsg("AnimationManager::free(std::string) - ") << "Resource name " << name << " not found.");
	}

	void AnimationManager::free(ResourceHandle handle) {
		AnimationHandleMapConstIterator it = m_animHandleMap.find(handle);
		if (it != m_animHandleMap.end()) {
			if ( it->second->getState() == IResource::RES_LOADED) {
				it->second->free();
			}
			return;
		}

		FL_WARN(_log, LMsg("AnimationManager::free(ResourceHandle) - ") << "Resource handle " << handle << " not found.");
	}

	void AnimationManager::freeAll() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		int32_t count = 0;

		for ( ; it != itend; ++it) {
			if ( it->second->getState() == IResource::RES_LOADED) {
				it->second->free();
				count++;
			}
		}

		FL_DBG(_log, LMsg("AnimationManager::freeAll() - ") << "Freed all " << count << " resources.");
	}

	void AnimationManager::freeUnreferenced() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		int32_t count = 0;
		for ( ; it != itend; ++it) {
			if (it->second.useCount() == 2 && it->second->getState() == IResource::RES_LOADED ){
				it->second->free();
				count++;
			}
		}

		FL_DBG(_log, LMsg("AnimationManager::freeUnreferenced() - ") << "Freed " << count << " unreferenced resources.");
	}

	void AnimationManager::remove(AnimationPtr& resource) {
		AnimationHandleMapIterator it = m_animHandleMap.find(resource->getHandle());
		AnimationNameMapIterator nit = m_animNameMap.find(resource->getName());

		if (it != m_animHandleMap.end()) {
			m_animHandleMap.erase(it);

			if (nit != m_animNameMap.end()) {
				m_animNameMap.erase(nit);
				return;
			}
			assert(false); //should never get here
		}

		FL_WARN(_log, LMsg("AnimationManager::remove(ResourcePtr&) - ") << "Resource " << resource->getName() << " was not found.");
	}

	void AnimationManager::remove(const std::string& name) {
		std::size_t handle;

		AnimationNameMapIterator nit = m_animNameMap.find(name);
		if (nit != m_animNameMap.end()) {
			handle = nit->second->getHandle();
			m_animNameMap.erase(nit);
		}
		else {
			FL_WARN(_log, LMsg("AnimationManager::remove(std::string) - ") << "Resource " << name << " was not found.");
			return;
		}

		AnimationHandleMapIterator it = m_animHandleMap.find(handle);
		if ( it != m_animHandleMap.end()) {
			m_animHandleMap.erase(it);
			return;
		}

		assert(false);  //should never get here
	}

	void AnimationManager::remove(ResourceHandle handle) {
		std::string name;

		AnimationHandleMapIterator it = m_animHandleMap.find(handle);

		if (it != m_animHandleMap.end()) {
			name = it->second->getName();
			m_animHandleMap.erase(it);
		}
		else {
			FL_WARN(_log, LMsg("AnimationManager::remove(ResourceHandle) - ") << "Resource handle " << handle << " was not found.");
			return;
		}

		AnimationNameMapIterator nit = m_animNameMap.find(name);
		if ( nit != m_animNameMap.end() ) {
			m_animNameMap.erase(nit);
			return;
		}

		assert(false);  //should never get here
	}

	void AnimationManager::removeAll() {
		//should always be equal
		assert (m_animHandleMap.size() == m_animNameMap.size());

		size_t count = m_animHandleMap.size();

		m_animHandleMap.clear();
		m_animNameMap.clear();

		FL_DBG(_log, LMsg("AnimationManager::removeAll() - ") << "Removed all " << count << " resources.");
	}

	void AnimationManager::removeUnreferenced() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		std::vector<int> imgHandles;

		int32_t count = 0;
		for ( ; it != itend; ++it) {
			if ( it->second.useCount() == 2) {
				imgHandles.push_back(it->second->getHandle());
				count++;
			}
		}

		for (std::vector<int>::iterator it = imgHandles.begin(); it != imgHandles.end(); ++it) {
			remove(*it);
		}

		FL_DBG(_log, LMsg("AnimationManager::removeUnreferenced() - ") << "Removed " << count << " unreferenced resources.");
	}

	AnimationPtr AnimationManager::get(const std::string& name) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);

		if (nit != m_animNameMap.end()) {
			if (nit->second->getState() != IResource::RES_LOADED){
				//resource is not loaded so load it
				nit->second->load();
			}
			return nit->second;
		}

		//not found so attempt to create and load the resource
		AnimationPtr ptr = load(name);
		return ptr;
	}

	AnimationPtr AnimationManager::get(ResourceHandle handle) {
		AnimationHandleMapConstIterator it = m_animHandleMap.find(handle);
		if (it != m_animHandleMap.end()) {
			if (it->second->getState() != IResource::RES_LOADED){
				//resource is not loaded so load it
				it->second->load();
			}
			return it->second;
		}

		FL_WARN(_log, LMsg("AnimationManager::get(ResourceHandle) - ") << "Resource handle " << handle << " is undefined.");

		return AnimationPtr();
	}

	AnimationPtr AnimationManager::getPtr(const std::string& name) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);

		if (nit != m_animNameMap.end()) {
			return nit->second;
		}

		FL_WARN(_log, LMsg("AnimationManager::getPtr(std::string) - ") << "Resource " << name << " is undefined.");

		return AnimationPtr();
	}

	AnimationPtr AnimationManager::getPtr(ResourceHandle handle) {
		AnimationHandleMapConstIterator it = m_animHandleMap.find(handle);
		if (it != m_animHandleMap.end()) {
			return it->second;
		}

		FL_WARN(_log, LMsg("AnimationManager::getPtr(ResourceHandle) - ") << "Resource handle " << handle << " is undefined.");

		return AnimationPtr();
	}

	ResourceHandle AnimationManager::getResourceHandle(const std::string& name) {
		AnimationNameMapIterator nit = m_animNameMap.find(name);
		if (nit != m_animNameMap.end()) {
			return nit->second->getHandle();
		}

		FL_WARN(_log, LMsg("AnimationManager::getResourceHandle(std::string) - ") << "Resource " << name << " is undefined.");

		return 0;
	}

	void AnimationManager::invalidate(const std::string& name) {
		AnimationNameMapIterator it = m_animNameMap.find(name);
		if (it != m_animNameMap.end()) {
			if (it->second->getState() == IResource::RES_LOADED){
				it->second.get()->invalidate();
			}
		}
	}

	void AnimationManager::invalidate(ResourceHandle handle) {
		AnimationHandleMapIterator it = m_animHandleMap.find(handle);
		if (it != m_animHandleMap.end()) {
			if (it->second->getState() == IResource::RES_LOADED) {
				it->second.get()->invalidate();
			}
		}
	}

	void AnimationManager::invalidateAll() {
		AnimationHandleMapIterator it = m_animHandleMap.begin(),
			itend = m_animHandleMap.end();

		for ( ; it != itend; ++it) {
			if (it->second->getState() == IResource::RES_LOADED) {
				it->second.get()->invalidate();
			}
		}

	}

} //FIFE