2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* resource_importer_ogg_vorbis.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-03-05 15:47:28 +01: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2017-02-03 12:55:29 +01:00
|
|
|
#include "resource_importer_ogg_vorbis.h"
|
|
|
|
|
2021-09-10 03:54:18 +02:00
|
|
|
#include "audio_stream_ogg_vorbis.h"
|
2021-06-11 14:51:48 +02:00
|
|
|
#include "core/io/file_access.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/resource_saver.h"
|
2017-02-03 12:55:29 +01:00
|
|
|
#include "scene/resources/texture.h"
|
2021-09-10 03:54:18 +02:00
|
|
|
#include "thirdparty/libogg/ogg/ogg.h"
|
|
|
|
#include "thirdparty/libvorbis/vorbis/codec.h"
|
2017-02-03 12:55:29 +01:00
|
|
|
|
|
|
|
String ResourceImporterOGGVorbis::get_importer_name() const {
|
2021-09-10 03:54:18 +02:00
|
|
|
return "oggvorbisstr";
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterOGGVorbis::get_visible_name() const {
|
2021-09-10 03:54:18 +02:00
|
|
|
return "oggvorbisstr";
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterOGGVorbis::get_recognized_extensions(List<String> *p_extensions) const {
|
2017-02-03 12:55:29 +01:00
|
|
|
p_extensions->push_back("ogg");
|
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceImporterOGGVorbis::get_save_extension() const {
|
2021-09-10 03:54:18 +02:00
|
|
|
return "oggvorbisstr";
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterOGGVorbis::get_resource_type() const {
|
2017-02-03 12:55:29 +01:00
|
|
|
return "AudioStreamOGGVorbis";
|
|
|
|
}
|
|
|
|
|
2021-11-14 18:02:38 +01:00
|
|
|
bool ResourceImporterOGGVorbis::get_option_visibility(const String &p_path, const String &p_option, const Map<StringName, Variant> &p_options) const {
|
2017-02-03 12:55:29 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResourceImporterOGGVorbis::get_preset_count() const {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-02-03 12:55:29 +01:00
|
|
|
String ResourceImporterOGGVorbis::get_preset_name(int p_idx) const {
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
|
2021-11-14 18:02:38 +01:00
|
|
|
void ResourceImporterOGGVorbis::get_import_options(const String &p_path, List<ImportOption> *r_options, int p_preset) const {
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "loop"), true));
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::FLOAT, "loop_offset"), 0));
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|
|
|
|
|
2019-02-26 22:43:37 +01:00
|
|
|
Error ResourceImporterOGGVorbis::import(const String &p_source_file, const String &p_save_path, const Map<StringName, Variant> &p_options, List<String> *r_platform_variants, List<String> *r_gen_files, Variant *r_metadata) {
|
2017-02-03 12:55:29 +01:00
|
|
|
bool loop = p_options["loop"];
|
2017-11-20 14:11:08 +01:00
|
|
|
float loop_offset = p_options["loop_offset"];
|
2017-02-03 12:55:29 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
FileAccess *f = FileAccess::open(p_source_file, FileAccess::READ);
|
2019-06-20 16:59:48 +02:00
|
|
|
|
2019-09-25 10:28:50 +02:00
|
|
|
ERR_FAIL_COND_V_MSG(!f, ERR_CANT_OPEN, "Cannot open file '" + p_source_file + "'.");
|
2017-02-03 12:55:29 +01:00
|
|
|
|
2021-05-25 08:58:49 +02:00
|
|
|
uint64_t len = f->get_length();
|
2017-02-03 12:55:29 +01:00
|
|
|
|
2021-09-10 03:54:18 +02:00
|
|
|
Vector<uint8_t> file_data;
|
|
|
|
file_data.resize(len);
|
|
|
|
uint8_t *w = file_data.ptrw();
|
2017-02-03 12:55:29 +01:00
|
|
|
|
2020-02-17 22:06:54 +01:00
|
|
|
f->get_buffer(w, len);
|
2017-02-03 12:55:29 +01:00
|
|
|
|
|
|
|
memdelete(f);
|
|
|
|
|
2021-09-10 03:54:18 +02:00
|
|
|
Ref<AudioStreamOGGVorbis> ogg_vorbis_stream;
|
|
|
|
ogg_vorbis_stream.instantiate();
|
|
|
|
|
|
|
|
Ref<OGGPacketSequence> ogg_packet_sequence;
|
|
|
|
ogg_packet_sequence.instantiate();
|
|
|
|
|
|
|
|
ogg_stream_state stream_state;
|
|
|
|
ogg_sync_state sync_state;
|
|
|
|
ogg_page page;
|
|
|
|
ogg_packet packet;
|
|
|
|
bool initialized_stream = false;
|
|
|
|
|
|
|
|
ogg_sync_init(&sync_state);
|
|
|
|
int err;
|
|
|
|
size_t cursor = 0;
|
|
|
|
size_t packet_count = 0;
|
|
|
|
bool done = false;
|
|
|
|
while (!done) {
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_sync_check(&sync_state)), Error::ERR_INVALID_DATA, "Ogg sync error " + itos(err));
|
|
|
|
while (ogg_sync_pageout(&sync_state, &page) != 1) {
|
|
|
|
if (cursor >= len) {
|
|
|
|
done = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_sync_check(&sync_state)), Error::ERR_INVALID_DATA, "Ogg sync error " + itos(err));
|
|
|
|
char *sync_buf = ogg_sync_buffer(&sync_state, OGG_SYNC_BUFFER_SIZE);
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_sync_check(&sync_state)), Error::ERR_INVALID_DATA, "Ogg sync error " + itos(err));
|
|
|
|
ERR_FAIL_COND_V(cursor > len, Error::ERR_INVALID_DATA);
|
|
|
|
size_t copy_size = len - cursor;
|
|
|
|
if (copy_size > OGG_SYNC_BUFFER_SIZE) {
|
|
|
|
copy_size = OGG_SYNC_BUFFER_SIZE;
|
|
|
|
}
|
|
|
|
memcpy(sync_buf, &file_data[cursor], copy_size);
|
|
|
|
ogg_sync_wrote(&sync_state, copy_size);
|
|
|
|
cursor += copy_size;
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_sync_check(&sync_state)), Error::ERR_INVALID_DATA, "Ogg sync error " + itos(err));
|
|
|
|
}
|
|
|
|
if (done) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_sync_check(&sync_state)), Error::ERR_INVALID_DATA, "Ogg sync error " + itos(err));
|
|
|
|
|
|
|
|
// Have a page now.
|
|
|
|
if (!initialized_stream) {
|
|
|
|
ogg_stream_init(&stream_state, ogg_page_serialno(&page));
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_stream_check(&stream_state)), Error::ERR_INVALID_DATA, "Ogg stream error " + itos(err));
|
|
|
|
initialized_stream = true;
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_stream_check(&stream_state)), Error::ERR_INVALID_DATA, "Ogg stream error " + itos(err));
|
|
|
|
ogg_stream_pagein(&stream_state, &page);
|
|
|
|
ERR_FAIL_COND_V_MSG((err = ogg_stream_check(&stream_state)), Error::ERR_INVALID_DATA, "Ogg stream error " + itos(err));
|
|
|
|
int desync_iters = 0;
|
|
|
|
|
|
|
|
Vector<Vector<uint8_t>> packet_data;
|
|
|
|
int64_t granule_pos = 0;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
err = ogg_stream_packetout(&stream_state, &packet);
|
|
|
|
if (err == -1) {
|
|
|
|
// According to the docs this is usually recoverable, but don't sit here spinning forever.
|
|
|
|
desync_iters++;
|
|
|
|
ERR_FAIL_COND_V_MSG(desync_iters > 100, Error::ERR_INVALID_DATA, "Packet sync issue during ogg import");
|
|
|
|
continue;
|
|
|
|
} else if (err == 0) {
|
|
|
|
// Not enough data to fully reconstruct a packet. Go on to the next page.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (packet_count == 0 && vorbis_synthesis_idheader(&packet) == 0) {
|
|
|
|
WARN_PRINT("Found a non-vorbis-header packet in a header position");
|
|
|
|
// Clearly this logical stream is not a vorbis stream, so destroy it and try again with the next page.
|
|
|
|
ogg_stream_destroy(&stream_state);
|
|
|
|
initialized_stream = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
granule_pos = packet.granulepos;
|
|
|
|
|
|
|
|
PackedByteArray data;
|
|
|
|
data.resize(packet.bytes);
|
|
|
|
memcpy(data.ptrw(), packet.packet, packet.bytes);
|
|
|
|
packet_data.push_back(data);
|
|
|
|
packet_count++;
|
|
|
|
}
|
|
|
|
if (initialized_stream) {
|
|
|
|
ogg_packet_sequence->push_page(granule_pos, packet_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ogg_vorbis_stream->set_packet_sequence(ogg_packet_sequence);
|
|
|
|
ogg_vorbis_stream->set_loop(loop);
|
|
|
|
ogg_vorbis_stream->set_loop_offset(loop_offset);
|
|
|
|
|
|
|
|
return ResourceSaver::save(p_save_path + ".oggvorbisstr", ogg_vorbis_stream);
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceImporterOGGVorbis::ResourceImporterOGGVorbis() {
|
2017-02-03 12:55:29 +01:00
|
|
|
}
|