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-10 15:50:53 +02:00
|
|
|
if (!spatial_editor || !_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;
|
|
|
|
|
|
|
|
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-16 14:44:22 +02:00
|
|
|
_world->set_voxel_at_world_position(pos, selected_voxel, 0);
|
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-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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < _liquid_surfaces_vbox_container->get_child_count(); ++i) {
|
|
|
|
Node *child = _liquid_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;
|
|
|
|
|
|
|
|
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_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
button->set_text(text);
|
|
|
|
button->set_meta("index", i);
|
|
|
|
button->set_toggle_mode(true);
|
|
|
|
button->set_button_group(_surfaces_button_group);
|
|
|
|
button->connect("button_up", this, "_on_surface_button_pressed");
|
|
|
|
_surfaces_vbox_container->add_child(button);
|
|
|
|
|
|
|
|
if (!f) {
|
|
|
|
button->set_pressed(true);
|
|
|
|
f = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f = false;
|
|
|
|
for (int i = 0; i < library->get_num_liquid_surfaces(); ++i) {
|
|
|
|
Ref<VoxelSurface> surface = library->get_liquid_surface(i);
|
|
|
|
|
|
|
|
if (!surface.is_valid())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
String text = String::num(i) + " - " + surface->get_name();
|
|
|
|
|
|
|
|
Button *button = memnew(Button);
|
|
|
|
button->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
button->set_text(text);
|
|
|
|
button->set_meta("index", i);
|
|
|
|
button->set_toggle_mode(true);
|
|
|
|
button->set_button_group(_liquid_surfaces_button_group);
|
|
|
|
button->connect("button_up", this, "_on_surface_button_pressed");
|
|
|
|
_liquid_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;
|
|
|
|
_selected_liquid_type = 0;
|
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;
|
|
|
|
_selected_liquid_type = 0;
|
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);
|
|
|
|
spatial_editor_hb->set_alignment(BoxContainer::ALIGN_END);
|
|
|
|
SpatialEditor::get_singleton()->add_control_to_menu_panel(spatial_editor_hb);
|
2020-04-17 00:37:22 +02:00
|
|
|
|
|
|
|
set_custom_minimum_size(Size2(200 * EDSCALE, 0));
|
|
|
|
|
|
|
|
TabContainer *tab_container = memnew(TabContainer);
|
|
|
|
tab_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
tab_container->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
tab_container->set_name("Surfaces");
|
|
|
|
add_child(tab_container);
|
|
|
|
|
|
|
|
_surfaces_vbox_container = memnew(VBoxContainer);
|
|
|
|
_surfaces_vbox_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
_surfaces_vbox_container->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
_surfaces_vbox_container->set_name("Surfaces");
|
|
|
|
tab_container->add_child(_surfaces_vbox_container);
|
|
|
|
|
|
|
|
_liquid_surfaces_vbox_container = memnew(VBoxContainer);
|
|
|
|
_liquid_surfaces_vbox_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
_liquid_surfaces_vbox_container->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
_liquid_surfaces_vbox_container->set_name("Liquids");
|
|
|
|
tab_container->add_child(_liquid_surfaces_vbox_container);
|
|
|
|
|
|
|
|
_surfaces_button_group.instance();
|
|
|
|
_liquid_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();
|
|
|
|
_liquid_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");
|
|
|
|
}
|
|
|
|
|
|
|
|
button = _liquid_surfaces_button_group->get_pressed_button();
|
|
|
|
|
|
|
|
if (button) {
|
|
|
|
_selected_liquid_type = button->get_meta("index");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-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() {
|
|
|
|
}
|