2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* main_loop.cpp */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "main_loop.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/object/script_language.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void MainLoop::_bind_methods() {
|
2014-05-24 06:35:47 +02:00
|
|
|
BIND_CONSTANT(NOTIFICATION_OS_MEMORY_WARNING);
|
2017-08-11 17:04:32 +02:00
|
|
|
BIND_CONSTANT(NOTIFICATION_TRANSLATION_CHANGED);
|
|
|
|
BIND_CONSTANT(NOTIFICATION_WM_ABOUT);
|
2018-07-02 21:18:58 +02:00
|
|
|
BIND_CONSTANT(NOTIFICATION_CRASH);
|
2018-11-23 13:07:48 +01:00
|
|
|
BIND_CONSTANT(NOTIFICATION_OS_IME_UPDATE);
|
2020-06-30 01:47:18 +02: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 08:25:28 +02:00
|
|
|
BIND_CONSTANT(NOTIFICATION_TEXT_SERVER_CHANGED);
|
2019-10-06 20:17:44 +02:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("on_request_permissions_result", PropertyInfo(Variant::STRING, "permission"), PropertyInfo(Variant::BOOL, "granted")));
|
2021-08-22 03:52:44 +02:00
|
|
|
|
|
|
|
GDVIRTUAL_BIND(_initialize);
|
|
|
|
GDVIRTUAL_BIND(_physics_process, "delta");
|
|
|
|
GDVIRTUAL_BIND(_process, "delta");
|
|
|
|
GDVIRTUAL_BIND(_finalize);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-22 10:50:29 +01:00
|
|
|
void MainLoop::initialize() {
|
2021-08-22 03:52:44 +02:00
|
|
|
GDVIRTUAL_CALL(_initialize);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2021-05-21 07:23:35 +02:00
|
|
|
bool MainLoop::physics_process(double p_time) {
|
2022-10-18 18:47:44 +02:00
|
|
|
bool quit = false;
|
|
|
|
GDVIRTUAL_CALL(_physics_process, p_time, quit);
|
|
|
|
return quit;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2021-05-21 07:23:35 +02:00
|
|
|
bool MainLoop::process(double p_time) {
|
2022-10-18 18:47:44 +02:00
|
|
|
bool quit = false;
|
|
|
|
GDVIRTUAL_CALL(_process, p_time, quit);
|
|
|
|
return quit;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-05-27 19:18:40 +02:00
|
|
|
|
2020-12-22 10:50:29 +01:00
|
|
|
void MainLoop::finalize() {
|
2021-08-22 03:52:44 +02:00
|
|
|
GDVIRTUAL_CALL(_finalize);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (get_script_instance()) {
|
2020-02-13 20:03:10 +01:00
|
|
|
set_script(Variant()); //clear script
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|