2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-12-03 22:09:47 +01:00
|
|
|
/* rendering_server_default.cpp */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 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
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
#include "rendering_server_default.h"
|
2017-08-27 21:07:15 +02:00
|
|
|
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/config/project_settings.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/marshalls.h"
|
|
|
|
#include "core/os/os.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/templates/sort_array.h"
|
2020-12-04 19:26:24 +01:00
|
|
|
#include "renderer_canvas_cull.h"
|
|
|
|
#include "renderer_scene_cull.h"
|
2020-03-27 19:21:27 +01:00
|
|
|
#include "rendering_server_globals.h"
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// careful, these may run in different threads than the visual server
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
int RenderingServerDefault::changes = 0;
|
2017-04-07 04:36:37 +02:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* BLACK BARS */
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::black_bars_set_margins(int p_left, int p_top, int p_right, int p_bottom) {
|
2020-12-22 17:24:29 +01:00
|
|
|
black_margin[SIDE_LEFT] = p_left;
|
|
|
|
black_margin[SIDE_TOP] = p_top;
|
|
|
|
black_margin[SIDE_RIGHT] = p_right;
|
|
|
|
black_margin[SIDE_BOTTOM] = p_bottom;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-08-07 23:06:57 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::black_bars_set_images(RID p_left, RID p_top, RID p_right, RID p_bottom) {
|
2020-12-22 17:24:29 +01:00
|
|
|
black_image[SIDE_LEFT] = p_left;
|
|
|
|
black_image[SIDE_TOP] = p_top;
|
|
|
|
black_image[SIDE_RIGHT] = p_right;
|
|
|
|
black_image[SIDE_BOTTOM] = p_bottom;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::_draw_margins() {
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::canvas_render->draw_window_margins(black_margin, black_image);
|
2017-08-07 23:06:57 +02:00
|
|
|
};
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* FREE */
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::free(RID p_rid) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (RSG::storage->free(p_rid)) {
|
2016-10-03 21:33:42 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
|
|
|
if (RSG::canvas->free(p_rid)) {
|
2016-10-03 21:33:42 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
|
|
|
if (RSG::viewport->free(p_rid)) {
|
2016-10-03 21:33:42 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
|
|
|
if (RSG::scene->free(p_rid)) {
|
2016-10-19 16:14:41 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* EVENT QUEUING */
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::request_frame_drawn_callback(Object *p_where, const StringName &p_method, const Variant &p_userdata) {
|
2017-06-09 05:23:50 +02:00
|
|
|
ERR_FAIL_NULL(p_where);
|
|
|
|
FrameDrawnCallbacks fdc;
|
2017-08-07 12:17:31 +02:00
|
|
|
fdc.object = p_where->get_instance_id();
|
2017-06-09 05:23:50 +02:00
|
|
|
fdc.method = p_method;
|
|
|
|
fdc.param = p_userdata;
|
|
|
|
|
|
|
|
frame_drawn_callbacks.push_back(fdc);
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::draw(bool p_swap_buffers, double frame_step) {
|
2018-07-16 16:43:26 +02:00
|
|
|
//needs to be done before changes is reset to 0, to not force the editor to redraw
|
2020-03-27 19:21:27 +01:00
|
|
|
RS::get_singleton()->emit_signal("frame_pre_draw");
|
2018-07-07 01:21:13 +02:00
|
|
|
|
2018-07-16 16:43:26 +02:00
|
|
|
changes = 0;
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::rasterizer->begin_frame(frame_step);
|
2016-12-20 04:21:07 +01:00
|
|
|
|
2019-10-04 01:15:38 +02:00
|
|
|
TIMESTAMP_BEGIN()
|
2019-09-20 22:58:06 +02:00
|
|
|
|
2020-12-24 04:13:52 +01:00
|
|
|
uint64_t time_usec = OS::get_singleton()->get_ticks_usec();
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
RSG::scene->update(); //update scenes stuff before updating instances
|
2019-08-26 22:43:58 +02:00
|
|
|
|
2020-12-24 04:13:52 +01:00
|
|
|
frame_setup_time = double(OS::get_singleton()->get_ticks_usec() - time_usec) / 1000.0;
|
|
|
|
|
2020-10-08 02:29:49 +02:00
|
|
|
RSG::storage->update_particles(); //need to be done after instances are updated (colliders and particle transforms), and colliders are rendered
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::scene->render_probes();
|
2020-12-24 04:13:52 +01:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::viewport->draw_viewports();
|
|
|
|
RSG::canvas_render->update();
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2017-10-30 21:20:12 +01:00
|
|
|
_draw_margins();
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::rasterizer->end_frame(p_swap_buffers);
|
2017-06-09 05:23:50 +02:00
|
|
|
|
|
|
|
while (frame_drawn_callbacks.front()) {
|
|
|
|
Object *obj = ObjectDB::get_instance(frame_drawn_callbacks.front()->get().object);
|
|
|
|
if (obj) {
|
2020-02-19 20:27:19 +01:00
|
|
|
Callable::CallError ce;
|
2017-06-09 05:23:50 +02:00
|
|
|
const Variant *v = &frame_drawn_callbacks.front()->get().param;
|
|
|
|
obj->call(frame_drawn_callbacks.front()->get().method, &v, 1, ce);
|
2020-02-19 20:27:19 +01:00
|
|
|
if (ce.error != Callable::CallError::CALL_OK) {
|
2017-06-09 05:23:50 +02:00
|
|
|
String err = Variant::get_call_error_text(obj, frame_drawn_callbacks.front()->get().method, &v, 1, ce);
|
2019-11-06 17:03:04 +01:00
|
|
|
ERR_PRINT("Error calling frame drawn function: " + err);
|
2017-06-09 05:23:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
frame_drawn_callbacks.pop_front();
|
|
|
|
}
|
2020-03-27 19:21:27 +01:00
|
|
|
RS::get_singleton()->emit_signal("frame_post_draw");
|
2019-09-20 22:58:06 +02:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
if (RSG::storage->get_captured_timestamps_count()) {
|
2019-09-20 22:58:06 +02:00
|
|
|
Vector<FrameProfileArea> new_profile;
|
2020-04-10 19:18:42 +02:00
|
|
|
if (RSG::storage->capturing_timestamps) {
|
|
|
|
new_profile.resize(RSG::storage->get_captured_timestamps_count());
|
|
|
|
}
|
2019-09-20 22:58:06 +02:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
uint64_t base_cpu = RSG::storage->get_captured_timestamp_cpu_time(0);
|
|
|
|
uint64_t base_gpu = RSG::storage->get_captured_timestamp_gpu_time(0);
|
|
|
|
for (uint32_t i = 0; i < RSG::storage->get_captured_timestamps_count(); i++) {
|
2020-04-10 19:18:42 +02:00
|
|
|
uint64_t time_cpu = RSG::storage->get_captured_timestamp_cpu_time(i);
|
|
|
|
uint64_t time_gpu = RSG::storage->get_captured_timestamp_gpu_time(i);
|
|
|
|
|
|
|
|
String name = RSG::storage->get_captured_timestamp_name(i);
|
|
|
|
|
|
|
|
if (name.begins_with("vp_")) {
|
|
|
|
RSG::viewport->handle_timestamp(name, time_cpu, time_gpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RSG::storage->capturing_timestamps) {
|
|
|
|
new_profile.write[i].gpu_msec = float((time_gpu - base_gpu) / 1000) / 1000.0;
|
|
|
|
new_profile.write[i].cpu_msec = float(time_cpu - base_cpu) / 1000.0;
|
|
|
|
new_profile.write[i].name = RSG::storage->get_captured_timestamp_name(i);
|
|
|
|
}
|
2019-09-20 22:58:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
frame_profile = new_profile;
|
|
|
|
}
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
frame_profile_frame = RSG::storage->get_captured_timestamps_frame();
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-24 04:13:52 +01:00
|
|
|
float RenderingServerDefault::get_frame_setup_time_cpu() const {
|
|
|
|
return frame_setup_time;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::sync() {
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
bool RenderingServerDefault::has_changed() const {
|
2017-03-05 16:44:50 +01:00
|
|
|
return changes > 0;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::init() {
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::rasterizer->initialize();
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::finish() {
|
2016-10-03 21:33:42 +02:00
|
|
|
if (test_cube.is_valid()) {
|
|
|
|
free(test_cube);
|
|
|
|
}
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::rasterizer->finalize();
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* STATUS INFORMATION */
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
int RenderingServerDefault::get_render_info(RenderInfo p_info) {
|
2020-03-27 19:21:27 +01:00
|
|
|
return RSG::storage->get_render_info(p_info);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
String RenderingServerDefault::get_video_adapter_name() const {
|
2020-03-27 19:21:27 +01:00
|
|
|
return RSG::storage->get_video_adapter_name();
|
2019-09-13 20:08:05 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
String RenderingServerDefault::get_video_adapter_vendor() const {
|
2020-03-27 19:21:27 +01:00
|
|
|
return RSG::storage->get_video_adapter_vendor();
|
2019-09-13 20:08:05 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::set_frame_profiling_enabled(bool p_enable) {
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::storage->capturing_timestamps = p_enable;
|
2019-09-20 22:58:06 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
uint64_t RenderingServerDefault::get_frame_profile_frame() {
|
2019-09-20 22:58:06 +02:00
|
|
|
return frame_profile_frame;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
Vector<RenderingServer::FrameProfileArea> RenderingServerDefault::get_frame_profile() {
|
2019-09-20 22:58:06 +02:00
|
|
|
return frame_profile;
|
|
|
|
}
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* TESTING */
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::set_boot_image(const Ref<Image> &p_image, const Color &p_color, bool p_scale, bool p_use_filter) {
|
2017-04-10 01:40:48 +02:00
|
|
|
redraw_request();
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::rasterizer->set_boot_image(p_image, p_color, p_scale, p_use_filter);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::set_default_clear_color(const Color &p_color) {
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::viewport->set_default_clear_color(p_color);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
bool RenderingServerDefault::has_feature(Features p_feature) const {
|
2016-10-03 21:33:42 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::sdfgi_set_debug_probe_select(const Vector3 &p_position, const Vector3 &p_dir) {
|
|
|
|
RSG::scene->sdfgi_set_debug_probe_select(p_position, p_dir);
|
2020-06-25 15:33:28 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
RID RenderingServerDefault::get_test_cube() {
|
2016-10-03 21:33:42 +02:00
|
|
|
if (!test_cube.is_valid()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
test_cube = _make_test_cube();
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
return test_cube;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
bool RenderingServerDefault::has_os_feature(const String &p_feature) const {
|
2020-03-27 19:21:27 +01:00
|
|
|
return RSG::storage->has_os_feature(p_feature);
|
2017-02-06 04:38:39 +01:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::set_debug_generate_wireframes(bool p_generate) {
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::storage->set_debug_generate_wireframes(p_generate);
|
2017-06-11 20:52:03 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
void RenderingServerDefault::call_set_use_vsync(bool p_enable) {
|
2020-03-03 14:36:29 +01:00
|
|
|
DisplayServer::get_singleton()->_set_use_vsync(p_enable);
|
2017-12-16 21:09:25 +01:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
bool RenderingServerDefault::is_low_end() const {
|
2019-12-12 17:22:30 +01:00
|
|
|
// FIXME: Commented out when rebasing vulkan branch on master,
|
|
|
|
// causes a crash, it seems rasterizer is not initialized yet the
|
|
|
|
// first time it's called.
|
2020-03-27 19:21:27 +01:00
|
|
|
//return RSG::rasterizer->is_low_end();
|
2019-12-12 17:22:30 +01:00
|
|
|
return false;
|
2018-09-29 01:32:40 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
RenderingServerDefault::RenderingServerDefault() {
|
2020-12-04 19:26:24 +01:00
|
|
|
RSG::canvas = memnew(RendererCanvasCull);
|
|
|
|
RSG::viewport = memnew(RendererViewport);
|
|
|
|
RendererSceneCull *sr = memnew(RendererSceneCull);
|
2020-12-03 22:09:47 +01:00
|
|
|
RSG::scene = sr;
|
2020-12-04 19:26:24 +01:00
|
|
|
RSG::rasterizer = RendererCompositor::create();
|
2020-03-27 19:21:27 +01:00
|
|
|
RSG::storage = RSG::rasterizer->get_storage();
|
|
|
|
RSG::canvas_render = RSG::rasterizer->get_canvas();
|
2020-12-03 22:09:47 +01:00
|
|
|
sr->scene_render = RSG::rasterizer->get_scene();
|
2017-08-07 23:06:57 +02:00
|
|
|
|
2019-09-20 22:58:06 +02:00
|
|
|
frame_profile_frame = 0;
|
|
|
|
|
2019-05-28 19:12:19 +02:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-08-07 23:06:57 +02:00
|
|
|
black_margin[i] = 0;
|
2019-05-28 19:12:19 +02:00
|
|
|
black_image[i] = RID();
|
|
|
|
}
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:09:47 +01:00
|
|
|
RenderingServerDefault::~RenderingServerDefault() {
|
2020-03-27 19:21:27 +01:00
|
|
|
memdelete(RSG::canvas);
|
|
|
|
memdelete(RSG::viewport);
|
|
|
|
memdelete(RSG::rasterizer);
|
|
|
|
memdelete(RSG::scene);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|