2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* step_sw.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01: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-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "step_sw.h"
|
2014-10-03 05:10:51 +02:00
|
|
|
#include "joints_sw.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
#include "os/os.h"
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void StepSW::_populate_island(BodySW *p_body, BodySW **p_island, ConstraintSW **p_constraint_island) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
p_body->set_island_step(_step);
|
|
|
|
p_body->set_island_next(*p_island);
|
2017-03-05 16:44:50 +01:00
|
|
|
*p_island = p_body;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (Map<ConstraintSW *, int>::Element *E = p_body->get_constraint_map().front(); E; E = E->next()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *c = (ConstraintSW *)E->key();
|
|
|
|
if (c->get_island_step() == _step)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue; //already processed
|
|
|
|
c->set_island_step(_step);
|
|
|
|
c->set_island_next(*p_constraint_island);
|
2017-03-05 16:44:50 +01:00
|
|
|
*p_constraint_island = c;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < c->get_body_count(); i++) {
|
|
|
|
if (i == E->get())
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
BodySW *b = c->get_body_ptr()[i];
|
2017-03-05 16:44:50 +01:00
|
|
|
if (b->get_island_step() == _step || b->get_mode() == PhysicsServer::BODY_MODE_STATIC || b->get_mode() == PhysicsServer::BODY_MODE_KINEMATIC)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue; //no go
|
2017-03-05 16:44:50 +01:00
|
|
|
_populate_island(c->get_body_ptr()[i], p_island, p_constraint_island);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void StepSW::_setup_island(ConstraintSW *p_island, real_t p_delta) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *ci = p_island;
|
|
|
|
while (ci) {
|
2017-09-02 22:32:31 +02:00
|
|
|
ci->setup(p_delta);
|
2014-02-10 02:10:30 +01:00
|
|
|
//todo remove from island if process fails
|
2017-03-05 16:44:50 +01:00
|
|
|
ci = ci->get_island_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void StepSW::_solve_island(ConstraintSW *p_island, int p_iterations, real_t p_delta) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int at_priority = 1;
|
2014-10-03 05:10:51 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (p_island) {
|
2014-10-03 05:10:51 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_iterations; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *ci = p_island;
|
|
|
|
while (ci) {
|
2014-10-03 05:10:51 +02:00
|
|
|
ci->solve(p_delta);
|
2017-03-05 16:44:50 +01:00
|
|
|
ci = ci->get_island_next();
|
2014-10-03 05:10:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
at_priority++;
|
|
|
|
|
|
|
|
{
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *ci = p_island;
|
|
|
|
ConstraintSW *prev = NULL;
|
|
|
|
while (ci) {
|
|
|
|
if (ci->get_priority() < at_priority) {
|
2014-10-03 05:10:51 +02:00
|
|
|
if (prev) {
|
|
|
|
prev->set_island_next(ci->get_island_next()); //remove
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
p_island = ci->get_island_next();
|
2014-10-03 05:10:51 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
prev = ci;
|
2014-10-03 05:10:51 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ci = ci->get_island_next();
|
2014-10-03 05:10:51 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void StepSW::_check_suspend(BodySW *p_island, real_t p_delta) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool can_sleep = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
BodySW *b = p_island;
|
2017-03-05 16:44:50 +01:00
|
|
|
while (b) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (b->get_mode() == PhysicsServer::BODY_MODE_STATIC || b->get_mode() == PhysicsServer::BODY_MODE_KINEMATIC) {
|
|
|
|
b = b->get_island_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
continue; //ignore for static
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (!b->sleep_test(p_delta))
|
2017-03-05 16:44:50 +01:00
|
|
|
can_sleep = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
b = b->get_island_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//put all to sleep or wake up everyoen
|
|
|
|
|
|
|
|
b = p_island;
|
2017-03-05 16:44:50 +01:00
|
|
|
while (b) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (b->get_mode() == PhysicsServer::BODY_MODE_STATIC || b->get_mode() == PhysicsServer::BODY_MODE_KINEMATIC) {
|
|
|
|
b = b->get_island_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
continue; //ignore for static
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
bool active = b->is_active();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (active == can_sleep)
|
2014-02-10 02:10:30 +01:00
|
|
|
b->set_active(!can_sleep);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
b = b->get_island_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void StepSW::step(SpaceSW *p_space, real_t p_delta, int p_iterations) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
p_space->lock(); // can't access space during this
|
|
|
|
|
|
|
|
p_space->setup(); //update inertias, etc
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const SelfList<BodySW>::List *body_list = &p_space->get_active_body_list();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
/* INTEGRATE FORCES */
|
2016-05-22 02:18:16 +02:00
|
|
|
|
|
|
|
uint64_t profile_begtime = OS::get_singleton()->get_ticks_usec();
|
2017-03-05 16:44:50 +01:00
|
|
|
uint64_t profile_endtime = 0;
|
2016-05-22 02:18:16 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int active_count = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const SelfList<BodySW> *b = body_list->first();
|
|
|
|
while (b) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
b->self()->integrate_forces(p_delta);
|
2017-03-05 16:44:50 +01:00
|
|
|
b = b->next();
|
2014-02-10 02:10:30 +01:00
|
|
|
active_count++;
|
|
|
|
}
|
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
p_space->set_active_objects(active_count);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
{ //profile
|
2017-03-05 16:44:50 +01:00
|
|
|
profile_endtime = OS::get_singleton()->get_ticks_usec();
|
|
|
|
p_space->set_elapsed_time(SpaceSW::ELAPSED_TIME_INTEGRATE_FORCES, profile_endtime - profile_begtime);
|
|
|
|
profile_begtime = profile_endtime;
|
2016-05-22 02:18:16 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/* GENERATE CONSTRAINT ISLANDS */
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
BodySW *island_list = NULL;
|
|
|
|
ConstraintSW *constraint_island_list = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
b = body_list->first();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int island_count = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (b) {
|
2014-02-10 02:10:30 +01:00
|
|
|
BodySW *body = b->self();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (body->get_island_step() != _step) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
BodySW *island = NULL;
|
|
|
|
ConstraintSW *constraint_island = NULL;
|
|
|
|
_populate_island(body, &island, &constraint_island);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
island->set_island_list_next(island_list);
|
2017-03-05 16:44:50 +01:00
|
|
|
island_list = island;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (constraint_island) {
|
|
|
|
constraint_island->set_island_list_next(constraint_island_list);
|
2017-03-05 16:44:50 +01:00
|
|
|
constraint_island_list = constraint_island;
|
2014-02-10 02:10:30 +01:00
|
|
|
island_count++;
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
b = b->next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
p_space->set_island_count(island_count);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
const SelfList<AreaSW>::List &aml = p_space->get_moved_area_list();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (aml.first()) {
|
|
|
|
for (const Set<ConstraintSW *>::Element *E = aml.first()->self()->get_constraints().front(); E; E = E->next()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *c = E->get();
|
|
|
|
if (c->get_island_step() == _step)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
c->set_island_step(_step);
|
|
|
|
c->set_island_next(NULL);
|
|
|
|
c->set_island_list_next(constraint_island_list);
|
2017-03-05 16:44:50 +01:00
|
|
|
constraint_island_list = c;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
p_space->area_remove_from_moved_list((SelfList<AreaSW> *)aml.first()); //faster to remove here
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
{ //profile
|
2017-03-05 16:44:50 +01:00
|
|
|
profile_endtime = OS::get_singleton()->get_ticks_usec();
|
|
|
|
p_space->set_elapsed_time(SpaceSW::ELAPSED_TIME_GENERATE_ISLANDS, profile_endtime - profile_begtime);
|
|
|
|
profile_begtime = profile_endtime;
|
2016-05-22 02:18:16 +02:00
|
|
|
}
|
|
|
|
|
2017-01-14 12:26:56 +01:00
|
|
|
//print_line("island count: "+itos(island_count)+" active count: "+itos(active_count));
|
2014-02-10 02:10:30 +01:00
|
|
|
/* SETUP CONSTRAINT ISLANDS */
|
|
|
|
|
|
|
|
{
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *ci = constraint_island_list;
|
|
|
|
while (ci) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_setup_island(ci, p_delta);
|
|
|
|
ci = ci->get_island_list_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
{ //profile
|
2017-03-05 16:44:50 +01:00
|
|
|
profile_endtime = OS::get_singleton()->get_ticks_usec();
|
|
|
|
p_space->set_elapsed_time(SpaceSW::ELAPSED_TIME_SETUP_CONSTRAINTS, profile_endtime - profile_begtime);
|
|
|
|
profile_begtime = profile_endtime;
|
2016-05-22 02:18:16 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/* SOLVE CONSTRAINT ISLANDS */
|
|
|
|
|
|
|
|
{
|
2017-03-05 16:44:50 +01:00
|
|
|
ConstraintSW *ci = constraint_island_list;
|
|
|
|
while (ci) {
|
2014-02-10 02:10:30 +01:00
|
|
|
//iterating each island separatedly improves cache efficiency
|
2017-03-05 16:44:50 +01:00
|
|
|
_solve_island(ci, p_iterations, p_delta);
|
|
|
|
ci = ci->get_island_list_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
{ //profile
|
2017-03-05 16:44:50 +01:00
|
|
|
profile_endtime = OS::get_singleton()->get_ticks_usec();
|
|
|
|
p_space->set_elapsed_time(SpaceSW::ELAPSED_TIME_SOLVE_CONSTRAINTS, profile_endtime - profile_begtime);
|
|
|
|
profile_begtime = profile_endtime;
|
2016-05-22 02:18:16 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/* INTEGRATE VELOCITIES */
|
|
|
|
|
|
|
|
b = body_list->first();
|
2017-03-05 16:44:50 +01:00
|
|
|
while (b) {
|
|
|
|
const SelfList<BodySW> *n = b->next();
|
2014-02-10 02:10:30 +01:00
|
|
|
b->self()->integrate_velocities(p_delta);
|
2017-03-05 16:44:50 +01:00
|
|
|
b = n;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SLEEP / WAKE UP ISLANDS */
|
|
|
|
|
|
|
|
{
|
2017-03-05 16:44:50 +01:00
|
|
|
BodySW *bi = island_list;
|
|
|
|
while (bi) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_check_suspend(bi, p_delta);
|
|
|
|
bi = bi->get_island_list_next();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 02:18:16 +02:00
|
|
|
{ //profile
|
2017-03-05 16:44:50 +01:00
|
|
|
profile_endtime = OS::get_singleton()->get_ticks_usec();
|
|
|
|
p_space->set_elapsed_time(SpaceSW::ELAPSED_TIME_INTEGRATE_VELOCITIES, profile_endtime - profile_begtime);
|
|
|
|
profile_begtime = profile_endtime;
|
2016-05-22 02:18:16 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
p_space->update();
|
|
|
|
p_space->unlock();
|
|
|
|
_step++;
|
|
|
|
}
|
|
|
|
|
|
|
|
StepSW::StepSW() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_step = 1;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|