/* * Copyright 2019 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include // parselib includes #include #include #include #include static const char* TAG = "DrumPlayerJNI"; // JNI functions are "C" calling convention #ifdef __cplusplus extern "C" { #endif using namespace iolib; using namespace parselib; static SimpleMultiPlayer sDTPlayer; /** * Native (JNI) implementation of DrumPlayer.setupAudioStreamNative() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_setupAudioStreamNative( JNIEnv* env, jobject, jint numChannels) { __android_log_print(ANDROID_LOG_INFO, TAG, "%s", "init()"); // we know in this case that the sample buffers are all 1-channel, 41K sDTPlayer.setupAudioStream(numChannels); } JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_startAudioStreamNative( JNIEnv *env, jobject thiz) { sDTPlayer.startStream(); } /** * Native (JNI) implementation of DrumPlayer.teardownAudioStreamNative() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_teardownAudioStreamNative(JNIEnv* , jobject) { __android_log_print(ANDROID_LOG_INFO, TAG, "%s", "deinit()"); // we know in this case that the sample buffers are all 1-channel, 44.1K sDTPlayer.teardownAudioStream(); } /** * Native (JNI) implementation of DrumPlayer.allocSampleDataNative() */ /** * Native (JNI) implementation of DrumPlayer.loadWavAssetNative() */ JNIEXPORT jboolean JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_loadWavAssetNative( JNIEnv* env, jobject, jbyteArray bytearray, jint index, jfloat pan, jint channels) { int len = env->GetArrayLength (bytearray); unsigned char* buf = new unsigned char[len]; env->GetByteArrayRegion (bytearray, 0, len, reinterpret_cast(buf)); MemInputStream stream(buf, len); WavStreamReader reader(&stream); reader.parse(); jboolean isFormatValid = reader.getNumChannels() == channels; SampleBuffer* sampleBuffer = new SampleBuffer(); sampleBuffer->loadSampleData(&reader); OneShotSampleSource* source = new OneShotSampleSource(sampleBuffer, pan); sDTPlayer.addSampleSource(source, sampleBuffer); delete[] buf; return isFormatValid; } /** * Native (JNI) implementation of DrumPlayer.unloadWavAssetsNative() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_unloadWavAssetsNative(JNIEnv* env, jobject) { sDTPlayer.unloadSampleData(); } /** * Native (JNI) implementation of DrumPlayer.trigger() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_trigger(JNIEnv* env, jobject, jint index) { sDTPlayer.triggerDown(index); } /** * Native (JNI) implementation of DrumPlayer.getOutputReset() */ JNIEXPORT jboolean JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_getOutputReset(JNIEnv*, jobject) { return sDTPlayer.getOutputReset(); } /** * Native (JNI) implementation of DrumPlayer.clearOutputReset() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_clearOutputReset(JNIEnv*, jobject) { sDTPlayer.clearOutputReset(); } /** * Native (JNI) implementation of DrumPlayer.restartStream() */ JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_restartStream(JNIEnv*, jobject) { sDTPlayer.resetAll(); if (sDTPlayer.openStream() && sDTPlayer.startStream()){ __android_log_print(ANDROID_LOG_INFO, TAG, "openStream successful"); } else { __android_log_print(ANDROID_LOG_ERROR, TAG, "openStream failed"); } } JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_setPan( JNIEnv *env, jobject thiz, jint index, jfloat pan) { sDTPlayer.setPan(index, pan); } JNIEXPORT jfloat JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_getPan( JNIEnv *env, jobject thiz, jint index) { return sDTPlayer.getPan(index); } JNIEXPORT void JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_setGain( JNIEnv *env, jobject thiz, jint index, jfloat gain) { sDTPlayer.setGain(index, gain); } JNIEXPORT jfloat JNICALL Java_com_plausiblesoftware_drumthumper_DrumPlayer_getGain( JNIEnv *env, jobject thiz, jint index) { return sDTPlayer.getGain(index); } #ifdef __cplusplus } #endif