annotate tests/test_audio.nim @ 764:0daf0d769fc1

fix: wrong path for glsl on windows
author Sam <sam@basx.dev>
date Sun, 25 Jun 2023 09:26:19 -0700
parents 5c08c45b51b9
children b145a05c2459
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
1 import std/os
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
2 import std/sequtils
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
3 import std/times
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
4
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
5 import semicongine
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
6
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
7
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
8 proc test1() =
637
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
9 mixer[].addSound("test1", newSound(sineSoundData(1000, 2, 44100)))
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
10 mixer[].addSound("test2", newSound(sineSoundData(500, 2, 44100)))
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
11
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
12
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
13 let s1 = mixer[].play("test1", loop=true)
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
14 let s2 = mixer[].play("test2", loop=true)
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
15
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
16 let t0 = now()
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
17 while true:
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
18 let runtime = (now() - t0).inMilliseconds()
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
19 if runtime > 1500:
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
20 mixer[].setLevel(0.1)
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
21 if runtime > 3000:
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
22 mixer[].stop(s2)
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
23 if runtime > 6000:
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
24 mixer[].stop("")
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
25 if runtime > 8000:
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
26 break
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
27
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
28 proc test2() =
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
29 let
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
30 # notes
637
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
31 c = sineSoundData(261.6256, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
32 d = sineSoundData(293.6648, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
33 e = sineSoundData(329.6276, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
34 f = sineSoundData(349.2282, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
35 g = sineSoundData(391.9954, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
36 a = sineSoundData(440.0000, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
37 b = sineSoundData(493.8833, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
38 bb = sineSoundData(466.1638, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
39 c2 = sineSoundData(523.2511, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
40 d2 = sineSoundData(587.3295, 0.5, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
41 bbShort = sineSoundData(466.1638, 0.25, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
42 c2Short = sineSoundData(523.2511, 0.25, 44100)
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
43 d2Short = sineSoundData(587.3295, 0.25, 44100)
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
44
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
45 # song
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
46 frerejaquesData = concat(
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
47 f, g, a, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
48 f, g, a, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
49 a, bb, c2, c2,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
50 a, bb, c2, c2,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
51 c2Short, d2Short, c2Short, bbShort, a, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
52 c2Short, d2Short, c2Short, bbShort, a, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
53 f, c, f, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
54 f, c, f, f,
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
55 )
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
56
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
57 mixer[].addSound("frerejaques", newSound(frerejaquesData))
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
58 discard mixer[].play("frerejaques")
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
59
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
60 while mixer[].isPlaying():
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
61 sleep(1)
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
62
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
63 proc test3() =
725
5c08c45b51b9 did: change audio-test to use ogg/vorbis
Sam <sam@basx.dev>
parents: 680
diff changeset
64 mixer[].addSound("pianosong", loadAudio("test.ogg"))
637
bb6857da8113 fix: bad audio buffer handling, reduce latency (unbearable on windows)
Sam <sam@basx.dev>
parents: 632
diff changeset
65 mixer[].addSound("ping", newSound(sineSoundData(500, 0.05, 44100)))
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
66 mixer[].addTrack("effects")
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
67 discard mixer[].play("pianosong")
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
68
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
69 while mixer[].isPlaying():
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
70 discard mixer[].play("ping", track="effects", stopOtherSounds=true, level=0.5)
725
5c08c45b51b9 did: change audio-test to use ogg/vorbis
Sam <sam@basx.dev>
parents: 680
diff changeset
71 discard stdin.readLine()
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
72
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
73 when isMainModule:
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
74 startMixerThread()
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
75 test1()
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
76 mixer[].stop()
630
a68941309f22 add: audio test, be aware that the file tests/audiotest.PCM.s16le.48000.2 needs to be manually generated and placed in order for the test to play it successfully
Sam <sam@basx.dev>
parents:
diff changeset
77 test2()
632
42ad7e6208e9 add: audio subsystem, windows backend still missing
Sam <sam@basx.dev>
parents: 630
diff changeset
78 mixer[].stop()
725
5c08c45b51b9 did: change audio-test to use ogg/vorbis
Sam <sam@basx.dev>
parents: 680
diff changeset
79 test3()
5c08c45b51b9 did: change audio-test to use ogg/vorbis
Sam <sam@basx.dev>
parents: 680
diff changeset
80 mixer[].stop()