]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_mem.c
Undo moving cl_available. This really doesn't belong in system-specific
[xonotic/darkplaces.git] / snd_mem.c
index 27414ea83764a6bce317156b98ecfaf60e9c9d0e..81b0db1537fcbdb9d97eb28d2b99a34fedd4f6ff 100644 (file)
--- a/snd_mem.c
+++ b/snd_mem.c
@@ -21,6 +21,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include "quakedef.h"
 
+#include "ogg.h"
+
+
 /*
 ================
 ResampleSfx
@@ -207,38 +210,23 @@ void ResampleSfx (sfxcache_t *sc, qbyte *data, char *name)
 
 /*
 ==============
-S_LoadSound
+S_LoadWavFile
 ==============
 */
-sfxcache_t *S_LoadSound (sfx_t *s, int complain)
+sfxcache_t *S_LoadWavFile (const char *filename, sfx_t *s)
 {
-       char namebuffer[MAX_QPATH];
        qbyte *data;
        wavinfo_t info;
        int len;
        sfxcache_t *sc;
 
-       // see if still in memory
-       if (!shm || !shm->speed)
-               return NULL;
-       if (s->sfxcache && s->sfxcache->speed == shm->speed)
-               return s->sfxcache;
-
-       // load it in
-       snprintf(namebuffer, sizeof(namebuffer), "sound/%s", s->name);
-
-       data = FS_LoadFile(namebuffer, false);
-
+       // Load the file
+       data = FS_LoadFile(filename, false);
        if (!data)
-       {
-               s->silentlymissing = !complain;
-               if (complain)
-                       Con_Printf("Couldn't load %s\n", namebuffer);
                return NULL;
-       }
 
        info = GetWavinfo (s->name, data, fs_filesize);
-       // LordHavoc: stereo sounds are now allowed (intended for music)
+       // Stereo sounds are allowed (intended for music)
        if (info.channels < 1 || info.channels > 2)
        {
                Con_Printf("%s has an unsupported number of channels (%i)\n",s->name, info.channels);
@@ -274,6 +262,56 @@ sfxcache_t *S_LoadSound (sfx_t *s, int complain)
        return sc;
 }
 
+
+/*
+==============
+S_LoadSound
+==============
+*/
+sfxcache_t *S_LoadSound (sfx_t *s, int complain)
+{
+       char namebuffer[MAX_QPATH];
+       size_t len;
+       sfxcache_t *sc;
+       qboolean modified_name = false;
+
+       // see if still in memory
+       if (!shm || !shm->speed)
+               return NULL;
+       if (s->sfxcache && (s->sfxcache->speed == shm->speed))
+               return s->sfxcache;
+
+       s->silentlymissing = !complain;
+
+       len = snprintf (namebuffer, sizeof (namebuffer), "sound/%s", s->name);
+       if (len >= sizeof (namebuffer))
+               return NULL;
+
+       // Try to load it as a WAV file
+       sc = S_LoadWavFile (namebuffer, s);
+       if (sc != NULL)
+               return sc;
+
+       // Else, try to load it as an Ogg Vorbis file
+       if (!strcasecmp (namebuffer + len - 4, ".wav"))
+       {
+               strcpy (namebuffer + len - 3, "ogg");
+               modified_name = true;
+       }
+       sc = OGG_LoadVorbisFile (namebuffer, s);
+       if (sc != NULL)
+               return sc;
+
+       // Can't load the sound!
+       if (complain)
+       {
+               if (modified_name)
+                       strcpy (namebuffer + len - 3, "wav");
+               Con_Printf ("Couldn't load %s\n", namebuffer);
+       }
+       return NULL;
+}
+
 void S_UnloadSound(sfx_t *s)
 {
        if (s->sfxcache)