-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
227 lines (194 loc) · 8.12 KB
/
Program.cs
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
using ByteDev.Sonos;
using ByteDev.Sonos.Models;
using System.Diagnostics;
using System.Net;
using System.Runtime.InteropServices;
namespace Sonos_autoPause_alpha
{
public class Program
{
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
public struct PausedSonosControler
{
public readonly SonosController sonosController;
public readonly SonosVolume? previousVolume;
public PausedSonosControler(SonosController sonosController, SonosVolume? previousVolume = null)
{
this.sonosController = sonosController;
this.previousVolume = previousVolume;
}
}
static IReadOnlyList<SonosController> ConnectedSonosControllers = [];
static List<PausedSonosControler> PausedHereSonosControllers = [];
static bool MuteInsteadStop;
static int PlayDelayTime;
static int StopDelayTime;
static CancellationTokenSource StopMakeMuted;
static List<Task> MuteInRunTasks;
public static void Main(string[] args)
{
bool ProvideForFocusSession;
bool NoWindow;
List<string> SonosesIPs = [];
List<SonosController> ConnectedSonosControllersTemp = [];
PausedHereSonosControllers = [];
SonosControllerFactory sonosControllerFactory = new();
StopMakeMuted = default;
#region args
if (args.Length == 0)
{
NoWindow = true;
ProvideForFocusSession = true;
MuteInsteadStop = true;
StopDelayTime = 400;
PlayDelayTime = 500;
SonosesIPs.Add("192.168.0.100");
}
else
{
if (!bool.TryParse(args[0], out NoWindow))
{
Console.WriteLine("Wrong arg. of hiding window.");
NoWindow = false;
}
if (!bool.TryParse(args[1], out ProvideForFocusSession))
{
Console.WriteLine("Wrong arg. of provideing for focus session.");
ProvideForFocusSession = true;
}
if (!bool.TryParse(args[2], out MuteInsteadStop))
{
Console.WriteLine("Wrong arg. of action type (Stop or mute).");
ProvideForFocusSession = false;
}
if (!int.TryParse(args[3], out StopDelayTime))
{
Console.WriteLine("Wrong arg. of delay stop.");
StopDelayTime = 150;
}
if (StopDelayTime < 0)
StopDelayTime = -StopDelayTime;
if (!int.TryParse(args[4], out PlayDelayTime))
{
Console.WriteLine("Wrong arg. of delay play.");
PlayDelayTime = 1500;
}
if (PlayDelayTime < 0)
PlayDelayTime = -PlayDelayTime;
for (int i = 5; i != args.Length; ++i)
{
if (IPAddress.TryParse(args[i], out _))
SonosesIPs.Add(args[i]);
else
Console.WriteLine("Wrong arg. of sonos ip - arg no " + i);
}
}
#endregion
if (NoWindow)
{
IntPtr WinH = Process.GetCurrentProcess().MainWindowHandle;
ShowWindow(WinH, 0);
}
foreach (string IPaddr in SonosesIPs)
{
ConnectedSonosControllersTemp.Add(sonosControllerFactory.Create(IPaddr));
}
ConnectedSonosControllers = ConnectedSonosControllersTemp;
SystemMediaObserver.FadeMusicOut += PlayPauseControllers;
SystemMediaObserver systemMediaObserver = new(false, StopDelayTime, PlayDelayTime);
Console.WriteLine("Programm is running, press any key to quit..");
Console.ReadKey(true);
}
private static void MakeSoftPause(PausedSonosControler controler, CancellationToken cancellationToken)
{
int diff = 1;
int ActControlVolume = controler.sonosController.GetVolumeAsync().Result.Value;
SonosVolume NextControlerVolume = new SonosVolume();
while (!cancellationToken.IsCancellationRequested && ActControlVolume != SonosVolume.MinVolume)
{
if (ActControlVolume - diff < SonosVolume.MinVolume)
ActControlVolume = SonosVolume.MinVolume;
else
ActControlVolume = ActControlVolume - diff;
NextControlerVolume = new(ActControlVolume);
Task t = controler.sonosController.SetVolumeAsync(NextControlerVolume);
Task.WaitAny(t);
diff++;
Thread.Sleep(95);
}
}
private static void PauseControllers()
{
StopMakeMuted = new CancellationTokenSource();
MuteInRunTasks = new List<Task>();
foreach (SonosController controller in ConnectedSonosControllers)
{
try
{
if (controller.GetIsPlayingAsync().Result == false)
continue;
SonosVolume controlleVolume = controller.GetVolumeAsync().Result;
if (MuteInsteadStop)
{
PausedSonosControler pausedSonosControler = new PausedSonosControler(controller, controlleVolume);
Task t = new Task(() => { MakeSoftPause(pausedSonosControler, StopMakeMuted.Token); });
t.Start();
MuteInRunTasks.Add(t);
PausedHereSonosControllers.Add(pausedSonosControler);
}
else
{
PausedSonosControler pausedSonosControler = new PausedSonosControler(controller, controlleVolume);
Task t = new Task(delegate { MakeSoftPause(pausedSonosControler, StopMakeMuted.Token); });
t.Start();
t.ContinueWith(delegate { controller.PauseAsync(); }, StopMakeMuted.Token).
ContinueWith(delegate { controller.SetVolumeAsync(controlleVolume); }, StopMakeMuted.Token);
MuteInRunTasks.Add(t);
PausedHereSonosControllers.Add(pausedSonosControler);
}
}
catch (Exception e)
{
Console.ForegroundColor = ConsoleColor.DarkRed;
Console.WriteLine("Some problem in time of controler make silence.");
Console.ResetColor();
}
}
}
private static void PlayControllers()
{
StopMakeMuted.Cancel();
Task.WaitAll(MuteInRunTasks.ToArray());
foreach (PausedSonosControler pausedSonosControler in PausedHereSonosControllers)
{
try
{
pausedSonosControler.sonosController.SetVolumeAsync(pausedSonosControler.previousVolume);
if (!MuteInsteadStop)
pausedSonosControler.sonosController.PlayAsync();
}
catch (Exception e)
{
Console.ForegroundColor = ConsoleColor.DarkRed;
Console.WriteLine("Some problem in time of controler reactivate.");
Console.ResetColor();
}
}
}
private static void PlayPauseControllers(bool PauseNow)
{
if (PauseNow)
{
if (PausedHereSonosControllers.Count != 0)
return;
PauseControllers();
}
else
{
PlayControllers();
PausedHereSonosControllers = [];
}
}
}
}