2019-01-01 12:46:36 +01:00
|
|
|
/*************************************************************************/
|
2020-03-27 08:44:44 +01:00
|
|
|
/* path_3d_editor_plugin.h */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* 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-07-06 16:49:27 +02:00
|
|
|
#ifndef PATH_EDITOR_PLUGIN_H
|
|
|
|
#define PATH_EDITOR_PLUGIN_H
|
|
|
|
|
2020-03-27 08:44:44 +01:00
|
|
|
#include "editor/node_3d_editor_gizmos.h"
|
2020-03-26 22:49:16 +01:00
|
|
|
#include "scene/3d/path_3d.h"
|
2017-05-24 23:47:34 +02:00
|
|
|
|
2020-04-06 12:40:52 +02:00
|
|
|
class Path3DGizmo : public EditorNode3DGizmo {
|
|
|
|
GDCLASS(Path3DGizmo, EditorNode3DGizmo);
|
2014-07-06 16:49:27 +02:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
Path3D *path;
|
2014-07-06 16:49:27 +02:00
|
|
|
mutable Vector3 original;
|
2018-05-01 12:13:29 +02:00
|
|
|
mutable float orig_in_length;
|
|
|
|
mutable float orig_out_length;
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_handle_name(int p_idx) const;
|
2018-08-30 14:24:24 +02:00
|
|
|
virtual Variant get_handle_value(int p_idx);
|
2020-03-26 22:49:16 +01:00
|
|
|
virtual void set_handle(int p_idx, Camera3D *p_camera, const Point2 &p_point);
|
2017-05-25 00:11:20 +02:00
|
|
|
virtual void commit_handle(int p_idx, const Variant &p_restore, bool p_cancel = false);
|
2014-07-06 16:49:27 +02:00
|
|
|
|
2018-07-25 00:08:49 +02:00
|
|
|
virtual void redraw();
|
2020-04-06 12:40:52 +02:00
|
|
|
Path3DGizmo(Path3D *p_path = nullptr);
|
2014-07-06 16:49:27 +02:00
|
|
|
};
|
|
|
|
|
2020-04-06 12:40:52 +02:00
|
|
|
class Path3DGizmoPlugin : public EditorNode3DGizmoPlugin {
|
|
|
|
GDCLASS(Path3DGizmoPlugin, EditorNode3DGizmoPlugin);
|
2018-07-25 00:08:49 +02:00
|
|
|
|
|
|
|
protected:
|
2020-03-26 22:49:16 +01:00
|
|
|
Ref<EditorNode3DGizmo> create_gizmo(Node3D *p_spatial);
|
2018-07-25 00:08:49 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
String get_name() const;
|
2019-03-12 00:30:50 +01:00
|
|
|
int get_priority() const;
|
2020-04-06 12:40:52 +02:00
|
|
|
Path3DGizmoPlugin();
|
2018-07-25 00:08:49 +02:00
|
|
|
};
|
|
|
|
|
2020-03-27 08:44:44 +01:00
|
|
|
class Path3DEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(Path3DEditorPlugin, EditorPlugin);
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
Separator *sep;
|
|
|
|
ToolButton *curve_create;
|
|
|
|
ToolButton *curve_edit;
|
|
|
|
ToolButton *curve_del;
|
|
|
|
ToolButton *curve_close;
|
2018-05-01 12:13:29 +02:00
|
|
|
MenuButton *handle_menu;
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
EditorNode *editor;
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
Path3D *path;
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
void _mode_changed(int p_idx);
|
2017-05-25 00:11:20 +02:00
|
|
|
void _close_curve();
|
2018-05-01 12:13:29 +02:00
|
|
|
void _handle_option_pressed(int p_option);
|
|
|
|
bool handle_clicked;
|
|
|
|
bool mirror_handle_angle;
|
|
|
|
bool mirror_handle_length;
|
|
|
|
|
|
|
|
enum HandleOption {
|
|
|
|
HANDLE_OPTION_ANGLE,
|
|
|
|
HANDLE_OPTION_LENGTH
|
|
|
|
};
|
2017-05-25 00:11:20 +02:00
|
|
|
|
2014-07-06 16:49:27 +02:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2020-03-26 22:49:16 +01:00
|
|
|
Path3D *get_edited_path() { return path; }
|
2014-07-06 16:49:27 +02:00
|
|
|
|
2020-03-27 08:44:44 +01:00
|
|
|
static Path3DEditorPlugin *singleton;
|
2020-03-26 22:49:16 +01:00
|
|
|
virtual bool forward_spatial_gui_input(Camera3D *p_camera, const Ref<InputEvent> &p_event);
|
2014-07-06 16:49:27 +02:00
|
|
|
|
2020-03-30 18:22:57 +02:00
|
|
|
virtual String get_name() const { return "Path3D"; }
|
2014-07-06 16:49:27 +02:00
|
|
|
bool has_main_screen() const { return false; }
|
2017-08-12 18:52:50 +02:00
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
2014-07-06 16:49:27 +02:00
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
2018-05-01 12:13:29 +02:00
|
|
|
bool mirror_angle_enabled() { return mirror_handle_angle; }
|
|
|
|
bool mirror_length_enabled() { return mirror_handle_length; }
|
|
|
|
bool is_handle_clicked() { return handle_clicked; }
|
|
|
|
void set_handle_clicked(bool clicked) { handle_clicked = clicked; }
|
|
|
|
|
2020-03-27 08:44:44 +01:00
|
|
|
Path3DEditorPlugin(EditorNode *p_node);
|
|
|
|
~Path3DEditorPlugin();
|
2014-07-06 16:49:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PATH_EDITOR_PLUGIN_H
|