2020-02-27 14:27:52 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2020 Péter Magyar
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "voxel_world_editor.h"
|
|
|
|
|
2020-04-09 12:34:39 +02:00
|
|
|
#include "core/version.h"
|
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
#include "editor/editor_scale.h"
|
|
|
|
#include "editor/editor_settings.h"
|
2020-04-09 12:34:39 +02:00
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
#include "voxel_world.h"
|
|
|
|
|
|
|
|
#include "core/math/geometry.h"
|
|
|
|
#include "core/os/keyboard.h"
|
|
|
|
|
2020-04-05 21:02:51 +02:00
|
|
|
#include "voxel_chunk.h"
|
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
#include "../library/voxel_surface.h"
|
|
|
|
#include "../library/voxelman_library.h"
|
|
|
|
|
2020-04-09 12:34:39 +02:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#if VERSION_MAJOR < 4
|
|
|
|
|
|
|
|
#include "core/os/input.h"
|
|
|
|
#include "editor/plugins/spatial_editor_plugin.h"
|
|
|
|
#include "scene/3d/camera.h"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include "core/input/input_event.h"
|
|
|
|
#include "editor/plugins/node_3d_editor_plugin.h"
|
|
|
|
#include "scene/3d/camera_3d.h"
|
|
|
|
|
|
|
|
#define PhysicsDirectSpaceState PhysicsDirectSpaceState3D
|
|
|
|
#define SpatialEditor Node3DEditor
|
|
|
|
#define SpatialEditorPlugin Node3DEditorPlugin
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
bool VoxelWorldEditor::forward_spatial_input_event(Camera *p_camera, const Ref<InputEvent> &p_event) {
|
2020-04-06 00:51:25 +02:00
|
|
|
if (!_world || !_world->get_editable()) {
|
2020-04-05 21:02:51 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<InputEventMouseButton> mb = p_event;
|
|
|
|
|
|
|
|
if (mb.is_valid()) {
|
|
|
|
|
|
|
|
if (mb->is_pressed()) {
|
|
|
|
Ref<VoxelmanLibrary> lib = _world->get_library();
|
|
|
|
|
|
|
|
if (!lib.is_valid())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (mb->get_button_index() == BUTTON_LEFT) {
|
2020-04-10 16:28:33 +02:00
|
|
|
return do_input_action(p_camera, Point2(mb->get_position().x, mb->get_position().y), true);
|
2020-04-05 21:02:51 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//return do_input_action(p_camera, Point2(mb->get_position().x, mb->get_position().y), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-10 16:28:33 +02:00
|
|
|
bool VoxelWorldEditor::do_input_action(Camera *p_camera, const Point2 &p_point, bool p_click) {
|
2020-04-05 21:02:51 +02:00
|
|
|
|
2020-04-18 02:15:01 +02:00
|
|
|
if (!spatial_editor || !_world || !_world->is_inside_world())
|
2020-04-05 21:02:51 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
Camera *camera = p_camera;
|
|
|
|
Vector3 from = camera->project_ray_origin(p_point);
|
|
|
|
Vector3 to = from + camera->project_ray_normal(p_point) * 10000;
|
|
|
|
Transform local_xform = _world->get_global_transform().affine_inverse();
|
|
|
|
|
|
|
|
from = local_xform.xform(from);
|
|
|
|
to = local_xform.xform(to);
|
|
|
|
|
|
|
|
PhysicsDirectSpaceState *ss = _world->get_world()->get_direct_space_state();
|
|
|
|
PhysicsDirectSpaceState::RayResult res;
|
|
|
|
|
|
|
|
if (ss->intersect_ray(from, to, res)) {
|
2020-04-10 16:28:33 +02:00
|
|
|
Vector3 pos;
|
|
|
|
int selected_voxel = 0;
|
2020-04-17 02:09:24 +02:00
|
|
|
int channel = 0;
|
|
|
|
|
2020-04-19 23:35:47 +02:00
|
|
|
channel = _channel_type;
|
2020-04-17 02:09:24 +02:00
|
|
|
|
|
|
|
if (channel == -1)
|
|
|
|
return false;
|
2020-04-10 16:28:33 +02:00
|
|
|
|
|
|
|
if (_tool_mode == TOOL_MODE_ADD) {
|
2020-04-16 14:44:22 +02:00
|
|
|
pos = (res.position + (Vector3(0.1, 0.1, 0.1) * res.normal));
|
2020-04-17 00:37:22 +02:00
|
|
|
selected_voxel = _selected_type + 1;
|
2020-04-10 16:28:33 +02:00
|
|
|
} else if (_tool_mode == TOOL_MODE_REMOVE) {
|
2020-04-16 14:44:22 +02:00
|
|
|
pos = (res.position + (Vector3(0.1, 0.1, 0.1) * -res.normal));
|
2020-04-10 16:28:33 +02:00
|
|
|
selected_voxel = 0;
|
|
|
|
}
|
2020-04-05 21:02:51 +02:00
|
|
|
|
2020-04-17 02:09:24 +02:00
|
|
|
_world->set_voxel_at_world_position(pos, selected_voxel, channel);
|
2020-04-05 21:02:51 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelWorldEditor::edit(VoxelWorld *p_world) {
|
2020-04-05 21:02:51 +02:00
|
|
|
_world = p_world;
|
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
if (!_world)
|
|
|
|
return;
|
|
|
|
|
2020-04-17 02:09:24 +02:00
|
|
|
_channel_type = _world->get_channel_index_info(VoxelWorld::CHANNEL_TYPE_INFO_TYPE);
|
|
|
|
|
2020-04-05 21:02:51 +02:00
|
|
|
spatial_editor = Object::cast_to<SpatialEditorPlugin>(_editor->get_editor_plugin_screen());
|
2020-04-17 00:37:22 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < _surfaces_vbox_container->get_child_count(); ++i) {
|
|
|
|
Node *child = _surfaces_vbox_container->get_child(i);
|
|
|
|
|
|
|
|
if (!child->is_queued_for_deletion()) {
|
|
|
|
child->queue_delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<VoxelmanLibrary> library = _world->get_library();
|
|
|
|
|
|
|
|
if (!library.is_valid())
|
|
|
|
return;
|
|
|
|
|
2020-04-17 19:21:46 +02:00
|
|
|
if (!library->get_initialized())
|
|
|
|
library->refresh_rects();
|
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
bool f = false;
|
|
|
|
for (int i = 0; i < library->get_num_surfaces(); ++i) {
|
|
|
|
Ref<VoxelSurface> surface = library->get_voxel_surface(i);
|
|
|
|
|
|
|
|
if (!surface.is_valid())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
String text = String::num(i) + " - " + surface->get_name();
|
|
|
|
|
|
|
|
Button *button = memnew(Button);
|
|
|
|
button->set_text(text);
|
2020-04-17 02:39:23 +02:00
|
|
|
button->set_text_align(Button::ALIGN_LEFT);
|
2020-04-17 00:37:22 +02:00
|
|
|
button->set_meta("index", i);
|
|
|
|
button->set_toggle_mode(true);
|
|
|
|
button->set_button_group(_surfaces_button_group);
|
2020-04-17 02:39:23 +02:00
|
|
|
button->set_h_size_flags(SIZE_EXPAND_FILL);
|
2020-04-17 00:37:22 +02:00
|
|
|
button->connect("button_up", this, "_on_surface_button_pressed");
|
|
|
|
_surfaces_vbox_container->add_child(button);
|
|
|
|
|
|
|
|
if (!f) {
|
|
|
|
button->set_pressed(true);
|
|
|
|
f = true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VoxelWorldEditor::VoxelWorldEditor() {
|
2020-04-05 21:02:51 +02:00
|
|
|
_world = NULL;
|
2020-04-17 00:37:22 +02:00
|
|
|
_selected_type = 0;
|
2020-04-17 02:09:24 +02:00
|
|
|
_channel_type = -1;
|
2020-04-05 21:02:51 +02:00
|
|
|
_editor = NULL;
|
2020-04-10 16:28:33 +02:00
|
|
|
_tool_mode = TOOL_MODE_ADD;
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
VoxelWorldEditor::VoxelWorldEditor(EditorNode *p_editor) {
|
2020-04-05 21:02:51 +02:00
|
|
|
_world = NULL;
|
2020-04-17 00:37:22 +02:00
|
|
|
_selected_type = 0;
|
2020-04-17 02:09:24 +02:00
|
|
|
_channel_type = -1;
|
2020-04-05 21:02:51 +02:00
|
|
|
_editor = p_editor;
|
2020-04-10 16:28:33 +02:00
|
|
|
_tool_mode = TOOL_MODE_ADD;
|
2020-04-05 21:02:51 +02:00
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
spatial_editor_hb = memnew(HBoxContainer);
|
|
|
|
spatial_editor_hb->set_h_size_flags(SIZE_EXPAND_FILL);
|
2020-04-17 01:52:16 +02:00
|
|
|
spatial_editor_hb->set_alignment(BoxContainer::ALIGN_BEGIN);
|
2020-02-27 14:27:52 +01:00
|
|
|
SpatialEditor::get_singleton()->add_control_to_menu_panel(spatial_editor_hb);
|
2020-04-17 00:37:22 +02:00
|
|
|
|
2020-04-17 01:52:16 +02:00
|
|
|
_tool_button_group.instance();
|
|
|
|
|
|
|
|
ToolButton *add_button = memnew(ToolButton);
|
|
|
|
add_button->set_text("Add");
|
|
|
|
add_button->set_toggle_mode(true);
|
|
|
|
add_button->set_pressed(true);
|
|
|
|
add_button->set_button_group(_tool_button_group);
|
|
|
|
add_button->set_meta("tool_mode", TOOL_MODE_ADD);
|
|
|
|
add_button->connect("button_up", this, "_on_tool_button_pressed");
|
|
|
|
add_button->set_shortcut(ED_SHORTCUT("voxelman_world_editor/add_mode", "Add Mode", KEY_A));
|
|
|
|
spatial_editor_hb->add_child(add_button);
|
|
|
|
|
|
|
|
ToolButton *remove_button = memnew(ToolButton);
|
|
|
|
remove_button->set_text("Remove");
|
|
|
|
remove_button->set_toggle_mode(true);
|
|
|
|
remove_button->set_button_group(_tool_button_group);
|
|
|
|
remove_button->set_meta("tool_mode", TOOL_MODE_REMOVE);
|
|
|
|
remove_button->connect("button_up", this, "_on_tool_button_pressed");
|
|
|
|
remove_button->set_shortcut(ED_SHORTCUT("voxelman_world_editor/remove_mode", "Remove Mode", KEY_S));
|
|
|
|
spatial_editor_hb->add_child(remove_button);
|
|
|
|
|
2020-04-17 18:36:14 +02:00
|
|
|
ToolButton *insert_buton = memnew(ToolButton);
|
|
|
|
insert_buton->set_text("Insert");
|
|
|
|
insert_buton->connect("button_up", this, "_on_insert_block_at_camera_button_pressed");
|
|
|
|
insert_buton->set_shortcut(ED_SHORTCUT("voxelman_world_editor/instert_block_at_camera", "Insert at camera", KEY_B));
|
|
|
|
spatial_editor_hb->add_child(insert_buton);
|
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
set_custom_minimum_size(Size2(200 * EDSCALE, 0));
|
|
|
|
|
2020-04-17 02:39:23 +02:00
|
|
|
ScrollContainer *scs = memnew(ScrollContainer);
|
|
|
|
scs->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
scs->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
scs->set_name("Surfaces");
|
2020-04-19 23:35:47 +02:00
|
|
|
add_child(scs);
|
2020-04-17 02:39:23 +02:00
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
_surfaces_vbox_container = memnew(VBoxContainer);
|
2020-04-17 02:39:23 +02:00
|
|
|
scs->add_child(_surfaces_vbox_container);
|
2020-04-17 00:37:22 +02:00
|
|
|
_surfaces_vbox_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
2020-04-17 02:39:23 +02:00
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
_surfaces_button_group.instance();
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
VoxelWorldEditor::~VoxelWorldEditor() {
|
2020-04-10 15:50:53 +02:00
|
|
|
_world = NULL;
|
2020-04-17 00:37:22 +02:00
|
|
|
|
|
|
|
_surfaces_button_group.unref();
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelWorldEditor::_node_removed(Node *p_node) {
|
|
|
|
|
|
|
|
if (p_node == _world)
|
|
|
|
_world = NULL;
|
|
|
|
}
|
|
|
|
|
2020-04-17 00:37:22 +02:00
|
|
|
void VoxelWorldEditor::_on_surface_button_pressed() {
|
|
|
|
|
|
|
|
BaseButton *button = _surfaces_button_group->get_pressed_button();
|
|
|
|
|
|
|
|
if (button) {
|
|
|
|
_selected_type = button->get_meta("index");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 01:52:16 +02:00
|
|
|
void VoxelWorldEditor::_on_tool_button_pressed() {
|
|
|
|
BaseButton *button = _tool_button_group->get_pressed_button();
|
|
|
|
|
|
|
|
if (button) {
|
|
|
|
_tool_mode = static_cast<VoxelWorldEditorToolMode>(static_cast<int>(button->get_meta("tool_mode")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 18:36:14 +02:00
|
|
|
void VoxelWorldEditor::_on_insert_block_at_camera_button_pressed() {
|
|
|
|
int selected_voxel = 0;
|
|
|
|
int channel = 0;
|
|
|
|
|
2020-04-19 23:35:47 +02:00
|
|
|
channel = _channel_type;
|
2020-04-17 18:36:14 +02:00
|
|
|
|
|
|
|
if (channel == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SpatialEditorViewport *vp = SpatialEditor::get_singleton()->get_editor_viewport(0);
|
|
|
|
|
|
|
|
if (!vp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Camera *cam = vp->get_camera();
|
|
|
|
|
|
|
|
if (!cam)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Vector3 pos = cam->get_transform().origin;
|
|
|
|
selected_voxel = _selected_type + 1;
|
|
|
|
|
|
|
|
_world->set_voxel_at_world_position(pos, selected_voxel, channel);
|
|
|
|
}
|
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
void VoxelWorldEditor::_bind_methods() {
|
|
|
|
ClassDB::bind_method("_node_removed", &VoxelWorldEditor::_node_removed);
|
2020-04-17 00:37:22 +02:00
|
|
|
ClassDB::bind_method("_on_surface_button_pressed", &VoxelWorldEditor::_on_surface_button_pressed);
|
2020-04-17 01:52:16 +02:00
|
|
|
ClassDB::bind_method("_on_tool_button_pressed", &VoxelWorldEditor::_on_tool_button_pressed);
|
2020-04-17 18:36:14 +02:00
|
|
|
ClassDB::bind_method("_on_insert_block_at_camera_button_pressed", &VoxelWorldEditor::_on_insert_block_at_camera_button_pressed);
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelWorldEditorPlugin::_notification(int p_what) {
|
|
|
|
|
|
|
|
if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
|
|
|
|
|
|
|
|
switch ((int)EditorSettings::get_singleton()->get("editors/voxelman/editor_side")) {
|
|
|
|
case 0: { // Left.
|
|
|
|
SpatialEditor::get_singleton()->get_palette_split()->move_child(voxel_world_editor, 0);
|
|
|
|
} break;
|
|
|
|
case 1: { // Right.
|
|
|
|
SpatialEditor::get_singleton()->get_palette_split()->move_child(voxel_world_editor, 1);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelWorldEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
|
|
|
voxel_world_editor->edit(Object::cast_to<VoxelWorld>(p_object));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VoxelWorldEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2020-03-31 13:25:31 +02:00
|
|
|
if (!p_object->is_class("VoxelWorld"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
VoxelWorld *w = Object::cast_to<VoxelWorld>(p_object);
|
|
|
|
|
|
|
|
return w->get_editable();
|
2020-02-27 14:27:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelWorldEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
|
|
|
voxel_world_editor->show();
|
|
|
|
voxel_world_editor->spatial_editor_hb->show();
|
|
|
|
voxel_world_editor->set_process(true);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
voxel_world_editor->spatial_editor_hb->hide();
|
|
|
|
voxel_world_editor->hide();
|
|
|
|
voxel_world_editor->edit(NULL);
|
|
|
|
voxel_world_editor->set_process(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VoxelWorldEditorPlugin::VoxelWorldEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
|
|
|
editor = p_node;
|
|
|
|
|
|
|
|
EDITOR_DEF("editors/voxelman/editor_side", 1);
|
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "editors/voxelman/editor_side", PROPERTY_HINT_ENUM, "Left,Right"));
|
|
|
|
|
|
|
|
voxel_world_editor = memnew(VoxelWorldEditor(editor));
|
|
|
|
switch ((int)EditorSettings::get_singleton()->get("editors/voxelman/editor_side")) {
|
|
|
|
case 0: { // Left.
|
|
|
|
add_control_to_container(CONTAINER_SPATIAL_EDITOR_SIDE_LEFT, voxel_world_editor);
|
|
|
|
} break;
|
|
|
|
case 1: { // Right.
|
|
|
|
add_control_to_container(CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT, voxel_world_editor);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
voxel_world_editor->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
VoxelWorldEditorPlugin::~VoxelWorldEditorPlugin() {
|
|
|
|
}
|