2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* script_create_dialog.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef SCRIPT_CREATE_DIALOG_H
|
|
|
|
#define SCRIPT_CREATE_DIALOG_H
|
|
|
|
|
2021-10-11 09:30:59 +00:00
|
|
|
#include "core/object/script_language.h"
|
2019-07-04 15:30:44 +00:00
|
|
|
#include "scene/gui/check_box.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/option_button.h"
|
2017-05-03 18:41:02 +00:00
|
|
|
#include "scene/gui/panel_container.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-02-18 15:45:26 +00:00
|
|
|
class CreateDialog;
|
2022-02-12 01:46:22 +00:00
|
|
|
class EditorFileDialog;
|
2023-06-26 17:18:27 +00:00
|
|
|
class EditorValidationPanel;
|
2023-09-12 08:52:43 +00:00
|
|
|
class LineEdit;
|
2019-02-18 15:45:26 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class ScriptCreateDialog : public ConfirmationDialog {
|
2017-01-03 02:03:46 +00:00
|
|
|
GDCLASS(ScriptCreateDialog, ConfirmationDialog);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2023-06-26 17:18:27 +00:00
|
|
|
enum {
|
|
|
|
MSG_ID_SCRIPT,
|
|
|
|
MSG_ID_PATH,
|
|
|
|
MSG_ID_BUILT_IN,
|
|
|
|
MSG_ID_TEMPLATE,
|
|
|
|
};
|
|
|
|
|
|
|
|
EditorValidationPanel *validation_panel = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
LineEdit *parent_name = nullptr;
|
|
|
|
Button *parent_browse_button = nullptr;
|
|
|
|
Button *parent_search_button = nullptr;
|
|
|
|
OptionButton *language_menu = nullptr;
|
|
|
|
OptionButton *template_menu = nullptr;
|
|
|
|
LineEdit *file_path = nullptr;
|
2023-09-12 08:52:43 +00:00
|
|
|
LineEdit *built_in_name = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
Button *path_button = nullptr;
|
|
|
|
EditorFileDialog *file_browse = nullptr;
|
2023-09-12 08:52:43 +00:00
|
|
|
CheckBox *built_in = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
CheckBox *use_templates = nullptr;
|
|
|
|
VBoxContainer *path_vb = nullptr;
|
|
|
|
AcceptDialog *alert = nullptr;
|
|
|
|
CreateDialog *select_class = nullptr;
|
2023-09-12 08:52:43 +00:00
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool is_browsing_parent = false;
|
2023-06-26 17:18:27 +00:00
|
|
|
String path_error;
|
2021-10-11 09:30:59 +00:00
|
|
|
String template_inactive_message;
|
2022-02-15 14:56:58 +00:00
|
|
|
bool is_new_script_created = true;
|
|
|
|
bool is_path_valid = false;
|
|
|
|
bool supports_built_in = false;
|
|
|
|
bool can_inherit_from_file = false;
|
|
|
|
bool is_parent_name_valid = false;
|
|
|
|
bool is_class_name_valid = false;
|
|
|
|
bool is_built_in = false;
|
|
|
|
bool is_using_templates = true;
|
|
|
|
bool built_in_enabled = true;
|
|
|
|
bool load_enabled = true;
|
2019-08-12 11:41:24 +00:00
|
|
|
int default_language;
|
2022-02-15 14:56:58 +00:00
|
|
|
bool re_check_path = false;
|
2019-08-22 15:59:43 +00:00
|
|
|
|
2021-11-04 01:34:35 +00:00
|
|
|
Control *path_controls[2];
|
|
|
|
Control *name_controls[2];
|
|
|
|
|
2021-10-11 09:30:59 +00:00
|
|
|
Vector<ScriptLanguage::ScriptTemplate> template_list;
|
2022-04-04 13:06:57 +00:00
|
|
|
ScriptLanguage *language = nullptr;
|
2019-08-22 15:59:43 +00:00
|
|
|
|
2019-02-18 15:45:26 +00:00
|
|
|
String base_type;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-02-08 17:42:05 +00:00
|
|
|
void _path_hbox_sorted();
|
2018-09-22 22:29:24 +00:00
|
|
|
bool _can_be_built_in();
|
2014-02-10 01:10:30 +00:00
|
|
|
void _path_changed(const String &p_path = String());
|
2021-10-11 09:30:59 +00:00
|
|
|
void _language_changed(int l = 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _built_in_pressed();
|
2021-10-11 09:30:59 +00:00
|
|
|
void _use_template_pressed();
|
2019-06-11 21:05:24 +00:00
|
|
|
bool _validate_parent(const String &p_string);
|
2019-04-30 13:58:02 +00:00
|
|
|
String _validate_path(const String &p_path, bool p_file_must_exist);
|
2017-05-03 18:41:02 +00:00
|
|
|
void _parent_name_changed(const String &p_parent);
|
2017-06-13 20:03:08 +00:00
|
|
|
void _template_changed(int p_template = 0);
|
2018-01-10 02:10:55 +00:00
|
|
|
void _browse_path(bool browse_parent, bool p_save);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _file_selected(const String &p_file);
|
2019-02-18 15:45:26 +00:00
|
|
|
void _create();
|
|
|
|
void _browse_class_in_tree();
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual void ok_pressed() override;
|
2016-11-09 16:29:15 +00:00
|
|
|
void _create_new();
|
|
|
|
void _load_exist();
|
2021-10-11 09:30:59 +00:00
|
|
|
void _update_template_menu();
|
2017-05-03 18:41:02 +00:00
|
|
|
void _update_dialog();
|
2021-10-11 09:30:59 +00:00
|
|
|
ScriptLanguage::ScriptTemplate _get_current_template() const;
|
2022-09-29 09:53:28 +00:00
|
|
|
Vector<ScriptLanguage::ScriptTemplate> _get_user_templates(const ScriptLanguage *p_language, const StringName &p_object, const String &p_dir, const ScriptLanguage::TemplateLocation &p_origin) const;
|
|
|
|
ScriptLanguage::ScriptTemplate _parse_template(const ScriptLanguage *p_language, const String &p_path, const String &p_filename, const ScriptLanguage::TemplateLocation &p_origin, const String &p_inherits) const;
|
2021-10-11 09:30:59 +00:00
|
|
|
String _get_script_origin_label(const ScriptLanguage::TemplateLocation &p_origin) const;
|
2023-06-11 16:23:48 +00:00
|
|
|
String _adjust_file_path(const String &p_base_path) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
protected:
|
2017-05-03 18:41:02 +00:00
|
|
|
void _notification(int p_what);
|
2014-02-10 01:10:30 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2020-01-08 22:43:55 +00:00
|
|
|
void config(const String &p_base_name, const String &p_base_path, bool p_built_in_enabled = true, bool p_load_enabled = true);
|
2019-02-18 15:45:26 +00:00
|
|
|
void set_inheritance_base_type(const String &p_base);
|
2014-02-10 01:10:30 +00:00
|
|
|
ScriptCreateDialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCRIPT_CREATE_DIALOG_H
|