Files
engine/servers/physics_server_2d_wrap_mt.cpp
T

138 lines
4.5 KiB
C++
Raw Normal View History

/*************************************************************************/
/* physics_server_2d_wrap_mt.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2022-01-03 21:27:34 +01:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 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. */
/*************************************************************************/
2020-03-27 15:21:27 -03:00
#include "physics_server_2d_wrap_mt.h"
2015-05-26 01:05:08 -03:00
#include "core/os/os.h"
2015-05-26 01:05:08 -03:00
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::thread_exit() {
2021-02-10 19:22:13 +01:00
exit.set();
2015-05-26 01:05:08 -03:00
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::thread_step(real_t p_delta) {
2015-05-26 01:05:08 -03:00
physics_2d_server->step(p_delta);
2020-03-03 09:26:42 +01:00
step_sem.post();
2015-05-26 01:05:08 -03:00
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::_thread_callback(void *_instance) {
PhysicsServer2DWrapMT *vsmt = reinterpret_cast<PhysicsServer2DWrapMT *>(_instance);
2015-05-26 01:05:08 -03:00
vsmt->thread_loop();
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::thread_loop() {
2017-08-07 17:17:31 +07:00
server_thread = Thread::get_caller_id();
2015-05-26 01:05:08 -03:00
physics_2d_server->init();
2021-02-10 19:22:13 +01:00
exit.clear();
step_thread_up.set();
while (!exit.is_set()) {
2015-05-26 01:05:08 -03:00
// flush commands one by one, until exit is requested
2021-06-09 12:09:31 -03:00
command_queue.wait_and_flush();
2015-05-26 01:05:08 -03:00
}
command_queue.flush_all(); // flush all
physics_2d_server->finish();
}
/* EVENT QUEUING */
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::step(real_t p_step) {
2015-05-26 01:05:08 -03:00
if (create_thread) {
2020-03-27 15:21:27 -03:00
command_queue.push(this, &PhysicsServer2DWrapMT::thread_step, p_step);
2015-05-26 01:05:08 -03:00
} else {
command_queue.flush_all(); //flush all pending from other threads
physics_2d_server->step(p_step);
}
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::sync() {
2021-01-19 13:29:41 +01:00
if (create_thread) {
if (first_frame) {
2017-03-05 16:44:50 +01:00
first_frame = false;
} else {
2020-03-03 09:26:42 +01:00
step_sem.wait(); //must not wait if a step was not issued
}
2015-05-26 01:30:36 -03:00
}
2017-01-14 18:03:38 +01:00
physics_2d_server->sync();
2015-05-26 01:05:08 -03:00
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::flush_queries() {
2015-05-26 01:05:08 -03:00
physics_2d_server->flush_queries();
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::end_sync() {
2017-01-14 18:03:38 +01:00
physics_2d_server->end_sync();
2015-05-26 01:05:08 -03:00
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::init() {
2015-05-26 01:05:08 -03:00
if (create_thread) {
//OS::get_singleton()->release_rendering_thread();
2021-01-19 13:29:41 +01:00
thread.start(_thread_callback, this);
2021-02-10 19:22:13 +01:00
while (!step_thread_up.is_set()) {
2015-05-26 01:05:08 -03:00
OS::get_singleton()->delay_usec(1000);
}
} else {
physics_2d_server->init();
}
}
2020-03-27 15:21:27 -03:00
void PhysicsServer2DWrapMT::finish() {
2021-01-19 13:29:41 +01:00
if (thread.is_started()) {
2020-03-27 15:21:27 -03:00
command_queue.push(this, &PhysicsServer2DWrapMT::thread_exit);
2021-01-19 13:29:41 +01:00
thread.wait_to_finish();
2015-05-26 01:05:08 -03:00
} else {
physics_2d_server->finish();
}
}
2020-03-27 15:21:27 -03:00
PhysicsServer2DWrapMT::PhysicsServer2DWrapMT(PhysicsServer2D *p_contained, bool p_create_thread) :
command_queue(p_create_thread) {
2017-03-05 16:44:50 +01:00
physics_2d_server = p_contained;
create_thread = p_create_thread;
2015-05-26 01:05:08 -03:00
pool_max_size = GLOBAL_GET("memory/limits/multithreaded_server/rid_pool_prealloc");
2015-05-26 01:05:08 -03:00
if (!p_create_thread) {
2017-08-07 17:17:31 +07:00
server_thread = Thread::get_caller_id();
2015-05-26 01:05:08 -03:00
} else {
2017-03-05 16:44:50 +01:00
server_thread = 0;
2015-05-26 01:05:08 -03:00
}
2015-05-26 01:30:36 -03:00
2017-08-07 17:17:31 +07:00
main_thread = Thread::get_caller_id();
2015-05-26 01:05:08 -03:00
}
2020-03-27 15:21:27 -03:00
PhysicsServer2DWrapMT::~PhysicsServer2DWrapMT() {
2015-05-26 01:05:08 -03:00
memdelete(physics_2d_server);
//finish();
}