Files
BT411/engine/MUNGA_L4/L4AUDLVL.h
T
arcattackandClaude Opus 4.8 5b46655b82 Audio: ENABLE sound -- real OpenAL + in-tree WAV loader; both backend DLLs were no-op STUBS (task #50)
Root cause of "no sound, ever": the two audio backend DLLs shipped in the repo
are fakes. libsndfile-1.dll exports 15 funcs BY ORDINAL ONLY (no names) and
sf_open() always returns NULL; OpenAL32.dll (72KB) imports only KERNEL32 -- no
dsound/wasapi/winmm -- so it is a pure no-op that returns fake handles
(ctx=0x00000001, alGenSources->0) and never touches the hardware. The whole
render->device->buffer->source->play chain ran clean and silent.

Fixes:
- OpenAL32.dll: replace the stub with the real OpenAL Soft 1.25.2 Win32 build
  (imports AVRT/ole32/WINMM, real WASAPI backend). The exe imports the 25 AL
  funcs by NAME so it is a drop-in; alGenSources now yields a live source and
  alSourcePlay reaches AL_PLAYING.
- libsndfile: DROPPED entirely. It is replaced by LoadWavPCM() in L4AUDRES --
  a tiny RIFF/WAVE fmt+data reader that loads our soundbank WAVs (16-bit PCM)
  straight into the AL buffer. Removed the .lib/.dll from the link + copy and
  git-rm'd the stub. (This also kills the "ordinal 50 could not be located in
  libsndfile-1.dll" load-failure popup: adding an sf_strerror import bound to
  an ordinal the 2..16-only stub could not satisfy.)
- Soundbank: 241 samples cracked from AUDIO1/2.RES (SF2 v1.0) by
  tools/sf2extract.py into content/AUDIO/*.wav + the allPresets[2][128] table
  (audiopresets.cpp), replacing the zero-init btstubs stub. All 241 now load
  (alErr=0). BT_AUDIO_TEST plays buffer0 as proof-of-life; BT_AUDIO_LOG traces
  the chain.

Remaining: in-game triggering (AudioEntities on fire/step/engine/explosion)
so PlayNote fires during play -- next audio wave.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-15 18:55:33 -05:00

170 lines
3.6 KiB
C++

#pragma once
#include "..\munga\audlvl.h"
#include "l4audhdw.h"
#include "openal/al.h"
enum SampleChannel
{
CHANNEL_LEFT,
CHANNEL_RIGHT,
CHANNEL_CENTER
};
enum SampleLoop
{
LoopAtWill, //Will play once or loop as desired
ForceStatic, //Plays only once even if looped
LoopAlways, //Ramp up and then down
SampleLoopMax
};
struct SAMPLEINFO
{
int bufferIndex;
bool implemented;
const char *file;
SampleChannel chan;
SampleLoop loop;
};
struct PRESETINFO
{
int sampleNum;
SAMPLEINFO samples[5];
bool is3d;
};
extern PRESETINFO allPresets[2][128];
bool PRESET_isImplemented(int bank, int preset);
int PRESET_getNumSamples(int bank, int preset);
SAMPLEINFO PRESET_getSampleInfo(int bank, int preset, int sampleInd);
void PRESET_setBufferIndex(int bank, int preset, int sampleInd, int index);
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PatchLevelOfDetail ~~~~~~~~~~~~~~~~~~~~~~~~~~
typedef MIDIValue SBKPatchID;
typedef MIDIValue SBKBankID;
class PatchLevelOfDetail:
public AudioLevelOfDetail
{
public:
//
//-----------------------------------------------------------------------
// Construction, Destruction, Testing
//-----------------------------------------------------------------------
//
PatchLevelOfDetail(PlugStream *stream);
~PatchLevelOfDetail();
void PlayNote(SourceSet sourceSet);
void StopNote(SourceSet sourceSet);
Logical
TestInstance() const;
virtual AudioVoiceCount
GetVoiceCount()
{return PRESET_getNumSamples(bankID,patchID);}
//
//-----------------------------------------------------------------------
// BuildFromPage
//-----------------------------------------------------------------------
//
static void
BuildFromPage(
PlugStream *stream,
NameList *name_list,
ClassID class_ID,
ObjectID object_ID
);
//
//-----------------------------------------------------------------------
// Accessors
//-----------------------------------------------------------------------
//
void
SetupPatch(SourceSet sourceSet);
MIDINRPNValue
GetMaxMIDIFilterCutoff()
{return maxMIDIFilterCutoff;}
private:
//
//-----------------------------------------------------------------------
// Private data
//-----------------------------------------------------------------------
//
SBKBankID
bankID;
SBKPatchID
patchID;
MIDINRPNValue
maxMIDIFilterCutoff;
#ifdef LAB_ONLY
int
setupCount;
#endif
//
// Keep table of created patchs to verify that duplicates
// are not created
//
#if DEBUG_LEVEL>0
static TableOf<PatchLevelOfDetail*, unsigned int>
patchTableSocket;
#endif
};
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PatchResource ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class PatchResource:
public AudioResource
{
public:
//
//-----------------------------------------------------------------------
// Construction, Destruction, Testing
//-----------------------------------------------------------------------
//
PatchResource(PlugStream *stream);
~PatchResource();
void PlayNote(SourceSet sourceSet);
void StopNote(SourceSet sourceSet);
Logical
TestInstance() const;
//
//-----------------------------------------------------------------------
// BuildFromPage
//-----------------------------------------------------------------------
//
static void
BuildFromPage(
PlugStream *stream,
NameList *name_list,
ClassID class_ID,
ObjectID object_ID
);
//
//-----------------------------------------------------------------------
// Accessors
//-----------------------------------------------------------------------
//
void
SetupPatch(SourceSet sourceSet);
MIDINRPNValue
GetMaxMIDIFilterCutoff();
};