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>
|
2013-01-26 22:31:57 +08:00
|
|
|
#include <vector>
|
2012-04-19 14:35:52 +08:00
|
|
|
#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;
|
2013-01-23 22:29:00 +08:00
|
|
|
class CCArray;
|
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-26 22:31:57 +08:00
|
|
|
/**
|
|
|
|
* Returns an unique ID for this class.
|
|
|
|
* @note It's only used for JSBindings now.
|
|
|
|
* @return The unique ID for this class.
|
|
|
|
*/
|
2013-01-18 18:05:32 +08:00
|
|
|
virtual long getClassTypeInfo() {
|
|
|
|
static const long id = cocos2d::getHashCodeByString(typeid(cocos2d::CCFileUtils).name());
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2013-01-26 22:31:57 +08:00
|
|
|
/**
|
|
|
|
* Gets the instance of CCFileUtils.
|
|
|
|
*/
|
2012-06-12 01:43:07 +08:00
|
|
|
static CCFileUtils* sharedFileUtils();
|
2013-01-26 22:31:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the instance of CCFileUtils.
|
|
|
|
*/
|
2012-06-12 01:43:07 +08:00
|
|
|
static void purgeFileUtils();
|
2013-01-26 22:31:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Purges the file searching cache.
|
|
|
|
*
|
|
|
|
* @note It should be invoked after the resources were updated.
|
|
|
|
* For instance, in the CocosPlayer sample, every time you run application from CocosBuilder,
|
|
|
|
* All the resources will be downloaded to the writable folder, before new js app launchs,
|
2013-01-29 15:50:57 +08:00
|
|
|
* this method should be invoked to clean the file search cache.
|
2013-01-26 22:31:57 +08:00
|
|
|
*/
|
2012-06-11 10:59:57 +08:00
|
|
|
void purgeCachedEntries();
|
2013-01-26 22:31:57 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
2013-01-26 22:31:57 +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.
|
|
|
|
* @deprecated Please use fullPathForFilename instead.
|
|
|
|
*
|
|
|
|
*/
|
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-29 15:50:57 +08:00
|
|
|
Then it will try obtain the full path of the filename using the CCFileUtils search rules: resolutions, and search paths.
|
|
|
|
|
|
|
|
The file search is based on the array element order of search paths and resolution directories.
|
2013-01-18 18:05:32 +08:00
|
|
|
|
2013-01-29 15:50:57 +08:00
|
|
|
For instance:
|
2013-01-18 18:05:32 +08:00
|
|
|
|
2013-01-29 15:56:08 +08:00
|
|
|
We set two elements("external_dir/", "internal_dir/") to search paths vector by setSearchPaths,
|
|
|
|
and set three elements("resources-ipadhd/", "resources-ipad/", "resources-iphonehd")
|
|
|
|
to resolutions vector by setSearchResolutionsOrder.
|
2013-01-29 15:50:57 +08:00
|
|
|
|
|
|
|
The file (e.g. sprite.png) search order will be:
|
|
|
|
|
|
|
|
external_dir/resources-ipadhd/sprite.png (if not found, search next)
|
|
|
|
external_dir/resources-ipad/sprite.png (if not found, search next)
|
|
|
|
external_dir/resources-iphonehd/sprite.png (if not found, search next)
|
|
|
|
external_dir/sprite.png (if not found, search next)
|
|
|
|
internal_dir/resources-ipadhd/sprite.png (if not found, search next)
|
|
|
|
internal_dir/resources-ipad/sprite.png (if not found, search next)
|
|
|
|
internal_dir/resources-iphonehd/sprite.png (if not found, search next)
|
|
|
|
internal_dir/sprite.png (if not found, return "sprite.png")
|
|
|
|
|
|
|
|
If the filename contains relative path like "gamescene/uilayer/sprite.png", The file search order will be:
|
|
|
|
|
2013-01-29 15:52:33 +08:00
|
|
|
external_dir/gamescene/uilayer/resources-ipadhd/sprite.png (if not found, search next)
|
|
|
|
external_dir/gamescene/uilayer/resources-ipad/sprite.png (if not found, search next)
|
|
|
|
external_dir/gamescene/uilayer/resources-iphonehd/sprite.png (if not found, search next)
|
|
|
|
external_dir/gamescene/uilayer/sprite.png (if not found, search next)
|
|
|
|
internal_dir/gamescene/uilayer/resources-ipadhd/sprite.png (if not found, search next)
|
|
|
|
internal_dir/gamescene/uilayer/resources-ipad/sprite.png (if not found, search next)
|
|
|
|
internal_dir/gamescene/uilayer/resources-iphonehd/sprite.png (if not found, search next)
|
|
|
|
internal_dir/gamescene/uilayer/sprite.png (if not found, return "gamescene/sprite.png")
|
2013-01-29 15:50:57 +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-29 15:50:57 +08:00
|
|
|
If the filenameLookup dictionary has been set. It will try to replace the filename with a new filename.
|
|
|
|
For example:
|
|
|
|
|
|
|
|
* In iOS: "image.png" -> "image.pvr.ccz" -> "search path/resolution dir/image.pvr.ccz"
|
|
|
|
* "gamescene/background.png" -> "gamescene/background.pvr.ccz" -> "search path/gamescene/resolution dir/background.pvr.ccz"
|
|
|
|
* In Android: "sounds/click.wav" -> "sounds/click.ogg" -> "search path/sounds/resolution dir/click.ogg"
|
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.
|
2013-01-29 15:50:57 +08:00
|
|
|
|
2013-01-18 18:05:32 +08:00
|
|
|
@since v2.1
|
|
|
|
*/
|
2013-01-26 22:31:57 +08:00
|
|
|
std::string fullPathForFilename(const char* pszFileName);
|
2013-01-18 18:05:32 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-25 20:51:52 +08:00
|
|
|
* <key>filenames</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>
|
|
|
|
* <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);
|
|
|
|
|
2013-01-28 23:28:14 +08:00
|
|
|
/**
|
|
|
|
* Sets the filenameLookup dictionary.
|
|
|
|
*
|
|
|
|
* @param pFilenameLookupDict The dictionary for replacing filename.
|
|
|
|
* @since v2.1
|
2013-01-18 18:05:32 +08:00
|
|
|
*/
|
|
|
|
void setFilenameLookupDictionary(CCDictionary* pFilenameLookupDict);
|
|
|
|
|
2013-01-28 23:28:14 +08:00
|
|
|
/**
|
|
|
|
* Gets full path from a file name and the path of the reletive file.
|
|
|
|
* @param pszFilename The file name.
|
|
|
|
* @param pszRelativeFile The path of the relative file.
|
|
|
|
* @return The full path.
|
|
|
|
* e.g. pszFilename: hello.png, pszRelativeFile: /User/path1/path2/hello.plist
|
2013-01-28 23:40:56 +08:00
|
|
|
* Return: /User/path1/path2/hello.pvr (If there a a key(hello.png)-value(hello.pvr) in FilenameLookup dictionary. )
|
2013-01-28 23:28:14 +08:00
|
|
|
*
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
/**
|
2013-01-23 22:29:00 +08:00
|
|
|
@brief Set the resource directory; we will find resources relative to this directory.
|
|
|
|
@param pszDirectoryName Relative path to root.
|
2013-01-29 09:56:38 +08:00
|
|
|
@deprecated Please use setSearchPaths instead.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-01-23 22:29:00 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void setResourceDirectory(const char *pszDirectoryName);
|
|
|
|
|
2013-01-26 22:31:57 +08:00
|
|
|
/**
|
2013-01-28 23:28:14 +08:00
|
|
|
* Sets the array that contains the search order of the resources.
|
2013-01-26 22:31:57 +08:00
|
|
|
*
|
2013-01-28 23:28:14 +08:00
|
|
|
* @param searchResolutionsOrder The source array that contains the search order of the resources.
|
2013-01-29 15:50:57 +08:00
|
|
|
* @see getSearchResolutionsOrder(), fullPathForFilename().
|
2013-01-26 22:31:57 +08:00
|
|
|
* @since v2.1
|
2013-01-23 22:29:00 +08:00
|
|
|
*/
|
2013-01-26 22:31:57 +08:00
|
|
|
void setSearchResolutionsOrder(const std::vector<std::string>& searchResolutionsOrder);
|
2013-01-28 23:28:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the array that contains the search order of the resources.
|
|
|
|
*
|
2013-01-29 15:50:57 +08:00
|
|
|
* @see setSearchResolutionsOrder(), fullPathForFilename().
|
2013-01-28 23:28:14 +08:00
|
|
|
* @since v2.1
|
|
|
|
*/
|
2013-01-26 22:31:57 +08:00
|
|
|
const std::vector<std::string>& getSearchResolutionsOrder();
|
2013-01-23 22:29:00 +08:00
|
|
|
|
2013-01-26 22:31:57 +08:00
|
|
|
/**
|
|
|
|
* Sets the array of search paths.
|
|
|
|
* You can use this array to modify the search path of the resources.
|
|
|
|
* If you want to use "themes" or search resources in the "cache", you can do it easily by adding new entries in this array.
|
2013-01-29 15:50:57 +08:00
|
|
|
*
|
|
|
|
* @param searchPaths The array contains search paths.
|
|
|
|
* @see fullPathForFilename()
|
2013-01-26 22:31:57 +08:00
|
|
|
* @since v2.1
|
2013-01-23 22:29:00 +08:00
|
|
|
*/
|
2013-01-29 09:56:38 +08:00
|
|
|
void setSearchPaths(const std::vector<std::string>& searchPaths);
|
2013-01-28 23:28:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the array of search paths.
|
|
|
|
*
|
2013-01-29 15:50:57 +08:00
|
|
|
* @return The array of search paths.
|
|
|
|
* @see fullPathForFilename().
|
2013-01-28 23:28:14 +08:00
|
|
|
*/
|
2013-01-29 09:56:38 +08:00
|
|
|
const std::vector<std::string>& getSearchPaths();
|
2013-01-23 22:29:00 +08:00
|
|
|
|
2012-08-09 12:49:33 +08:00
|
|
|
/**
|
2013-01-26 22:31:57 +08:00
|
|
|
* Gets the resource directory
|
2013-01-29 09:56:38 +08:00
|
|
|
* @deprecated Please use getSearchPaths() instead.
|
2013-01-26 22:31:57 +08:00
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE const char* getResourceDirectory();
|
2012-08-09 12:49:33 +08:00
|
|
|
|
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();
|
2013-01-24 17:23:53 +08:00
|
|
|
|
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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-23 22:29:00 +08:00
|
|
|
bool init();
|
|
|
|
|
|
|
|
std::string getNewFilename(const char* pszFileName);
|
|
|
|
std::string getPathForFilename(const std::string& filename, const std::string& resourceDirectory, const std::string& searchPath);
|
|
|
|
|
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;
|
2013-01-23 22:29:00 +08:00
|
|
|
|
2013-01-26 22:31:57 +08:00
|
|
|
std::vector<std::string> m_searchResolutionsOrderArray;
|
|
|
|
std::vector<std::string> m_searchPathArray;
|
2013-01-28 17:44:53 +08:00
|
|
|
std::string m_strDefaultResRootPath;
|
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__
|