-
Notifications
You must be signed in to change notification settings - Fork 5
/
SoundPlayer.cs
executable file
·612 lines (544 loc) · 18.3 KB
/
SoundPlayer.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
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
namespace MarkAble2
{
//this code taken from an article on CodeProject "Playing MP3s using MCI By krazymir"
//http://www.codeproject.com/KB/audio-video/MP3Example.aspx
public class OpenFileEventArgs : EventArgs
{
public OpenFileEventArgs(string filename)
{
this.FileName = filename;
}
public readonly string FileName;
}
public class PlayFileEventArgs : EventArgs
{
}
public class PauseFileEventArgs : EventArgs
{
}
public class StopFileEventArgs : EventArgs
{
}
public class CloseFileEventArgs : EventArgs
{
}
public class ErrorEventArgs : EventArgs
{
public ErrorEventArgs(long Err)
{
this.ErrNum = Err;
}
public readonly long ErrNum;
}
public class SoundPlayer
{
private string Pcommand,FName;
private bool Opened, Playing, Paused, Loop,
MutedAll, MutedLeft, MutedRight;
private int rVolume, lVolume, aVolume,
tVolume, bVolume, VolBalance;
private ulong Lng;
private long Err;
[DllImport("winmm.dll")]
private static extern long mciSendString(string strCommand,
StringBuilder strReturn, int iReturnLength,
IntPtr hwndCallback);
[DllImport("winmm.dll")]
public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume);
[DllImport("winmm.dll")]
public static extern int waveOutSetVolume(IntPtr hwo, uint dwVolume);
public SoundPlayer()
{
Opened = false;
Pcommand = "";
FName = "";
Playing = false;
Paused = false;
Loop = false;
MutedAll = MutedLeft = MutedRight = false;
rVolume = lVolume = aVolume =
tVolume = bVolume = 1000;
Lng = 0;
VolBalance = 0;
Err = 0;
}
#region Volume
public bool MuteAll
{
get
{
return MutedAll;
}
set
{
MutedAll = value;
if (MutedAll)
{
Pcommand = "setaudio MediaFile off";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
else
{
Pcommand = "setaudio MediaFile on";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public bool MuteLeft
{
get
{
return MutedLeft;
}
set
{
MutedLeft = value;
if (MutedLeft)
{
Pcommand = "setaudio MediaFile left off";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
else
{
Pcommand = "setaudio MediaFile left on";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public bool MuteRight
{
get
{
return MutedRight;
}
set
{
MutedRight = value;
if (MutedRight)
{
Pcommand = "setaudio MediaFile right off";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
else
{
Pcommand = "setaudio MediaFile right on";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int VolumeAll
{
get
{
return aVolume;
}
set
{
if (Opened && (value >= 0 && value <= 1000))
{
aVolume = value;
Pcommand = String.Format("setaudio MediaFile" +
" volume to {0}", aVolume);
if((Err=mciSendString(Pcommand, null, 0,
IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int VolumeLeft
{
get
{
return lVolume;
}
set
{
if (Opened && (value >= 0 && value <= 1000))
{
lVolume = value;
Pcommand = String.Format("setaudio MediaFile" +
" left volume to {0}", lVolume);
if((Err=mciSendString(Pcommand, null, 0,
IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int VolumeRight
{
get
{
return rVolume;
}
set
{
if (Opened && (value >= 0 && value <= 1000))
{
rVolume = value;
Pcommand = String.Format("setaudio" +
" MediaFile right volume to {0}", rVolume);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int VolumeTreble
{
get
{
return tVolume;
}
set
{
if (Opened && (value >= 0 && value <= 1000))
{
tVolume = value;
Pcommand = String.Format("setaudio MediaFile" +
" treble to {0}", tVolume);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int VolumeBass
{
get
{
return bVolume;
}
set
{
if (Opened && (value >= 0 && value <= 1000))
{
bVolume = value;
Pcommand = String.Format("setaudio MediaFile bass to {0}",
bVolume);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
public int Balance
{
get
{
return VolBalance;
}
set
{
if (Opened && (value >= -1000 && value <= 1000))
{
VolBalance = value;
if (value < 0)
{
Pcommand = "setaudio MediaFile left volume to 1000";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = String.Format("setaudio MediaFile right" +
" volume to {0}", 1000 + value);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
else
{
Pcommand = "setaudio MediaFile right volume to 1000";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = String.Format("setaudio MediaFile" +
" left volume to {0}", 1000 - value);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
}
#endregion
#region MasterVolume
public static int GetVolume()
{
uint currVol = 0;
waveOutGetVolume(IntPtr.Zero, out currVol);
// Calculate the volume
return (int)(currVol & 0x0000ffff);
}
public static void SetVolume(int volume)
{
uint newVolumeAllChannels = (((uint)volume & 0x0000ffff) | ((uint)volume << 16));
// Set the volume
waveOutSetVolume(IntPtr.Zero, newVolumeAllChannels);
}
private static int mutedVolume = 0;
public static void MuteVolume()
{
int currentVolume = GetVolume();
if (currentVolume > 0)
{
mutedVolume = currentVolume;
}
SetVolume(0);
}
public static void RestoreVolume()
{
if (mutedVolume > 0)
{
SetVolume(mutedVolume);
}
}
#endregion
#region Main Functions
public string FileName
{
get
{
return FName;
}
}
public bool Looping
{
get
{
return Loop;
}
set
{
Loop = value;
}
}
public void Seek(ulong Millisecs)
{
if (Lng == 0)
CalculateLength();
if (Opened && Millisecs <= Lng)
{
if (Playing)
{
if (Paused)
{
Pcommand = String.Format("seek MediaFile to {0}", Millisecs);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
else
{
Pcommand = String.Format("seek MediaFile to {0}", Millisecs);
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = "play MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
}
}
}
}
private void CalculateLength()
{
if (Opened)
{
StringBuilder str = new StringBuilder(128);
mciSendString("status MediaFile length", str, 128, IntPtr.Zero);
Lng = Convert.ToUInt64(str.ToString());
}
else
{
Lng = 0;
}
}
public ulong AudioLength
{
get
{
CalculateLength();
return Lng;
}
}
public void Close()
{
if (Opened)
{
Pcommand = "close MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Opened = false;
Playing = false;
Paused = false;
OnCloseFile(new CloseFileEventArgs());
}
}
public void Open(string sFileName)
{
if (!File.Exists(sFileName))
{
Opened = false;
return;
}
if (!Opened)
{
Pcommand = "open \"" + sFileName +
"\" type mpegvideo alias MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
FName = sFileName;
Opened = true;
Playing = false;
Paused = false;
Pcommand = "set MediaFile time format milliseconds";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = "set MediaFile seek exactly on";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
//CalculateLength();
OnOpenFile(new OpenFileEventArgs(sFileName));
}
else
{
this.Close();
this.Open(sFileName);
}
}
public void Play()
{
if (Opened)
{
if (!Playing)
{
Playing = true;
Pcommand = "play MediaFile";
if (Loop) Pcommand += " REPEAT";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnPlayFile(new PlayFileEventArgs());
}
else
{
if (!Paused)
{
Pcommand = "seek MediaFile to start";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = "play MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnPlayFile(new PlayFileEventArgs());
}
else
{
Paused = false;
Pcommand = "play MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnPlayFile(new PlayFileEventArgs());
}
}
}
}
public void Pause()
{
if (Opened)
{
if (!Paused)
{
Paused = true;
Pcommand = "pause MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnPauseFile(new PauseFileEventArgs());
}
else
{
Paused = false;
Pcommand = "play MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnPlayFile(new PlayFileEventArgs());
}
}
}
public void Stop()
{
if (Opened && Playing)
{
Playing = false;
Paused = false;
Pcommand = "seek MediaFile to start";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
Pcommand = "stop MediaFile";
if((Err=mciSendString(Pcommand, null, 0, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
OnStopFile(new StopFileEventArgs());
}
}
public ulong CurrentPosition
{
get
{
if (Opened && Playing)
{
StringBuilder s = new StringBuilder(128);
Pcommand = "status MediaFile position";
if((Err=mciSendString(Pcommand, s, 128, IntPtr.Zero))!=0)
OnError(new ErrorEventArgs(Err));
return Convert.ToUInt64(s.ToString());
}
else return 0;
}
}
#endregion
#region Event Handling
public delegate void OpenFileEventHandler(Object sender,
OpenFileEventArgs oea);
public delegate void PlayFileEventHandler(Object sender,
PlayFileEventArgs pea);
public delegate void PauseFileEventHandler(Object sender,
PauseFileEventArgs paea);
public delegate void StopFileEventHandler(Object sender,
StopFileEventArgs sea);
public delegate void CloseFileEventHandler(Object sender,
CloseFileEventArgs cea);
public delegate void ErrorEventHandler(Object sender,
ErrorEventArgs eea);
public event OpenFileEventHandler OpenFile;
public event PlayFileEventHandler PlayFile;
public event PauseFileEventHandler PauseFile;
public event StopFileEventHandler StopFile;
public event CloseFileEventHandler CloseFile;
public event ErrorEventHandler Error;
protected virtual void OnOpenFile(OpenFileEventArgs oea)
{
if (OpenFile != null) OpenFile(this, oea);
}
protected virtual void OnPlayFile(PlayFileEventArgs pea)
{
if (PlayFile != null) PlayFile(this, pea);
}
protected virtual void OnPauseFile(PauseFileEventArgs paea)
{
if (PauseFile != null) PauseFile(this, paea);
}
protected virtual void OnStopFile(StopFileEventArgs sea)
{
if (StopFile != null) StopFile(this, sea);
}
protected virtual void OnCloseFile(CloseFileEventArgs cea)
{
if (CloseFile != null) CloseFile(this, cea);
}
protected virtual void OnError(ErrorEventArgs eea)
{
if (Error != null) Error(this, eea);
}
#endregion
}
}