2012-04-19 14:35:52 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CC_FILEUTILS_PLATFORM_H__
|
|
|
|
#define __CC_FILEUTILS_PLATFORM_H__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "CCPlatformMacros.h"
|
|
|
|
#include "ccTypes.h"
|
2013-01-18 18:05:32 +08:00
|
|
|
#include "ccTypeInfo.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-01-18 18:05:32 +08:00
|
|
|
class CCDictionary;
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup platform
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
//! @brief Helper class to handle file operations
|
2013-01-18 18:05:32 +08:00
|
|
|
class CC_DLL CCFileUtils : public TypeInfo
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-01-18 18:05:32 +08:00
|
|
|
virtual long getClassTypeInfo() {
|
|
|
|
static const long id = cocos2d::getHashCodeByString(typeid(cocos2d::CCFileUtils).name());
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2012-06-12 01:43:07 +08:00
|
|
|
static CCFileUtils* sharedFileUtils();
|
|
|
|
static void purgeFileUtils();
|
2012-06-11 10:59:57 +08:00
|
|
|
|
|
|
|
void purgeCachedEntries();
|
2012-04-19 14:35:52 +08:00
|
|
|
/**
|
|
|
|
@brief Get resource file data
|
2012-09-15 06:26:38 +08:00
|
|
|
@param[in] pszFileName The resource file name which contains the path.
|
|
|
|
@param[in] pszMode The read mode of the file.
|
|
|
|
@param[out] pSize If the file read operation succeeds, it will be the data size, otherwise 0.
|
|
|
|
@return Upon success, a pointer to the data is returned, otherwise NULL.
|
|
|
|
@warning Recall: you are responsible for calling delete[] on any Non-NULL pointer returned.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-12 01:43:07 +08:00
|
|
|
unsigned char* getFileData(const char* pszFileName, const char* pszMode, unsigned long * pSize);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/**
|
2012-09-15 06:26:38 +08:00
|
|
|
@brief Get resource file data from a zip file.
|
|
|
|
@param[in] pszFileName The resource file name which contains the relative path of the zip file.
|
|
|
|
@param[out] pSize If the file read operation succeeds, it will be the data size, otherwise 0.
|
|
|
|
@return Upon success, a pointer to the data is returned, otherwise NULL.
|
|
|
|
@warning Recall: you are responsible for calling delete[] on any Non-NULL pointer returned.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-12 01:43:07 +08:00
|
|
|
unsigned char* getFileDataFromZip(const char* pszZipFilePath, const char* pszFileName, unsigned long * pSize);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Generate the absolute path of the file.
|
|
|
|
@param pszRelativePath The relative path of the file.
|
|
|
|
@return The absolute path of the file.
|
|
|
|
@warning We only add the ResourcePath before the relative path of the file.
|
2012-09-15 06:26:38 +08:00
|
|
|
If you have not set the ResourcePath, the function appends "/NEWPLUS/TDA_DATA/UserData/" by default.
|
|
|
|
You can set ResourcePath with void setResourcePath(const char *pszResourcePath);
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-01-18 18:05:32 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE const char* fullPathFromRelativePath(const char *pszRelativePath);
|
|
|
|
|
|
|
|
/** Returns the fullpath for a given filename.
|
|
|
|
|
|
|
|
First it will try to get a new filename from the "filenameLookup" dictionary. If a new filename can't be found on the dictionary, it will use the original filename.
|
2013-01-21 10:11:57 +08:00
|
|
|
Then it will try obtain the full path of the filename using the CCFileUtils search rules: resources directory
|
2013-01-18 18:05:32 +08:00
|
|
|
|
2013-01-21 10:11:57 +08:00
|
|
|
If the filename can't be found on resource directory(e.g. Resources/iphone-hd), it will go back to the root of asset folder(e.g. Resources/) to find the filename.
|
2013-01-18 18:05:32 +08:00
|
|
|
|
2013-01-21 10:11:57 +08:00
|
|
|
If the filename can't be found on the file system, it will return the filename directly.
|
2013-01-18 18:05:32 +08:00
|
|
|
|
|
|
|
This method was added to simplify multiplatform support. Whether you are using cocos2d-js or any cross-compilation toolchain like StellaSDK or Apportable,
|
|
|
|
you might need to load differerent resources for a given file in the different platforms.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2013-01-21 10:11:57 +08:00
|
|
|
* In iOS: "image.png" -> "image.pvr" -> "/full/path/res_dir/image.pvr"
|
|
|
|
* In Android: "image.png" -> "image.png" -> "/full/path/res_dir/image.png"
|
2013-01-18 18:05:32 +08:00
|
|
|
|
|
|
|
@since v2.1
|
|
|
|
*/
|
|
|
|
const char* fullPathForFilename(const char* filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the filenameLookup dictionary from the contents of a filename.
|
|
|
|
*
|
|
|
|
* @note The plist file name should follow the format below:
|
|
|
|
* <?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
* <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
* <plist version="1.0">
|
|
|
|
* <dict>
|
2013-01-21 10:11:57 +08:00
|
|
|
* <key>ios</key>
|
2013-01-18 18:05:32 +08:00
|
|
|
* <dict>
|
|
|
|
* <key>sounds/click.wav</key>
|
|
|
|
* <string>sounds/click.caf</string>
|
|
|
|
* <key>sounds/endgame.wav</key>
|
|
|
|
* <string>sounds/endgame.caf</string>
|
|
|
|
* <key>sounds/gem-0.wav</key>
|
|
|
|
* <string>sounds/gem-0.caf</string>
|
|
|
|
* </dict>
|
2013-01-21 10:11:57 +08:00
|
|
|
* <key>android</key>
|
|
|
|
* <dict>
|
|
|
|
* <key>sounds/click.wav</key>
|
|
|
|
* <string>sounds/click.ogg</string>
|
|
|
|
* <key>sounds/endgame.wav</key>
|
|
|
|
* <string>sounds/endgame.ogg</string>
|
|
|
|
* <key>sounds/gem-0.wav</key>
|
|
|
|
* <string>sounds/gem-0.ogg</string>
|
|
|
|
* </dict>
|
2013-01-18 18:05:32 +08:00
|
|
|
* <key>metadata</key>
|
|
|
|
* <dict>
|
|
|
|
* <key>version</key>
|
|
|
|
* <integer>1</integer>
|
|
|
|
* </dict>
|
|
|
|
* </dict>
|
|
|
|
* </plist>
|
|
|
|
*
|
|
|
|
* @param filename The plist file name.
|
|
|
|
*
|
|
|
|
@since v2.1
|
|
|
|
*/
|
|
|
|
void loadFilenameLookupDictionaryFromFile(const char* filename);
|
|
|
|
|
|
|
|
/** Loads the filenameLookup dictionary from the contents of a filename.
|
|
|
|
|
|
|
|
@since v2.1
|
|
|
|
*/
|
|
|
|
void setFilenameLookupDictionary(CCDictionary* pFilenameLookupDict);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/// @cond
|
2012-06-12 01:43:07 +08:00
|
|
|
const char* fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile);
|
2012-04-19 14:35:52 +08:00
|
|
|
/// @endcond
|
|
|
|
|
|
|
|
/**
|
2012-09-15 06:26:38 +08:00
|
|
|
@brief Set the resource directory; we will find resources relative to this directory.
|
|
|
|
@param pszDirectoryName Relative path to root.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-08-08 17:42:04 +08:00
|
|
|
void setResourceDirectory(const char *pszDirectoryName);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-08-09 12:49:33 +08:00
|
|
|
/**
|
2012-08-15 16:03:55 +08:00
|
|
|
@brief Get the resource directory
|
2012-08-09 12:49:33 +08:00
|
|
|
*/
|
|
|
|
const char* getResourceDirectory();
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/**
|
|
|
|
@brief Get the writeable path
|
|
|
|
@return The path that can write/read file
|
|
|
|
*/
|
2012-06-12 01:43:07 +08:00
|
|
|
std::string getWriteablePath();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Set/Get whether pop-up a message box when the image load failed
|
|
|
|
*/
|
2012-06-20 14:38:13 +08:00
|
|
|
void setPopupNotify(bool bNotify);
|
2012-06-15 16:47:30 +08:00
|
|
|
bool isPopupNotify();
|
2012-08-08 17:42:04 +08:00
|
|
|
|
|
|
|
protected:
|
2012-09-03 18:05:59 +08:00
|
|
|
CCFileUtils(void)
|
2013-01-18 18:05:32 +08:00
|
|
|
: m_pFilenameLookupDict(NULL)
|
2012-09-03 18:05:59 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-08-08 17:42:04 +08:00
|
|
|
std::string m_obDirectory;
|
2013-01-18 18:05:32 +08:00
|
|
|
|
|
|
|
/** Dictionary used to lookup filenames based on a key.
|
|
|
|
It is used internally by the following methods:
|
|
|
|
|
|
|
|
const char* fullPathForFilename(const char* )key;
|
|
|
|
|
|
|
|
@since v2.1
|
|
|
|
*/
|
|
|
|
CCDictionary* m_pFilenameLookupDict;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of platform group
|
|
|
|
/// @}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_FILEUTILS_PLATFORM_H__
|