Difference between revisions of "MusicListWML"
From The Battle for Wesnoth Wiki
m (Mark it as SVN-only) |
(Updated MusicListWML with engine limitations and macro references) |
||
(8 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{WML Tags}} | ||
== the [music] tag == | == the [music] tag == | ||
− | |||
− | This tag is a subtag of [scenario] and [ | + | This tag is a subtag of [scenario] and also part of [[ActionWML]], which is used to describe a music track to play. You can repeat this tag as many times as you like; if you set the ''append'' tag to ''yes'' they will form a playlist from which tracks will be selected at random. |
Tags describe the music track: | Tags describe the music track: | ||
* ''name'' specifies the music file, relative to '"music/"'. This is compulsory. | * ''name'' specifies the music file, relative to '"music/"'. This is compulsory. | ||
− | * ''append=yes'' specifies this is to be added to the current playlist. Without this, the current playlist is replaced by this track. | + | * ''append=yes'' specifies this is to be added to the current playlist. Without this, the current playlist is replaced by this track. (Note: if the same track is appended multiple times in a row, it will only play once before moving on to the next (different) track) |
* ''play_once=yes'' immediately switch to playing this track, but then return to the play list, which is unchanged. | * ''play_once=yes'' immediately switch to playing this track, but then return to the play list, which is unchanged. | ||
− | * ''immediate=yes'' immediately switch to playing this track. Without this, the song will play when the entire [event] is over or the current song ends. | + | * ''immediate=yes'' immediately switch to playing this track. Without this, the song will play when the entire [event] is over or the current song ends. This exists to force music changes '''during''' dialog exchange or other [event] which take significant time. |
− | * ''ms_before'' (optional) specifies how many milliseconds to delay before playing this track. Currently this does not apply when the scenario first starts, or with ''play_once'' or ''immediate''. | + | * ''ms_before'' (optional) specifies how many milliseconds to delay before playing this track. Currently this does not apply when the scenario first starts, or with ''play_once'' or ''immediate''. Do not use this key for a [music] tag directly under [scenario] tag, because of the sound engine limitations it will lead to a story screen lag. |
− | * ''ms_after'' (optional) specifies how many milliseconds to delay after playing this track. | + | * ''ms_after'' (optional) specifies how many milliseconds to delay after playing this track. Do not use this key for a [music] tag directly under [scenario] tag, because of the sound engine limitations it will lead to a story screen lag. |
+ | * ''shuffle'' {{DevFeature1.13|0}} (optional, boolean 'yes'/'no') specifies whether the music playlist as a whole should be shuffled or not. Defaults to 'yes'. The last [music] tag to include this attribute dictates the playlist's configuration. | ||
+ | For a list of music tracks you can use in your scenario, see [[Available Music]]. | ||
+ | |||
+ | === Example === | ||
+ | This creates a new playlist with three entries in it. The second track is always preceeded by 1/2 a second of silence. | ||
+ | [music] | ||
+ | name=background-music-1.ogg | ||
+ | [/music] | ||
+ | [music] | ||
+ | name=background-music-2.ogg | ||
+ | ms_before=500 | ||
+ | append=yes | ||
+ | [/music] | ||
+ | [music] | ||
+ | name=background-music-3.ogg | ||
+ | append=yes | ||
+ | [/music] | ||
+ | |||
+ | |||
+ | == Useful Macros == | ||
+ | There are some predefined macros. You can find a complete list along with a detailed explanation of how they work [http://www.wesnoth.org/macro-reference.xhtml here]. | ||
+ | * '''{DEFAULT_MUSIC_PLAYLIST}''': Defines a standard playlist. | ||
+ | * '''{FULL_MUSIC_PLAYLIST}''': Defines a playlist of all tracks. | ||
+ | * '''{SCENARIO_MUSIC}''': Defines first track that is played when a scenario starts. | ||
+ | * '''{EXTRA_SCENARIO_MUSIC}''': Use this immediately after the above SCENARIO_MUSIC macro to append extra tracks to the playlist. | ||
+ | * '''{INTRO_AND_SCENARIO_MUSIC}''': Works as SCENARIO_MUSIC does, except that it allows you to specify the music used for the story screen (if any) as well. | ||
+ | * '''{LET_INTRO_MUSIC_FINISH}''': Use immediately following INTRO_AND_SCENARIO_MUSIC, to let the intro music finish before switching to scenario music. | ||
+ | * '''{INCIDENTAL_MUSIC}''': To be played immediately to mark an incident, but not appended to the scenario playlist. | ||
+ | * '''{REPLACE_SCENARIO_MUSIC}''': Use this in a mid-scenario to replace the current playlist. | ||
+ | * '''{APPEND_MUSIC}''': Use this immediately after the above REPLACE_SCENARIO_MUSIC macro to append extra tracks to the playlist. | ||
[[Category: WML Reference]] | [[Category: WML Reference]] | ||
+ | [[Category:Music]] |
Latest revision as of 12:19, 18 April 2019
the [music] tag
This tag is a subtag of [scenario] and also part of ActionWML, which is used to describe a music track to play. You can repeat this tag as many times as you like; if you set the append tag to yes they will form a playlist from which tracks will be selected at random.
Tags describe the music track:
- name specifies the music file, relative to '"music/"'. This is compulsory.
- append=yes specifies this is to be added to the current playlist. Without this, the current playlist is replaced by this track. (Note: if the same track is appended multiple times in a row, it will only play once before moving on to the next (different) track)
- play_once=yes immediately switch to playing this track, but then return to the play list, which is unchanged.
- immediate=yes immediately switch to playing this track. Without this, the song will play when the entire [event] is over or the current song ends. This exists to force music changes during dialog exchange or other [event] which take significant time.
- ms_before (optional) specifies how many milliseconds to delay before playing this track. Currently this does not apply when the scenario first starts, or with play_once or immediate. Do not use this key for a [music] tag directly under [scenario] tag, because of the sound engine limitations it will lead to a story screen lag.
- ms_after (optional) specifies how many milliseconds to delay after playing this track. Do not use this key for a [music] tag directly under [scenario] tag, because of the sound engine limitations it will lead to a story screen lag.
- shuffle (Version 1.13.0 and later only) (optional, boolean 'yes'/'no') specifies whether the music playlist as a whole should be shuffled or not. Defaults to 'yes'. The last [music] tag to include this attribute dictates the playlist's configuration.
For a list of music tracks you can use in your scenario, see Available Music.
Example
This creates a new playlist with three entries in it. The second track is always preceeded by 1/2 a second of silence.
[music] name=background-music-1.ogg [/music] [music] name=background-music-2.ogg ms_before=500 append=yes [/music] [music] name=background-music-3.ogg append=yes [/music]
Useful Macros
There are some predefined macros. You can find a complete list along with a detailed explanation of how they work here.
- {DEFAULT_MUSIC_PLAYLIST}: Defines a standard playlist.
- {FULL_MUSIC_PLAYLIST}: Defines a playlist of all tracks.
- {SCENARIO_MUSIC}: Defines first track that is played when a scenario starts.
- {EXTRA_SCENARIO_MUSIC}: Use this immediately after the above SCENARIO_MUSIC macro to append extra tracks to the playlist.
- {INTRO_AND_SCENARIO_MUSIC}: Works as SCENARIO_MUSIC does, except that it allows you to specify the music used for the story screen (if any) as well.
- {LET_INTRO_MUSIC_FINISH}: Use immediately following INTRO_AND_SCENARIO_MUSIC, to let the intro music finish before switching to scenario music.
- {INCIDENTAL_MUSIC}: To be played immediately to mark an incident, but not appended to the scenario playlist.
- {REPLACE_SCENARIO_MUSIC}: Use this in a mid-scenario to replace the current playlist.
- {APPEND_MUSIC}: Use this immediately after the above REPLACE_SCENARIO_MUSIC macro to append extra tracks to the playlist.
This page was last edited on 18 April 2019, at 12:19.