]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/sounds/all.qh
Registry: overflow check
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / sounds / all.qh
1 #ifndef SOUNDS_ALL_H
2 #define SOUNDS_ALL_H
3
4 #include "../teams.qh"
5
6 // Play all sounds via sound7, for access to the extra channels.
7 // Otherwise, channels 8 to 15 would be blocked for a weird QW feature.
8 #ifdef SVQC
9     #define _sound(e, c, s, v, a) do { \
10         entity __e = e; \
11         if (!sound_allowed(MSG_BROADCAST, __e)) break; \
12         sound7(__e, c, s, v, a, 0, 0); \
13     } while (0)
14 #else
15     #define _sound(e, c, s, v, a) sound7(e, c, s, v, a, 0, 0)
16 #endif
17 #define sound(e, c, s, v, a) _sound(e, c, s.sound_str(), v, a)
18 // Used in places where a string is required
19 #define SND(id) (SND_##id.sound_str())
20
21 REGISTRY(Sounds, BIT(8))
22 REGISTER_REGISTRY(RegisterSounds)
23
24 CLASS(Sound, Object)
25     ATTRIB(Sound, m_id, int, 0)
26     ATTRIB(Sound, sound_str, string(), func_null)
27     CONSTRUCTOR(Sound, string() path)
28     {
29         CONSTRUCT(Sound);
30         this.sound_str = path;
31     }
32     METHOD(Sound, sound_precache, void(entity this)) {
33         string s = this.sound_str();
34         if (s && s != "" && !fexists(strcat("sound/", s))) {
35             LOG_WARNINGF("Missing sound: \"%s\"\n", s);
36             return;
37         }
38         LOG_TRACEF("precache_sound(\"%s\")\n", s);
39         precache_sound(s);
40     }
41 ENDCLASS(Sound)
42
43 #define SOUND(name, path) \
44     string SND_##name##_get() { return path; } \
45     REGISTER(RegisterSounds, SND, Sounds, name, m_id, NEW(Sound, SND_##name##_get))
46
47 STATIC_INIT(RegisterSounds_precache) {
48     FOREACH(Sounds, true, LAMBDA({
49         it.sound_precache(it);
50     }));
51 }
52
53 SOUND(Null, "misc/null.wav");
54 #include "all.inc"
55
56 #endif