Skip to content

Commit

Permalink
Merge pull request #86169 from Repiteo/gdvirtual-call-refactoring
Browse files Browse the repository at this point in the history
Replace `GDVIRTUAL_CALL` with `GDVIRTUAL_REQUIRED_CALL` where applicable
  • Loading branch information
YuriSizov committed Dec 20, 2023
2 parents 02bc2a3 + 83ef789 commit f77da03
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 75 deletions.
4 changes: 1 addition & 3 deletions editor/editor_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ EditorInterface *EditorScript::get_editor_interface() const {
}

void EditorScript::run() {
if (!GDVIRTUAL_CALL(_run)) {
EditorNode::add_io_error(TTR("Couldn't run editor script, did you forget to override the '_run' method?"));
}
GDVIRTUAL_REQUIRED_CALL(_run);
}

void EditorScript::_bind_methods() {
Expand Down
92 changes: 23 additions & 69 deletions editor/editor_vcs_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@

#include "editor_node.h"

#define UNIMPLEMENTED() ERR_PRINT(vformat("Unimplemented virtual function in EditorVCSInterface based plugin: %s", __func__))

EditorVCSInterface *EditorVCSInterface::singleton = nullptr;

void EditorVCSInterface::popup_error(String p_msg) {
Expand All @@ -43,23 +41,17 @@ void EditorVCSInterface::popup_error(String p_msg) {

bool EditorVCSInterface::initialize(String p_project_path) {
bool result = false;
if (!GDVIRTUAL_CALL(_initialize, p_project_path, result)) {
UNIMPLEMENTED();
return false;
}
GDVIRTUAL_REQUIRED_CALL(_initialize, p_project_path, result);
return result;
}

void EditorVCSInterface::set_credentials(String p_username, String p_password, String p_ssh_public_key, String p_ssh_private_key, String p_ssh_passphrase) {
if (!GDVIRTUAL_CALL(_set_credentials, p_username, p_password, p_ssh_public_key, p_ssh_private_key, p_ssh_passphrase)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_set_credentials, p_username, p_password, p_ssh_public_key, p_ssh_private_key, p_ssh_passphrase);
}

List<String> EditorVCSInterface::get_remotes() {
TypedArray<String> result;
if (!GDVIRTUAL_CALL(_get_remotes, result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_remotes, result)) {
return {};
}

Expand All @@ -72,8 +64,7 @@ List<String> EditorVCSInterface::get_remotes() {

List<EditorVCSInterface::StatusFile> EditorVCSInterface::get_modified_files_data() {
TypedArray<Dictionary> result;
if (!GDVIRTUAL_CALL(_get_modified_files_data, result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_modified_files_data, result)) {
return {};
}

Expand All @@ -85,33 +76,24 @@ List<EditorVCSInterface::StatusFile> EditorVCSInterface::get_modified_files_data
}

void EditorVCSInterface::stage_file(String p_file_path) {
if (!GDVIRTUAL_CALL(_stage_file, p_file_path)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_stage_file, p_file_path);
}

void EditorVCSInterface::unstage_file(String p_file_path) {
if (!GDVIRTUAL_CALL(_unstage_file, p_file_path)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_unstage_file, p_file_path);
}

void EditorVCSInterface::discard_file(String p_file_path) {
if (!GDVIRTUAL_CALL(_discard_file, p_file_path)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_discard_file, p_file_path);
}

void EditorVCSInterface::commit(String p_msg) {
if (!GDVIRTUAL_CALL(_commit, p_msg)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_commit, p_msg);
}

List<EditorVCSInterface::DiffFile> EditorVCSInterface::get_diff(String p_identifier, TreeArea p_area) {
TypedArray<Dictionary> result;
if (!GDVIRTUAL_CALL(_get_diff, p_identifier, int(p_area), result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_diff, p_identifier, int(p_area), result)) {
return {};
}

Expand All @@ -124,8 +106,7 @@ List<EditorVCSInterface::DiffFile> EditorVCSInterface::get_diff(String p_identif

List<EditorVCSInterface::Commit> EditorVCSInterface::get_previous_commits(int p_max_commits) {
TypedArray<Dictionary> result;
if (!GDVIRTUAL_CALL(_get_previous_commits, p_max_commits, result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_previous_commits, p_max_commits, result)) {
return {};
}

Expand All @@ -138,8 +119,7 @@ List<EditorVCSInterface::Commit> EditorVCSInterface::get_previous_commits(int p_

List<String> EditorVCSInterface::get_branch_list() {
TypedArray<String> result;
if (!GDVIRTUAL_CALL(_get_branch_list, result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_branch_list, result)) {
return {};
}

Expand All @@ -151,68 +131,48 @@ List<String> EditorVCSInterface::get_branch_list() {
}

void EditorVCSInterface::create_branch(String p_branch_name) {
if (!GDVIRTUAL_CALL(_create_branch, p_branch_name)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_create_branch, p_branch_name);
}

void EditorVCSInterface::create_remote(String p_remote_name, String p_remote_url) {
if (!GDVIRTUAL_CALL(_create_remote, p_remote_name, p_remote_url)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_create_remote, p_remote_name, p_remote_url);
}

void EditorVCSInterface::remove_branch(String p_branch_name) {
if (!GDVIRTUAL_CALL(_remove_branch, p_branch_name)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_remove_branch, p_branch_name);
}

void EditorVCSInterface::remove_remote(String p_remote_name) {
if (!GDVIRTUAL_CALL(_remove_remote, p_remote_name)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_remove_remote, p_remote_name);
}

String EditorVCSInterface::get_current_branch_name() {
String result;
if (!GDVIRTUAL_CALL(_get_current_branch_name, result)) {
UNIMPLEMENTED();
return "";
}
GDVIRTUAL_REQUIRED_CALL(_get_current_branch_name, result);
return result;
}

bool EditorVCSInterface::checkout_branch(String p_branch_name) {
bool result = false;
if (!GDVIRTUAL_CALL(_checkout_branch, p_branch_name, result)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_checkout_branch, p_branch_name, result);
return result;
}

void EditorVCSInterface::pull(String p_remote) {
if (!GDVIRTUAL_CALL(_pull, p_remote)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_pull, p_remote);
}

void EditorVCSInterface::push(String p_remote, bool p_force) {
if (!GDVIRTUAL_CALL(_push, p_remote, p_force)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_push, p_remote, p_force);
}

void EditorVCSInterface::fetch(String p_remote) {
if (!GDVIRTUAL_CALL(_fetch, p_remote)) {
UNIMPLEMENTED();
}
GDVIRTUAL_REQUIRED_CALL(_fetch, p_remote);
}

List<EditorVCSInterface::DiffHunk> EditorVCSInterface::get_line_diff(String p_file_path, String p_text) {
TypedArray<Dictionary> result;
if (!GDVIRTUAL_CALL(_get_line_diff, p_file_path, p_text, result)) {
UNIMPLEMENTED();
if (!GDVIRTUAL_REQUIRED_CALL(_get_line_diff, p_file_path, p_text, result)) {
return {};
}

Expand All @@ -225,19 +185,13 @@ List<EditorVCSInterface::DiffHunk> EditorVCSInterface::get_line_diff(String p_fi

bool EditorVCSInterface::shut_down() {
bool result = false;
if (!GDVIRTUAL_CALL(_shut_down, result)) {
UNIMPLEMENTED();
return false;
}
GDVIRTUAL_REQUIRED_CALL(_shut_down, result);
return result;
}

String EditorVCSInterface::get_vcs_name() {
String result;
if (!GDVIRTUAL_CALL(_get_vcs_name, result)) {
UNIMPLEMENTED();
return {};
}
GDVIRTUAL_REQUIRED_CALL(_get_vcs_name, result);
return result;
}

Expand Down
4 changes: 1 addition & 3 deletions scene/resources/video_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ Ref<Texture2D> VideoStreamPlayback::get_texture() const {
}

void VideoStreamPlayback::update(double p_delta) {
if (!GDVIRTUAL_CALL(_update, p_delta)) {
ERR_FAIL_MSG("VideoStreamPlayback::update unimplemented");
}
GDVIRTUAL_REQUIRED_CALL(_update, p_delta);
}

void VideoStreamPlayback::set_mix_callback(AudioMixCallback p_callback, void *p_userdata) {
Expand Down

0 comments on commit f77da03

Please sign in to comment.