You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Renaming of servers for coherency.
VisualServer -> RenderingServer PhysicsServer -> PhysicsServer3D Physics2DServer -> PhysicsServer2D NavigationServer -> NavigationServer3D Navigation2DServer -> NavigationServer2D Also renamed corresponding files.
This commit is contained in:
@@ -249,7 +249,7 @@ void Window::_make_window() {
|
||||
}
|
||||
}
|
||||
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_WHEN_VISIBLE);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_WHEN_VISIBLE);
|
||||
}
|
||||
void Window::_update_from_window() {
|
||||
|
||||
@@ -279,7 +279,7 @@ void Window::_clear_window() {
|
||||
window_id = DisplayServer::INVALID_WINDOW_ID;
|
||||
|
||||
_update_viewport_size();
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_DISABLED);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_DISABLED);
|
||||
}
|
||||
|
||||
void Window::_rect_changed_callback(const Rect2i &p_callback) {
|
||||
@@ -387,11 +387,11 @@ void Window::set_visible(bool p_visible) {
|
||||
if (visible) {
|
||||
embedder = embedder_vp;
|
||||
embedder->_sub_window_register(this);
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE);
|
||||
} else {
|
||||
embedder->_sub_window_remove(this);
|
||||
embedder = nullptr;
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_DISABLED);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_DISABLED);
|
||||
}
|
||||
_update_window_size();
|
||||
}
|
||||
@@ -402,7 +402,7 @@ void Window::set_visible(bool p_visible) {
|
||||
notification(NOTIFICATION_VISIBILITY_CHANGED);
|
||||
emit_signal(SceneStringNames::get_singleton()->visibility_changed);
|
||||
|
||||
VS::get_singleton()->viewport_set_active(get_viewport_rid(), visible);
|
||||
RS::get_singleton()->viewport_set_active(get_viewport_rid(), visible);
|
||||
}
|
||||
|
||||
void Window::_clear_transient() {
|
||||
@@ -606,14 +606,14 @@ void Window::_update_viewport_size() {
|
||||
//black bars and margin
|
||||
if (content_scale_aspect != CONTENT_SCALE_ASPECT_EXPAND && screen_size.x < video_mode.x) {
|
||||
margin.x = Math::round((video_mode.x - screen_size.x) / 2.0);
|
||||
//VisualServer::get_singleton()->black_bars_set_margins(margin.x, 0, margin.x, 0);
|
||||
//RenderingServer::get_singleton()->black_bars_set_margins(margin.x, 0, margin.x, 0);
|
||||
offset.x = Math::round(margin.x * viewport_size.y / screen_size.y);
|
||||
} else if (content_scale_aspect != CONTENT_SCALE_ASPECT_EXPAND && screen_size.y < video_mode.y) {
|
||||
margin.y = Math::round((video_mode.y - screen_size.y) / 2.0);
|
||||
//VisualServer::get_singleton()->black_bars_set_margins(0, margin.y, 0, margin.y);
|
||||
//RenderingServer::get_singleton()->black_bars_set_margins(0, margin.y, 0, margin.y);
|
||||
offset.y = Math::round(margin.y * viewport_size.x / screen_size.x);
|
||||
} else {
|
||||
//VisualServer::get_singleton()->black_bars_set_margins(0, 0, 0, 0);
|
||||
//RenderingServer::get_singleton()->black_bars_set_margins(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
switch (content_scale_mode) {
|
||||
@@ -646,9 +646,9 @@ void Window::_update_viewport_size() {
|
||||
_set_size(final_size, final_size_override, attach_to_screen_rect, stretch_transform, allocate);
|
||||
|
||||
if (window_id != DisplayServer::INVALID_WINDOW_ID) {
|
||||
VisualServer::get_singleton()->viewport_attach_to_screen(get_viewport_rid(), attach_to_screen_rect, window_id);
|
||||
RenderingServer::get_singleton()->viewport_attach_to_screen(get_viewport_rid(), attach_to_screen_rect, window_id);
|
||||
} else {
|
||||
VisualServer::get_singleton()->viewport_attach_to_screen(get_viewport_rid(), Rect2i(), DisplayServer::INVALID_WINDOW_ID);
|
||||
RenderingServer::get_singleton()->viewport_attach_to_screen(get_viewport_rid(), Rect2i(), DisplayServer::INVALID_WINDOW_ID);
|
||||
}
|
||||
|
||||
if (window_id == DisplayServer::MAIN_WINDOW_ID) {
|
||||
@@ -718,7 +718,7 @@ void Window::_notification(int p_what) {
|
||||
//create as embedded
|
||||
if (embedder) {
|
||||
embedder->_sub_window_register(this);
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE);
|
||||
_update_window_size();
|
||||
}
|
||||
|
||||
@@ -736,7 +736,7 @@ void Window::_notification(int p_what) {
|
||||
}
|
||||
_update_viewport_size(); //then feed back to the viewport
|
||||
_update_window_callbacks();
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_WHEN_VISIBLE);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_WHEN_VISIBLE);
|
||||
} else {
|
||||
//create
|
||||
if (visible) {
|
||||
@@ -752,7 +752,7 @@ void Window::_notification(int p_what) {
|
||||
if (visible) {
|
||||
notification(NOTIFICATION_VISIBILITY_CHANGED);
|
||||
emit_signal(SceneStringNames::get_singleton()->visibility_changed);
|
||||
VS::get_singleton()->viewport_set_active(get_viewport_rid(), true);
|
||||
RS::get_singleton()->viewport_set_active(get_viewport_rid(), true);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -773,7 +773,7 @@ void Window::_notification(int p_what) {
|
||||
|
||||
if (window_id == DisplayServer::MAIN_WINDOW_ID) {
|
||||
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_DISABLED);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_DISABLED);
|
||||
_update_window_callbacks();
|
||||
} else {
|
||||
_clear_window();
|
||||
@@ -783,12 +783,12 @@ void Window::_notification(int p_what) {
|
||||
if (embedder) {
|
||||
embedder->_sub_window_remove(this);
|
||||
embedder = nullptr;
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_DISABLED);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_DISABLED);
|
||||
}
|
||||
_update_viewport_size(); //called by clear and make, which does not happen here
|
||||
}
|
||||
|
||||
VS::get_singleton()->viewport_set_active(get_viewport_rid(), false);
|
||||
RS::get_singleton()->viewport_set_active(get_viewport_rid(), false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1400,7 +1400,7 @@ Window::Window() {
|
||||
}
|
||||
content_scale_mode = CONTENT_SCALE_MODE_DISABLED;
|
||||
content_scale_aspect = CONTENT_SCALE_ASPECT_IGNORE;
|
||||
VS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), VS::VIEWPORT_UPDATE_DISABLED);
|
||||
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_DISABLED);
|
||||
}
|
||||
Window::~Window() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user