mirror of https://github.com/axmolengine/axmol.git
255 lines
6.5 KiB
Plaintext
255 lines
6.5 KiB
Plaintext
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#include "platform/CCPlatformConfig.h"
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <string>
|
|
|
|
#import "base/CCUserDefault.h"
|
|
#import "platform/CCPlatformConfig.h"
|
|
#import "platform/CCPlatformMacros.h"
|
|
#import "base/base64.h"
|
|
#import "platform/CCFileUtils.h"
|
|
|
|
using namespace std;
|
|
|
|
NS_CC_BEGIN
|
|
|
|
/**
|
|
* implements of UserDefault
|
|
*/
|
|
|
|
UserDefault* UserDefault::_userDefault = nullptr;
|
|
string UserDefault::_filePath = string("");
|
|
bool UserDefault::_isFilePathInitialized = false;
|
|
|
|
UserDefault::~UserDefault()
|
|
{
|
|
}
|
|
|
|
UserDefault::UserDefault()
|
|
{
|
|
}
|
|
|
|
bool UserDefault::getBoolForKey(const char* pKey)
|
|
{
|
|
return getBoolForKey(pKey, false);
|
|
}
|
|
|
|
bool UserDefault::getBoolForKey(const char* pKey, bool defaultValue)
|
|
{
|
|
bool ret = defaultValue;
|
|
|
|
NSNumber *value = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (value)
|
|
{
|
|
ret = [value boolValue];
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int UserDefault::getIntegerForKey(const char* pKey)
|
|
{
|
|
return getIntegerForKey(pKey, 0);
|
|
}
|
|
|
|
int UserDefault::getIntegerForKey(const char* pKey, int defaultValue)
|
|
{
|
|
int ret = defaultValue;
|
|
|
|
NSNumber *value = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (value)
|
|
{
|
|
ret = [value intValue];
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
float UserDefault::getFloatForKey(const char* pKey)
|
|
{
|
|
return getFloatForKey(pKey, 0);
|
|
}
|
|
|
|
float UserDefault::getFloatForKey(const char* pKey, float defaultValue)
|
|
{
|
|
float ret = defaultValue;
|
|
|
|
NSNumber *value = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (value)
|
|
{
|
|
ret = [value floatValue];
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
double UserDefault::getDoubleForKey(const char* pKey)
|
|
{
|
|
return getDoubleForKey(pKey, 0);
|
|
}
|
|
|
|
double UserDefault::getDoubleForKey(const char* pKey, double defaultValue)
|
|
{
|
|
double ret = defaultValue;
|
|
|
|
NSNumber *value = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (value)
|
|
{
|
|
ret = [value doubleValue];
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
std::string UserDefault::getStringForKey(const char* pKey)
|
|
{
|
|
return getStringForKey(pKey, "");
|
|
}
|
|
|
|
string UserDefault::getStringForKey(const char* pKey, const std::string & defaultValue)
|
|
{
|
|
NSString *str = [[NSUserDefaults standardUserDefaults] stringForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (! str)
|
|
{
|
|
return defaultValue;
|
|
}
|
|
else
|
|
{
|
|
return [str UTF8String];
|
|
}
|
|
}
|
|
|
|
Data UserDefault::getDataForKey(const char* pKey)
|
|
{
|
|
return getDataForKey(pKey, Data::Null);
|
|
}
|
|
|
|
Data UserDefault::getDataForKey(const char* pKey, const Data& defaultValue)
|
|
{
|
|
NSData *data = [[NSUserDefaults standardUserDefaults] dataForKey:[NSString stringWithUTF8String:pKey]];
|
|
if (! data)
|
|
{
|
|
return defaultValue;
|
|
}
|
|
else
|
|
{
|
|
Data ret;
|
|
ret.copy((unsigned char*)data.bytes, data.length);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
void UserDefault::setBoolForKey(const char* pKey, bool value)
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithBool:value] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
void UserDefault::setIntegerForKey(const char* pKey, int value)
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithInt:value] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
void UserDefault::setFloatForKey(const char* pKey, float value)
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithFloat:value] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
void UserDefault::setDoubleForKey(const char* pKey, double value)
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithDouble:value] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
void UserDefault::setStringForKey(const char* pKey, const std::string & value)
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSString stringWithUTF8String:value.c_str()] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
void UserDefault::setDataForKey(const char* pKey, const Data& value) {
|
|
[[NSUserDefaults standardUserDefaults] setObject:[NSData dataWithBytes: value.getBytes() length: value.getSize()] forKey:[NSString stringWithUTF8String:pKey]];
|
|
}
|
|
|
|
UserDefault* UserDefault::getInstance()
|
|
{
|
|
if (! _userDefault)
|
|
{
|
|
_userDefault = new (std::nothrow) UserDefault();
|
|
}
|
|
|
|
return _userDefault;
|
|
}
|
|
|
|
void UserDefault::destroyInstance()
|
|
{
|
|
CC_SAFE_DELETE(_userDefault);
|
|
}
|
|
|
|
bool UserDefault::isXMLFileExist()
|
|
{
|
|
return FileUtils::getInstance()->isFileExist(_filePath);
|
|
}
|
|
|
|
void UserDefault::initXMLFilePath()
|
|
{
|
|
}
|
|
|
|
// create new xml file
|
|
bool UserDefault::createXMLFile()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
const string& UserDefault::getXMLFilePath()
|
|
{
|
|
return _filePath;
|
|
}
|
|
|
|
void UserDefault::flush()
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
}
|
|
|
|
void UserDefault::deleteValueForKey(const char* key)
|
|
{
|
|
// check the params
|
|
if (!key)
|
|
{
|
|
CCLOG("the key is invalid");
|
|
}
|
|
|
|
[[NSUserDefaults standardUserDefaults] removeObjectForKey:[NSString stringWithUTF8String:key]];
|
|
|
|
flush();
|
|
}
|
|
|
|
NS_CC_END
|
|
|
|
#endif // (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|