| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- /*
- Copyright (C) 2011 by Ivan Safrin
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include "PolyResourceManager.h"
- using namespace Polycode;
- ResourceManager::ResourceManager() {
- PHYSFS_init(NULL);
- }
- ResourceManager::~ResourceManager() {
- printf("Shutting down resource manager...\n");
- PHYSFS_deinit();
- for(int i=0; i < resources.size(); i++) {
- delete resources[i];
- }
- resources.clear();
- }
- void ResourceManager::parseShaders(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
-
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- if(resourceDir[i].extension == "mat") {
- Logger::log("Adding shaders from %s\n", resourceDir[i].nameWithoutExtension.c_str());
- TiXmlDocument doc(resourceDir[i].fullPath.c_str());
- doc.LoadFile();
- if(doc.Error()) {
- Logger::log("XML Error: %s\n", doc.ErrorDesc());
- } else {
- TiXmlElement *mElem = doc.RootElement()->FirstChildElement("shaders");
-
- if(mElem) {
- TiXmlNode* pChild;
- for (pChild = mElem->FirstChild(); pChild != 0; pChild = pChild->NextSibling()) {
- Shader *newShader = CoreServices::getInstance()->getMaterialManager()->createShaderFromXMLNode(pChild);
- if(newShader != NULL) {
- Logger::log("Adding shader %s\n", newShader->getName().c_str());
- newShader->setResourceName(newShader->getName());
- resources.push_back(newShader);
- }
- }
- }
- }
- }
- } else {
- if(recursive)
- parseShaders(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::addShaderModule(PolycodeShaderModule *module) {
- shaderModules.push_back(module);
- }
- void ResourceManager::parsePrograms(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- for(int m=0; m < shaderModules.size(); m++) {
- PolycodeShaderModule *shaderModule = shaderModules[m];
- if(shaderModule->acceptsExtension(resourceDir[i].extension)) {
- Resource *newProgram = shaderModule->createProgramFromFile(resourceDir[i].extension, resourceDir[i].fullPath);
- if(newProgram) {
- newProgram->setResourceName(resourceDir[i].name);
- newProgram->setResourcePath(resourceDir[i].fullPath);
- resources.push_back(newProgram);
- }
- }
- }
- } else {
- if(recursive)
- parsePrograms(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::parseMaterials(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
-
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- if(resourceDir[i].extension == "mat") {
- Logger::log("Adding materials from %s\n", resourceDir[i].nameWithoutExtension.c_str());
- TiXmlDocument doc(resourceDir[i].fullPath.c_str());
- doc.LoadFile();
- if(doc.Error()) {
- Logger::log("XML Error: %s\n", doc.ErrorDesc());
- } else {
- TiXmlElement *mElem = doc.RootElement()->FirstChildElement("materials");
- if(mElem) {
- TiXmlNode* pChild;
- for (pChild = mElem->FirstChild(); pChild != 0; pChild = pChild->NextSibling()) {
- Material *newMat = CoreServices::getInstance()->getMaterialManager()->materialFromXMLNode(pChild);
- newMat->setResourceName(newMat->getName());
- resources.push_back(newMat);
- }
- }
- }
- }
- } else {
- if(recursive)
- parseMaterials(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::parseCubemaps(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
-
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- if(resourceDir[i].extension == "mat") {
- Logger::log("Adding cubemaps from %s\n", resourceDir[i].nameWithoutExtension.c_str());
- TiXmlDocument doc(resourceDir[i].fullPath.c_str());
- doc.LoadFile();
- if(doc.Error()) {
- Logger::log("XML Error: %s\n", doc.ErrorDesc());
- } else {
- TiXmlElement *mElem = doc.RootElement()->FirstChildElement("cubemaps");
-
- if(mElem) {
- TiXmlNode* pChild;
- for (pChild = mElem->FirstChild(); pChild != 0; pChild = pChild->NextSibling()) {
- Cubemap *newMat = CoreServices::getInstance()->getMaterialManager()->cubemapFromXMLNode(pChild);
- // newMat->setResourceName(newMat->getName());
- if(newMat)
- resources.push_back(newMat);
- }
- }
- }
- }
- } else {
- if(recursive)
- parseCubemaps(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::addResource(Resource *resource) {
- resources.push_back(resource);
- }
- void ResourceManager::parseTextures(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- if(resourceDir[i].extension == "png") {
- Logger::log("Adding texture %s\n", resourceDir[i].nameWithoutExtension.c_str());
- Texture *t = CoreServices::getInstance()->getMaterialManager()->createTextureFromFile(resourceDir[i].fullPath);
- t->setResourceName(resourceDir[i].name);
- resources.push_back(t);
- }
- } else {
- if(recursive)
- parseTextures(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::parseOthers(String dirPath, bool recursive) {
- vector<OSFileEntry> resourceDir;
- resourceDir = OSBasics::parseFolder(dirPath, false);
- for(int i=0; i < resourceDir.size(); i++) {
- if(resourceDir[i].type == OSFileEntry::TYPE_FILE) {
- if(resourceDir[i].extension == "ttf") {
- Logger::log("Registering font: %s\n", resourceDir[i].nameWithoutExtension.c_str());
- CoreServices::getInstance()->getFontManager()->registerFont(resourceDir[i].nameWithoutExtension, resourceDir[i].fullPath);
- }
- } else {
- if(recursive)
- parseOthers(dirPath+"/"+resourceDir[i].name, true);
- }
- }
- }
- void ResourceManager::addArchive(String zipPath) {
- // if(PHYSFS_addToSearchPath(zipPath.c_str(), 1, getThreadID()) == 0) {
- if(PHYSFS_addToSearchPath(zipPath.c_str(), 1) == 0) {
- Logger::log("Error adding archive to resource manager... %s\n", PHYSFS_getLastError());
- } else {
- Logger::log("Added archive: %s\n", zipPath.c_str());
- }
- }
- void ResourceManager::addDirResource(String dirPath, bool recursive) {
- parseTextures(dirPath, recursive);
- parsePrograms(dirPath, recursive);
- parseShaders(dirPath, recursive);
- parseCubemaps(dirPath, recursive);
- parseMaterials(dirPath, recursive);
- parseOthers(dirPath, recursive);
- }
- Resource *ResourceManager::getResource(int resourceType, String resourceName) {
- Logger::log("requested %s\n", resourceName.c_str());
- for(int i =0; i < resources.size(); i++) {
- // Logger::log("is it %s?\n", resources[i]->getResourceName().c_str());
- if(resources[i]->getResourceName() == resourceName && resources[i]->getResourceType() == resourceType) {
- return resources[i];
- }
- }
- Logger::log("return NULL\n");
- // need to add some sort of default resource for each type
- return NULL;
- }
|