File: mixer_channels.t

package info (click to toggle)
libsdl-perl 2.548-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,972 kB
  • sloc: perl: 13,985; ansic: 583; makefile: 35
file content (213 lines) | stat: -rw-r--r-- 5,700 bytes parent folder | download | duplicates (7)
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
#!/usr/bin/perl -w
use strict;
use warnings;
use SDL;
use SDL::Config;

my $audiodriver;

BEGIN {
	use Config;
	if ( !$Config{'useithreads'} ) {
		print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
		exit(0);
	}
	require threads;
	require threads::shared;


	use Test::More;
	use lib 't/lib';
	use SDL::TestTool;

	$audiodriver = $ENV{SDL_AUDIODRIVER};
	$ENV{SDL_AUDIODRIVER} = 'dummy' unless $ENV{SDL_RELEASE_TESTING};

	if ( !SDL::TestTool->init(SDL_INIT_AUDIO) ) {
		plan( skip_all => 'Failed to init sound' );
	} elsif ( !SDL::Config->has('SDL_mixer') ) {
		plan( skip_all => 'SDL_mixer support not compiled' );
	}
}

use SDL::Mixer;
use SDL::Mixer::Channels;
use SDL::Mixer::Samples;
use SDL::Mixer::MixChunk;

my $can_open = SDL::Mixer::open_audio( 44100, SDL::Audio::AUDIO_S16SYS, 2, 4096 );

unless($can_open == 0)
{
	plan( skip_all => 'Cannot open audio :'.SDL::get_error() );
}

is( $can_open ,
		0, '[open_audio] ran'
  );

is( SDL::Mixer::Channels::allocate_channels(4),
		4, "[allocate_channels] 4 channels allocated"
  );

my $finished :shared = 0;
my $callback = sub {
	my ($channel) = shift;
	printf( "[channel_finished] callback called for channel %d\n", $channel);
	$finished++;
};

SKIP:
{
	skip( 'No callbacks unless SDL_RELEASE_TESTING', 1 )
		unless $ENV{'SDL_RELEASE_TESTING'};
	SDL::Mixer::Channels::channel_finished($callback);
	pass '[channel_finished] registered callback';
}

my $delay           = 500;
my $audio_test_file = 'test/data/silence.wav';

if ( $ENV{'SDL_RELEASE_TESTING'} ) {
	SDL::Mixer::Channels::volume( -1, 10 );
	is( SDL::Mixer::Channels::volume( -1, 20 ),
			10, "[volume] set to 20, previously was 10"
	  );
	$delay           = 2000;
	$audio_test_file = 'test/data/sample.wav';
} else {
	SDL::Mixer::Channels::volume( -1, 10 );
	is( SDL::Mixer::Channels::volume( -1, 1 ),
			10, "[volume] set to 1, previously was 10"
	  );
}

my $sample_chunk = SDL::Mixer::Samples::load_WAV($audio_test_file);
my $playing_channel = SDL::Mixer::Channels::play_channel( -1, $sample_chunk, -1 );
isnt(
		$playing_channel, -1,
		"[play_channel] plays $audio_test_file on channel " . $playing_channel
	);
is( SDL::Mixer::Channels::fading_channel($playing_channel),
		MIX_NO_FADING, "[fading_channel] channel $playing_channel is not fading"
  );
is( SDL::Mixer::Channels::playing($playing_channel),
		1, "[playing] channel $playing_channel is playing"
  );
is( SDL::Mixer::Channels::paused($playing_channel),
		0, "[paused] channel $playing_channel is not paused"
  );
ok( $delay, 'delay definedness madness test #1' );
my $fading_channels = SDL::Mixer::Channels::fade_out_channel( $playing_channel, $delay );
is( $fading_channels > 0,
		1, "[fade_out_channel] $delay ms for $fading_channels channel(s)"
  );
is( SDL::Mixer::Channels::fading_channel($playing_channel),
		MIX_FADING_OUT, "[fading_channel] channel $playing_channel is fading out"
  );
ok( $delay, 'delay definedness madness test #2' );
SDL::delay($delay);
ok( $delay, 'delay definedness madness test #3' );

$playing_channel = SDL::Mixer::Channels::fade_in_channel( -1, $sample_chunk, 0, $delay );
ok( $delay, 'delay definedness madness test #4' );

isnt(
		$playing_channel, -1,
		"[fade_in_channel] $delay ms for channel $playing_channel"
	);
is( SDL::Mixer::Channels::fading_channel($playing_channel),
		MIX_FADING_IN, "[fading_channel] channel $playing_channel is fading in"
  );
ok( $delay, 'delay definedness madness test #5' );

SDL::delay($delay);
ok( $delay, 'delay definedness madness test #6' );

SDL::Mixer::Channels::pause(-1);
pass '[pause] ran';
is( SDL::Mixer::Channels::paused($playing_channel),
		1, "[paused] channel $playing_channel is paused"
  );


SDL::delay( $delay / 4 );
ok( $delay, 'delay definedness madness test #7' );

SDL::Mixer::Channels::resume(-1);
pass '[resume] ran';

SDL::delay($delay);
ok( $delay, 'delay definedness madness test #8' );

is( SDL::Mixer::Channels::halt_channel($playing_channel),
		0, "[halt_channel] stop channel $playing_channel"
  );
is( SDL::Mixer::Channels::playing($playing_channel),
		0, "[playing] channel $playing_channel is not playing"
  );

SDL::delay($delay);
ok( $delay, 'delay definedness madness test #9' );

$playing_channel = SDL::Mixer::Channels::play_channel_timed( -1, $sample_chunk, 0, $delay );
ok( $delay, 'delay definedness madness test #10' );

isnt(
		$playing_channel, -1,
		"[play_channel_timed] play $delay ms for channel $playing_channel"
	);
SDL::delay( $delay / 4 );
ok( $delay, 'delay definedness madness test #11' );

my $expire_channel = SDL::Mixer::Channels::expire_channel( $playing_channel, $delay );
ok( $delay, 'delay definedness madness test #12' );

is( $expire_channel > 0,
		1,
		"[expire_channel] stops after $delay ms for $expire_channel channel(s)"
  );

SDL::delay($delay);
ok( $delay, 'delay definedness madness test #13' );

$playing_channel = SDL::Mixer::Channels::fade_in_channel_timed(
		-1, $sample_chunk, 0, $delay,
		$delay * 2
		);
ok( $delay, 'delay definedness madness test #14' );

isnt(
		$playing_channel, -1,
		"[fade_in_channel_timed] play " . ( $delay * 2 ) . " ms after $delay ms fade in for channel $playing_channel"
	);

isa_ok(
		SDL::Mixer::Channels::get_chunk($playing_channel),
		'SDL::Mixer::MixChunk', '[get_chunk]'
	  );

SDL::delay(1000);
ok( $delay, 'delay definedness madness test #15' );

SDL::Mixer::close_audio();
pass '[close_audio] ran';

SKIP:
{
	skip( 'No callbacks unless SDL_RELEASE_TESTING', 1 )
		unless $ENV{'SDL_RELEASE_TESTING'};
	is( $finished > 0,
		1, '[callback_finished] called the callback got ' . $finished
	);
}

if ($audiodriver) {
	$ENV{SDL_AUDIODRIVER} = $audiodriver;
} else {
	delete $ENV{SDL_AUDIODRIVER};
}

sleep(1);

done_testing();