-
Notifications
You must be signed in to change notification settings - Fork 9
AudioClip
AudioClips are created when you import files in the AGS Editor. The commands in this section allow to play them.
Play
PlayFrom
PlayQueued
Stop
FileType property
IsAvailable property
Type property
(Formerly known as PlayAmbientSound, which is now obsolete)
(Formerly known as PlayMP3File, which is now obsolete)
(Formerly known as PlayMusic, which is now obsolete)
(Formerly known as PlaySound, which is now obsolete)
(Formerly known as PlaySoundEx, which is now obsolete)
(Formerly known as SetMusicRepeat, which is now obsolete)
AudioChannel* AudioClip.Play(optional AudioPriority, optional RepeatStyle)
Plays the audio clip.
Optionally you can supply a priority and Repeat setting; if you do not supply these, the defaults set for the audio clip in the editor will be used.
This command searches through all the available audio channels to find one that is available for this type of audio. If no spare channels are found, it will try to find one that is playing a clip with a lower or equal priority, and interrupt it to replace it with this new sound.
If all audio channels are busy playing higher priority sounds, then this new audio clip will not be played.
This command returns the AudioChannel instance that the new sound is playing on, or null if it did not play for any reason.
NOTE: AGS can only play one MIDI file at a time.
Example:
aExplosion.Play();
plays the aExplosion audio clip.
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.PlayFrom, AudioClip.PlayQueued, AudioClip.Stop
AudioChannel* AudioClip.PlayFrom(int position, optional AudioPriority,
optional RepeatStyle)
Plays the audio clip, starting from position. For the meaning of the position, see the AudioChannel.Seek help page.
Otherwise, this command behaves identially to AudioClip.Play. Please see that help page for more information.
Example:
aExplosion.PlayFrom(1000);
plays the aExplosion audio clip, starting from a 1 second offset (if it is OGG/MP3).
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.Play
(Formerly known as PlayMusicQueued, which is now obsolete)
AudioChannel* AudioClip.PlayQueued(optional AudioPriority, optional RepeatStyle)
Plays the audio clip, or queues it to be played later if it cannot be played now.
This command behaves identially to AudioClip.Play, except that if there are no available audio channels, it will queue this audio clip to be played when a channel becomes available.
Additionally, unlike the Play command, using PlayQueued will not interrupt an existing audio clip with an equal priority; it will only interrupt clips with a lower priority.
You can queue up to 10 tracks in the audio queue. Note that if you queue audio clips to be played after a repeating audio clip, they will never be played.
Example:
aExplosion.Play();
aAftermath.PlayQueued();
plays the aExplosion audio clip, and queues the aAftermath sound to be played afterwards.
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.Play
AudioClip.Stop()
Stops all currently playing instances of this audio clip.
Example:
aExplosion.Play();
Wait(40);
aExplosion.Stop();
plays the aExplosion audio clip, waits 1 second and then stops it again.
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.Play
readonly AudioFileType AudioClip.FileType;
Gets the file type of this audio clip. This is useful in conjunction with the PlayFrom and Seek commands to determine what the position offset represents.
Example:
if (aExplosion.FileType == eAudioFileMIDI)
{
Display("Explosion is a MIDI file!");
}
displays a message if aExplosion is a MIDI file
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioChannel.Seek, AudioChannel.Position, AudioClip.PlayFrom
(Formerly known as IsMusicVoxAvailable, which is now obsolete)
readonly bool AudioClip.IsAvailable;
Gets whether this audio clip is available on the player's system.
This will normally be true, unless the clip was bundled in the external AUDIO.VOX file and the player does not have the file on their system.
You do not normally need to check this property, since the Play command will silently fail if it cannot find the audio clip to play.
Example:
if (aExplosion.IsAvailable)
{
aExplosion.Play();
}
checks if the aExplosion audio clip is available, and if so plays it.
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.Play
readonly AudioType AudioClip.Type;
Gets the type of this audio clip, as initially set in the editor.
The AudioType allows you to group audio clips into areas such as Sound and Music.
Example:
if (aExplosion.Type == eAudioTypeMusic)
{
Display("Explosion is music!");
}
displays a message if the aExplosion clip is music.
Compatibility: Supported by AGS 3.2.0 and later versions.
See Also: AudioClip.Play, Game.IsAudioPlaying
Getting Started in AGS
Editor
- New Game templates
- Editor Preferences
- General Settings
- Default Setup
- Colours Editor
- Room Editor
- Character Editor
- Cursor Editor
- Dialog Editor
- Font Preview
- GUI Editor
- Inventory Items Editor
- View Editor
- Sprite Manager
- Music and sound
- Voice speech
- Script Modules
- System limits
- Log Panel
- Plugins
- Other Features
Engine
Scripting
- Scripting Tutorial
- Scripting Language
-
Scripting API
- Script API Overview
- Standard Constants
- Standard Enumerated Types
- Standard Types
- Game variables
- Global arrays
- Global event handlers
- repeatedly_execute / repeatedly_execute_always
- Custom dialog options rendering
- Global functions: general
- Global functions: message display
- Global functions: multimedia actions
- Global functions: palette operations
- Global functions: room actions
- Global functions: screen effects
- Global functions: wait
- AudioChannel functions and properties
- AudioClip functions and properties
- Camera functions and properties
- Character functions and properties
- DateTime functions and properties
- Dialog functions and properties
- DialogOptionsRenderingInfo functions and properties
- Dictionary functions and properties
- DrawingSurface functions and properties
- DynamicSprite functions and properties
- File functions and properties
- Game functions and properties
- GUI functions and properties
- GUI control functions and properties
- GUI Button functions and properties
- GUI InvWindow functions and properties
- GUI Label functions and properties
- GUI List Box functions and properties
- GUI Slider properties
- GUI Text Box functions and properties
- Hotspot functions and properties
- Inventory item functions and properties
- Maths functions and properties
- Mouse functions and properties
- Object functions and properties
- Overlay functions and properties
- Parser functions
- Region functions and properties
- Room functions and properties
- Screen functions and properties
- Set functions and properties
- Speech functions and properties
- String functions
- System functions and properties
- TextWindowGUI functions and properties
- ViewFrame functions and properties
- Viewport functions and properties
- Obsolete Script API
- Event Types
- Key code table
- Audio in script
Legal Notice
Getting in touch
Misc