-
Notifications
You must be signed in to change notification settings - Fork 0
/
Storage.cpp
153 lines (108 loc) · 2.95 KB
/
Storage.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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
//---------------------------------------------------------------------------
#include "Generic.h"
#pragma hdrstop
//---------------------------------------------------------------------------
static const AnsiString CRegKey = "Software\\R128 maker";
static const HKEY CRegRoot = HKEY_CURRENT_USER;
//---------------------------------------------------------------------------
TStorage::TStorage()
{
}
//---------------------------------------------------------------------------
// Copy constructor in terms of assignment operator.
TStorage::TStorage(const TStorage& Rhs)
{
operator = (Rhs);
}
//---------------------------------------------------------------------------
TStorage& TStorage::operator = (const TStorage&)
{
// Singleton class, there's only one instance, so:
return *this;
}
//---------------------------------------------------------------------------
// Singleton's single point of access.
TStorage* TStorage::Instance()
{
static TStorage Storage;
return &Storage;
}
//---------------------------------------------------------------------------
TStorage::~TStorage()
{
}
//---------------------------------------------------------------------------
int TStorage::GetValue(const AnsiString Key, const int DefaultValue)
{
int Value = DefaultValue;
std::auto_ptr <TRegistry> Registry(new TRegistry);
Registry->RootKey = CRegRoot;
Registry->OpenKey(CRegKey, true);
try
{
if(Registry->ValueExists(Key))
{
Value = Registry->ReadInteger(Key);
}
}
catch(...)
{
// Ignore.
}
Registry->CloseKey();
return Value;
}
//---------------------------------------------------------------------------
double TStorage::GetValue(const AnsiString Key, const double DefaultValue)
{
double Value = DefaultValue;
std::auto_ptr <TRegistry> Registry(new TRegistry);
Registry->RootKey = CRegRoot;
Registry->OpenKey(CRegKey, true);
try
{
if(Registry->ValueExists(Key))
{
Value = Registry->ReadFloat(Key);
}
}
catch(...)
{
// Ignore.
}
Registry->CloseKey();
return Value;
}
//---------------------------------------------------------------------------
void TStorage::PutValue(const AnsiString Key, const int Value)
{
std::auto_ptr <TRegistry> Registry(new TRegistry);
Registry->RootKey = CRegRoot;
Registry->OpenKey(CRegKey, true);
try
{
Registry->WriteInteger(Key, Value);
}
catch(...)
{
// Ignore.
}
Registry->CloseKey();
}
//---------------------------------------------------------------------------
void TStorage::PutValue(const AnsiString Key, const double Value)
{
std::auto_ptr <TRegistry> Registry(new TRegistry);
Registry->RootKey = CRegRoot;
Registry->OpenKey(CRegKey, true);
try
{
Registry->WriteFloat(Key, Value);
}
catch(...)
{
// Ignore.
}
Registry->CloseKey();
}
//---------------------------------------------------------------------------