2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* main_loop.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2021-01-01 19:13:46 +00:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "main_loop.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/object/script_language.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void MainLoop::_bind_methods() {
|
2017-03-05 15:44:50 +00:00
|
|
|
BIND_VMETHOD(MethodInfo("_initialize"));
|
2020-12-22 09:50:29 +00:00
|
|
|
BIND_VMETHOD(MethodInfo(Variant::BOOL, "_physics_process", PropertyInfo(Variant::FLOAT, "delta")));
|
|
|
|
BIND_VMETHOD(MethodInfo(Variant::BOOL, "_process", PropertyInfo(Variant::FLOAT, "delta")));
|
2017-03-05 15:44:50 +00:00
|
|
|
BIND_VMETHOD(MethodInfo("_finalize"));
|
2015-05-25 04:46:45 +00:00
|
|
|
|
2014-05-24 04:35:47 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_OS_MEMORY_WARNING);
|
2017-08-11 15:04:32 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_TRANSLATION_CHANGED);
|
|
|
|
BIND_CONSTANT(NOTIFICATION_WM_ABOUT);
|
2018-07-02 19:18:58 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_CRASH);
|
2018-11-23 12:07:48 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_OS_IME_UPDATE);
|
2020-06-29 23:47:18 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_APPLICATION_RESUMED);
|
|
|
|
BIND_CONSTANT(NOTIFICATION_APPLICATION_PAUSED);
|
|
|
|
BIND_CONSTANT(NOTIFICATION_APPLICATION_FOCUS_IN);
|
|
|
|
BIND_CONSTANT(NOTIFICATION_APPLICATION_FOCUS_OUT);
|
2020-08-05 06:25:28 +00:00
|
|
|
BIND_CONSTANT(NOTIFICATION_TEXT_SERVER_CHANGED);
|
2019-10-06 18:17:44 +00:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("on_request_permissions_result", PropertyInfo(Variant::STRING, "permission"), PropertyInfo(Variant::BOOL, "granted")));
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-12-22 09:50:29 +00:00
|
|
|
void MainLoop::set_initialize_script(const Ref<Script> &p_initialize_script) {
|
|
|
|
initialize_script = p_initialize_script;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-22 09:50:29 +00:00
|
|
|
void MainLoop::initialize() {
|
|
|
|
if (initialize_script.is_valid()) {
|
|
|
|
set_script(initialize_script);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (get_script_instance()) {
|
2015-05-25 04:46:45 +00:00
|
|
|
get_script_instance()->call("_initialize");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
2021-05-21 05:23:35 +00:00
|
|
|
bool MainLoop::physics_process(double p_time) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (get_script_instance()) {
|
2020-12-22 09:50:29 +00:00
|
|
|
return get_script_instance()->call("_physics_process", p_time);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
2021-05-21 05:23:35 +00:00
|
|
|
bool MainLoop::process(double p_time) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (get_script_instance()) {
|
2020-12-22 09:50:29 +00:00
|
|
|
return get_script_instance()->call("_process", p_time);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-27 17:18:40 +00:00
|
|
|
|
2020-12-22 09:50:29 +00:00
|
|
|
void MainLoop::finalize() {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (get_script_instance()) {
|
2015-05-25 04:46:45 +00:00
|
|
|
get_script_instance()->call("_finalize");
|
2020-02-13 19:03:10 +00:00
|
|
|
set_script(Variant()); //clear script
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|