lwjgl2-arm64/src/native/common/fmod3/extfmod3.cpp

115 lines
3.6 KiB
C++
Raw Normal View History

2004-05-23 16:03:07 +02:00
/*
2004-06-12 22:28:34 +02:00
* Copyright (c) 2002-2004 LWJGL Project
2004-05-23 16:03:07 +02:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
2004-06-12 22:28:34 +02:00
* notice, this list of conditions and the following disclaimer.
2004-05-23 16:03:07 +02:00
*
* * Redistributions in binary form must reproduce the above copyright
2004-06-12 22:28:34 +02:00
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
2004-05-23 16:03:07 +02:00
*
2004-06-12 22:28:34 +02:00
* * Neither the name of 'LWJGL' nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
2004-05-23 16:03:07 +02:00
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2004-05-23 16:46:07 +02:00
#ifdef _WIN32
2004-05-23 16:03:07 +02:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
2004-05-23 16:46:07 +02:00
#endif
2004-05-23 16:03:07 +02:00
#include <stdio.h>
2004-06-09 21:53:45 +02:00
#include "extfmod3.h"
2004-05-23 16:03:07 +02:00
/** Instance of fmod */
2004-05-23 21:45:00 +02:00
FMOD_INSTANCE * fmod_instance = NULL;
2004-05-23 16:03:07 +02:00
// jnienvs
JNIEnv *mixer_jnienv;
JNIEnv *stream_jnienv;
// FMusic cached fields
jmethodID music_instcallback;
jmethodID music_ordercallback;
jmethodID music_rowcallback;
jmethodID music_zxxcallback;
jclass fmusic;
2004-08-12 23:40:35 +02:00
// FSound cached fields
jmethodID sound_dspcallback;
jclass fsound;
// size of dsp buffer (in bytes)
int fsound_dsp_buffer_size;
2004-05-23 16:46:07 +02:00
#ifdef _WIN32
2004-05-23 16:03:07 +02:00
/**
* DLL entry point for Windows. Called when Java loads the .dll
*/
BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
return true;
}
2004-05-23 16:46:07 +02:00
#endif
2004-05-23 16:03:07 +02:00
/**
* Creates and loads the FMOD instance
*
* @param path path to try to load dll
*/
void fmod_create(JNIEnv *env, char* path) {
2004-05-23 21:45:00 +02:00
fmod_instance = FMOD_CreateInstance(path);
if (fmod_instance != NULL) {
2004-06-09 21:53:45 +02:00
fmusic = env->FindClass("org/lwjgl/fmod3/FMusic");
music_instcallback = env->GetStaticMethodID(fmusic, "music_instcallback", "(JI)V");
music_ordercallback = env->GetStaticMethodID(fmusic, "music_ordercallback", "(JI)V");
music_rowcallback = env->GetStaticMethodID(fmusic, "music_rowcallback", "(JI)V");
music_zxxcallback = env->GetStaticMethodID(fmusic, "music_zxxcallback", "(JI)V");
2004-08-12 23:40:35 +02:00
fsound = env->FindClass("org/lwjgl/fmod3/FSound");
sound_dspcallback = env->GetStaticMethodID(fsound, "dsp_callback", "(JLjava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer;");
// cache some data
switch(fmod_instance->FSOUND_GetMixer()) {
case FSOUND_MIXER_AUTODETECT:
case FSOUND_MIXER_BLENDMODE:
case FSOUND_MIXER_QUALITY_AUTODETECT:
case FSOUND_MIXER_QUALITY_FPU:
case FSOUND_MIXER_MONO:
case FSOUND_MIXER_QUALITY_MONO:
case FSOUND_MIXER_MAX:
fsound_dsp_buffer_size = 8;
break;
default:
fsound_dsp_buffer_size = 4;
break;
}
}
2004-05-23 16:03:07 +02:00
}
/**
* Destroys the fmod instance
*/
void fmod_destroy() {
2004-05-23 21:45:00 +02:00
if (fmod_instance != NULL) {
FMOD_FreeInstance(fmod_instance);
2004-05-23 16:03:07 +02:00
}
2004-05-23 16:46:07 +02:00
}