-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathDeviceAPOInfo.h
144 lines (125 loc) · 3.94 KB
/
DeviceAPOInfo.h
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
/*
This file is part of EqualizerAPO, a system-wide equalizer.
Copyright (C) 2012 Jonas Thedering
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
#include <string>
#include <vector>
#include <memory>
#include "AbstractAPOInfo.h"
#define APOGUID_NULL L"{00000000-0000-0000-0000-000000000000}"
#define APOGUID_NOKEY L"!KEY"
#define APOGUID_NOVALUE L"!VALUE"
class DeviceAPOInfo : public AbstractAPOInfo
{
public:
enum InstallMode
{
INSTALL_LFX_GFX = 0,
INSTALL_SFX_MFX = 1,
INSTALL_SFX_EFX = 2
};
struct InstallState
{
bool installPreMix;
bool installPostMix;
bool useOriginalAPOPreMix;
bool useOriginalAPOPostMix;
bool autoAdjust;
InstallMode installMode;
bool allowSilentBufferModification;
InstallState()
{
installPreMix = false;
installPostMix = false;
useOriginalAPOPreMix = false;
useOriginalAPOPostMix = false;
autoAdjust = true;
installMode = INSTALL_LFX_GFX;
allowSilentBufferModification = false;
}
bool operator!=(const InstallState& other) const
{
return memcmp(this, &other, sizeof(InstallState)) != 0;
}
};
static std::vector<std::shared_ptr<AbstractAPOInfo>> loadAllInfos(bool input);
static std::wstring getDefaultDevice(bool input, int role = 1);
static bool checkProtectedAudioDG(bool fix);
static bool checkAPORegistration(bool fix);
bool load(const std::wstring& deviceGuid, std::wstring defaultDeviceGuid = L"");
bool canBeUpgraded() const override;
bool hasChanges() const override;
bool isExperimental() const override;
std::wstring getOriginalAPOPreMix();
std::wstring getOriginalAPOPostMix();
void install() override;
void uninstall() override;
void reinstall() override;
std::wstring getConnectionName() const override;
std::wstring getDeviceName() const override;
std::wstring getDeviceGuid() const override;
std::wstring getDeviceString() const override;
unsigned getChannelCount() const override;
unsigned getSampleRate() const override;
unsigned long getChannelMask() const override;
bool isInput() const override;
bool isInstalled() const override;
bool isEnhancementsDisabled() const override;
bool isDefaultDevice() const override;
bool isDisabled() const override;
bool isUnplugged() const override;
const InstallState& getCurrentInstallState();
InstallState& getSelectedInstallState();
std::wstring getPreMixChildGuid();
std::wstring getPostMixChildGuid();
void testAPOInstallation();
private:
void fail(const std::wstring& functionName, HRESULT hr);
std::wstring deviceName;
std::wstring connectionName;
std::wstring deviceGuid;
unsigned channelCount;
unsigned sampleRate;
unsigned long channelMask;
bool defaultDevice;
bool enhancementsDisabled;
bool disabled;
bool unplugged;
// used for creating child APO
std::wstring preMixChildGuid;
std::wstring postMixChildGuid;
// used for uninstallation
std::wstring originalApoGuids[5];
bool input;
bool installed;
std::wstring version;
InstallState currentInstallState;
// selection in GUI
InstallState selectedInstallState;
};
class DeviceException
{
public:
DeviceException(const std::wstring& message)
: message(message)
{
}
std::wstring getMessage()
{
return message;
}
private:
std::wstring message;
};