2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* sample_manager_sw.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:11:45 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:45:00 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "sample_manager_sw.h"
|
|
|
|
|
|
|
|
#include "print_string.h"
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
SampleManagerSW::~SampleManagerSW() {
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RID SampleManagerMallocSW::sample_create(AS::SampleFormat p_format, bool p_stereo, int p_length) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Sample *s = memnew(Sample);
|
2014-02-10 01:10:30 +00:00
|
|
|
int datalen = p_length;
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_format == AS::SAMPLE_FORMAT_PCM16)
|
|
|
|
datalen *= 2;
|
|
|
|
else if (p_format == AS::SAMPLE_FORMAT_IMA_ADPCM) {
|
|
|
|
if (datalen & 1) {
|
2014-05-14 04:22:15 +00:00
|
|
|
datalen++;
|
|
|
|
}
|
2017-03-18 23:36:26 +00:00
|
|
|
datalen /= 2;
|
|
|
|
datalen += 4;
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
2015-11-09 03:49:18 +00:00
|
|
|
|
|
|
|
if (p_stereo)
|
2017-03-18 23:36:26 +00:00
|
|
|
datalen *= 2;
|
2015-11-09 03:49:18 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#define SAMPLE_EXTRA 16
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->data = memalloc(datalen + SAMPLE_EXTRA); //help the interpolator by allocating a little more..
|
|
|
|
for (int i = 0; i < SAMPLE_EXTRA; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
uint8_t *data = (uint8_t *)s->data;
|
|
|
|
data[datalen + i] = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
if (!s->data) {
|
|
|
|
|
|
|
|
memdelete(s);
|
|
|
|
ERR_EXPLAIN("Cannot allocate sample of requested size.");
|
|
|
|
ERR_FAIL_V(RID());
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->format = p_format;
|
|
|
|
s->length = p_length;
|
|
|
|
s->length_bytes = datalen;
|
|
|
|
s->stereo = p_stereo;
|
|
|
|
s->loop_begin = 0;
|
|
|
|
s->loop_end = 0;
|
|
|
|
s->loop_format = AS::SAMPLE_LOOP_NONE;
|
|
|
|
s->mix_rate = 44100;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
AudioServer::get_singleton()->lock();
|
|
|
|
RID rid = sample_owner.make_rid(s);
|
|
|
|
AudioServer::get_singleton()->unlock();
|
|
|
|
|
|
|
|
return rid;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_description(RID p_sample, const String &p_description) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->description = p_description;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String SampleManagerMallocSW::sample_get_description(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, String());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->description;
|
|
|
|
}
|
|
|
|
|
|
|
|
AS::SampleFormat SampleManagerMallocSW::sample_get_format(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, AS::SAMPLE_FORMAT_PCM8);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->format;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SampleManagerMallocSW::sample_is_stereo(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, false);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->stereo;
|
|
|
|
}
|
|
|
|
int SampleManagerMallocSW::sample_get_length(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->length;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_data(RID p_sample, const DVector<uint8_t> &p_buffer) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
int buff_size = p_buffer.size();
|
|
|
|
ERR_FAIL_COND(buff_size == 0);
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_EXPLAIN("Sample buffer size does not match sample size.");
|
2015-05-26 04:05:08 +00:00
|
|
|
//print_line("len bytes: "+itos(s->length_bytes)+" bufsize: "+itos(buff_size));
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND(s->length_bytes != buff_size);
|
|
|
|
DVector<uint8_t>::Read buffer_r = p_buffer.read();
|
2014-02-10 01:10:30 +00:00
|
|
|
const uint8_t *src = buffer_r.ptr();
|
2017-03-18 23:36:26 +00:00
|
|
|
uint8_t *dst = (uint8_t *)s->data;
|
2014-09-03 02:13:40 +00:00
|
|
|
//print_line("set data: "+itos(s->length_bytes));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = 0; i < s->length_bytes; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[i] = src[i];
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
switch (s->format) {
|
2014-09-17 23:03:10 +00:00
|
|
|
|
|
|
|
case AS::SAMPLE_FORMAT_PCM8: {
|
|
|
|
|
|
|
|
if (s->stereo) {
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[s->length] = dst[s->length - 2];
|
|
|
|
dst[s->length + 1] = dst[s->length - 1];
|
2014-09-17 23:03:10 +00:00
|
|
|
} else {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[s->length] = dst[s->length - 1];
|
2014-09-17 23:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case AS::SAMPLE_FORMAT_PCM16: {
|
|
|
|
|
|
|
|
if (s->stereo) {
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[s->length] = dst[s->length - 4];
|
|
|
|
dst[s->length + 1] = dst[s->length - 3];
|
|
|
|
dst[s->length + 2] = dst[s->length - 2];
|
|
|
|
dst[s->length + 3] = dst[s->length - 1];
|
2014-09-17 23:03:10 +00:00
|
|
|
} else {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[s->length] = dst[s->length - 2];
|
|
|
|
dst[s->length + 1] = dst[s->length - 1];
|
2014-09-17 23:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const DVector<uint8_t> SampleManagerMallocSW::sample_get_data(RID p_sample) const {
|
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, DVector<uint8_t>());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
DVector<uint8_t> ret_buffer;
|
|
|
|
ret_buffer.resize(s->length_bytes);
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<uint8_t>::Write buffer_w = ret_buffer.write();
|
2014-02-10 01:10:30 +00:00
|
|
|
uint8_t *dst = buffer_w.ptr();
|
2017-03-18 23:36:26 +00:00
|
|
|
const uint8_t *src = (const uint8_t *)s->data;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = 0; i < s->length_bytes; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
dst[i] = src[i];
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buffer_w = DVector<uint8_t>::Write(); //unlock
|
|
|
|
|
|
|
|
return ret_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *SampleManagerMallocSW::sample_get_data_ptr(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, NULL);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->data;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_mix_rate(RID p_sample, int p_rate) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND(p_rate < 1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->mix_rate = p_rate;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
int SampleManagerMallocSW::sample_get_mix_rate(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->mix_rate;
|
|
|
|
}
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_loop_format(RID p_sample, AS::SampleLoopFormat p_format) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->loop_format = p_format;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
AS::SampleLoopFormat SampleManagerMallocSW::sample_get_loop_format(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, AS::SAMPLE_LOOP_NONE);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->loop_format;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_loop_begin(RID p_sample, int p_pos) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_INDEX(p_pos, s->length);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
s->loop_begin = p_pos;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
int SampleManagerMallocSW::sample_get_loop_begin(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->loop_begin;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void SampleManagerMallocSW::sample_set_loop_end(RID p_sample, int p_pos) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_pos > s->length)
|
|
|
|
p_pos = s->length;
|
|
|
|
s->loop_end = p_pos;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
int SampleManagerMallocSW::sample_get_loop_end(RID p_sample) const {
|
|
|
|
|
|
|
|
const Sample *s = sample_owner.get(p_sample);
|
2017-03-18 23:36:26 +00:00
|
|
|
ERR_FAIL_COND_V(!s, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return s->loop_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SampleManagerMallocSW::is_sample(RID p_sample) const {
|
|
|
|
|
|
|
|
return sample_owner.owns(p_sample);
|
|
|
|
}
|
|
|
|
void SampleManagerMallocSW::free(RID p_sample) {
|
|
|
|
|
|
|
|
Sample *s = sample_owner.get(p_sample);
|
|
|
|
ERR_FAIL_COND(!s);
|
|
|
|
AudioServer::get_singleton()->lock();
|
|
|
|
sample_owner.free(p_sample);
|
|
|
|
AudioServer::get_singleton()->unlock();
|
|
|
|
|
|
|
|
memfree(s->data);
|
|
|
|
memdelete(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
SampleManagerMallocSW::SampleManagerMallocSW() {
|
|
|
|
}
|
|
|
|
|
|
|
|
SampleManagerMallocSW::~SampleManagerMallocSW() {
|
|
|
|
|
|
|
|
// check for sample leakage
|
|
|
|
List<RID> owned_list;
|
|
|
|
sample_owner.get_owned_list(&owned_list);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
while (owned_list.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Sample *s = sample_owner.get(owned_list.front()->get());
|
2017-03-18 23:36:26 +00:00
|
|
|
String err = "Leaked sample of size: " + itos(s->length_bytes) + " description: " + s->description;
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_PRINT(err.utf8().get_data());
|
|
|
|
free(owned_list.front()->get());
|
|
|
|
owned_list.pop_front();
|
|
|
|
}
|
|
|
|
}
|