You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
VCS: Port Godot 3.5's VCS features to GDExtension
This commit is contained in:
@@ -33,9 +33,11 @@
|
||||
|
||||
#include "editor/editor_plugin.h"
|
||||
#include "editor/editor_vcs_interface.h"
|
||||
#include "scene/gui/box_container.h"
|
||||
#include "scene/gui/container.h"
|
||||
#include "scene/gui/file_dialog.h"
|
||||
#include "scene/gui/menu_button.h"
|
||||
#include "scene/gui/rich_text_label.h"
|
||||
#include "scene/gui/split_container.h"
|
||||
#include "scene/gui/tab_container.h"
|
||||
#include "scene/gui/text_edit.h"
|
||||
#include "scene/gui/tree.h"
|
||||
|
||||
@@ -43,79 +45,148 @@ class VersionControlEditorPlugin : public EditorPlugin {
|
||||
GDCLASS(VersionControlEditorPlugin, EditorPlugin)
|
||||
|
||||
public:
|
||||
enum ChangeType {
|
||||
CHANGE_TYPE_NEW = 0,
|
||||
CHANGE_TYPE_MODIFIED = 1,
|
||||
CHANGE_TYPE_RENAMED = 2,
|
||||
CHANGE_TYPE_DELETED = 3,
|
||||
CHANGE_TYPE_TYPECHANGE = 4
|
||||
enum ButtonType {
|
||||
BUTTON_TYPE_OPEN = 0,
|
||||
BUTTON_TYPE_DISCARD = 1,
|
||||
};
|
||||
|
||||
enum DiffViewType {
|
||||
DIFF_VIEW_TYPE_SPLIT = 0,
|
||||
DIFF_VIEW_TYPE_UNIFIED = 1,
|
||||
};
|
||||
|
||||
enum ExtraOption {
|
||||
EXTRA_OPTION_FORCE_PUSH,
|
||||
EXTRA_OPTION_CREATE_BRANCH,
|
||||
EXTRA_OPTION_CREATE_REMOTE,
|
||||
};
|
||||
|
||||
private:
|
||||
static VersionControlEditorPlugin *singleton;
|
||||
|
||||
int staged_files_count;
|
||||
List<StringName> available_addons;
|
||||
List<StringName> available_plugins;
|
||||
|
||||
PopupMenu *version_control_actions = nullptr;
|
||||
ConfirmationDialog *metadata_dialog = nullptr;
|
||||
OptionButton *metadata_selection = nullptr;
|
||||
AcceptDialog *set_up_dialog = nullptr;
|
||||
VBoxContainer *set_up_vbc = nullptr;
|
||||
HBoxContainer *set_up_hbc = nullptr;
|
||||
Label *set_up_vcs_label = nullptr;
|
||||
OptionButton *set_up_choice = nullptr;
|
||||
PanelContainer *set_up_init_settings = nullptr;
|
||||
Button *set_up_init_button = nullptr;
|
||||
RichTextLabel *set_up_vcs_status = nullptr;
|
||||
Button *set_up_ok_button = nullptr;
|
||||
VBoxContainer *set_up_vbc = nullptr;
|
||||
VBoxContainer *set_up_settings_vbc = nullptr;
|
||||
LineEdit *set_up_username = nullptr;
|
||||
LineEdit *set_up_password = nullptr;
|
||||
LineEdit *set_up_ssh_public_key_path = nullptr;
|
||||
LineEdit *set_up_ssh_private_key_path = nullptr;
|
||||
LineEdit *set_up_ssh_passphrase = nullptr;
|
||||
FileDialog *set_up_ssh_public_key_file_dialog = nullptr;
|
||||
FileDialog *set_up_ssh_private_key_file_dialog = nullptr;
|
||||
Label *set_up_warning_text = nullptr;
|
||||
|
||||
HashMap<ChangeType, String> change_type_to_strings;
|
||||
HashMap<ChangeType, Color> change_type_to_color;
|
||||
OptionButton *commit_list_size_button = nullptr;
|
||||
|
||||
AcceptDialog *branch_create_confirm = nullptr;
|
||||
LineEdit *branch_create_name_input = nullptr;
|
||||
Button *branch_create_ok = nullptr;
|
||||
|
||||
AcceptDialog *remote_create_confirm = nullptr;
|
||||
LineEdit *remote_create_name_input = nullptr;
|
||||
LineEdit *remote_create_url_input = nullptr;
|
||||
Button *remote_create_ok = nullptr;
|
||||
|
||||
HashMap<EditorVCSInterface::ChangeType, String> change_type_to_strings;
|
||||
HashMap<EditorVCSInterface::ChangeType, Color> change_type_to_color;
|
||||
HashMap<EditorVCSInterface::ChangeType, Ref<Texture>> change_type_to_icon;
|
||||
|
||||
VBoxContainer *version_commit_dock = nullptr;
|
||||
VBoxContainer *commit_box_vbc = nullptr;
|
||||
HSplitContainer *stage_tools = nullptr;
|
||||
Tree *stage_files = nullptr;
|
||||
TreeItem *new_files = nullptr;
|
||||
TreeItem *modified_files = nullptr;
|
||||
TreeItem *renamed_files = nullptr;
|
||||
TreeItem *deleted_files = nullptr;
|
||||
TreeItem *typechange_files = nullptr;
|
||||
Label *staging_area_label = nullptr;
|
||||
HSplitContainer *stage_buttons = nullptr;
|
||||
Tree *staged_files = nullptr;
|
||||
Tree *unstaged_files = nullptr;
|
||||
Tree *commit_list = nullptr;
|
||||
|
||||
OptionButton *branch_select = nullptr;
|
||||
Button *branch_remove_button = nullptr;
|
||||
AcceptDialog *branch_remove_confirm = nullptr;
|
||||
|
||||
Button *fetch_button = nullptr;
|
||||
Button *pull_button = nullptr;
|
||||
Button *push_button = nullptr;
|
||||
OptionButton *remote_select = nullptr;
|
||||
Button *remote_remove_button = nullptr;
|
||||
AcceptDialog *remote_remove_confirm = nullptr;
|
||||
MenuButton *extra_options = nullptr;
|
||||
PopupMenu *extra_options_remove_branch_list = nullptr;
|
||||
PopupMenu *extra_options_remove_remote_list = nullptr;
|
||||
|
||||
String branch_to_remove;
|
||||
String remote_to_remove;
|
||||
|
||||
Button *stage_all_button = nullptr;
|
||||
Button *stage_selected_button = nullptr;
|
||||
Button *unstage_all_button = nullptr;
|
||||
Button *discard_all_button = nullptr;
|
||||
Button *refresh_button = nullptr;
|
||||
TextEdit *commit_message = nullptr;
|
||||
Button *commit_button = nullptr;
|
||||
Label *commit_status = nullptr;
|
||||
|
||||
PanelContainer *version_control_dock = nullptr;
|
||||
VBoxContainer *version_control_dock = nullptr;
|
||||
Button *version_control_dock_button = nullptr;
|
||||
VBoxContainer *diff_vbc = nullptr;
|
||||
HBoxContainer *diff_hbc = nullptr;
|
||||
Button *diff_refresh_button = nullptr;
|
||||
Label *diff_file_name = nullptr;
|
||||
Label *diff_heading = nullptr;
|
||||
Label *diff_title = nullptr;
|
||||
RichTextLabel *diff = nullptr;
|
||||
OptionButton *diff_view_type_select = nullptr;
|
||||
bool show_commit_diff_header = false;
|
||||
List<EditorVCSInterface::DiffFile> diff_content;
|
||||
|
||||
void _populate_available_vcs_names();
|
||||
void _create_vcs_metadata_files();
|
||||
void _selected_a_vcs(int p_id);
|
||||
void _notification(int p_what);
|
||||
void _initialize_vcs();
|
||||
void _send_commit_msg();
|
||||
void _set_credentials();
|
||||
void _ssh_public_key_selected(String p_path);
|
||||
void _ssh_private_key_selected(String p_path);
|
||||
void _populate_available_vcs_names();
|
||||
void _update_remotes_list();
|
||||
void _update_set_up_warning(String p_new_text);
|
||||
void _update_opened_tabs();
|
||||
void _update_extra_options();
|
||||
|
||||
bool _load_plugin(String p_path);
|
||||
void _set_up();
|
||||
|
||||
void _pull();
|
||||
void _push();
|
||||
void _force_push();
|
||||
void _fetch();
|
||||
void _commit();
|
||||
void _discard_all();
|
||||
void _refresh_stage_area();
|
||||
void _stage_selected();
|
||||
void _stage_all();
|
||||
void _view_file_diff();
|
||||
void _display_file_diff(String p_file_path);
|
||||
void _refresh_file_diff();
|
||||
void _clear_file_diff();
|
||||
void _update_stage_status();
|
||||
void _update_commit_status();
|
||||
void _refresh_branch_list();
|
||||
void _refresh_commit_list(int p_index);
|
||||
void _refresh_remote_list();
|
||||
void _display_diff(int p_idx);
|
||||
void _move_all(Object *p_tree);
|
||||
void _load_diff(Object *p_tree);
|
||||
void _clear_diff();
|
||||
int _get_item_count(Tree *p_tree);
|
||||
void _item_activated(Object *p_tree);
|
||||
void _create_branch();
|
||||
void _create_remote();
|
||||
void _update_branch_create_button(String p_new_text);
|
||||
void _update_remote_create_button(String p_new_text);
|
||||
void _branch_item_selected(int p_index);
|
||||
void _remote_selected(int p_index);
|
||||
void _remove_branch();
|
||||
void _remove_remote();
|
||||
void _popup_branch_remove_confirm(int p_index);
|
||||
void _popup_remote_remove_confirm(int p_index);
|
||||
void _move_item(Tree *p_tree, TreeItem *p_itme);
|
||||
void _display_diff_split_view(List<EditorVCSInterface::DiffLine> &p_diff_content);
|
||||
void _display_diff_unified_view(List<EditorVCSInterface::DiffLine> &p_diff_content);
|
||||
void _discard_file(String p_file_path, EditorVCSInterface::ChangeType p_change);
|
||||
void _cell_button_pressed(Object *p_item, int p_column, int p_id, int p_mouse_button_index);
|
||||
void _add_new_item(Tree *p_tree, String p_file_path, EditorVCSInterface::ChangeType p_change);
|
||||
void _update_commit_button();
|
||||
void _commit_message_gui_input(const Ref<InputEvent> &p_event);
|
||||
void _extra_option_selected(int p_index);
|
||||
bool _is_staging_area_empty();
|
||||
String _get_date_string_from(int64_t p_unix_timestamp, int64_t p_offset_minutes) const;
|
||||
void _create_vcs_metadata_files();
|
||||
|
||||
friend class EditorVCSInterface;
|
||||
|
||||
@@ -127,25 +198,15 @@ public:
|
||||
|
||||
void popup_vcs_metadata_dialog();
|
||||
void popup_vcs_set_up_dialog(const Control *p_gui_base);
|
||||
void set_version_control_tool_button(Button *p_button) { version_control_dock_button = p_button; }
|
||||
|
||||
PopupMenu *get_version_control_actions_panel() const { return version_control_actions; }
|
||||
VBoxContainer *get_version_commit_dock() const { return version_commit_dock; }
|
||||
PanelContainer *get_version_control_dock() const { return version_control_dock; }
|
||||
|
||||
List<StringName> get_available_vcs_names() const { return available_addons; }
|
||||
bool is_vcs_initialized() const;
|
||||
const String get_vcs_name() const;
|
||||
|
||||
void register_editor();
|
||||
void fetch_available_vcs_addon_names();
|
||||
void clear_stage_area();
|
||||
void fetch_available_vcs_plugin_names();
|
||||
void shut_down();
|
||||
|
||||
VersionControlEditorPlugin();
|
||||
~VersionControlEditorPlugin();
|
||||
};
|
||||
|
||||
VARIANT_ENUM_CAST(VersionControlEditorPlugin::ChangeType);
|
||||
|
||||
#endif // VERSION_CONTROL_EDITOR_PLUGIN_H
|
||||
#endif // !VERSION_CONTROL_EDITOR_PLUGIN_H
|
||||
|
||||
Reference in New Issue
Block a user