Both sides previous revisionPrevious revisionNext revision | Previous revision |
trs:sound [2017/09/30 19:13] – [Sound Sources] lwmte | trs:sound [2021/05/21 21:51] (current) – [Sound Sources] stohrendorf |
---|
| {{indexmenu_n>7}} |
| |
====== Music and Sound ====== | ====== Music and Sound ====== |
| |
| |
{{anchor:tr_sound_source}} | {{anchor:tr_sound_source}} |
| |
<code cpp> | <code cpp> |
struct tr_sound_source // 16 bytes | struct tr_sound_source // 16 bytes |
uint16_t Flags; // 0x40, 0x80, or 0xC0 | uint16_t Flags; // 0x40, 0x80, or 0xC0 |
}; | }; |
| |
</code> | </code> |
| |
''%%Flags%%'' field defines sound source behaviour, if it was placed in room which can be flipped to alternate room: | ''<nowiki>Flags</nowiki>'' field defines sound source behaviour, if it was placed in room which can be flipped to alternate room: |
| |
| * ''<nowiki>0x40</nowiki>'': Play sound if room is in alternate state. |
| * ''<nowiki>0x80</nowiki>'': Play sound if room is in original state. |
| Note that these flags are not mutually exclusive. |
| |
* ''%%0x40%%'': Play sound only when room is in alternate state. | |
* ''%%0x80%%'': Play sound only when room is in original state. | |
* ''%%0xC0%%'': Always play sound (in both original and alternate rooms). | |
==== Sound Map ==== | ==== Sound Map ==== |
| |
^ 10 ^ ::: | ::: | ::: | | ^ 10 ^ ::: | ::: | ::: | |
^ 11 ^ ::: | ::: | ::: | | ^ 11 ^ ::: | ::: | ::: | |
^ 12 ^ ''%%0x1000%%'' | Meaning unknown | Set when //N// value is defined in sound script used with TRLE | | ^ 12 ^ ''%%0x1000%%'' | No panoramic | Disables panoramic calculation of a given sample (always plays at center). | |
^ 13 ^ ''%%0x2000%%'' | Randomize pitch | When this flag is set, sound pitch will be slightly varied with each playback event | | ^ 13 ^ ''%%0x2000%%'' | Randomize pitch | When this flag is set, sound pitch will be slightly varied with each playback event | |
^ 14 ^ ''%%0x4000%%'' | Randomize gain | When this flag is set, sound volume (gain) will be slightly varied with each playback event | | ^ 14 ^ ''%%0x4000%%'' | Randomize gain | When this flag is set, sound volume (gain) will be slightly varied with each playback event | |