]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/sounds/sound.qh
Adapt indentation of TC calls to the surrounding code indentation
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / sounds / sound.qh
1 #pragma once
2
3 // negative = SVQC autochannels
4 // positive = one per entity
5
6 const int CH_INFO = 0;
7 const int CH_WEAPON_A = -1;
8 const int CH_WEAPON_B = -1;
9 const int CH_WEAPON_SINGLE = 1;
10 const int CH_VOICE = -2;
11 // const int CH_VOICE_SINGLE = 2;
12 const int CH_TRIGGER = -3;
13 const int CH_TRIGGER_SINGLE = 3;
14 const int CH_SHOTS = -4;
15 const int CH_SHOTS_SINGLE = 4;
16 // const int CH_TUBA = -5;
17 const int CH_TUBA_SINGLE = 5;
18 const int CH_PAIN = -6;
19 const int CH_PAIN_SINGLE = 6;
20 const int CH_PLAYER = -7;
21 const int CH_PLAYER_SINGLE = 7;
22 // const int CH_BGM_SINGLE = -8;
23 const int CH_BGM_SINGLE = 8;
24 const int CH_AMBIENT = -9;
25 const int CH_AMBIENT_SINGLE = 9;
26
27 const float ATTEN_NONE = 0;
28 const float ATTEN_MIN = 0.015625;
29 const float ATTEN_NORM = 0.5;
30 const float ATTEN_LARGE = 1;
31 const float ATTEN_IDLE = 2;
32 const float ATTEN_STATIC = 3;
33 const float ATTEN_MAX = 3.984375;
34
35 const float VOL_BASE = 0.7;
36 const float VOL_BASEVOICE = 1.0;
37 const float VOL_MUFFLED = 0.35;
38
39 // Play all sounds via sound7, for access to the extra channels.
40 // Otherwise, channels 8 to 15 would be blocked for a weird QW feature.
41 #ifdef SVQC
42         #define _sound(e, c, s, v, a) \
43                 MACRO_BEGIN \
44                 { \
45                         entity __e = e; \
46                         if (sound_allowed(MSG_BROADCAST, __e)) \
47                                 sound7(__e, c, s, v, a, 0, 0); \
48                 } MACRO_END
49 #else
50         #define _sound(e, c, s, v, a) sound7(e, c, s, v, a, 0, 0)
51 #endif
52 #define sound(e, c, s, v, a) _sound(e, c, Sound_fixpath(s), v, a)
53
54 /**
55  * because sound7 didn't have origin
56  *
57  * @param e sound owner
58  * @param o sound origin
59  * @param chan sound channel
60  * @param samp sound filename
61  * @param vol sound volume
62  * @param atten sound attenuation
63  * @param speed
64  * @param sf
65  */
66 #define sound8(e, o, chan, samp, vol, atten, speed, sf) \
67         MACRO_BEGIN \
68         { \
69                 entity __e; \
70                 int __chan = chan; \
71                 string __samp = samp; \
72                 bool auto = false; \
73                 if (__chan > 0) __e = e; \
74                 else \
75                 { \
76                         auto = true; \
77                         __chan = fabs(__chan); \
78                         entity tmp = __e = new(csqc_autochannel); \
79                         setthink(tmp, SUB_Remove); \
80                         tmp.nextthink = time + soundlength(__samp); \
81                 } \
82                 vector old_origin = __e.origin; \
83                 vector old_mins = __e.mins; \
84                 vector old_maxs = __e.maxs; \
85                 setorigin(__e, o); \
86                 setsize(__e, '0 0 0', '0 0 0'); \
87                 sound7(__e, __chan, __samp, vol, atten, speed, sf); \
88                 if (!auto) \
89                 { \
90                         setorigin(__e, old_origin); \
91                         setsize(__e, old_mins, old_maxs); \
92                 } \
93         } MACRO_END
94
95 string _Sound_fixpath(string base)
96 {
97         if (base == "") return string_null;
98 #ifdef SVQC
99         return strcat(base, ".wav");  // let the client engine decide
100 #else
101 #define extensions(x) \
102         x(wav) \
103         x(ogg) \
104         x(flac) \
105         /**/
106 #define tryext(ext) { \
107                 string s = strcat(base, "." #ext); \
108                 if (fexists(strcat("sound/", s))) { \
109                         return s; \
110                 } \
111         }
112         extensions(tryext);
113         LOG_WARNF("Missing sound: \"%s\"", strcat("sound/", base));
114 #undef tryext
115 #undef extensions
116         return string_null;
117 #endif
118 }
119
120 CLASS(Sound, Object)
121         ATTRIB(Sound, m_id, int, 0);
122         ATTRIB(Sound, sound_str, string());
123         ATTRIB(Sound, sound_str_, string);
124         CONSTRUCTOR(Sound, string() path)
125         {
126                 CONSTRUCT(Sound);
127                 this.sound_str = path;
128         }
129         METHOD(Sound, sound_precache, void(Sound this))
130         {
131                 TC(Sound, this);
132                 string s = _Sound_fixpath(this.sound_str());
133                 if (!s) return;
134                 profile(sprintf("precache_sound(\"%s\")", s));
135                 precache_sound(s);
136                 strcpy(this.sound_str_, s);
137         }
138 ENDCLASS(Sound)
139
140 entity _Sound_fixpath_this;
141 string _Sound_fixpath_cached;
142 #define Sound_fixpath(this) ( \
143         _Sound_fixpath_this = (this), \
144         _Sound_fixpath_cached = _Sound_fixpath_this.sound_str_, \
145         _Sound_fixpath_cached ? _Sound_fixpath_cached : _Sound_fixpath(_Sound_fixpath_this.sound_str()) \
146 )