2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* rasterizer.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
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 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 "rasterizer.h"
|
2017-08-27 19:07:15 +00:00
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/os.h"
|
|
|
|
#include "core/print_string.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
Rasterizer *(*Rasterizer::_create_func)() = nullptr;
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2019-07-21 14:31:30 +00:00
|
|
|
void RasterizerScene::InstanceDependency::instance_notify_changed(bool p_aabb, bool p_dependencies) {
|
|
|
|
for (Map<InstanceBase *, uint32_t>::Element *E = instances.front(); E; E = E->next()) {
|
|
|
|
E->key()->dependency_changed(p_aabb, p_dependencies);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void RasterizerScene::InstanceDependency::instance_notify_deleted(RID p_deleted) {
|
|
|
|
for (Map<InstanceBase *, uint32_t>::Element *E = instances.front(); E; E = E->next()) {
|
|
|
|
E->key()->dependency_deleted(p_deleted);
|
|
|
|
}
|
|
|
|
for (Map<InstanceBase *, uint32_t>::Element *E = instances.front(); E; E = E->next()) {
|
|
|
|
E->key()->dependencies.erase(this);
|
|
|
|
}
|
2019-09-07 01:51:27 +00:00
|
|
|
|
|
|
|
instances.clear();
|
2019-07-21 14:31:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RasterizerScene::InstanceDependency::~InstanceDependency() {
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (instances.size()) {
|
|
|
|
WARN_PRINT("Leaked instance dependency: Bug - did not call instance_notify_deleted when freeing.");
|
|
|
|
for (Map<InstanceBase *, uint32_t>::Element *E = instances.front(); E; E = E->next()) {
|
|
|
|
E->key()->dependencies.erase(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
Rasterizer *Rasterizer::create() {
|
|
|
|
return _create_func();
|
|
|
|
}
|
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
RasterizerCanvas *RasterizerCanvas::singleton = nullptr;
|
2019-06-16 02:45:24 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
RasterizerStorage *RasterizerStorage::base_singleton = nullptr;
|
2016-10-03 19:33:42 +00:00
|
|
|
|
|
|
|
RasterizerStorage::RasterizerStorage() {
|
2017-05-29 06:08:16 +00:00
|
|
|
base_singleton = this;
|
2016-10-03 19:33:42 +00:00
|
|
|
}
|