2018-04-21 21:24:46 +08:00
|
|
|
#include "..\e2dtool.h"
|
2018-03-28 17:56:04 +08:00
|
|
|
|
2018-04-13 00:39:27 +08:00
|
|
|
static e2d::String s_sDataFileName = L"DefaultData.ini";
|
2018-03-28 17:56:04 +08:00
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
void e2d::Data::saveInt(const String& key, int value, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-04-01 23:08:11 +08:00
|
|
|
::WritePrivateProfileString(field, key, String::parse(value), Data::getDataFilePath());
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
void e2d::Data::saveDouble(const String& key, double value, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-04-01 23:08:11 +08:00
|
|
|
::WritePrivateProfileString(field, key, String::parse(value), Data::getDataFilePath());
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
void e2d::Data::saveBool(const String& key, bool value, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
const wchar_t* sValue = value ? L"1" : L"0";
|
|
|
|
|
::WritePrivateProfileString(field, key, sValue, Data::getDataFilePath());
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
void e2d::Data::saveString(const String& key, const String& value, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
::WritePrivateProfileString(field, key, value, Data::getDataFilePath());
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
int e2d::Data::getInt(const String& key, int defaultValue, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
return ::GetPrivateProfileInt(field, key, defaultValue, Data::getDataFilePath());
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
double e2d::Data::getDouble(const String& key, double defaultValue, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[32] = { 0 };
|
2018-04-01 23:08:11 +08:00
|
|
|
::GetPrivateProfileString(field, key, String::parse(defaultValue), temp, 31, Data::getDataFilePath());
|
2018-03-28 17:56:04 +08:00
|
|
|
return std::stof(temp);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
bool e2d::Data::getBool(const String& key, bool defaultValue, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
int nDefaultValue = defaultValue ? 1 : 0;
|
|
|
|
|
int nValue = ::GetPrivateProfileInt(field, key, nDefaultValue, Data::getDataFilePath());
|
|
|
|
|
return nValue != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
e2d::String e2d::Data::getString(const String& key, const String& defaultValue, const String& field)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[256] = { 0 };
|
|
|
|
|
::GetPrivateProfileString(field, key, defaultValue, temp, 255, Data::getDataFilePath());
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
void e2d::Data::setDataFileName(const String& fileName)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
if (!fileName.isEmpty())
|
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
s_sDataFileName.clear();
|
|
|
|
|
s_sDataFileName << fileName << L".ini";
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::String e2d::Data::getDataFilePath()
|
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
return Path::getDefaultSavePath() + s_sDataFileName;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|