godot-cpp/src/core/GodotGlobal.cpp

46 lines
1.2 KiB
C++
Raw Normal View History

2017-05-13 11:55:04 +00:00
#include "GodotGlobal.hpp"
#include "String.hpp"
namespace godot {
void *_RegisterState::nativescript_handle;
2017-10-20 23:42:10 +00:00
const godot_gdnative_api_struct *api = NULL;
2017-05-13 11:55:04 +00:00
void Godot::print(const String& message)
{
2017-10-20 23:42:10 +00:00
godot::api->godot_print((godot_string *) &message);
2017-05-13 11:55:04 +00:00
}
void Godot::print_warning(const String& description, const String& function, const String& file, int line)
{
2017-10-20 23:42:10 +00:00
godot::api->godot_print_warning(description.c_string(), function.c_string(), file.c_string(), line);
2017-05-13 11:55:04 +00:00
}
void Godot::print_error(const String& description, const String& function, const String& file, int line)
{
2017-10-20 23:42:10 +00:00
godot::api->godot_print_error(description.c_string(), function.c_string(), file.c_string(), line);
2017-05-13 11:55:04 +00:00
}
};
void gdnative_init(godot_gdnative_init_options *options);
extern "C" void GDN_EXPORT godot_gdnative_init(godot_gdnative_init_options *options)
{
2017-10-20 23:42:10 +00:00
godot::api = options->api_struct;
gdnative_init(options);
}
void gdnative_terminate(godot_gdnative_terminate_options *options);
extern "C" void GDN_EXPORT godot_gdnative_terminate(godot_gdnative_terminate_options *options)
{
gdnative_terminate(options);
}
void nativescript_init();
extern "C" void GDN_EXPORT godot_nativescript_init(void *handle)
{
godot::_RegisterState::nativescript_handle = handle;
nativescript_init();
}