2011-08-28 15:17:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2011 OTClient <https://github.com/edubart/otclient>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#include "resourcemanager.h"
|
|
|
|
|
2011-12-03 22:41:37 +01:00
|
|
|
#include <framework/application.h>
|
2011-08-15 16:06:15 +02:00
|
|
|
#include <framework/luascript/luainterface.h>
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
#include <physfs.h>
|
|
|
|
|
|
|
|
ResourceManager g_resources;
|
|
|
|
|
2011-12-03 22:41:37 +01:00
|
|
|
void ResourceManager::init(const char *argv0)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
PHYSFS_init(argv0);
|
|
|
|
|
2011-12-03 22:41:37 +01:00
|
|
|
// setup write directory
|
|
|
|
if(!g_resources.setupWriteDir())
|
|
|
|
logError("Could not setup write directory");
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
// try to find modules directory, all data lives there
|
2011-12-03 22:41:37 +01:00
|
|
|
//TODO: move this to Application class
|
2011-08-14 04:09:11 +02:00
|
|
|
std::string baseDir = PHYSFS_getBaseDir();
|
|
|
|
std::string possibleDirs[] = { "modules",
|
|
|
|
baseDir + "modules",
|
|
|
|
baseDir + "../modules",
|
2011-12-03 22:41:37 +01:00
|
|
|
baseDir + "../share/" + g_app.getAppName() + "/otclient/modules",
|
2011-08-14 04:09:11 +02:00
|
|
|
"" };
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
for(const std::string& dir : possibleDirs) {
|
|
|
|
if(g_resources.addToSearchPath(dir)) {
|
|
|
|
logInfo("Using modules directory '", dir.c_str(), "'");
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
2011-12-03 22:41:37 +01:00
|
|
|
logFatal("Could not find modules directory");
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::terminate()
|
|
|
|
{
|
|
|
|
PHYSFS_deinit();
|
|
|
|
}
|
|
|
|
|
2011-12-03 22:41:37 +01:00
|
|
|
bool ResourceManager::setupWriteDir()
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2011-12-03 22:41:37 +01:00
|
|
|
std::string userDir = PHYSFS_getUserDir();
|
|
|
|
std::string dirName = Fw::mkstr(".", g_app.getAppName());
|
|
|
|
std::string writeDir = userDir + dirName;
|
|
|
|
if(!PHYSFS_setWriteDir(writeDir.c_str())) {
|
|
|
|
if(!PHYSFS_setWriteDir(userDir.c_str()))
|
|
|
|
return false;
|
|
|
|
if(!PHYSFS_mkdir(dirName.c_str())) {
|
|
|
|
PHYSFS_setWriteDir(NULL);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!PHYSFS_setWriteDir(writeDir.c_str()))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
addToSearchPath(writeDir);
|
2011-08-14 04:09:11 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::addToSearchPath(const std::string& path, bool insertInFront)
|
|
|
|
{
|
|
|
|
if(!PHYSFS_addToSearchPath(path.c_str(), insertInFront ? 0 : 1))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::searchAndAddPackages(const std::string& packagesDir, const std::string& packageExt, bool append)
|
|
|
|
{
|
|
|
|
auto files = listDirectoryFiles(resolvePath(packagesDir));
|
|
|
|
for(const std::string& file : files) {
|
|
|
|
if(boost::ends_with(file, packageExt))
|
|
|
|
addToSearchPath(packagesDir + "/" + file, !append);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::fileExists(const std::string& fileName)
|
|
|
|
{
|
|
|
|
return (PHYSFS_exists(resolvePath(fileName).c_str()) && !PHYSFS_isDirectory(resolvePath(fileName).c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::directoryExists(const std::string& directoryName)
|
|
|
|
{
|
2011-12-03 22:41:37 +01:00
|
|
|
return (PHYSFS_isDirectory(resolvePath(directoryName).c_str()));
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::loadFile(const std::string& fileName, std::iostream& out)
|
|
|
|
{
|
|
|
|
std::string fullPath = resolvePath(fileName);
|
|
|
|
out.clear(std::ios::goodbit);
|
|
|
|
PHYSFS_file* file = PHYSFS_openRead(fullPath.c_str());
|
|
|
|
if(!file) {
|
|
|
|
out.clear(std::ios::failbit);
|
2011-12-01 23:25:32 +01:00
|
|
|
Fw::throwException("failed to load file '", fullPath.c_str(), "': ", PHYSFS_getLastError());
|
2011-08-14 04:09:11 +02:00
|
|
|
} else {
|
|
|
|
int fileSize = PHYSFS_fileLength(file);
|
|
|
|
if(fileSize > 0) {
|
2011-08-15 21:15:49 +02:00
|
|
|
std::vector<char> buffer(fileSize);
|
|
|
|
PHYSFS_read(file, (void*)&buffer[0], 1, fileSize);
|
|
|
|
out.write(&buffer[0], fileSize);
|
2011-08-14 04:09:11 +02:00
|
|
|
} else
|
|
|
|
out.clear(std::ios::eofbit);
|
|
|
|
PHYSFS_close(file);
|
|
|
|
out.seekg(0, std::ios::beg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResourceManager::loadFile(const std::string& fileName)
|
|
|
|
{
|
|
|
|
std::stringstream fin;
|
|
|
|
loadFile(fileName, fin);
|
|
|
|
return fin.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::saveFile(const std::string& fileName, const uchar* data, uint size)
|
|
|
|
{
|
|
|
|
PHYSFS_file* file = PHYSFS_openWrite(resolvePath(fileName).c_str());
|
|
|
|
if(!file)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
PHYSFS_write(file, (void*)data, size, 1);
|
|
|
|
PHYSFS_close(file);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::saveFile(const std::string& fileName, std::istream& in)
|
|
|
|
{
|
|
|
|
std::streampos oldPos = in.tellg();
|
|
|
|
in.seekg(0, std::ios::end);
|
|
|
|
std::streampos size = in.tellg();
|
|
|
|
in.seekg(0, std::ios::beg);
|
2011-08-15 21:15:49 +02:00
|
|
|
std::vector<char> buffer(size);
|
|
|
|
in.read(&buffer[0], size);
|
|
|
|
bool ret = saveFile(fileName, (const uchar*)&buffer[0], size);
|
2011-08-14 04:09:11 +02:00
|
|
|
in.seekg(oldPos, std::ios::beg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::saveFile(const std::string& fileName, const std::string& data)
|
|
|
|
{
|
|
|
|
return saveFile(fileName, (const uchar*)data.c_str(), data.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ResourceManager::deleteFile(const std::string& fileName)
|
|
|
|
{
|
|
|
|
return PHYSFS_delete(resolvePath(fileName).c_str()) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<std::string> ResourceManager::listDirectoryFiles(const std::string& directoryPath)
|
|
|
|
{
|
|
|
|
std::list<std::string> files;
|
2011-08-15 21:15:49 +02:00
|
|
|
auto rc = PHYSFS_enumerateFiles(resolvePath(directoryPath).c_str());
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-08-15 21:15:49 +02:00
|
|
|
for(int i = 0; rc[i] != NULL; i++)
|
|
|
|
files.push_back(rc[i]);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
PHYSFS_freeList(rc);
|
|
|
|
return files;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResourceManager::resolvePath(const std::string& path)
|
|
|
|
{
|
|
|
|
std::string fullPath;
|
|
|
|
if(boost::starts_with(path, "/"))
|
2011-08-19 20:53:23 +02:00
|
|
|
fullPath = path;
|
2011-08-14 04:09:11 +02:00
|
|
|
else {
|
2011-08-19 20:53:23 +02:00
|
|
|
std::string scriptPath = "/" + g_lua.currentSourcePath();
|
|
|
|
if(!scriptPath.empty())
|
2011-08-14 04:09:11 +02:00
|
|
|
fullPath += scriptPath + "/";
|
|
|
|
fullPath += path;
|
|
|
|
}
|
|
|
|
return fullPath;
|
|
|
|
}
|