channels.h 1.6 KB

1234567891011121314151617181920212223
  1. // These entries are now also duplicated in ModView, so tell me if you need any adding or removing.
  2. // Note that the order is ok to change, I only read/write text strings of them anyway, but tell me if there
  3. // are different choices to offer in the pulldown box. I know, it's tacky, but ModView wasn't planned as an
  4. // editor and this was never an external file. A great combination... - Ste.
  5. //
  6. typedef enum //# soundChannel_e
  7. {
  8. CHAN_AUTO, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3" # Auto-picks an empty channel to play sound on
  9. CHAN_LOCAL, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3" # menu sounds, etc
  10. CHAN_WEAPON,//## %s !!"W:\game\base\!!sound\*.wav;*.mp3"
  11. CHAN_VOICE, //## %s !!"W:\game\base\!!sound\voice\*.wav;*.mp3" # Voice sounds cause mouth animation
  12. CHAN_VOICE_ATTEN, //## %s !!"W:\game\base\!!sound\voice\*.wav;*.mp3" # Causes mouth animation but still use normal sound falloff
  13. CHAN_VOICE_GLOBAL, //## %s !!"W:\game\base\!!sound\voice\*.wav;*.mp3" # Causes mouth animation and is broadcast with no separation
  14. CHAN_ITEM, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3"
  15. CHAN_BODY, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3"
  16. CHAN_AMBIENT,//## %s !!"W:\game\base\!!sound\*.wav;*.mp3" # added for ambient sounds
  17. CHAN_LOCAL_SOUND, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3" #chat messages, etc
  18. CHAN_ANNOUNCER, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3" #announcer voices, etc
  19. CHAN_LESS_ATTEN, //## %s !!"W:\game\base\!!sound\*.wav;*.mp3" #attenuates similar to chan_voice, but uses empty channel auto-pick behaviour
  20. CHAN_MUSIC, //played as a looping sound - added by BTO (VV)
  21. } soundChannel_t;