-
Notifications
You must be signed in to change notification settings - Fork 2
/
iniData.cpp
87 lines (74 loc) · 2.32 KB
/
iniData.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "stdafx.h"
#include "iniData.h"
HRESULT iniData::init()
{
return S_OK;
}
void iniData::release()
{
}
//데이터 추가하기
void iniData::addData(const char * section, const char * key, const char * value)
{
//ini데이터 구조체 초기화
tagIniData data;
data.section = (char*)section;
data.key = (char*)key;
data.value = (char*)value;
//벡터에 담기
_vIniData.push_back(data);
}
//데이터 세이브하기
void iniData::saveINI(const char * fileName)
{
char str[256];
char dir[256];
ZeroMemory(str, sizeof(str));
ZeroMemory(dir, sizeof(dir));
//char test[256] = { 0 }; //이렇게 초기화 하는 방법도 있음
sprintf(str, "\\%s.ini", fileName);
GetCurrentDirectory(256, dir);
//D:\플밍 22기\20200908_0_INI데이터\WindowAPI
strcat(dir, str); //문자열 연결 D:\플밍 22기\20200908_0_INI데이터\WindowAPI\fileName.ini
for (int i = 0; i < _vIniData.size(); i++)
{
WritePrivateProfileString(_vIniData[i].section, _vIniData[i].key, _vIniData[i].value, dir);
}
}
//문자로 값을 로드하기(파일이름, 섹션, 키)
char * iniData::loadDataString(const char * fileName, const char * section, const char * key)
{
char str[256];
char dir[256];
ZeroMemory(str, sizeof(str));
ZeroMemory(dir, sizeof(dir));
//char test[256] = { 0 }; //이렇게 초기화 하는 방법도 있음
sprintf(str, "\\%s.ini", fileName);
GetCurrentDirectory(256, dir);
//D:\플밍 22기\20200908_0_INI데이터\WindowAPI
strcat(dir, str); //문자열 연결 D:\플밍 22기\20200908_0_INI데이터\WindowAPI\fileName.ini
char data[64] = { 0 };
GetPrivateProfileString(section, key, "", data, 64, dir);
return data;
}
//정수로 값을 로드하기(파일이름, 섹션, 키)
int iniData::loadDataInteger(const char * fileName, const char * section, const char * key)
{
char str[256];
char dir[256];
ZeroMemory(str, sizeof(str));
ZeroMemory(dir, sizeof(dir));
//char test[256] = { 0 }; //이렇게 초기화 하는 방법도 있음
sprintf(str, "\\%s.ini", fileName);
GetCurrentDirectory(256, dir);
//D:\플밍 22기\20200908_0_INI데이터\WindowAPI
strcat(dir, str); //문자열 연결 D:\플밍 22기\20200908_0_INI데이터\WindowAPI\fileName.ini
return GetPrivateProfileInt(section, key, 0, dir);
}
//실수로 값을 로드하기(파일이름, 섹션, 키)
float iniData::loadDataFloat(const char * fileName, const char * section, const char * key)
{
return (atof)(loadDataString(fileName, section, key));
//atoi => 문자열을 정수로
//atof => 문자열을 실수로
}