- This wiki is out of date, use the continuation of this wiki instead
Play song
From FenixWiki
(Difference between revisions)
Revision as of 12:00, 31 July 2007 (edit) Sandman (Talk | contribs) m (→Returns) ← Previous diff |
Revision as of 12:03, 31 July 2007 (edit) (undo) Sandman (Talk | contribs) m (→Errors) Next diff → |
||
Line 26: | Line 26: | ||
| Sound inactive || - The sound is inactive. | | Sound inactive || - The sound is inactive. | ||
|- | |- | ||
- | | Invalid | + | | Invalid songID || - The songID was invalid. |
|- | |- | ||
| Other || - Some Mixer error. | | Other || - Some Mixer error. |
Revision as of 12:03, 31 July 2007
Contents |
Definition
INT play_song ( <INT songID> , <INT repeats> )
Plays a song.
Parameters
INT songID | - Identifier of the song loaded previously with load_song(). |
INT repeats | - Number of times to repeat the song. Use -1 for an infinite loop. |
Returns
INT : Error.
-1 | - Error: sound inactive; mixer error; invalid songID. |
0 | - No error. |
Errors
Sound inactive | - The sound is inactive. |
Invalid songID | - The songID was invalid. |
Other | - Some Mixer error. |
Example
Program example; Private int song; Begin song = load_song("my_song.ogg"); play_song(song,0); Loop frame; End End
Used in example: load_song()