2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* visual_server_raster.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
|
|
|
/*************************************************************************/
|
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
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "visual_server_raster.h"
|
2017-08-27 21:07:15 +02:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/marshalls.h"
|
|
|
|
#include "core/os/os.h"
|
|
|
|
#include "core/project_settings.h"
|
2019-02-12 13:30:56 +01:00
|
|
|
#include "core/sort_array.h"
|
2016-10-03 21:33:42 +02:00
|
|
|
#include "visual_server_canvas.h"
|
2019-02-12 14:23:35 +01:00
|
|
|
#include "visual_server_globals.h"
|
2016-10-19 16:14:41 +02:00
|
|
|
#include "visual_server_scene.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
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
int VisualServerRaster::changes = 0;
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* BLACK BARS */
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::black_bars_set_margins(int p_left, int p_top, int p_right, int p_bottom) {
|
2017-08-07 23:06:57 +02:00
|
|
|
|
|
|
|
black_margin[MARGIN_LEFT] = p_left;
|
|
|
|
black_margin[MARGIN_TOP] = p_top;
|
|
|
|
black_margin[MARGIN_RIGHT] = p_right;
|
|
|
|
black_margin[MARGIN_BOTTOM] = p_bottom;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-08-07 23:06:57 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::black_bars_set_images(RID p_left, RID p_top, RID p_right, RID p_bottom) {
|
2017-08-07 23:06:57 +02:00
|
|
|
|
|
|
|
black_image[MARGIN_LEFT] = p_left;
|
|
|
|
black_image[MARGIN_TOP] = p_top;
|
|
|
|
black_image[MARGIN_RIGHT] = p_right;
|
|
|
|
black_image[MARGIN_BOTTOM] = p_bottom;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2017-08-07 23:06:57 +02:00
|
|
|
void VisualServerRaster::_draw_margins() {
|
|
|
|
|
|
|
|
VSG::canvas_render->draw_window_margins(black_margin, black_image);
|
|
|
|
};
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* FREE */
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::free(RID p_rid) {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
|
|
|
if (VSG::storage->free(p_rid))
|
|
|
|
return;
|
|
|
|
if (VSG::canvas->free(p_rid))
|
|
|
|
return;
|
|
|
|
if (VSG::viewport->free(p_rid))
|
|
|
|
return;
|
2016-10-19 16:14:41 +02:00
|
|
|
if (VSG::scene->free(p_rid))
|
|
|
|
return;
|
2019-07-02 16:23:54 +02:00
|
|
|
if (VSG::scene_render->free(p_rid))
|
|
|
|
return;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* EVENT QUEUING */
|
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
void VisualServerRaster::request_frame_drawn_callback(Object *p_where, const StringName &p_method, const Variant &p_userdata) {
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-05-09 08:11:43 +02:00
|
|
|
void VisualServerRaster::draw(bool p_swap_buffers, double frame_step) {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
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
|
2018-07-07 01:21:13 +02:00
|
|
|
VS::get_singleton()->emit_signal("frame_pre_draw");
|
|
|
|
|
2018-07-16 16:43:26 +02:00
|
|
|
changes = 0;
|
|
|
|
|
2018-05-09 08:11:43 +02:00
|
|
|
VSG::rasterizer->begin_frame(frame_step);
|
2016-12-20 04:21:07 +01:00
|
|
|
|
2016-10-19 16:14:41 +02:00
|
|
|
VSG::scene->update_dirty_instances(); //update scene stuff
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
VSG::viewport->draw_viewports();
|
2016-11-19 17:23:37 +01:00
|
|
|
VSG::scene->render_probes();
|
2019-06-16 04:45:24 +02:00
|
|
|
VSG::canvas_render->update();
|
|
|
|
|
2017-10-30 21:20:12 +01:00
|
|
|
_draw_margins();
|
2017-10-30 21:33:36 +01:00
|
|
|
VSG::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) {
|
|
|
|
Variant::CallError ce;
|
|
|
|
const Variant *v = &frame_drawn_callbacks.front()->get().param;
|
|
|
|
obj->call(frame_drawn_callbacks.front()->get().method, &v, 1, ce);
|
|
|
|
if (ce.error != Variant::CallError::CALL_OK) {
|
|
|
|
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();
|
|
|
|
}
|
2018-07-07 01:21:13 +02:00
|
|
|
VS::get_singleton()->emit_signal("frame_post_draw");
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::sync() {
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
bool VisualServerRaster::has_changed() const {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return changes > 0;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::init() {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
|
|
|
VSG::rasterizer->initialize();
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::finish() {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
|
|
|
if (test_cube.is_valid()) {
|
|
|
|
free(test_cube);
|
|
|
|
}
|
|
|
|
|
|
|
|
VSG::rasterizer->finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* STATUS INFORMATION */
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int VisualServerRaster::get_render_info(RenderInfo p_info) {
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2017-06-11 23:13:04 +02:00
|
|
|
return VSG::storage->get_render_info(p_info);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 20:08:05 +02:00
|
|
|
String VisualServerRaster::get_video_adapter_name() const {
|
|
|
|
|
|
|
|
return VSG::storage->get_video_adapter_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
String VisualServerRaster::get_video_adapter_vendor() const {
|
|
|
|
|
|
|
|
return VSG::storage->get_video_adapter_vendor();
|
|
|
|
}
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
/* TESTING */
|
|
|
|
|
2019-06-13 22:37:19 +02:00
|
|
|
void VisualServerRaster::set_boot_image(const Ref<Image> &p_image, const Color &p_color, bool p_scale, bool p_use_filter) {
|
2017-04-10 01:02:04 +02:00
|
|
|
|
2017-04-10 01:40:48 +02:00
|
|
|
redraw_request();
|
2019-06-13 22:37:19 +02:00
|
|
|
VSG::rasterizer->set_boot_image(p_image, p_color, p_scale, p_use_filter);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void VisualServerRaster::set_default_clear_color(const Color &p_color) {
|
2018-07-29 20:09:42 +02:00
|
|
|
VSG::viewport->set_default_clear_color(p_color);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool VisualServerRaster::has_feature(Features p_feature) const {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RID VisualServerRaster::get_test_cube() {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool VisualServerRaster::has_os_feature(const String &p_feature) const {
|
2017-02-06 04:38:39 +01:00
|
|
|
|
|
|
|
return VSG::storage->has_os_feature(p_feature);
|
|
|
|
}
|
|
|
|
|
2017-06-11 20:52:03 +02:00
|
|
|
void VisualServerRaster::set_debug_generate_wireframes(bool p_generate) {
|
|
|
|
|
|
|
|
VSG::storage->set_debug_generate_wireframes(p_generate);
|
|
|
|
}
|
|
|
|
|
2017-12-16 21:09:25 +01:00
|
|
|
void VisualServerRaster::call_set_use_vsync(bool p_enable) {
|
|
|
|
OS::get_singleton()->_set_use_vsync(p_enable);
|
|
|
|
}
|
|
|
|
|
2018-09-29 01:32:40 +02:00
|
|
|
bool VisualServerRaster::is_low_end() const {
|
|
|
|
return VSG::rasterizer->is_low_end();
|
|
|
|
}
|
2016-10-03 21:33:42 +02:00
|
|
|
VisualServerRaster::VisualServerRaster() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
VSG::canvas = memnew(VisualServerCanvas);
|
|
|
|
VSG::viewport = memnew(VisualServerViewport);
|
|
|
|
VSG::scene = memnew(VisualServerScene);
|
2016-10-03 21:33:42 +02:00
|
|
|
VSG::rasterizer = Rasterizer::create();
|
2017-03-05 16:44:50 +01:00
|
|
|
VSG::storage = VSG::rasterizer->get_storage();
|
|
|
|
VSG::canvas_render = VSG::rasterizer->get_canvas();
|
|
|
|
VSG::scene_render = VSG::rasterizer->get_scene();
|
2017-08-07 23:06:57 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
VisualServerRaster::~VisualServerRaster() {
|
|
|
|
|
|
|
|
memdelete(VSG::canvas);
|
|
|
|
memdelete(VSG::viewport);
|
|
|
|
memdelete(VSG::rasterizer);
|
2018-03-13 02:40:47 +01:00
|
|
|
memdelete(VSG::scene);
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|