forked from ValleyBell/in_vgm-libvgm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ini_func.c
140 lines (101 loc) · 2.78 KB
/
ini_func.c
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include <stdio.h>
#include <windows.h>
#ifdef _MSC_VER
#define stricmp _stricmp
#else
#define stricmp _strcasecmp
#endif
#include <stdtype.h>
#include <stdbool.h>
static const char* IniFilePath;
void Ini_SetFilePath(const char* filePath)
{
IniFilePath = filePath;
return;
}
void ReadIni_Integer(const char* Section, const char* Key, UINT32* Value)
{
*Value = (INT32)GetPrivateProfileInt(Section, Key, *Value, IniFilePath);
return;
}
void ReadIni_SIntSht(const char* Section, const char* Key, INT16* Value)
{
*Value = (INT16)GetPrivateProfileInt(Section, Key, *Value, IniFilePath);
return;
}
void ReadIni_IntByte(const char* Section, const char* Key, UINT8* Value)
{
*Value = (UINT8)GetPrivateProfileInt(Section, Key, *Value, IniFilePath);
return;
}
void ReadIni_Boolean(const char* Section, const char* Key, bool* Value)
{
char TempStr[0x10];
GetPrivateProfileString(Section, Key, "", TempStr, 0x10, IniFilePath);
if (! strcmp(TempStr, ""))
return;
if (! stricmp(TempStr, "True"))
*Value = true;
else if (! stricmp(TempStr, "False"))
*Value = false;
else
*Value = strtol(TempStr, NULL, 0) ? true : false;
return;
}
void ReadIni_String(const char* Section, const char* Key, char* String, UINT32 StrSize)
{
GetPrivateProfileString(Section, Key, String, String, StrSize, IniFilePath);
return;
}
void ReadIni_Float(const char* Section, const char* Key, float* Value)
{
char TempStr[0x10];
GetPrivateProfileString(Section, Key, "", TempStr, 0x10, IniFilePath);
if (! strcmp(TempStr, ""))
return;
*Value = (float)strtod(TempStr, NULL);
return;
}
void WriteIni_Integer(const char* Section, const char* Key, UINT32 Value)
{
char TempStr[0x10];
sprintf(TempStr, "%u", Value);
WritePrivateProfileString(Section, Key, TempStr, IniFilePath);
return;
}
void WriteIni_SInteger(const char* Section, const char* Key, INT32 Value)
{
char TempStr[0x10];
sprintf(TempStr, "%d", Value);
WritePrivateProfileString(Section, Key, TempStr, IniFilePath);
return;
}
void WriteIni_XInteger(const char* Section, const char* Key, UINT32 Value)
{
char TempStr[0x10];
sprintf(TempStr, "0x%02X", Value);
WritePrivateProfileString(Section, Key, TempStr, IniFilePath);
return;
}
void WriteIni_Boolean(const char* Section, const char* Key, bool Value)
{
char TempStr[0x10];
if (Value)
strcpy(TempStr, "True");
else
strcpy(TempStr, "False");
WritePrivateProfileString(Section, Key, TempStr, IniFilePath);
return;
}
void WriteIni_String(const char* Section, const char* Key, const char* String)
{
WritePrivateProfileString(Section, Key, String, IniFilePath);
return;
}
void WriteIni_Float(const char* Section, const char* Key, float Value)
{
char TempStr[0x10];
sprintf(TempStr, "%f", Value);
WritePrivateProfileString(Section, Key, TempStr, IniFilePath);
return;
}