forked from wweziza/sampvoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin_config.hpp
355 lines (275 loc) · 9.96 KB
/
plugin_config.hpp
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
This is a SampVoice project file
Developer: CyberMor <[email protected]>
See more here https://github.com/CyberMor/sampvoice
Copyright (c) Daniel (CyberMor) 2020 All rights reserved
*/
#pragma once
#include <cmath>
#include <cstring>
#include <d3d9.h>
#include <system/file.hpp>
#include <other/version.hpp>
#include <util/render.hpp>
struct PluginConfig {
PluginConfig(const PluginConfig&) = delete;
PluginConfig(PluginConfig&&) = delete;
PluginConfig& operator=(const PluginConfig&) = delete;
PluginConfig& operator=(PluginConfig&&) = delete;
private:
PluginConfig() noexcept { *_language = '\0'; *_micro_device = '\0'; }
~PluginConfig() noexcept = default;
public:
static PluginConfig& Instance() noexcept
{
static PluginConfig instance;
return instance;
}
public:
/*
All settings related to the screen are stored in the base resolution (640x480) and,
upon receipt of the value, are converted to the screen resolution by the CRender module
*/
static constexpr Version kConfigVersion = MakeVersion(1, 0, 0);
static constexpr bool kDefaultSoundEnable = true;
static constexpr sdword_t kDefaultSoundVolume = 100;
static constexpr bool kDefaultSoundBalancer = false;
static constexpr bool kDefaultSoundFilter = false;
static constexpr fdword_t kDefaultSpeakerIconScale = 1;
static constexpr sdword_t kDefaultSpeakerIconOffsetX = 0;
static constexpr sdword_t kDefaultSpeakerIconOffsetY = 0;
static constexpr bool kDefaultMicroEnable = true;
static constexpr sdword_t kDefaultMicroVolume = 75;
static constexpr fdword_t kDefaultMicroIconScale = 1;
static constexpr sdword_t kDefaultMicroIconPositionX = -100;
static constexpr sdword_t kDefaultMicroIconPositionY = -100;
static constexpr D3DCOLOR kDefaultMicroIconColor = 0x00FFFFFF;
static constexpr fdword_t kDefaultMicroIconAngle = 0;
public:
bool Save(const cstr_t path) const noexcept
{
File file { path, "wb" };
if (file.Invalid())
{
Logger::Instance().LogToFile("[sv:inf:pluginconfig:save] failed to "
"open file for writing (%s)", path);
return false;
}
return file.WritePacket<LittleEndian>(kConfigVersion) == 1 &&
file.PutLine(_language) &&
file.WritePacket<LittleEndian>(_sound_enable, _sound_volume, _sound_balancer,
_sound_filter, _speaker_icon_scale, _speaker_icon_offset_x,
_speaker_icon_offset_y, _micro_enable, _micro_volume) == 1 &&
file.PutLine(_micro_device) &&
file.WritePacket<LittleEndian>(_micro_icon_scale, _micro_icon_position_x,
_micro_icon_position_y, _micro_icon_color, _micro_icon_angle) == 1;
}
bool Load(const cstr_t path) noexcept
{
File file { path, "rb" };
if (file.Invalid())
{
Logger::Instance().LogToFile("[sv:inf:pluginconfig:load] failed to "
"open file for reading (%s)", path);
return false;
}
Version version;
if (file.ReadPacket<LittleEndian>(version) != 1)
return false;
if (version != kConfigVersion)
{
Logger::Instance().LogToFile("[sv:inf:pluginconfig:load] unsupported "
"config version (file:%hhu.%hhu.%hu) (host:%hhu.%hhu.%hu)",
GetVersionMajor(version), GetVersionMinor(version), GetVersionPatch(version),
GetVersionMajor(kConfigVersion), GetVersionMinor(kConfigVersion),
GetVersionPatch(kConfigVersion));
return false;
}
return file.GetLine(_language) == 1 &&
file.ReadPacket<LittleEndian>(_sound_enable, _sound_volume, _sound_balancer,
_sound_filter, _speaker_icon_scale, _speaker_icon_offset_x,
_speaker_icon_offset_y, _micro_enable, _micro_volume) == 1 &&
file.GetLine(_micro_device) == 1 &&
file.ReadPacket<LittleEndian>(_micro_icon_scale, _micro_icon_position_x,
_micro_icon_position_y, _micro_icon_color, _micro_icon_angle) == 1;
}
public:
bool HasLanguage() const noexcept
{
return *_language != '\0';
}
cstr_t GetLanguage() const noexcept
{
return _language;
}
bool IsSoundEnable() const noexcept
{
return _sound_enable;
}
sdword_t GetSoundVolume() const noexcept
{
return _sound_volume;
}
bool IsSoundBalancer() const noexcept
{
return _sound_balancer;
}
bool IsSoundFilter() const noexcept
{
return _sound_filter;
}
fdword_t GetSpeakerIconScale() const noexcept
{
return _speaker_icon_scale;
}
sdword_t GetSpeakerIconOffsetX() const noexcept
{
if (fdword_t screen_value; Render::Instance().ConvertBaseXValueToScreenXValue(_speaker_icon_offset_x, screen_value))
return std::roundf(screen_value);
return kDefaultSpeakerIconOffsetX;
}
sdword_t GetSpeakerIconOffsetY() const noexcept
{
if (fdword_t screen_value; Render::Instance().ConvertBaseYValueToScreenYValue(_speaker_icon_offset_y, screen_value))
return std::roundf(screen_value);
return kDefaultSpeakerIconOffsetY;
}
public:
bool IsMicroEnable() const noexcept
{
return _micro_enable;
}
sdword_t GetMicroVolume() const noexcept
{
return _micro_volume;
}
bool HasMicroDevice() const noexcept
{
return *_micro_device != '\0';
}
cstr_t GetMicroDevice() const noexcept
{
return _micro_device;
}
fdword_t GetMicroIconScale() const noexcept
{
return _micro_icon_scale;
}
sdword_t GetMicroIconPositionX() const noexcept
{
if (fdword_t screen_value; Render::Instance().ConvertBaseXValueToScreenXValue(_micro_icon_position_x, screen_value))
return std::roundf(screen_value);
return kDefaultMicroIconPositionX;
}
sdword_t GetMicroIconPositionY() const noexcept
{
if (fdword_t screen_value; Render::Instance().ConvertBaseYValueToScreenYValue(_micro_icon_position_y, screen_value))
return std::roundf(screen_value);
return kDefaultMicroIconPositionY;
}
D3DCOLOR GetMicroIconColor() const noexcept
{
return _micro_icon_color;
}
fdword_t GetMicroIconAngle() const noexcept
{
return _micro_icon_angle;
}
public:
void SetLanguage(const cstr_t value) noexcept
{
if (const size_t length = std::strlen(value); length < sizeof(_language))
std::memcpy(_language, value, length + 1);
}
void ResetLanguage() noexcept
{
*_language = '\0';
}
void SetSoundEnable(const bool value) noexcept
{
_sound_enable = value;
}
void SetSoundVolume(const sdword_t value) noexcept
{
_sound_volume = value;
}
void SetSoundBalancer(const bool value) noexcept
{
_sound_balancer = value;
}
void SetSoundFilter(const bool value) noexcept
{
_sound_filter = value;
}
void SetSpeakerIconScale(const fdword_t value) noexcept
{
_speaker_icon_scale = value;
}
void SetSpeakerIconOffsetX(const sdword_t value) noexcept
{
if (fdword_t base_value; Render::Instance().ConvertScreenXValueToBaseXValue(value, base_value))
_speaker_icon_offset_x = std::roundf(base_value);
}
void SetSpeakerIconOffsetY(const sdword_t value) noexcept
{
if (fdword_t base_value; Render::Instance().ConvertScreenYValueToBaseYValue(value, base_value))
_speaker_icon_offset_y = std::roundf(base_value);
}
public:
void SetMicroEnable(const bool value) noexcept
{
_micro_enable = value;
}
void SetMicroVolume(const sdword_t value) noexcept
{
_micro_volume = value;
}
void SetMicroDevice(const cstr_t value) noexcept
{
if (const size_t length = std::strlen(value); length < sizeof(_micro_device))
std::memcpy(_micro_device, value, length + 1);
}
void ResetMicroDevice() noexcept
{
*_micro_device = '\0';
}
void SetMicroIconScale(const fdword_t value) noexcept
{
_micro_icon_scale = value;
}
void SetMicroIconPositionX(const sdword_t value) noexcept
{
if (fdword_t base_value; Render::Instance().ConvertScreenXValueToBaseXValue(value, base_value))
_micro_icon_position_x = std::roundf(base_value);
}
void SetMicroIconPositionY(const sdword_t value) noexcept
{
if (fdword_t base_value; Render::Instance().ConvertScreenYValueToBaseYValue(value, base_value))
_micro_icon_position_y = std::roundf(base_value);
}
void SetMicroIconColor(const D3DCOLOR value) noexcept
{
_micro_icon_color = value;
}
void SetMicroIconAngle(const fdword_t value) noexcept
{
_micro_icon_angle = value;
}
private:
char _language[64];
bool _sound_enable = kDefaultSoundEnable;
sdword_t _sound_volume = kDefaultSoundVolume;
bool _sound_balancer = kDefaultSoundBalancer;
bool _sound_filter = kDefaultSoundFilter;
fdword_t _speaker_icon_scale = kDefaultSpeakerIconScale;
sdword_t _speaker_icon_offset_x = kDefaultSpeakerIconOffsetX;
sdword_t _speaker_icon_offset_y = kDefaultSpeakerIconOffsetY;
bool _micro_enable = kDefaultMicroEnable;
sdword_t _micro_volume = kDefaultMicroVolume;
char _micro_device[512];
fdword_t _micro_icon_scale = kDefaultMicroIconScale;
sdword_t _micro_icon_position_x = kDefaultMicroIconPositionX;
sdword_t _micro_icon_position_y = kDefaultMicroIconPositionY;
D3DCOLOR _micro_icon_color = kDefaultMicroIconColor;
fdword_t _micro_icon_angle = kDefaultMicroIconAngle;
};