51c0c1210d7b8a8a73e13b5c3294a89305e6b546
[nit.git] / lib / app / audio.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2014 Romain Chanoir <romain.chanoir@viacesi.fr>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # App audio abstraction
18 #
19 # Once the application has started (after `App.setup`)
20 # use `App.load_sound` to get a sound
21 # then `Sound.play` to play it
22 module audio
23
24 import app_base
25 import standard::error
26
27 # Platform variations
28 # TODO: move on the platform once qualified names are understand in the condition
29 import linux::audio is conditional(linux)
30 import android::audio is conditional(android)
31
32 # Abstraction of a playable Audio
33 abstract class PlayableAudio
34
35 # Name of this playable audio
36 var name: String
37
38 # Error which is not null if an error happened
39 var error: nullable Error = null is writable
40
41 # Is this already loaded ?
42 protected var is_loaded = false is writable
43
44 # load this playable audio
45 fun load is abstract
46
47 # Plays the sound
48 fun play is abstract
49
50 # Pauses the sound
51 fun pause is abstract
52
53 # Resumes the sound
54 fun resume is abstract
55 end
56
57 # Abstraction of a short sound
58 class Sound
59 super PlayableAudio
60 end
61
62 # Abstraction of a long song, that can bee looped
63 class Music
64 super PlayableAudio
65 end
66
67 redef class App
68
69 # Load a sound
70 fun load_sound(name: String): Sound is abstract
71
72 # Load a music
73 fun load_music(name: String): Music is abstract
74 end