2010-07-23 16:39:34 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
|
2010-10-08 09:57:07 +08:00
|
|
|
#include <TG3.h>
|
2011-03-07 18:20:48 +08:00
|
|
|
#include "CCApplication.h"
|
2010-08-25 17:21:38 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
NS_CC_BEGIN;
|
2010-09-07 16:05:18 +08:00
|
|
|
|
|
|
|
// record the resource path
|
2011-01-18 10:14:44 +08:00
|
|
|
static char s_pszResourcePath[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
static char s_pszZipFilePath[EOS_FILE_MAX_PATH] = {0};
|
2010-09-07 16:05:18 +08:00
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
void updateZipFilePath(const char* pResPath)
|
2010-09-07 16:05:18 +08:00
|
|
|
{
|
2011-01-18 18:21:06 +08:00
|
|
|
if (! strlen(s_pszZipFilePath))
|
2011-01-18 10:14:44 +08:00
|
|
|
{
|
2011-01-18 18:21:06 +08:00
|
|
|
return;
|
|
|
|
}
|
2011-01-18 10:14:44 +08:00
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
std::string strTemp = s_pszZipFilePath;
|
|
|
|
int nPos = std::string::npos;
|
2011-01-18 10:14:44 +08:00
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
// find the path need br replaced
|
|
|
|
std::string ResPath;
|
|
|
|
if (strlen(s_pszResourcePath))
|
|
|
|
{
|
|
|
|
ResPath = s_pszResourcePath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-07 18:20:48 +08:00
|
|
|
ResPath = CCApplication::sharedApplication().getAppDataPath();
|
2011-01-18 10:14:44 +08:00
|
|
|
}
|
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
// replace the resource path in s_pszZipFilePath
|
|
|
|
nPos = strTemp.find(ResPath.c_str());
|
|
|
|
if (nPos != std::string::npos)
|
|
|
|
{
|
|
|
|
strTemp.replace(nPos, ResPath.length(), pResPath);
|
|
|
|
memset(s_pszZipFilePath, 0, sizeof(char) * EOS_FILE_MAX_PATH);
|
|
|
|
strcpy(s_pszZipFilePath, strTemp.c_str());
|
|
|
|
}
|
2010-09-07 16:05:18 +08:00
|
|
|
}
|
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
void setZipFilePath(const char* pZipFileName)
|
2010-11-29 10:49:43 +08:00
|
|
|
{
|
2011-03-07 18:20:48 +08:00
|
|
|
CCAssert(pZipFileName != NULL, "[FileUtils setResourceZipFile] -- wrong zip file path");
|
2010-11-29 10:49:43 +08:00
|
|
|
|
2011-01-18 10:14:44 +08:00
|
|
|
// get the full path of zip file
|
|
|
|
char fullPath[EOS_FILE_MAX_PATH] = {0};
|
2011-01-18 18:21:06 +08:00
|
|
|
|
2011-01-18 10:14:44 +08:00
|
|
|
if (strlen(s_pszResourcePath))
|
|
|
|
{
|
|
|
|
strcpy(fullPath, s_pszResourcePath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-07 18:20:48 +08:00
|
|
|
const char* pAppDataPath = CCApplication::sharedApplication().getAppDataPath();
|
2011-01-18 10:14:44 +08:00
|
|
|
strcpy(fullPath, pAppDataPath);
|
|
|
|
}
|
2011-01-18 18:21:06 +08:00
|
|
|
strcat(fullPath, pZipFileName);
|
2011-01-18 10:14:44 +08:00
|
|
|
|
2010-11-29 10:49:43 +08:00
|
|
|
// if the zip file not exist,use message box to warn developer
|
2011-01-18 10:14:44 +08:00
|
|
|
TUChar pszTmp[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
TUString::StrGBToUnicode(pszTmp, (const Char*) fullPath);
|
2010-11-29 10:49:43 +08:00
|
|
|
Boolean bExist = EOS_IsFileExist(pszTmp);
|
|
|
|
if (!bExist)
|
|
|
|
{
|
|
|
|
std::string strErr = "zip file ";
|
2011-01-18 10:14:44 +08:00
|
|
|
strErr += fullPath;
|
2010-11-29 10:49:43 +08:00
|
|
|
strErr += " not exist!";
|
2011-01-18 10:14:44 +08:00
|
|
|
TUChar szText[EOS_FILE_MAX_PATH] = { 0 };
|
2010-11-29 10:49:43 +08:00
|
|
|
TUString::StrUtf8ToStrUnicode(szText,(Char*)strErr.c_str());
|
2011-02-17 16:16:50 +08:00
|
|
|
TMessageBox box(szText, NULL, WMB_OK);
|
|
|
|
box.Show();
|
2010-11-29 10:49:43 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _TRANZDA_VM_
|
|
|
|
char *pszDriver = "";
|
|
|
|
#else
|
|
|
|
char *pszDriver = "D:/Work7";
|
|
|
|
#endif
|
2011-03-07 18:20:48 +08:00
|
|
|
CCAssert((strlen(pszDriver) + strlen(fullPath)) <= EOS_FILE_MAX_PATH, "[FileUtils setResourceZipFile] -- zip file path too long");
|
2010-11-29 10:49:43 +08:00
|
|
|
|
|
|
|
// record the zip file path
|
|
|
|
strcpy(s_pszZipFilePath, pszDriver);
|
2011-01-18 10:14:44 +08:00
|
|
|
strcat(s_pszZipFilePath, fullPath);
|
2010-11-29 10:49:43 +08:00
|
|
|
}
|
|
|
|
|
2011-01-18 18:21:06 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
bool isResourceExist(const char* pszResName)
|
|
|
|
{
|
|
|
|
bool bRet = false;
|
2011-01-18 18:21:06 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
TUChar FilePath[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
TUString::StrGBToUnicode(FilePath, (const Char *) pszResName);
|
2011-01-18 18:21:06 +08:00
|
|
|
|
2010-11-29 10:49:43 +08:00
|
|
|
if (strlen(s_pszZipFilePath) != 0)
|
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
// if have set the zip file path,find the resource in the zip file
|
|
|
|
unzFile pZipFile = unzOpen(s_pszZipFilePath);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
CC_BREAK_IF(!pZipFile);
|
2010-07-23 16:39:34 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
Int32 nPos = unzLocateFile(pZipFile, pszResName, 1);
|
|
|
|
CC_BREAK_IF(nPos != UNZ_OK);
|
2010-07-23 16:39:34 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
bRet = true;
|
|
|
|
unzClose(pZipFile);
|
|
|
|
} while (0);
|
2010-08-12 14:46:58 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
// find in the hardware
|
|
|
|
if (EOS_IsFileExist(FilePath))
|
|
|
|
{
|
|
|
|
bRet = true;
|
|
|
|
}
|
2010-08-12 14:46:58 +08:00
|
|
|
}
|
2011-03-26 13:52:33 +08:00
|
|
|
|
|
|
|
return bRet;
|
2010-07-30 12:02:36 +08:00
|
|
|
}
|
2010-10-19 17:08:25 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
const char* getDiffResolutionPath(const char *pszPath)
|
2010-10-19 17:08:25 +08:00
|
|
|
{
|
2011-03-07 18:20:48 +08:00
|
|
|
CCString *pRet = new CCString(pszPath);
|
2010-10-19 17:08:25 +08:00
|
|
|
pRet->autorelease();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
TApplication* pApp = TApplication::GetCurrentApplication();
|
2011-03-07 18:20:48 +08:00
|
|
|
CC_BREAK_IF(!pApp);
|
2010-10-19 17:08:25 +08:00
|
|
|
|
|
|
|
// get the Resolution
|
|
|
|
int nScreenWidth = pApp->GetScreenWidth();
|
|
|
|
int nScreenHeight = pApp->GetScreenHeight();
|
|
|
|
|
|
|
|
// it's default resolution, do nothing
|
2011-03-07 18:20:48 +08:00
|
|
|
CC_BREAK_IF(nScreenWidth == 320 && nScreenHeight == 480);
|
2010-10-19 17:08:25 +08:00
|
|
|
|
|
|
|
if (nScreenWidth == 480 && nScreenHeight == 800)
|
|
|
|
{
|
|
|
|
// it's WVGA
|
2011-03-07 18:20:48 +08:00
|
|
|
CC_BREAK_IF(pRet->m_sString.find("@WVGA") != -1);
|
2010-10-19 17:08:25 +08:00
|
|
|
|
|
|
|
std::string filePathWithoutExtension = pszPath;
|
|
|
|
std::string extension = "";
|
|
|
|
std::string filePath = pszPath;
|
|
|
|
int nExPos = filePath.find_last_of(".");
|
|
|
|
|
|
|
|
if (nExPos != -1)
|
|
|
|
{
|
|
|
|
filePathWithoutExtension = filePath.substr(0, nExPos);
|
|
|
|
extension = filePath.substr(nExPos);
|
|
|
|
}
|
|
|
|
|
|
|
|
// new path, add "@WVGA" before the extension
|
|
|
|
pRet->m_sString = filePathWithoutExtension + "@WVGA" + extension;
|
|
|
|
|
|
|
|
// not find the resource of new path,use the original path
|
2011-03-26 13:52:33 +08:00
|
|
|
if (! isResourceExist(pRet->m_sString.c_str()))
|
2010-10-19 17:08:25 +08:00
|
|
|
{
|
|
|
|
pRet->m_sString = filePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// not support resolution
|
2011-03-07 18:20:48 +08:00
|
|
|
CCAssert(0, "it's not supportted resolution.");
|
2010-10-19 17:08:25 +08:00
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
return pRet->m_sString.c_str();
|
|
|
|
}
|
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
void CCFileUtils::setResource(const char* pszZipFileName, const char* pszResPath)
|
2010-10-19 17:08:25 +08:00
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
if (pszResPath != NULL && pszZipFileName != NULL)
|
|
|
|
{
|
|
|
|
// record the resource path
|
|
|
|
strcpy(s_pszResourcePath, pszResPath);
|
2010-10-19 17:08:25 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
// record the zip file path
|
|
|
|
setZipFilePath(pszZipFileName);
|
|
|
|
}
|
|
|
|
else if (pszResPath != NULL)
|
|
|
|
{
|
|
|
|
// update the zip file path
|
|
|
|
updateZipFilePath(pszResPath);
|
|
|
|
|
|
|
|
// record the resource path
|
|
|
|
strcpy(s_pszResourcePath, pszResPath);
|
|
|
|
}
|
|
|
|
else if (pszZipFileName != NULL)
|
|
|
|
{
|
|
|
|
// record the zip file path
|
|
|
|
setZipFilePath(pszZipFileName);
|
|
|
|
}
|
|
|
|
}
|
2010-10-19 17:08:25 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath)
|
|
|
|
{
|
|
|
|
// if have set the zip file path,return the relative path of zip file
|
2010-11-29 10:49:43 +08:00
|
|
|
if (strlen(s_pszZipFilePath) != 0)
|
2010-10-19 17:08:25 +08:00
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
return getDiffResolutionPath(pszRelativePath);
|
|
|
|
}
|
2010-11-29 10:49:43 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
// get the user data path and append relative path to it
|
|
|
|
if (strlen(s_pszResourcePath) == 0)
|
|
|
|
{
|
|
|
|
const char* pAppDataPath = CCApplication::sharedApplication().getAppDataPath();
|
|
|
|
strcpy(s_pszResourcePath, pAppDataPath);
|
|
|
|
}
|
2010-11-29 10:49:43 +08:00
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
#ifndef _TRANZDA_VM_
|
|
|
|
char *pszDriver = "";
|
|
|
|
#else
|
|
|
|
char *pszDriver = "D:/Work7";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CCString * pRet = new CCString();
|
|
|
|
pRet->autorelease();
|
|
|
|
if ((strlen(pszRelativePath) > 1 && pszRelativePath[1] == ':'))
|
|
|
|
{
|
|
|
|
pRet->m_sString = pszRelativePath;
|
|
|
|
}
|
|
|
|
else if (strlen(pszRelativePath) > 0 && pszRelativePath[0] == '/')
|
|
|
|
{
|
|
|
|
pRet->m_sString = pszDriver;
|
|
|
|
pRet->m_sString += pszRelativePath;
|
2010-10-19 17:08:25 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
pRet->m_sString = pszDriver;
|
|
|
|
pRet->m_sString += s_pszResourcePath;
|
|
|
|
pRet->m_sString += pszRelativePath;
|
2010-10-19 17:08:25 +08:00
|
|
|
}
|
2011-03-26 13:52:33 +08:00
|
|
|
return getDiffResolutionPath(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 getDiffResolutionPath(pRet->m_sString.c_str());
|
2010-11-29 10:49:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* CCFileUtils::getFileData(const char* pszFileName, const char* pszMode, unsigned long * pSize)
|
|
|
|
{
|
2010-11-29 14:21:33 +08:00
|
|
|
unsigned char * pBuffer = NULL;
|
2010-11-29 10:49:43 +08:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2011-03-29 15:05:53 +08:00
|
|
|
if (0 != s_pszZipFilePath[0])
|
2010-11-29 10:49:43 +08:00
|
|
|
{
|
|
|
|
// if specify the zip file,load from it first
|
2011-03-26 13:52:33 +08:00
|
|
|
pBuffer = getFileDataFromZip(s_pszZipFilePath, pszFileName, pSize);
|
2011-03-07 18:20:48 +08:00
|
|
|
CC_BREAK_IF(pBuffer);
|
2010-11-29 10:49:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// read the file from hardware
|
|
|
|
FILE *fp = fopen(pszFileName, pszMode);
|
2011-03-07 18:20:48 +08:00
|
|
|
CC_BREAK_IF(!fp);
|
2010-11-29 10:49:43 +08:00
|
|
|
|
|
|
|
fseek(fp,0,SEEK_END);
|
|
|
|
*pSize = ftell(fp);
|
|
|
|
fseek(fp,0,SEEK_SET);
|
2010-11-29 14:21:33 +08:00
|
|
|
pBuffer = new unsigned char[*pSize];
|
|
|
|
fread(pBuffer,sizeof(unsigned char), *pSize,fp);
|
2010-11-29 10:49:43 +08:00
|
|
|
fclose(fp);
|
|
|
|
} while (0);
|
|
|
|
|
2011-03-29 15:05:53 +08:00
|
|
|
if (! pBuffer && getIsPopupNotify())
|
|
|
|
{
|
|
|
|
std::string title = "Notification";
|
|
|
|
std::string msg = "Get data from file(";
|
|
|
|
msg.append(pszFileName);
|
|
|
|
if (0 != s_pszZipFilePath[0])
|
|
|
|
{
|
|
|
|
msg.append(") in zip archive(").append(s_pszZipFilePath);
|
|
|
|
}
|
|
|
|
msg.append(") failed!");
|
|
|
|
|
|
|
|
CCMessageBox(msg.c_str(), title.c_str());
|
|
|
|
}
|
|
|
|
|
2010-11-29 14:21:33 +08:00
|
|
|
return pBuffer;
|
2010-10-19 17:08:25 +08:00
|
|
|
}
|
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
void CCFileUtils::setResourcePath(const char *pszResourcePath)
|
|
|
|
{
|
|
|
|
CCAssert(0, "Have not implement!");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* CCFileUtils::getResourcePath(void)
|
|
|
|
{
|
|
|
|
CCAssert(0, "Have not implement!");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCFileUtils::setRelativePath(const char* pszRelativePath)
|
2010-12-28 10:23:14 +08:00
|
|
|
{
|
2011-03-26 13:52:33 +08:00
|
|
|
CCAssert(0, "Have not implement!");
|
2010-12-28 10:23:14 +08:00
|
|
|
}
|
|
|
|
|
2011-03-26 13:52:33 +08:00
|
|
|
NS_CC_END;
|