File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,14 @@ const hlp = @import("helper.zig");
27
27
28
28
const BGM_FADE_DURATION = 800 ;
29
29
30
- var nowBgmId : c_int = -1 ;
30
+ var nowBgmId : ? usize = null ;
31
31
32
- pub fn playBgm (id : c_int ) void {
33
- if (nowBgmId == id ) {
32
+ pub fn playBgm (id : usize ) void {
33
+ if (id == nowBgmId ) {
34
34
return ;
35
35
}
36
- if (nowBgmId == -1 ) {
36
+
37
+ if (nowBgmId == null ) {
37
38
_ = c .Mix_PlayMusic (res .bgms [@intCast (id )], -1 );
38
39
} else {
39
40
_ = c .Mix_FadeInMusic (res .bgms [@intCast (id )], -1 , BGM_FADE_DURATION );
@@ -44,11 +45,12 @@ pub fn playBgm(id: c_int) void {
44
45
45
46
pub fn stopBgm () void {
46
47
_ = c .Mix_FadeOutMusic (BGM_FADE_DURATION );
47
- nowBgmId = -1 ;
48
+ nowBgmId = null ;
48
49
}
49
50
50
51
pub fn randomBgm () void {
51
- playBgm (hlp .randInt (1 , res .bgmsPath .len - 1 ));
52
+ const r : usize = @intCast (hlp .randInt (1 , res .bgmsPath .len - 1 ));
53
+ playBgm (r );
52
54
}
53
55
54
56
pub fn playAudio (id : usize ) void {
You can’t perform that action at this time.
0 commit comments