2011-09-19 18:05:40 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// record the resource path
|
|
|
|
|
|
|
|
#include "CCCommon.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
NS_CC_BEGIN;
|
|
|
|
// record the resource path
|
2011-11-07 18:18:10 +08:00
|
|
|
static string s_strResourcePath = "";
|
2011-09-19 18:05:40 +08:00
|
|
|
|
|
|
|
void CCFileUtils::setResourcePath(const char* pszResourcePath)
|
|
|
|
{
|
|
|
|
CCAssert(pszResourcePath != NULL, "[FileUtils setRelativePath] -- wrong relative path");
|
|
|
|
s_strResourcePath = pszResourcePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath)
|
|
|
|
{
|
2011-11-07 18:18:10 +08:00
|
|
|
int len = strlen(pszRelativePath);
|
|
|
|
if (pszRelativePath == NULL || len <= 0)
|
|
|
|
return NULL;
|
2011-09-19 18:05:40 +08:00
|
|
|
CCString * pRet = new CCString();
|
|
|
|
pRet->autorelease();
|
2011-11-07 18:18:10 +08:00
|
|
|
if (len > 1 && pszRelativePath[0] == '/')
|
2011-09-19 18:05:40 +08:00
|
|
|
{
|
|
|
|
pRet->m_sString = pszRelativePath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet->m_sString = s_strResourcePath;
|
|
|
|
pRet->m_sString += pszRelativePath;
|
|
|
|
}
|
|
|
|
return pRet->m_sString.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *CCFileUtils::fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile)
|
|
|
|
{
|
|
|
|
std::string relativeFile = fullPathFromRelativePath(pszRelativeFile);
|
|
|
|
CCString *pRet = new CCString();
|
|
|
|
pRet->autorelease();
|
|
|
|
pRet->m_sString = relativeFile.substr(0, relativeFile.rfind('/')+1);
|
|
|
|
pRet->m_sString += pszFilename;
|
|
|
|
return pRet->m_sString.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* CCFileUtils::getFileData(const char* pszFileName, const char* pszMode, unsigned long * pSize)
|
|
|
|
{
|
|
|
|
unsigned char * pBuffer = NULL;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// read the file from hardware
|
|
|
|
FILE *fp = fopen(pszFileName, pszMode);
|
|
|
|
CC_BREAK_IF(!fp);
|
|
|
|
|
|
|
|
fseek(fp,0,SEEK_END);
|
|
|
|
*pSize = ftell(fp);
|
|
|
|
fseek(fp,0,SEEK_SET);
|
|
|
|
pBuffer = new unsigned char[*pSize];
|
|
|
|
*pSize = fread(pBuffer,sizeof(unsigned char), *pSize,fp);
|
|
|
|
fclose(fp);
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
if (! pBuffer && getIsPopupNotify())
|
|
|
|
{
|
|
|
|
std::string title = "Notification";
|
|
|
|
std::string msg = "Get data from file(";
|
|
|
|
msg.append(pszFileName).append(") failed!");
|
|
|
|
|
|
|
|
CCMessageBox(msg.c_str(), title.c_str());
|
|
|
|
}
|
|
|
|
return pBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCFileUtils::setResource(const char* pszZipFileName)
|
|
|
|
{
|
|
|
|
CC_UNUSED_PARAM(pszZipFileName);
|
|
|
|
CCAssert(0, "Have not implement!");;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CCFileUtils::ccLoadFileIntoMemory(const char *filename, unsigned char **out)
|
|
|
|
{
|
|
|
|
CCAssert(0, "Have not implement!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
string CCFileUtils::getWriteablePath()
|
|
|
|
{
|
|
|
|
return "/Home/";
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
|
|
|
|