2018-10-03 22:02:46 +08:00
|
|
|
// Copyright (c) 2016-2018 Easy2D - Nomango
|
|
|
|
|
//
|
|
|
|
|
// 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.
|
|
|
|
|
|
2018-09-05 13:33:39 +08:00
|
|
|
#include "..\e2dtool.h"
|
2018-03-28 17:56:04 +08:00
|
|
|
|
|
|
|
|
|
2018-10-28 23:24:01 +08:00
|
|
|
easy2d::Data::Data(const std::wstring & key, const std::wstring & 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-10-16 14:13:15 +08:00
|
|
|
bool easy2d::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(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
2018-09-04 22:57:40 +08:00
|
|
|
L"",
|
|
|
|
|
temp,
|
|
|
|
|
255,
|
2018-10-28 23:24:01 +08:00
|
|
|
data_path_.c_str()
|
2018-09-04 22:57:40 +08:00
|
|
|
);
|
|
|
|
|
return temp[0] == L'\0';
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
bool easy2d::Data::SaveInt(int value)
|
2018-09-04 22:57:40 +08:00
|
|
|
{
|
|
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
|
|
|
|
std::to_wstring(value).c_str(),
|
|
|
|
|
data_path_.c_str()
|
2018-09-04 22:57:40 +08:00
|
|
|
);
|
2018-10-28 23:24:01 +08:00
|
|
|
return ret == TRUE;
|
2018-09-04 22:57:40 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
bool easy2d::Data::SaveFloat(float value)
|
2018-09-04 22:57:40 +08:00
|
|
|
{
|
|
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
|
|
|
|
std::to_wstring(value).c_str(),
|
|
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-10-28 23:24:01 +08:00
|
|
|
return ret == TRUE;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
bool easy2d::Data::SaveDouble(double value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
|
|
|
|
std::to_wstring(value).c_str(),
|
|
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-10-28 23:24:01 +08:00
|
|
|
return ret == TRUE;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
bool easy2d::Data::SaveBool(bool value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
2018-07-17 23:07:51 +08:00
|
|
|
(value ? L"1" : L"0"),
|
2018-10-28 23:24:01 +08:00
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-10-28 23:24:01 +08:00
|
|
|
return ret == TRUE;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-28 23:24:01 +08:00
|
|
|
bool easy2d::Data::SaveString(const std::wstring& value)
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
BOOL ret = ::WritePrivateProfileStringW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
|
|
|
|
value.c_str(),
|
|
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-10-28 23:24:01 +08:00
|
|
|
return ret == TRUE;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
int easy2d::Data::GetInt() const
|
2018-07-17 23:07:51 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
return ::GetPrivateProfileIntW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
2018-09-04 22:57:40 +08:00
|
|
|
0,
|
2018-10-28 23:24:01 +08:00
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
float easy2d::Data::GetFloat() const
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[32] = { 0 };
|
2018-10-28 23:24:01 +08:00
|
|
|
::GetPrivateProfileStringW(field_.c_str(), key_.c_str(), L"0.0", temp, 31, data_path_.c_str());
|
2018-03-28 17:56:04 +08:00
|
|
|
return std::stof(temp);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
double easy2d::Data::GetDouble() const
|
2018-09-04 22:57:40 +08:00
|
|
|
{
|
|
|
|
|
wchar_t temp[32] = { 0 };
|
2018-10-28 23:24:01 +08:00
|
|
|
::GetPrivateProfileStringW(field_.c_str(), key_.c_str(), L"0.0", temp, 31, data_path_.c_str());
|
2018-09-04 22:57:40 +08:00
|
|
|
return std::stod(temp);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-16 14:13:15 +08:00
|
|
|
bool easy2d::Data::GetBool() const
|
2018-03-28 17:56:04 +08:00
|
|
|
{
|
2018-09-04 22:57:40 +08:00
|
|
|
int nValue = ::GetPrivateProfileIntW(
|
2018-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
2018-09-04 22:57:40 +08:00
|
|
|
0,
|
2018-10-28 23:24:01 +08:00
|
|
|
data_path_.c_str());
|
|
|
|
|
return nValue == TRUE;
|
2018-03-28 17:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
2018-10-28 23:24:01 +08:00
|
|
|
std::wstring easy2d::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-10-28 23:24:01 +08:00
|
|
|
field_.c_str(),
|
|
|
|
|
key_.c_str(),
|
2018-09-04 22:57:40 +08:00
|
|
|
L"",
|
2018-07-17 23:07:51 +08:00
|
|
|
temp,
|
|
|
|
|
255,
|
2018-10-28 23:24:01 +08:00
|
|
|
data_path_.c_str()
|
2018-07-17 23:07:51 +08:00
|
|
|
);
|
2018-03-28 17:56:04 +08:00
|
|
|
return temp;
|
2018-10-28 23:24:01 +08:00
|
|
|
}
|