diff options
| author | Rémi Verschelde | 2017-04-09 22:08:56 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-09 22:08:56 +0200 |
| commit | 2cca9b0631eccd66f1d3dec02438642619d7ee47 (patch) | |
| tree | e4770c5a7991330852d9229e74c5a195ba627185 /modules/gdnative/register_types.cpp | |
| parent | 0198d2e03cfb8506e4a5c0f45efc43a1ac5d8d1a (diff) | |
| parent | c7f8b22ba07c27ceb91307a178ee7520677018e1 (diff) | |
| download | godot-2cca9b0631eccd66f1d3dec02438642619d7ee47.tar.gz godot-2cca9b0631eccd66f1d3dec02438642619d7ee47.tar.zst godot-2cca9b0631eccd66f1d3dec02438642619d7ee47.zip | |
Merge pull request #8338 from karroffel/dlscript-gdnative-rename
renamed dlscript module to gdnative
Diffstat (limited to 'modules/gdnative/register_types.cpp')
| -rw-r--r-- | modules/gdnative/register_types.cpp | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/modules/gdnative/register_types.cpp b/modules/gdnative/register_types.cpp new file mode 100644 index 000000000..8789c9a26 --- /dev/null +++ b/modules/gdnative/register_types.cpp @@ -0,0 +1,66 @@ +/*************************************************************************/ +/* register_types.cpp */ +/*************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* http://www.godotengine.org */ +/*************************************************************************/ +/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ +/* */ +/* 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 "gdnative.h" + +#include "io/resource_loader.h" +#include "io/resource_saver.h" + +GDNativeScriptLanguage *script_language_gdn = NULL; +ResourceFormatLoaderGDNativeScript *resource_loader_gdn = NULL; +ResourceFormatSaverGDNativeScript *resource_saver_gdn = NULL; +//ResourceFormatLoaderDLLibrary *resource_loader_dllib=NULL; + +void register_gdnative_types() { + + ClassDB::register_class<GDNativeLibrary>(); + ClassDB::register_class<GDNativeScript>(); + + script_language_gdn = memnew(GDNativeScriptLanguage); + ScriptServer::register_language(script_language_gdn); + resource_loader_gdn = memnew(ResourceFormatLoaderGDNativeScript); + ResourceLoader::add_resource_format_loader(resource_loader_gdn); + resource_saver_gdn = memnew(ResourceFormatSaverGDNativeScript); + ResourceSaver::add_resource_format_saver(resource_saver_gdn); +} + +void unregister_gdnative_types() { + + ScriptServer::unregister_language(script_language_gdn); + + if (script_language_gdn) + memdelete(script_language_gdn); + + if (resource_loader_gdn) + memdelete(resource_loader_gdn); + + if (resource_saver_gdn) + memdelete(resource_saver_gdn); +} |
