aboutsummaryrefslogtreecommitdiff
path: root/modules/mpc/register_types.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-10-13 20:46:42 +0200
committerRémi Verschelde2016-10-30 14:51:33 +0100
commitc8a97c36781d633b20e52579993aaadb9122a94b (patch)
treeeaa2cdd225a8f5f55b578ffecc5a37a582f6fbb1 /modules/mpc/register_types.cpp
parent82e8721715de0c41042076c04508a69e7d1387fd (diff)
downloadgodot-c8a97c36781d633b20e52579993aaadb9122a94b.tar.gz
godot-c8a97c36781d633b20e52579993aaadb9122a94b.tar.zst
godot-c8a97c36781d633b20e52579993aaadb9122a94b.zip
mpc: Move to a module and split thirdparty libmpcdec
(cherry picked from commit 5c12c9e69b85023934dc85f3aada03da150556be)
Diffstat (limited to 'modules/mpc/register_types.cpp')
-rw-r--r--modules/mpc/register_types.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/modules/mpc/register_types.cpp b/modules/mpc/register_types.cpp
new file mode 100644
index 000000000..f6a1f59dc
--- /dev/null
+++ b/modules/mpc/register_types.cpp
@@ -0,0 +1,45 @@
+/*************************************************************************/
+/* register_types.cpp */
+/*************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* http://www.godotengine.org */
+/*************************************************************************/
+/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */
+/* */
+/* 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 "register_types.h"
+
+#include "audio_stream_mpc.h"
+
+static ResourceFormatLoaderAudioStreamMPC* mpc_stream_loader = NULL;
+
+void register_mpc_types() {
+
+ mpc_stream_loader=memnew( ResourceFormatLoaderAudioStreamMPC );
+ ResourceLoader::add_resource_format_loader(mpc_stream_loader);
+ ObjectTypeDB::register_type<AudioStreamMPC>();
+}
+
+void unregister_mpc_types() {
+
+ memdelete( mpc_stream_loader );
+}