-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssetLoader.cpp
50 lines (40 loc) · 1.18 KB
/
AssetLoader.cpp
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
/*
* AssetLoader.cpp
*
* Created on: Oct 25, 2014
* Author: gsosarolon
*/
#include "AssetLoader.h"
#include "SpriteUtil.h"
#include "SimpleAudioEngine.h"
#include "cocos2d.h"
namespace dxco {
AssetLoader::AssetLoader() {
this->currentAsset = 0;
}
void AssetLoader::addAsset(std::string assetPath, bool isSound) {
if (isSound) {
this->soundAssetsToLoad.push_back(assetPath);
} else {
this->assetsToLoad.push_back(assetPath);
}
}
void AssetLoader::loadNext() {
if (this->hasNext()) {
if (this->currentAsset < this->assetsToLoad.size()) {
std::string nextAsset = this->assetsToLoad[this->currentAsset];
CCLOG("Loading resource %s", nextAsset.c_str());
dxco::SpriteUtil::preloadTextureWithFile(nextAsset.c_str());
this->currentAsset++;
} else {
std::string nextAsset = this->soundAssetsToLoad[this->currentAsset - this->assetsToLoad.size()];
CCLOG("Loading resource %s", nextAsset.c_str());
CocosDenshion::SimpleAudioEngine::sharedEngine()->preloadEffect(nextAsset.c_str());
this->currentAsset++;
}
}
}
bool AssetLoader::hasNext() {
return this->currentAsset < this->assetsToLoad.size() + this->soundAssetsToLoad.size();
}
} /* namespace dxco */