mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-04 11:44:45 +03:00
206 lines
6.6 KiB
C++
206 lines
6.6 KiB
C++
/*==============================================================================
|
|
Programmer Sound Example
|
|
Copyright (c), Firelight Technologies Pty, Ltd 2006-2016.
|
|
|
|
Demonstrates how to use the "programmer sound" feature of the FMOD event system
|
|
==============================================================================*/
|
|
#include "../../api/inc/fmod_event.hpp"
|
|
#include "../../api/inc/fmod_errors.h"
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <conio.h>
|
|
|
|
const char *MEDIA_PATH = "..\\media\\";
|
|
const char *FSB_NAME = "..\\media\\tutorial_bank.fsb";
|
|
|
|
static int g_sound_index = 0;
|
|
static const int SOUND_INDEX_MAX = 4;
|
|
static int g_index_map[SOUND_INDEX_MAX];
|
|
|
|
FMOD::Sound *fsb;
|
|
FMOD::System *sys;
|
|
|
|
|
|
void ERRCHECK(FMOD_RESULT result)
|
|
{
|
|
if (result != FMOD_OK)
|
|
{
|
|
printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result));
|
|
exit(-1);
|
|
}
|
|
}
|
|
|
|
|
|
void initIndexMap(FMOD::Sound *fsb)
|
|
{
|
|
FMOD_RESULT result;
|
|
int numsubsounds, i;
|
|
|
|
/* Sounds aren't in a logical order in the FSB, so we need to iterate
|
|
through and assign the appropriate filenames to the index map
|
|
*/
|
|
|
|
FMOD_OPENSTATE openstate;
|
|
do
|
|
{
|
|
fsb->getOpenState(&openstate, 0, 0, 0);
|
|
} while (openstate != FMOD_OPENSTATE_READY);
|
|
|
|
ERRCHECK(result = fsb->getNumSubSounds(&numsubsounds));
|
|
|
|
for (i = 0; i < SOUND_INDEX_MAX; ++i)
|
|
{
|
|
g_index_map[i] = -1;
|
|
}
|
|
|
|
for (i = 0; i < numsubsounds; ++i)
|
|
{
|
|
FMOD::Sound *sound;
|
|
char name[100];
|
|
|
|
ERRCHECK(result = fsb->getSubSound(i, &sound));
|
|
|
|
do
|
|
{
|
|
fsb->getOpenState(&openstate, 0, 0, 0);
|
|
} while (openstate != FMOD_OPENSTATE_READY);
|
|
|
|
ERRCHECK(result = sound->getName(name, 100));
|
|
|
|
if(strncmp(name, "sequence-one", 100) == 0)
|
|
{
|
|
g_index_map[0] = i;
|
|
}
|
|
else if(strncmp(name, "sequence-two", 100) == 0)
|
|
{
|
|
g_index_map[1] = i;
|
|
}
|
|
else if(strncmp(name, "sequence-three", 100) == 0)
|
|
{
|
|
g_index_map[2] = i;
|
|
}
|
|
else if(strncmp(name, "sequence-four", 100) == 0)
|
|
{
|
|
g_index_map[3] = i;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
FMOD_RESULT F_CALLBACK eventcallback(FMOD_EVENT *event, FMOD_EVENT_CALLBACKTYPE type, void *param1, void *param2, void *userdata)
|
|
{
|
|
FMOD_RESULT result;
|
|
|
|
switch (type)
|
|
{
|
|
case FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE :
|
|
{
|
|
char *name = (char *)param1; // [in] (char *) name of sound definition
|
|
int entryindex = *((int *)param2); // [in] (int) index of sound definition entry
|
|
FMOD::Sound **s = (FMOD::Sound **)param2; // [out] (FMOD::Sound *) a valid lower level API FMOD Sound handle
|
|
char sound_name[128];
|
|
|
|
ERRCHECK((g_index_map[g_sound_index] >= 0) ? FMOD_OK : FMOD_ERR_SUBSOUNDS);
|
|
result = fsb->getSubSound(g_index_map[g_sound_index], s);
|
|
if (result != FMOD_OK)
|
|
{
|
|
printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE: %d: sound not ready, retry next frame\n", g_index_map[g_sound_index]);
|
|
return result;
|
|
}
|
|
result = (*s)->getName(sound_name, 128);
|
|
if (result != FMOD_OK)
|
|
{
|
|
printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE: %d: sound not ready, retry next frame\n", g_index_map[g_sound_index]);
|
|
return result;
|
|
}
|
|
printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE '%s' (%d)\n", sound_name, g_index_map[g_sound_index]);
|
|
break;
|
|
}
|
|
|
|
case FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE :
|
|
{
|
|
FMOD::Sound *s = (FMOD::Sound *)param2; // [in] (FMOD::Sound *) the FMOD sound handle that was previously created in FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_CREATE
|
|
char sound_name[128];
|
|
|
|
ERRCHECK(result = s->getName(sound_name, 128));
|
|
printf("FMOD_EVENT_CALLBACKTYPE_SOUNDDEF_RELEASE '%s'\n", sound_name);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return FMOD_OK;
|
|
}
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
FMOD_RESULT result;
|
|
FMOD::EventSystem *eventsystem;
|
|
FMOD::EventGroup *eventgroup;
|
|
FMOD::Event *event;
|
|
int key;
|
|
|
|
printf("======================================================================\n");
|
|
printf("Programmer Sound. Copyright (c) Firelight Technologies 2006-2016.\n");
|
|
printf("======================================================================\n");
|
|
|
|
ERRCHECK(result = FMOD::EventSystem_Create(&eventsystem));
|
|
ERRCHECK(result = eventsystem->init(64, FMOD_INIT_NORMAL, 0, FMOD_EVENT_INIT_NORMAL));
|
|
ERRCHECK(result = eventsystem->setMediaPath((char *)MEDIA_PATH));
|
|
ERRCHECK(result = eventsystem->load("examples.fev", 0, 0));
|
|
ERRCHECK(result = eventsystem->getGroup("examples/FeatureDemonstration/SequencingAndStitching", FMOD_EVENT_DEFAULT, &eventgroup));
|
|
|
|
ERRCHECK(result = eventsystem->getSystemObject(&sys));
|
|
ERRCHECK(result = sys->createStream(FSB_NAME, FMOD_2D | FMOD_NONBLOCKING | FMOD_SOFTWARE, 0, &fsb));
|
|
|
|
initIndexMap(fsb);
|
|
|
|
printf("======================================================================\n");
|
|
printf("Press 'Space' to start the 'Programmer Sound' event\n");
|
|
printf("Press '>' to increase sound index\n");
|
|
printf("Press '<' to decrease sound index\n");
|
|
printf("Press 'Esc' to quit\n");
|
|
printf("======================================================================\n");
|
|
printf("Sound index = %d\n", g_sound_index + 1);
|
|
|
|
key = 0;
|
|
do
|
|
{
|
|
if (_kbhit())
|
|
{
|
|
key = _getch();
|
|
|
|
switch(key)
|
|
{
|
|
case ' ' :
|
|
ERRCHECK(result = eventgroup->getEvent("ProgrammerSounds", FMOD_EVENT_DEFAULT, &event));
|
|
ERRCHECK(result = event->setCallback(eventcallback, 0));
|
|
ERRCHECK(result = event->start());
|
|
break;
|
|
|
|
case '>' : case '.':
|
|
++g_sound_index;
|
|
g_sound_index = (g_sound_index >= SOUND_INDEX_MAX) ? SOUND_INDEX_MAX - 1 : g_sound_index;
|
|
printf("Sound index = %d\n", g_sound_index + 1);
|
|
break;
|
|
|
|
case '<' : case ',':
|
|
--g_sound_index;
|
|
g_sound_index = (g_sound_index < 0) ? 0 : g_sound_index;
|
|
printf("Sound index = %d\n", g_sound_index + 1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
ERRCHECK(result = eventsystem->update());
|
|
Sleep(10);
|
|
|
|
} while (key != 27);
|
|
|
|
ERRCHECK(result = eventsystem->unload());
|
|
ERRCHECK(result = fsb->release());
|
|
ERRCHECK(result = eventsystem->release());
|
|
return 0;
|
|
}
|