2018-09-05 13:33:39 +08:00
|
|
|
#include "..\e2dtool.h"
|
2018-03-28 17:56:04 +08:00
|
|
|
|
|
|
|
|
|
2018-07-17 23:07:51 +08:00
|
|
|
e2d::Data::Data(const String & key, const String & field)
|
2018-09-04 22:42:34 +08:00
|
|
|
: key_(key)
|
|
|
|
|
, field_(field)
|
|
|
|
|
, data_path_(Path::GetDataPath())
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
bool e2d::Data::Exists() const
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
wchar_t temp[256] = { 0 };
|
|
|
|
|
::GetPrivateProfileStringW(
|
|
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
|
|
|
|
L"",
|
|
|
|
|
temp,
|
|
|
|
|
255,
|
|
|
|
|
(LPCWSTR)data_path_
|
|
|
|
|
);
|
|
|
|
|
return temp[0] == L'\0';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool e2d::Data::SaveInt(int value)
|
|
|
|
|
{
|
|
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
|
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
|
|
|
|
(LPCWSTR)String::Parse(value),
|
|
|
|
|
(LPCWSTR)data_path_
|
|
|
|
|
);
|
|
|
|
|
return ret != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool e2d::Data::SaveFloat(float value)
|
|
|
|
|
{
|
|
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
|
|
|
|
(LPCWSTR)String::Parse(value),
|
|
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-09-04 22:57:40 +08:00
|
|
|
return ret != 0;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
bool e2d::Data::SaveDouble(double value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
|
|
|
|
(LPCWSTR)String::Parse(value),
|
|
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-09-04 22:57:40 +08:00
|
|
|
return ret != 0;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
bool e2d::Data::SaveBool(bool value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
2018-07-17 23:07:51 +08:00
|
|
|
(value ? L"1" : L"0"),
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-09-04 22:57:40 +08:00
|
|
|
return ret != 0;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
bool e2d::Data::SaveString(const String& value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
2018-07-17 23:07:51 +08:00
|
|
|
(LPCWSTR)value,
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-09-04 22:57:40 +08:00
|
|
|
return ret != 0;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
int e2d::Data::GetInt() const
|
2018-07-17 23:07:51 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
return ::GetPrivateProfileIntW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
2018-09-04 22:57:40 +08:00
|
|
|
0,
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
float e2d::Data::GetFloat() const
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[32] = { 0 };
|
2018-09-04 22:57:40 +08:00
|
|
|
::GetPrivateProfileStringW((LPCWSTR)field_, (LPCWSTR)key_, L"0.0", temp, 31, (LPCWSTR)data_path_);
|
2018-03-28 17:56:04 +08:00
|
|
|
return std::stof(temp);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
double e2d::Data::GetDouble() const
|
|
|
|
|
{
|
|
|
|
|
wchar_t temp[32] = { 0 };
|
|
|
|
|
::GetPrivateProfileStringW((LPCWSTR)field_, (LPCWSTR)key_, L"0.0", temp, 31, (LPCWSTR)data_path_);
|
|
|
|
|
return std::stod(temp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool e2d::Data::GetBool() const
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
int nValue = ::GetPrivateProfileIntW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
2018-09-04 22:57:40 +08:00
|
|
|
0,
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)data_path_);
|
2018-03-28 17:56:04 +08:00
|
|
|
return nValue != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:57:40 +08:00
|
|
|
e2d::String e2d::Data::GetString()
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[256] = { 0 };
|
2018-09-04 22:57:40 +08:00
|
|
|
::GetPrivateProfileStringW(
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)field_,
|
|
|
|
|
(LPCWSTR)key_,
|
2018-09-04 22:57:40 +08:00
|
|
|
L"",
|
2018-07-17 23:07:51 +08:00
|
|
|
temp,
|
|
|
|
|
255,
|
2018-09-04 22:42:34 +08:00
|
|
|
(LPCWSTR)data_path_
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-03-28 17:56:04 +08:00
|
|
|
return temp;
|
2018-05-24 14:33:16 +08:00
|
|
|
}
|