mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Fix sound system restart crash with high res music pack
git-svn-id: https://svn.eduke32.com/eduke32@1000 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
73a9dbc80e
commit
37767e0caf
6 changed files with 32 additions and 28 deletions
|
@ -232,7 +232,7 @@ int loadgldriver(const char *driver)
|
||||||
if (!driver)
|
if (!driver)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
driver = "OPENGL32.DLL";
|
driver = "opengl32.dll";
|
||||||
#elif defined __APPLE__
|
#elif defined __APPLE__
|
||||||
driver = "/System/Library/Frameworks/OpenGL.framework/OpenGL";
|
driver = "/System/Library/Frameworks/OpenGL.framework/OpenGL";
|
||||||
#else
|
#else
|
||||||
|
@ -625,7 +625,7 @@ int loadglulibrary(const char *driver)
|
||||||
if (!driver)
|
if (!driver)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
driver = "GLU32.DLL";
|
driver = "glu32.dll";
|
||||||
#elif defined __APPLE__
|
#elif defined __APPLE__
|
||||||
driver = "/System/Library/Frameworks/OpenGL.framework/OpenGL"; // FIXME: like I know anything about Apple. Hah.
|
driver = "/System/Library/Frameworks/OpenGL.framework/OpenGL"; // FIXME: like I know anything about Apple. Hah.
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -10120,14 +10120,14 @@ static void genspriteremaps(void)
|
||||||
g_NumPalettes = (g_NumPalettes * (uint64)0x0202020202 & (uint64)0x010884422010) % 1023;
|
g_NumPalettes = (g_NumPalettes * (uint64)0x0202020202 & (uint64)0x010884422010) % 1023;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (j=0;j < g_NumPalettes;j++)
|
for (j=g_NumPalettes-1;j>=0;j--)
|
||||||
{
|
{
|
||||||
kread(fp,(signed char *)&look_pos,1);
|
kread(fp,(signed char *)&look_pos,1);
|
||||||
kread(fp,tempbuf,256);
|
kread(fp,tempbuf,256);
|
||||||
makepalookup((int)look_pos,tempbuf,0,0,0,1);
|
makepalookup((int)look_pos,tempbuf,0,0,0,1);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (j = 0; j < 256; j++)
|
for (j = 255; j>=0; j--)
|
||||||
tempbuf[j] = j;
|
tempbuf[j] = j;
|
||||||
g_NumPalettes++;
|
g_NumPalettes++;
|
||||||
makepalookup(g_NumPalettes, tempbuf, 15, 15, 15, 1);
|
makepalookup(g_NumPalettes, tempbuf, 15, 15, 15, 1);
|
||||||
|
|
|
@ -171,6 +171,7 @@ int ScanGroups(void)
|
||||||
|
|
||||||
if (usedgrpcache)
|
if (usedgrpcache)
|
||||||
{
|
{
|
||||||
|
int i = 0;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
fp = fopen(GRPCACHEFILE, "wt");
|
fp = fopen(GRPCACHEFILE, "wt");
|
||||||
if (fp)
|
if (fp)
|
||||||
|
@ -180,11 +181,14 @@ int ScanGroups(void)
|
||||||
fgg = fg->next;
|
fgg = fg->next;
|
||||||
fprintf(fp, "\"%s\" %d %d %d\n", fg->name, fg->size, fg->mtime, fg->crcval);
|
fprintf(fp, "\"%s\" %d %d %d\n", fg->name, fg->size, fg->mtime, fg->crcval);
|
||||||
free(fg);
|
free(fg);
|
||||||
|
i++;
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
}
|
}
|
||||||
|
initprintf("Found %d recognized GRP files.\n",i);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
initprintf("Found no recognized GRP files!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,9 +33,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "dsound.h"
|
#include "dsound.h"
|
||||||
#ifdef USE_OPENAL
|
|
||||||
#include "openal.h"
|
|
||||||
#endif
|
|
||||||
#include "compat.h"
|
#include "compat.h"
|
||||||
#include "winlayer.h"
|
#include "winlayer.h"
|
||||||
|
|
||||||
|
@ -427,9 +424,6 @@ static DWORD WINAPI isr(LPVOID parm)
|
||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
#ifdef USE_OPENAL
|
|
||||||
AL_Update();
|
|
||||||
#endif
|
|
||||||
rv = WaitForMultipleObjects(1+_DSOUND_NumBuffers, handles, FALSE, INFINITE);
|
rv = WaitForMultipleObjects(1+_DSOUND_NumBuffers, handles, FALSE, INFINITE);
|
||||||
|
|
||||||
if (!(rv >= WAIT_OBJECT_0 && rv <= WAIT_OBJECT_0+1+_DSOUND_NumBuffers)) return -1;
|
if (!(rv >= WAIT_OBJECT_0 && rv <= WAIT_OBJECT_0+1+_DSOUND_NumBuffers)) return -1;
|
||||||
|
|
|
@ -2896,20 +2896,6 @@ int MV_Init(int soundcard, int MixRate, int Voices, int numchannels, int sampleb
|
||||||
{
|
{
|
||||||
MV_SetErrorCode(MV_BlasterError);
|
MV_SetErrorCode(MV_BlasterError);
|
||||||
}
|
}
|
||||||
#ifdef USE_OPENAL
|
|
||||||
else if (AL_Init())
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
|
|
||||||
// no AL support so shitcan the ogg definitions
|
|
||||||
for (i=(MAXLEVELS*(MAXVOLUMES+1))-1;i>=0;i--) // +1 volume for "intro", "briefing" music
|
|
||||||
{
|
|
||||||
if (map[i].musicfn1 != NULL)
|
|
||||||
Bfree(map[i].musicfn1);
|
|
||||||
map[i].musicfn1 = NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
status = DSL_Init();
|
status = DSL_Init();
|
||||||
if (status != DSL_Ok)
|
if (status != DSL_Ok)
|
||||||
|
@ -3005,9 +2991,6 @@ int MV_Shutdown(void)
|
||||||
|
|
||||||
// Shutdown the sound card
|
// Shutdown the sound card
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#ifdef USE_OPENAL
|
|
||||||
AL_Shutdown();
|
|
||||||
#endif
|
|
||||||
DSOUND_Shutdown();
|
DSOUND_Shutdown();
|
||||||
#else
|
#else
|
||||||
DSL_Shutdown();
|
DSL_Shutdown();
|
||||||
|
|
|
@ -38,6 +38,7 @@ Modifications for JonoF's port by Jonathon Fowler (jonof@edgenetwk.com)
|
||||||
#ifdef USE_OPENAL
|
#ifdef USE_OPENAL
|
||||||
#include "openal.h"
|
#include "openal.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include "duke3d.h"
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
#define TRUE ( 1 == 1 )
|
#define TRUE ( 1 == 1 )
|
||||||
|
@ -149,6 +150,21 @@ int MUSIC_Init
|
||||||
|
|
||||||
status = MUSIC_InitMidi(SoundCard, &MUSIC_MidiFunctions, Address);
|
status = MUSIC_InitMidi(SoundCard, &MUSIC_MidiFunctions, Address);
|
||||||
|
|
||||||
|
#ifdef USE_OPENAL
|
||||||
|
if (AL_Init())
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
// no AL support so shitcan the ogg definitions
|
||||||
|
for (i=(MAXLEVELS*(MAXVOLUMES+1))-1;i>=0;i--) // +1 volume for "intro", "briefing" music
|
||||||
|
{
|
||||||
|
if (map[i].musicfn1 != NULL)
|
||||||
|
Bfree(map[i].musicfn1);
|
||||||
|
map[i].musicfn1 = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return(status);
|
return(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,6 +189,10 @@ int MUSIC_Shutdown
|
||||||
|
|
||||||
//MPU_Reset();
|
//MPU_Reset();
|
||||||
|
|
||||||
|
#ifdef USE_OPENAL
|
||||||
|
AL_Shutdown();
|
||||||
|
#endif
|
||||||
|
|
||||||
return(status);
|
return(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -610,5 +630,8 @@ void MUSIC_RegisterTimbreBank
|
||||||
void MUSIC_Update(void)
|
void MUSIC_Update(void)
|
||||||
{
|
{
|
||||||
MIDI_UpdateMusic();
|
MIDI_UpdateMusic();
|
||||||
|
#ifdef USE_OPENAL
|
||||||
|
AL_Update();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue