| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  tile_set_editor_plugin.cpp                                           */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-01 14:40:08 +01:00
										 |  |  | /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-02-09 22:10:30 -03:00
										 |  |  | #include "tile_set_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | #include "editor/plugins/canvas_item_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "scene/2d/physics_body_2d.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/2d/sprite.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void TileSetEditor::edit(const Ref<TileSet> &p_tileset) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tileset = p_tileset; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tileset->add_change_receptor(this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	update_tile_list(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | void TileSetEditor::_import_node(Node *p_node, Ref<TileSet> p_library) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | 	for (int i = 0; i < p_node->get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | 		Node *child = p_node->get_child(i); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 		if (!Object::cast_to<Sprite>(child)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (child->get_child_count() > 0) { | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | 				_import_node(child, p_library); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 		Sprite *mi = Object::cast_to<Sprite>(child); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Ref<Texture> texture = mi->get_texture(); | 
					
						
							| 
									
										
										
										
											2017-06-22 18:15:50 +03:00
										 |  |  | 		Ref<Texture> normal_map = mi->get_normal_map(); | 
					
						
							| 
									
										
										
										
											2017-04-06 23:36:37 -03:00
										 |  |  | 		Ref<ShaderMaterial> material = mi->get_material(); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (texture.is_null()) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		int id = p_library->find_tile_by_name(mi->get_name()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (id < 0) { | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			id = p_library->get_last_unused_tile_id(); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 			p_library->create_tile(id); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_library->tile_set_name(id, mi->get_name()); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p_library->tile_set_texture(id, texture); | 
					
						
							| 
									
										
										
										
											2017-06-22 18:15:50 +03:00
										 |  |  | 		p_library->tile_set_normal_map(id, normal_map); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p_library->tile_set_material(id, material); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p_library->tile_set_modulate(id, mi->get_modulate()); | 
					
						
							| 
									
										
										
										
											2016-11-30 14:33:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		Vector2 phys_offset; | 
					
						
							| 
									
										
										
										
											2016-07-05 11:40:22 -07:00
										 |  |  | 		Size2 s; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (mi->is_region()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			s = mi->get_region_rect().size; | 
					
						
							|  |  |  | 			p_library->tile_set_region(id, mi->get_region_rect()); | 
					
						
							| 
									
										
										
										
											2016-07-05 11:40:22 -07:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			const int frame = mi->get_frame(); | 
					
						
							|  |  |  | 			const int hframes = mi->get_hframes(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			s = texture->get_size() / Size2(hframes, mi->get_vframes()); | 
					
						
							|  |  |  | 			p_library->tile_set_region(id, Rect2(Vector2(frame % hframes, frame / hframes) * s, s)); | 
					
						
							| 
									
										
										
										
											2016-07-05 11:40:22 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-05 11:40:22 -07:00
										 |  |  | 		if (mi->is_centered()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			phys_offset += -s / 2; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 		Vector<TileSet::ShapeData> collisions; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		Ref<NavigationPolygon> nav_poly; | 
					
						
							|  |  |  | 		Ref<OccluderPolygon2D> occluder; | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 		bool found_collisions = false; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int j = 0; j < mi->get_child_count(); j++) { | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Node *child2 = mi->get_child(j); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 			if (Object::cast_to<NavigationPolygonInstance>(child2)) | 
					
						
							|  |  |  | 				nav_poly = Object::cast_to<NavigationPolygonInstance>(child2)->get_navigation_polygon(); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 			if (Object::cast_to<LightOccluder2D>(child2)) | 
					
						
							|  |  |  | 				occluder = Object::cast_to<LightOccluder2D>(child2)->get_occluder_polygon(); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 			if (!Object::cast_to<StaticBody2D>(child2)) | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			found_collisions = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 			StaticBody2D *sb = Object::cast_to<StaticBody2D>(child2); | 
					
						
							| 
									
										
										
										
											2017-06-23 23:30:43 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			List<uint32_t> shapes; | 
					
						
							|  |  |  | 			sb->get_shape_owners(&shapes); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			for (List<uint32_t>::Element *E = shapes.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 				if (sb->is_shape_owner_disabled(E->get())) continue; | 
					
						
							| 
									
										
										
										
											2017-06-23 23:30:43 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 				Transform2D shape_transform = sb->shape_owner_get_transform(E->get()); | 
					
						
							| 
									
										
										
										
											2017-06-25 21:47:30 +03:00
										 |  |  | 				bool one_way = sb->is_shape_owner_one_way_collision_enabled(E->get()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 				shape_transform.set_origin(shape_transform.get_origin() - phys_offset); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-23 23:30:43 -03:00
										 |  |  | 				for (int k = 0; k < sb->shape_owner_get_shape_count(E->get()); k++) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 					Ref<Shape2D> shape = sb->shape_owner_get_shape(E->get(), k); | 
					
						
							|  |  |  | 					TileSet::ShapeData shape_data; | 
					
						
							|  |  |  | 					shape_data.shape = shape; | 
					
						
							|  |  |  | 					shape_data.shape_transform = shape_transform; | 
					
						
							|  |  |  | 					shape_data.one_way_collision = one_way; | 
					
						
							|  |  |  | 					collisions.push_back(shape_data); | 
					
						
							| 
									
										
										
										
											2015-10-25 23:13:46 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-04-19 16:46:52 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-01 20:56:51 +03:00
										 |  |  | 		if (found_collisions) { | 
					
						
							|  |  |  | 			p_library->tile_set_shapes(id, collisions); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p_library->tile_set_texture_offset(id, mi->get_offset()); | 
					
						
							|  |  |  | 		p_library->tile_set_navigation_polygon(id, nav_poly); | 
					
						
							|  |  |  | 		p_library->tile_set_light_occluder(id, occluder); | 
					
						
							|  |  |  | 		p_library->tile_set_occluder_offset(id, -phys_offset); | 
					
						
							|  |  |  | 		p_library->tile_set_navigation_polygon_offset(id, -phys_offset); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 12:52:50 -04:00
										 |  |  | void TileSetEditor::_import_scene(Node *p_scene, Ref<TileSet> p_library, bool p_merge) { | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!p_merge) | 
					
						
							|  |  |  | 		p_library->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 12:52:50 -04:00
										 |  |  | 	_import_node(p_scene, p_library); | 
					
						
							| 
									
										
										
										
											2017-05-19 14:49:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void TileSetEditor::_menu_confirm() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (option) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		case MENU_OPTION_MERGE_FROM_SCENE: | 
					
						
							|  |  |  | 		case MENU_OPTION_CREATE_FROM_SCENE: { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 			EditorNode *en = editor; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Node *scene = en->get_edited_scene(); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 			if (!scene) | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			_import_scene(scene, tileset, option == MENU_OPTION_MERGE_FROM_SCENE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void TileSetEditor::_name_dialog_confirm(const String &name) { | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (option) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MENU_OPTION_REMOVE_ITEM: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int id = tileset->find_tile_by_name(name); | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (id < 0 && name.is_valid_integer()) | 
					
						
							|  |  |  | 				id = name.to_int(); | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (tileset->has_tile(id)) { | 
					
						
							|  |  |  | 				tileset->remove_tile(id); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				update_tile_list(); | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				err_dialog->set_text(TTR("Could not find tile:") + " " + name); | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 				err_dialog->popup_centered(Size2(300, 60)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void TileSetEditor::_menu_cbk(int p_option) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	option = p_option; | 
					
						
							|  |  |  | 	switch (p_option) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case MENU_OPTION_ADD_ITEM: { | 
					
						
							|  |  |  | 			tileset->create_tile(tileset->get_last_unused_tile_id()); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			tileset->tile_set_name(tileset->get_last_unused_tile_id() - 1, itos(tileset->get_last_unused_tile_id() - 1)); | 
					
						
							|  |  |  | 			update_tile_list(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_OPTION_REMOVE_ITEM: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 			nd->set_title(TTR("Remove Item")); | 
					
						
							|  |  |  | 			nd->set_text(TTR("Item name or ID:")); | 
					
						
							| 
									
										
										
										
											2015-12-15 23:35:35 +01:00
										 |  |  | 			nd->popup_centered(Size2(300, 95)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_OPTION_CREATE_FROM_SCENE: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 			cd->set_text(TTR("Create from scene?")); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			cd->popup_centered(Size2(300, 60)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		case MENU_OPTION_MERGE_FROM_SCENE: { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 			cd->set_text(TTR("Merge from scene?")); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			cd->popup_centered(Size2(300, 60)); | 
					
						
							| 
									
										
										
										
											2015-03-09 02:34:56 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error TileSetEditor::update_library_file(Node *p_base_scene, Ref<TileSet> ml, bool p_merge) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_import_scene(p_base_scene, ml, p_merge); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TileSetEditor::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method("_menu_cbk", &TileSetEditor::_menu_cbk); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_menu_confirm", &TileSetEditor::_menu_confirm); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_name_dialog_confirm", &TileSetEditor::_name_dialog_confirm); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	ClassDB::bind_method("_on_tile_list_selected", &TileSetEditor::_on_tile_list_selected); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_edit_mode_changed", &TileSetEditor::_on_edit_mode_changed); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_workspace_draw", &TileSetEditor::_on_workspace_draw); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_workspace_input", &TileSetEditor::_on_workspace_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_tool_clicked", &TileSetEditor::_on_tool_clicked); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_priority_changed", &TileSetEditor::_on_priority_changed); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_on_grid_snap_toggled", &TileSetEditor::_on_grid_snap_toggled); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_step_x", &TileSetEditor::_set_snap_step_x); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_step_y", &TileSetEditor::_set_snap_step_y); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_off_x", &TileSetEditor::_set_snap_off_x); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_off_y", &TileSetEditor::_set_snap_off_y); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_sep_x", &TileSetEditor::_set_snap_sep_x); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_set_snap_sep_y", &TileSetEditor::_set_snap_sep_y); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_notification(int p_what) { | 
					
						
							|  |  |  | 	if (p_what == NOTIFICATION_ENTER_TREE) { | 
					
						
							|  |  |  | 		tools[TOOL_SELECT]->set_icon(get_icon("ToolSelect", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[BITMASK_COPY]->set_icon(get_icon("Duplicate", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[BITMASK_PASTE]->set_icon(get_icon("Override", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[BITMASK_CLEAR]->set_icon(get_icon("Clear", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[SHAPE_NEW_POLYGON]->set_icon(get_icon("CollisionPolygon2D", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[SHAPE_DELETE]->set_icon(get_icon("Remove", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[SHAPE_KEEP_INSIDE_TILE]->set_icon(get_icon("Snap", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[SHAPE_GRID_SNAP]->set_icon(get_icon("SnapGrid", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[ZOOM_OUT]->set_icon(get_icon("ZoomLess", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[ZOOM_1]->set_icon(get_icon("ZoomReset", "EditorIcons")); | 
					
						
							|  |  |  | 		tools[ZOOM_IN]->set_icon(get_icon("ZoomMore", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_changed_callback(Object *p_changed, const char *p_prop) { | 
					
						
							|  |  |  | 	if (p_prop == StringName("region")) { | 
					
						
							|  |  |  | 		update_tile_list_icon(); | 
					
						
							|  |  |  | 		preview->set_region_rect(tileset->tile_get_region(get_current_tile())); | 
					
						
							|  |  |  | 	} else if (p_prop == StringName("name")) { | 
					
						
							|  |  |  | 		update_tile_list_icon(); | 
					
						
							|  |  |  | 	} else if (p_prop == StringName("texture") || p_prop == StringName("tile_mode")) { | 
					
						
							|  |  |  | 		_on_tile_list_selected(get_current_tile()); | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 		preview->set_texture(tileset->tile_get_texture(get_current_tile())); | 
					
						
							|  |  |  | 		preview->set_region_rect(tileset->tile_get_region(get_current_tile())); | 
					
						
							|  |  |  | 		if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) | 
					
						
							|  |  |  | 			property_editor->show(); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			property_editor->hide(); | 
					
						
							|  |  |  | 		texture_region_editor->_edit_region(); | 
					
						
							|  |  |  | 		update_tile_list_icon(); | 
					
						
							|  |  |  | 	} else if (p_prop == StringName("autotile")) { | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::initialize_bottom_editor() { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//Side Panel
 | 
					
						
							|  |  |  | 	side_panel = memnew(Control); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	side_panel->set_name("Tile Set"); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VSplitContainer *split = memnew(VSplitContainer); | 
					
						
							|  |  |  | 	side_panel->add_child(split); | 
					
						
							|  |  |  | 	split->set_anchors_and_margins_preset(Control::PRESET_WIDE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tile_list = memnew(ItemList); | 
					
						
							|  |  |  | 	tile_list->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	tile_list->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	tile_list->set_custom_minimum_size(Size2(10, 200)); | 
					
						
							|  |  |  | 	tile_list->connect("item_selected", this, "_on_tile_list_selected"); | 
					
						
							|  |  |  | 	split->add_child(tile_list); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	property_editor = memnew(PropertyEditor); | 
					
						
							|  |  |  | 	property_editor->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	property_editor->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2018-01-05 15:24:51 +07:00
										 |  |  | 	property_editor->set_custom_minimum_size(Size2(10, 70)); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	split->add_child(property_editor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	helper = memnew(TileSetEditorHelper(this)); | 
					
						
							| 
									
										
										
										
											2018-01-05 03:55:43 +09:00
										 |  |  | 	property_editor->call_deferred("edit", helper); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	helper->add_change_receptor(this); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-03 21:56:57 -02:00
										 |  |  | 	//Editor
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	//Bottom Panel
 | 
					
						
							|  |  |  | 	bottom_panel = memnew(Control); | 
					
						
							|  |  |  | 	bottom_panel->set_name("Tile Set Bottom Editor"); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dragging_point = -1; | 
					
						
							|  |  |  | 	creating_shape = false; | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_step = Vector2(32, 32); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	bottom_panel->set_custom_minimum_size(Size2(0, 150)); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *main_vb = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	bottom_panel->add_child(main_vb); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	main_vb->set_anchors_and_margins_preset(Control::PRESET_WIDE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HBoxContainer *tool_hb = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	Ref<ButtonGroup> g(memnew(ButtonGroup)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	String label[EDITMODE_MAX] = { "Collision", "Occlusion", "Navigation", "Bitmask", "Priority", "Icon" }; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < (int)EDITMODE_MAX; i++) { | 
					
						
							|  |  |  | 		tool_editmode[i] = memnew(Button); | 
					
						
							|  |  |  | 		tool_editmode[i]->set_text(label[i]); | 
					
						
							|  |  |  | 		tool_editmode[i]->set_toggle_mode(true); | 
					
						
							|  |  |  | 		tool_editmode[i]->set_button_group(g); | 
					
						
							|  |  |  | 		Vector<Variant> args; | 
					
						
							|  |  |  | 		args.push_back(i); | 
					
						
							|  |  |  | 		tool_editmode[i]->connect("pressed", this, "_on_edit_mode_changed", args); | 
					
						
							|  |  |  | 		tool_hb->add_child(tool_editmode[i]); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tool_editmode[EDITMODE_COLLISION]->set_pressed(true); | 
					
						
							|  |  |  | 	edit_mode = EDITMODE_COLLISION; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	main_vb->add_child(tool_hb); | 
					
						
							|  |  |  | 	main_vb->add_child(memnew(HSeparator)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toolbar = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	for (int i = 0; i < (int)TOOLBAR_MAX; i++) { | 
					
						
							|  |  |  | 		tool_containers[i] = memnew(HBoxContainer); | 
					
						
							|  |  |  | 		toolbar->add_child(tool_containers[i]); | 
					
						
							|  |  |  | 		tool_containers[i]->hide(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<ButtonGroup> tg(memnew(ButtonGroup)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	Vector<Variant> p; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	tools[TOOL_SELECT] = memnew(ToolButton); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_DUMMY]->add_child(tools[TOOL_SELECT]); | 
					
						
							| 
									
										
										
										
											2017-12-23 22:40:15 +08:00
										 |  |  | 	tools[TOOL_SELECT]->set_tooltip(TTR("Select sub-tile to use as icon, this will be also used on invalid autotile bindings.")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	tools[TOOL_SELECT]->set_toggle_mode(true); | 
					
						
							|  |  |  | 	tools[TOOL_SELECT]->set_button_group(tg); | 
					
						
							|  |  |  | 	tools[TOOL_SELECT]->set_pressed(true); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	p.push_back((int)TOOL_SELECT); | 
					
						
							|  |  |  | 	tools[TOOL_SELECT]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	tool_containers[TOOLBAR_DUMMY]->show(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tools[BITMASK_COPY] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p.push_back((int)BITMASK_COPY); | 
					
						
							|  |  |  | 	tools[BITMASK_COPY]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_BITMASK]->add_child(tools[BITMASK_COPY]); | 
					
						
							|  |  |  | 	tools[BITMASK_PASTE] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)BITMASK_PASTE); | 
					
						
							|  |  |  | 	tools[BITMASK_PASTE]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_BITMASK]->add_child(tools[BITMASK_PASTE]); | 
					
						
							|  |  |  | 	tools[BITMASK_CLEAR] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)BITMASK_CLEAR); | 
					
						
							|  |  |  | 	tools[BITMASK_CLEAR]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_BITMASK]->add_child(tools[BITMASK_CLEAR]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tools[SHAPE_NEW_POLYGON] = memnew(ToolButton); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(tools[SHAPE_NEW_POLYGON]); | 
					
						
							|  |  |  | 	tools[SHAPE_NEW_POLYGON]->set_toggle_mode(true); | 
					
						
							|  |  |  | 	tools[SHAPE_NEW_POLYGON]->set_button_group(tg); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(memnew(VSeparator)); | 
					
						
							|  |  |  | 	tools[SHAPE_DELETE] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)SHAPE_DELETE); | 
					
						
							|  |  |  | 	tools[SHAPE_DELETE]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(tools[SHAPE_DELETE]); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_change_receptor(memnew(VSeparator)); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	tools[SHAPE_KEEP_INSIDE_TILE] = memnew(ToolButton); | 
					
						
							|  |  |  | 	tools[SHAPE_KEEP_INSIDE_TILE]->set_toggle_mode(true); | 
					
						
							|  |  |  | 	tools[SHAPE_KEEP_INSIDE_TILE]->set_pressed(true); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(tools[SHAPE_KEEP_INSIDE_TILE]); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	tools[SHAPE_GRID_SNAP] = memnew(ToolButton); | 
					
						
							|  |  |  | 	tools[SHAPE_GRID_SNAP]->set_toggle_mode(true); | 
					
						
							|  |  |  | 	tools[SHAPE_GRID_SNAP]->connect("toggled", this, "_on_grid_snap_toggled"); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(tools[SHAPE_GRID_SNAP]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hb_grid = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	tool_containers[TOOLBAR_SHAPE]->add_child(hb_grid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(VSeparator)); | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(Label(TTR("Offset:")))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_off_x = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_off_x->set_min(-256); | 
					
						
							|  |  |  | 	sb_off_x->set_max(256); | 
					
						
							|  |  |  | 	sb_off_x->set_step(1); | 
					
						
							|  |  |  | 	sb_off_x->set_value(snap_offset.x); | 
					
						
							|  |  |  | 	sb_off_x->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_off_x->connect("value_changed", this, "_set_snap_off_x"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_off_x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_off_y = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_off_y->set_min(-256); | 
					
						
							|  |  |  | 	sb_off_y->set_max(256); | 
					
						
							|  |  |  | 	sb_off_y->set_step(1); | 
					
						
							|  |  |  | 	sb_off_y->set_value(snap_offset.y); | 
					
						
							|  |  |  | 	sb_off_y->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_off_y->connect("value_changed", this, "_set_snap_off_y"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_off_y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(VSeparator)); | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(Label(TTR("Step:")))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_step_x = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_step_x->set_min(-256); | 
					
						
							|  |  |  | 	sb_step_x->set_max(256); | 
					
						
							|  |  |  | 	sb_step_x->set_step(1); | 
					
						
							|  |  |  | 	sb_step_x->set_value(snap_step.x); | 
					
						
							|  |  |  | 	sb_step_x->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_step_x->connect("value_changed", this, "_set_snap_step_x"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_step_x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_step_y = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_step_y->set_min(-256); | 
					
						
							|  |  |  | 	sb_step_y->set_max(256); | 
					
						
							|  |  |  | 	sb_step_y->set_step(1); | 
					
						
							|  |  |  | 	sb_step_y->set_value(snap_step.y); | 
					
						
							|  |  |  | 	sb_step_y->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_step_y->connect("value_changed", this, "_set_snap_step_y"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_step_y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(VSeparator)); | 
					
						
							|  |  |  | 	hb_grid->add_child(memnew(Label(TTR("Separation:")))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_sep_x = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_sep_x->set_min(0); | 
					
						
							|  |  |  | 	sb_sep_x->set_max(256); | 
					
						
							|  |  |  | 	sb_sep_x->set_step(1); | 
					
						
							|  |  |  | 	sb_sep_x->set_value(snap_separation.x); | 
					
						
							|  |  |  | 	sb_sep_x->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_sep_x->connect("value_changed", this, "_set_snap_sep_x"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_sep_x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sb_sep_y = memnew(SpinBox); | 
					
						
							|  |  |  | 	sb_sep_y->set_min(0); | 
					
						
							|  |  |  | 	sb_sep_y->set_max(256); | 
					
						
							|  |  |  | 	sb_sep_y->set_step(1); | 
					
						
							|  |  |  | 	sb_sep_y->set_value(snap_separation.y); | 
					
						
							|  |  |  | 	sb_sep_y->set_suffix("px"); | 
					
						
							|  |  |  | 	sb_sep_y->connect("value_changed", this, "_set_snap_sep_y"); | 
					
						
							|  |  |  | 	hb_grid->add_child(sb_sep_y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hb_grid->hide(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_priority = memnew(SpinBox); | 
					
						
							|  |  |  | 	spin_priority->set_min(1); | 
					
						
							|  |  |  | 	spin_priority->set_max(255); | 
					
						
							|  |  |  | 	spin_priority->set_step(1); | 
					
						
							|  |  |  | 	spin_priority->set_custom_minimum_size(Size2(100, 0)); | 
					
						
							|  |  |  | 	spin_priority->connect("value_changed", this, "_on_priority_changed"); | 
					
						
							|  |  |  | 	spin_priority->hide(); | 
					
						
							|  |  |  | 	toolbar->add_child(spin_priority); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tool_containers[TOOLBAR_SHAPE]->show(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	Control *separator = memnew(Control); | 
					
						
							|  |  |  | 	separator->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	toolbar->add_child(separator); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tools[ZOOM_OUT] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)ZOOM_OUT); | 
					
						
							|  |  |  | 	tools[ZOOM_OUT]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	toolbar->add_child(tools[ZOOM_OUT]); | 
					
						
							|  |  |  | 	tools[ZOOM_1] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)ZOOM_1); | 
					
						
							|  |  |  | 	tools[ZOOM_1]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	toolbar->add_child(tools[ZOOM_1]); | 
					
						
							|  |  |  | 	tools[ZOOM_IN] = memnew(ToolButton); | 
					
						
							|  |  |  | 	p = Vector<Variant>(); | 
					
						
							|  |  |  | 	p.push_back((int)ZOOM_IN); | 
					
						
							|  |  |  | 	tools[ZOOM_IN]->connect("pressed", this, "_on_tool_clicked", p); | 
					
						
							|  |  |  | 	toolbar->add_child(tools[ZOOM_IN]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	main_vb->add_child(toolbar); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 	scroll = memnew(ScrollContainer); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	main_vb->add_child(scroll); | 
					
						
							|  |  |  | 	scroll->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	workspace_container = memnew(Control); | 
					
						
							|  |  |  | 	scroll->add_child(workspace_container); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	workspace = memnew(Control); | 
					
						
							|  |  |  | 	workspace->connect("draw", this, "_on_workspace_draw"); | 
					
						
							|  |  |  | 	workspace->connect("gui_input", this, "_on_workspace_input"); | 
					
						
							|  |  |  | 	workspace_container->add_child(workspace); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	preview = memnew(Sprite); | 
					
						
							|  |  |  | 	workspace->add_child(preview); | 
					
						
							|  |  |  | 	preview->set_centered(false); | 
					
						
							|  |  |  | 	preview->set_draw_behind_parent(true); | 
					
						
							|  |  |  | 	preview->set_region(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | TileSetEditor::TileSetEditor(EditorNode *p_editor) { | 
					
						
							| 
									
										
										
										
											2018-01-22 11:46:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	menu = memnew(MenuButton); | 
					
						
							|  |  |  | 	CanvasItemEditor::get_singleton()->add_control_to_menu_panel(menu); | 
					
						
							|  |  |  | 	menu->hide(); | 
					
						
							|  |  |  | 	menu->set_text(TTR("Tile Set")); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Remove Item"), MENU_OPTION_REMOVE_ITEM); | 
					
						
							|  |  |  | 	menu->get_popup()->add_separator(); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Create from Scene"), MENU_OPTION_CREATE_FROM_SCENE); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Merge from Scene"), MENU_OPTION_MERGE_FROM_SCENE); | 
					
						
							|  |  |  | 	menu->get_popup()->connect("id_pressed", this, "_menu_cbk"); | 
					
						
							|  |  |  | 	editor = p_editor; | 
					
						
							|  |  |  | 	cd = memnew(ConfirmationDialog); | 
					
						
							|  |  |  | 	add_child(cd); | 
					
						
							|  |  |  | 	cd->get_ok()->connect("pressed", this, "_menu_confirm"); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	nd = memnew(EditorNameDialog); | 
					
						
							|  |  |  | 	add_child(nd); | 
					
						
							|  |  |  | 	nd->set_hide_on_ok(true); | 
					
						
							|  |  |  | 	nd->get_line_edit()->set_margin(MARGIN_TOP, 28); | 
					
						
							|  |  |  | 	nd->connect("name_confirmed", this, "_name_dialog_confirm"); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	err_dialog = memnew(AcceptDialog); | 
					
						
							|  |  |  | 	add_child(err_dialog); | 
					
						
							|  |  |  | 	err_dialog->set_title(TTR("Error")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	initialize_bottom_editor(); | 
					
						
							| 
									
										
										
										
											2018-01-11 05:45:14 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_tile_list_selected(int p_index) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	if (get_current_tile() >= 0) { | 
					
						
							|  |  |  | 		current_item_index = p_index; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		preview->set_texture(tileset->tile_get_texture(get_current_tile())); | 
					
						
							|  |  |  | 		preview->set_region_rect(tileset->tile_get_region(get_current_tile())); | 
					
						
							|  |  |  | 		workspace->set_custom_minimum_size(tileset->tile_get_region(get_current_tile()).size); | 
					
						
							|  |  |  | 		update_workspace_tile_mode(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		current_item_index = -1; | 
					
						
							|  |  |  | 		preview->set_texture(NULL); | 
					
						
							|  |  |  | 		workspace->set_custom_minimum_size(Size2i()); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	texture_region_editor->selected_tile = get_current_tile(); | 
					
						
							|  |  |  | 	texture_region_editor->_edit_region(); | 
					
						
							|  |  |  | 	helper->selected_tile = get_current_tile(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	helper->_change_notify(""); | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_edit_mode_changed(int p_edit_mode) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	edit_mode = (EditMode)p_edit_mode; | 
					
						
							|  |  |  | 	switch (edit_mode) { | 
					
						
							|  |  |  | 		case EDITMODE_BITMASK: { | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_DUMMY]->show(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_BITMASK]->show(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_SHAPE]->hide(); | 
					
						
							|  |  |  | 			tools[TOOL_SELECT]->set_pressed(true); | 
					
						
							| 
									
										
										
										
											2017-12-23 22:40:15 +08:00
										 |  |  | 			tools[TOOL_SELECT]->set_tooltip(TTR("LMB: set bit on.\nRMB: set bit off.")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			spin_priority->hide(); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case EDITMODE_COLLISION: | 
					
						
							|  |  |  | 		case EDITMODE_NAVIGATION: | 
					
						
							|  |  |  | 		case EDITMODE_OCCLUSION: { | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_DUMMY]->show(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_BITMASK]->hide(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_SHAPE]->show(); | 
					
						
							| 
									
										
										
										
											2017-12-23 22:40:15 +08:00
										 |  |  | 			tools[TOOL_SELECT]->set_tooltip(TTR("Select current edited sub-tile.")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			spin_priority->hide(); | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:30 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			select_coord(edited_shape_coord); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		default: { | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_DUMMY]->show(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_BITMASK]->hide(); | 
					
						
							|  |  |  | 			tool_containers[TOOLBAR_SHAPE]->hide(); | 
					
						
							|  |  |  | 			if (edit_mode == EDITMODE_ICON) { | 
					
						
							| 
									
										
										
										
											2017-12-23 22:40:15 +08:00
										 |  |  | 				tools[TOOL_SELECT]->set_tooltip(TTR("Select sub-tile to use as icon, this will be also used on invalid autotile bindings.")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				spin_priority->hide(); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-01-06 21:33:11 +07:00
										 |  |  | 				tools[TOOL_SELECT]->set_tooltip(TTR("Select sub-tile to change its priority.")); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				spin_priority->show(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_workspace_draw() { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (get_current_tile() >= 0 && !tileset.is_null()) { | 
					
						
							|  |  |  | 		int spacing = tileset->autotile_get_spacing(get_current_tile()); | 
					
						
							|  |  |  | 		Vector2 size = tileset->autotile_get_size(get_current_tile()); | 
					
						
							|  |  |  | 		Rect2i region = tileset->tile_get_region(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		Color c(0.347214, 0.722656, 0.617063); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		switch (edit_mode) { | 
					
						
							|  |  |  | 			case EDITMODE_ICON: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				Vector2 coord = tileset->autotile_get_icon_coordinate(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				draw_highlight_tile(coord); | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case EDITMODE_BITMASK: { | 
					
						
							|  |  |  | 				c = Color(1, 0, 0, 0.5); | 
					
						
							|  |  |  | 				for (float x = 0; x < region.size.x / (spacing + size.x); x++) { | 
					
						
							|  |  |  | 					for (float y = 0; y < region.size.y / (spacing + size.y); y++) { | 
					
						
							|  |  |  | 						Vector2 coord(x, y); | 
					
						
							|  |  |  | 						Point2 anchor(coord.x * (spacing + size.x), coord.y * (spacing + size.y)); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						uint16_t mask = tileset->autotile_get_bitmask(get_current_tile(), coord); | 
					
						
							|  |  |  | 						if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_2X2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (mask & TileSet::BIND_TOPLEFT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor, size / 2), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_TOPRIGHT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(size.x / 2, 0), size / 2), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_BOTTOMLEFT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(0, size.y / 2), size / 2), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_BOTTOMRIGHT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + size / 2, size / 2), c); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						} else if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_3X3) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (mask & TileSet::BIND_TOPLEFT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor, size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_TOP) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(size.x / 3, 0), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_TOPRIGHT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2((size.x / 3) * 2, 0), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_LEFT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(0, size.y / 3), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_CENTER) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(size.x / 3, size.y / 3), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_RIGHT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2((size.x / 3) * 2, size.y / 3), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_BOTTOMLEFT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(0, (size.y / 3) * 2), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_BOTTOM) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + Vector2(size.x / 3, (size.y / 3) * 2), size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							if (mask & TileSet::BIND_BOTTOMRIGHT) { | 
					
						
							|  |  |  | 								workspace->draw_rect(Rect2(anchor + (size / 3) * 2, size / 3), c); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case EDITMODE_COLLISION: | 
					
						
							|  |  |  | 			case EDITMODE_OCCLUSION: | 
					
						
							|  |  |  | 			case EDITMODE_NAVIGATION: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 					Vector2 coord = edited_shape_coord; | 
					
						
							|  |  |  | 					draw_highlight_tile(coord); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				draw_polygon_shapes(); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 				draw_grid_snap(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			} break; | 
					
						
							|  |  |  | 			case EDITMODE_PRIORITY: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				spin_priority->set_value(tileset->autotile_get_subtile_priority(get_current_tile(), edited_shape_coord)); | 
					
						
							|  |  |  | 				uint16_t mask = tileset->autotile_get_bitmask(get_current_tile(), edited_shape_coord); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				Vector<Vector2> queue_others; | 
					
						
							|  |  |  | 				int total = 0; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				for (Map<Vector2, uint16_t>::Element *E = tileset->autotile_get_bitmask_map(get_current_tile()).front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 					if (E->value() == mask) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						total += tileset->autotile_get_subtile_priority(get_current_tile(), E->key()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						if (E->key() != edited_shape_coord) { | 
					
						
							|  |  |  | 							queue_others.push_back(E->key()); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				spin_priority->set_suffix(" / " + String::num(total, 0)); | 
					
						
							|  |  |  | 				draw_highlight_tile(edited_shape_coord, queue_others); | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 			float j = -size.x; //make sure to draw at 0
 | 
					
						
							|  |  |  | 			while (j < region.size.x) { | 
					
						
							|  |  |  | 				j += size.x; | 
					
						
							|  |  |  | 				if (spacing <= 0) { | 
					
						
							|  |  |  | 					workspace->draw_line(Point2(j, 0), Point2(j, region.size.y), c); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					workspace->draw_rect(Rect2(Point2(j, 0), Size2(spacing, region.size.y)), c); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				j += spacing; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			j = -size.y; //make sure to draw at 0
 | 
					
						
							|  |  |  | 			while (j < region.size.y) { | 
					
						
							|  |  |  | 				j += size.y; | 
					
						
							|  |  |  | 				if (spacing <= 0) { | 
					
						
							|  |  |  | 					workspace->draw_line(Point2(0, j), Point2(region.size.x, j), c); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					workspace->draw_rect(Rect2(Point2(0, j), Size2(region.size.x, spacing)), c); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				j += spacing; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MIN_DISTANCE_SQUARED 10
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_workspace_input(const Ref<InputEvent> &p_ie) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (get_current_tile() >= 0 && !tileset.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		Ref<InputEventMouseButton> mb = p_ie; | 
					
						
							|  |  |  | 		Ref<InputEventMouseMotion> mm = p_ie; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		static bool dragging; | 
					
						
							|  |  |  | 		static bool erasing; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		int spacing = tileset->autotile_get_spacing(get_current_tile()); | 
					
						
							|  |  |  | 		Vector2 size = tileset->autotile_get_size(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		switch (edit_mode) { | 
					
						
							|  |  |  | 			case EDITMODE_ICON: { | 
					
						
							|  |  |  | 				if (mb.is_valid()) { | 
					
						
							|  |  |  | 					if (mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { | 
					
						
							|  |  |  | 						Vector2 coord((int)(mb->get_position().x / (spacing + size.x)), (int)(mb->get_position().y / (spacing + size.y))); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						tileset->autotile_set_icon_coordinate(get_current_tile(), coord); | 
					
						
							|  |  |  | 						Rect2 region = tileset->tile_get_region(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						region.size = size; | 
					
						
							|  |  |  | 						coord.x *= (spacing + size.x); | 
					
						
							|  |  |  | 						coord.y *= (spacing + size.y); | 
					
						
							|  |  |  | 						region.position += coord; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						tile_list->set_item_icon_region(current_item_index, region); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						workspace->update(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case EDITMODE_BITMASK: { | 
					
						
							|  |  |  | 				if (mb.is_valid()) { | 
					
						
							|  |  |  | 					if (mb->is_pressed()) { | 
					
						
							|  |  |  | 						if (dragging) { | 
					
						
							|  |  |  | 							return; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						if (mb->get_button_index() == BUTTON_RIGHT || mb->get_button_index() == BUTTON_LEFT) { | 
					
						
							|  |  |  | 							dragging = true; | 
					
						
							|  |  |  | 							erasing = (mb->get_button_index() == BUTTON_RIGHT); | 
					
						
							|  |  |  | 							Vector2 coord((int)(mb->get_position().x / (spacing + size.x)), (int)(mb->get_position().y / (spacing + size.y))); | 
					
						
							|  |  |  | 							Vector2 pos(coord.x * (spacing + size.x), coord.y * (spacing + size.y)); | 
					
						
							|  |  |  | 							pos = mb->get_position() - pos; | 
					
						
							|  |  |  | 							uint16_t bit; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_2X2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 								if (pos.x < size.x / 2) { | 
					
						
							|  |  |  | 									if (pos.y < size.y / 2) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_TOPLEFT; | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_BOTTOMLEFT; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									if (pos.y < size.y / 2) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_TOPRIGHT; | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_BOTTOMRIGHT; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							} else if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_3X3) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 								if (pos.x < size.x / 3) { | 
					
						
							|  |  |  | 									if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_TOPLEFT; | 
					
						
							|  |  |  | 									} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_BOTTOMLEFT; | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_LEFT; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} else if (pos.x > (size.x / 3) * 2) { | 
					
						
							|  |  |  | 									if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_TOPRIGHT; | 
					
						
							|  |  |  | 									} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_BOTTOMRIGHT; | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_RIGHT; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_TOP; | 
					
						
							|  |  |  | 									} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_BOTTOM; | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										bit = TileSet::BIND_CENTER; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							uint16_t mask = tileset->autotile_get_bitmask(get_current_tile(), coord); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (erasing) { | 
					
						
							|  |  |  | 								mask &= ~bit; | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								mask |= bit; | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							tileset->autotile_set_bitmask(get_current_tile(), coord, mask); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							workspace->update(); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						if ((erasing && mb->get_button_index() == BUTTON_RIGHT) || (!erasing && mb->get_button_index() == BUTTON_LEFT)) { | 
					
						
							|  |  |  | 							dragging = false; | 
					
						
							|  |  |  | 							erasing = false; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (mm.is_valid()) { | 
					
						
							|  |  |  | 					if (dragging) { | 
					
						
							|  |  |  | 						Vector2 coord((int)(mm->get_position().x / (spacing + size.x)), (int)(mm->get_position().y / (spacing + size.y))); | 
					
						
							|  |  |  | 						Vector2 pos(coord.x * (spacing + size.x), coord.y * (spacing + size.y)); | 
					
						
							|  |  |  | 						pos = mm->get_position() - pos; | 
					
						
							|  |  |  | 						uint16_t bit; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_2X2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (pos.x < size.x / 2) { | 
					
						
							|  |  |  | 								if (pos.y < size.y / 2) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_TOPLEFT; | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_BOTTOMLEFT; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								if (pos.y < size.y / 2) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_TOPRIGHT; | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_BOTTOMRIGHT; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						} else if (tileset->autotile_get_bitmask_mode(get_current_tile()) == TileSet::BITMASK_3X3) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (pos.x < size.x / 3) { | 
					
						
							|  |  |  | 								if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_TOPLEFT; | 
					
						
							|  |  |  | 								} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_BOTTOMLEFT; | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_LEFT; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else if (pos.x > (size.x / 3) * 2) { | 
					
						
							|  |  |  | 								if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_TOPRIGHT; | 
					
						
							|  |  |  | 								} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_BOTTOMRIGHT; | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_RIGHT; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								if (pos.y < size.y / 3) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_TOP; | 
					
						
							|  |  |  | 								} else if (pos.y > (size.y / 3) * 2) { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_BOTTOM; | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									bit = TileSet::BIND_CENTER; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						uint16_t mask = tileset->autotile_get_bitmask(get_current_tile(), coord); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						if (erasing) { | 
					
						
							|  |  |  | 							mask &= ~bit; | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							mask |= bit; | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						tileset->autotile_set_bitmask(get_current_tile(), coord, mask); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						workspace->update(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case EDITMODE_COLLISION: | 
					
						
							|  |  |  | 			case EDITMODE_OCCLUSION: | 
					
						
							|  |  |  | 			case EDITMODE_NAVIGATION: | 
					
						
							|  |  |  | 			case EDITMODE_PRIORITY: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				Vector2 shape_anchor = Vector2(0, 0); | 
					
						
							|  |  |  | 				if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 					shape_anchor = edited_shape_coord; | 
					
						
							|  |  |  | 					shape_anchor.x *= (size.x + spacing); | 
					
						
							|  |  |  | 					shape_anchor.y *= (size.y + spacing); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				if (tools[TOOL_SELECT]->is_pressed()) { | 
					
						
							|  |  |  | 					if (mb.is_valid()) { | 
					
						
							|  |  |  | 						if (mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { | 
					
						
							|  |  |  | 							if (edit_mode != EDITMODE_PRIORITY && current_shape.size() > 0) { | 
					
						
							|  |  |  | 								for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 									if ((current_shape[i] - mb->get_position()).length_squared() <= MIN_DISTANCE_SQUARED) { | 
					
						
							|  |  |  | 										dragging_point = i; | 
					
						
							|  |  |  | 										workspace->update(); | 
					
						
							|  |  |  | 										return; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 								Vector2 coord((int)(mb->get_position().x / (spacing + size.x)), (int)(mb->get_position().y / (spacing + size.y))); | 
					
						
							|  |  |  | 								if (edited_shape_coord != coord) { | 
					
						
							|  |  |  | 									edited_shape_coord = coord; | 
					
						
							|  |  |  | 									edited_occlusion_shape = tileset->autotile_get_light_occluder(get_current_tile(), edited_shape_coord); | 
					
						
							|  |  |  | 									edited_navigation_shape = tileset->autotile_get_navigation_polygon(get_current_tile(), edited_shape_coord); | 
					
						
							|  |  |  | 									Vector<TileSet::ShapeData> sd = tileset->tile_get_shapes(get_current_tile()); | 
					
						
							|  |  |  | 									bool found_collision_shape = false; | 
					
						
							|  |  |  | 									for (int i = 0; i < sd.size(); i++) { | 
					
						
							|  |  |  | 										if (sd[i].autotile_coord == coord) { | 
					
						
							|  |  |  | 											edited_collision_shape = sd[i].shape; | 
					
						
							|  |  |  | 											found_collision_shape = true; | 
					
						
							|  |  |  | 											break; | 
					
						
							|  |  |  | 										} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 									if (!found_collision_shape) | 
					
						
							|  |  |  | 										edited_collision_shape = Ref<ConvexPolygonShape2D>(NULL); | 
					
						
							|  |  |  | 									select_coord(edited_shape_coord); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							workspace->update(); | 
					
						
							|  |  |  | 						} else if (!mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { | 
					
						
							|  |  |  | 							if (edit_mode == EDITMODE_COLLISION) { | 
					
						
							|  |  |  | 								if (dragging_point >= 0) { | 
					
						
							|  |  |  | 									dragging_point = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 									Vector<Vector2> points; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 									for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 										Vector2 p = current_shape[i]; | 
					
						
							|  |  |  | 										if (tools[SHAPE_GRID_SNAP]->is_pressed() || tools[SHAPE_KEEP_INSIDE_TILE]->is_pressed()) { | 
					
						
							|  |  |  | 											p = snap_point(p); | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 										points.push_back(p - shape_anchor); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 									} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 									edited_collision_shape->set_points(points); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 									workspace->update(); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else if (edit_mode == EDITMODE_OCCLUSION) { | 
					
						
							|  |  |  | 								if (dragging_point >= 0) { | 
					
						
							|  |  |  | 									dragging_point = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									PoolVector<Vector2> polygon; | 
					
						
							|  |  |  | 									polygon.resize(current_shape.size()); | 
					
						
							|  |  |  | 									PoolVector<Vector2>::Write w = polygon.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 										w[i] = current_shape[i] - shape_anchor; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									w = PoolVector<Vector2>::Write(); | 
					
						
							|  |  |  | 									edited_occlusion_shape->set_polygon(polygon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									workspace->update(); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else if (edit_mode == EDITMODE_NAVIGATION) { | 
					
						
							|  |  |  | 								if (dragging_point >= 0) { | 
					
						
							|  |  |  | 									dragging_point = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									PoolVector<Vector2> polygon; | 
					
						
							|  |  |  | 									Vector<int> indices; | 
					
						
							|  |  |  | 									polygon.resize(current_shape.size()); | 
					
						
							|  |  |  | 									PoolVector<Vector2>::Write w = polygon.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 										w[i] = current_shape[i] - shape_anchor; | 
					
						
							|  |  |  | 										indices.push_back(i); | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									w = PoolVector<Vector2>::Write(); | 
					
						
							|  |  |  | 									edited_navigation_shape->set_vertices(polygon); | 
					
						
							|  |  |  | 									edited_navigation_shape->add_polygon(indices); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									workspace->update(); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else if (mm.is_valid()) { | 
					
						
							|  |  |  | 						if (dragging_point >= 0) { | 
					
						
							|  |  |  | 							current_shape.set(dragging_point, snap_point(mm->get_position())); | 
					
						
							|  |  |  | 							workspace->update(); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} else if (tools[SHAPE_NEW_POLYGON]->is_pressed()) { | 
					
						
							| 
									
										
										
										
											2018-02-16 17:48:01 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 					if (mb.is_valid()) { | 
					
						
							|  |  |  | 						if (mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { | 
					
						
							|  |  |  | 							Vector2 pos = mb->get_position(); | 
					
						
							|  |  |  | 							pos = snap_point(pos); | 
					
						
							|  |  |  | 							if (creating_shape) { | 
					
						
							|  |  |  | 								if (current_shape.size() > 0) { | 
					
						
							|  |  |  | 									if ((pos - current_shape[0]).length_squared() <= MIN_DISTANCE_SQUARED) { | 
					
						
							|  |  |  | 										if (current_shape.size() > 2) { | 
					
						
							|  |  |  | 											close_shape(shape_anchor); | 
					
						
							|  |  |  | 											workspace->update(); | 
					
						
							|  |  |  | 											return; | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 								current_shape.push_back(pos); | 
					
						
							|  |  |  | 								workspace->update(); | 
					
						
							|  |  |  | 							} else { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 								int t_id = get_current_tile(); | 
					
						
							|  |  |  | 								if (t_id >= 0) { | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 									if (edit_mode == EDITMODE_COLLISION) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 										Vector<TileSet::ShapeData> sd = tileset->tile_get_shapes(t_id); | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 										for (int i = 0; i < sd.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 											if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE || sd[i].autotile_coord == edited_shape_coord) { | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 												Ref<ConvexPolygonShape2D> shape = sd[i].shape; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 												if (!shape.is_null()) { | 
					
						
							|  |  |  | 													sd.remove(i); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 													tileset->tile_set_shapes(get_current_tile(), sd); | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 													edited_collision_shape = Ref<Shape2D>(); | 
					
						
							|  |  |  | 													workspace->update(); | 
					
						
							|  |  |  | 												} | 
					
						
							|  |  |  | 												break; | 
					
						
							|  |  |  | 											} | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} else if (edit_mode == EDITMODE_OCCLUSION) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 										if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 											Map<Vector2, Ref<OccluderPolygon2D> > map = tileset->autotile_get_light_oclusion_map(t_id); | 
					
						
							|  |  |  | 											for (Map<Vector2, Ref<OccluderPolygon2D> >::Element *E = map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 												if (E->key() == edited_shape_coord) { | 
					
						
							|  |  |  | 													tileset->autotile_set_light_occluder(get_current_tile(), Ref<OccluderPolygon2D>(), edited_shape_coord); | 
					
						
							|  |  |  | 													break; | 
					
						
							|  |  |  | 												} | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 											} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 										} else | 
					
						
							|  |  |  | 											tileset->tile_set_light_occluder(t_id, Ref<OccluderPolygon2D>()); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 										edited_occlusion_shape = Ref<OccluderPolygon2D>(); | 
					
						
							|  |  |  | 										workspace->update(); | 
					
						
							|  |  |  | 									} else if (edit_mode == EDITMODE_NAVIGATION) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 										if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 											Map<Vector2, Ref<NavigationPolygon> > map = tileset->autotile_get_navigation_map(t_id); | 
					
						
							|  |  |  | 											for (Map<Vector2, Ref<NavigationPolygon> >::Element *E = map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 												if (E->key() == edited_shape_coord) { | 
					
						
							|  |  |  | 													tileset->autotile_set_navigation_polygon(t_id, Ref<NavigationPolygon>(), edited_shape_coord); | 
					
						
							|  |  |  | 													break; | 
					
						
							|  |  |  | 												} | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 											} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 										} else | 
					
						
							|  |  |  | 											tileset->tile_set_navigation_polygon(t_id, Ref<NavigationPolygon>()); | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 										edited_navigation_shape = Ref<NavigationPolygon>(); | 
					
						
							|  |  |  | 										workspace->update(); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 								creating_shape = true; | 
					
						
							|  |  |  | 								current_shape.resize(0); | 
					
						
							|  |  |  | 								current_shape.push_back(snap_point(pos)); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 						} else if (mb->is_pressed() && mb->get_button_index() == BUTTON_RIGHT && current_shape.size() > 2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							if (creating_shape) { | 
					
						
							|  |  |  | 								close_shape(shape_anchor); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else if (mm.is_valid()) { | 
					
						
							|  |  |  | 						if (creating_shape) { | 
					
						
							|  |  |  | 							workspace->update(); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		//Drag Middle Mouse
 | 
					
						
							|  |  |  | 		if (mm.is_valid()) { | 
					
						
							|  |  |  | 			if (mm->get_button_mask() & BUTTON_MASK_MIDDLE) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Vector2 dragged(mm->get_relative().x, mm->get_relative().y); | 
					
						
							|  |  |  | 				scroll->set_h_scroll(scroll->get_h_scroll() - dragged.x * workspace->get_scale().x); | 
					
						
							|  |  |  | 				scroll->set_v_scroll(scroll->get_v_scroll() - dragged.y * workspace->get_scale().x); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_tool_clicked(int p_tool) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	if (p_tool == BITMASK_COPY) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		bitmask_map_copy = tileset->autotile_get_bitmask_map(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} else if (p_tool == BITMASK_PASTE) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tileset->autotile_clear_bitmask_map(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		for (Map<Vector2, uint16_t>::Element *E = bitmask_map_copy.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			tileset->autotile_set_bitmask(get_current_tile(), E->key(), E->value()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} else if (p_tool == BITMASK_CLEAR) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tileset->autotile_clear_bitmask_map(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} else if (p_tool == SHAPE_DELETE) { | 
					
						
							| 
									
										
										
										
											2017-11-30 21:50:09 -03:00
										 |  |  | 		if (creating_shape) { | 
					
						
							|  |  |  | 			creating_shape = false; | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			workspace->update(); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			switch (edit_mode) { | 
					
						
							|  |  |  | 				case EDITMODE_COLLISION: { | 
					
						
							|  |  |  | 					if (!edited_collision_shape.is_null()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						Vector<TileSet::ShapeData> sd = tileset->tile_get_shapes(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-11-30 21:50:09 -03:00
										 |  |  | 						int index; | 
					
						
							|  |  |  | 						for (int i = 0; i < sd.size(); i++) { | 
					
						
							|  |  |  | 							if (sd[i].shape == edited_collision_shape) { | 
					
						
							|  |  |  | 								index = i; | 
					
						
							|  |  |  | 								break; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						if (index >= 0) { | 
					
						
							|  |  |  | 							sd.remove(index); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							tileset->tile_set_shapes(get_current_tile(), sd); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 							edited_collision_shape = Ref<Shape2D>(); | 
					
						
							| 
									
										
										
										
											2017-11-30 21:50:09 -03:00
										 |  |  | 							current_shape.resize(0); | 
					
						
							|  |  |  | 							workspace->update(); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case EDITMODE_NAVIGATION: { | 
					
						
							|  |  |  | 					if (!edited_navigation_shape.is_null()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						tileset->autotile_set_navigation_polygon(get_current_tile(), Ref<NavigationPolygon>(), edited_shape_coord); | 
					
						
							| 
									
										
										
										
											2017-11-30 21:50:09 -03:00
										 |  |  | 						edited_navigation_shape = Ref<NavigationPolygon>(); | 
					
						
							|  |  |  | 						current_shape.resize(0); | 
					
						
							|  |  |  | 						workspace->update(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case EDITMODE_OCCLUSION: { | 
					
						
							|  |  |  | 					if (!edited_occlusion_shape.is_null()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						tileset->autotile_set_light_occluder(get_current_tile(), Ref<OccluderPolygon2D>(), edited_shape_coord); | 
					
						
							| 
									
										
										
										
											2017-11-30 21:50:09 -03:00
										 |  |  | 						edited_occlusion_shape = Ref<OccluderPolygon2D>(); | 
					
						
							|  |  |  | 						current_shape.resize(0); | 
					
						
							|  |  |  | 						workspace->update(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} break; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (p_tool == ZOOM_OUT) { | 
					
						
							|  |  |  | 		float scale = workspace->get_scale().x; | 
					
						
							|  |  |  | 		if (scale > 0.1) { | 
					
						
							|  |  |  | 			scale /= 2; | 
					
						
							|  |  |  | 			workspace->set_scale(Vector2(scale, scale)); | 
					
						
							|  |  |  | 			workspace_container->set_custom_minimum_size(preview->get_region_rect().size * scale); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (p_tool == ZOOM_1) { | 
					
						
							|  |  |  | 		workspace->set_scale(Vector2(1, 1)); | 
					
						
							|  |  |  | 		workspace_container->set_custom_minimum_size(preview->get_region_rect().size); | 
					
						
							|  |  |  | 	} else if (p_tool == ZOOM_IN) { | 
					
						
							|  |  |  | 		float scale = workspace->get_scale().x; | 
					
						
							|  |  |  | 		scale *= 2; | 
					
						
							|  |  |  | 		workspace->set_scale(Vector2(scale, scale)); | 
					
						
							|  |  |  | 		workspace_container->set_custom_minimum_size(preview->get_region_rect().size * scale); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	} else if (p_tool == TOOL_SELECT) { | 
					
						
							|  |  |  | 		if (creating_shape) { | 
					
						
							|  |  |  | 			//Cancel Creation
 | 
					
						
							|  |  |  | 			creating_shape = false; | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			workspace->update(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_priority_changed(float val) { | 
					
						
							|  |  |  | 	tileset->autotile_set_subtile_priority(get_current_tile(), edited_shape_coord, (int)val); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_on_grid_snap_toggled(bool p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	if (p_val) | 
					
						
							|  |  |  | 		hb_grid->show(); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		hb_grid->hide(); | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_step_x(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_step.x = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_step_y(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_step.y = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_off_x(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_offset.x = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_off_y(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_offset.y = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_sep_x(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_separation.x = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::_set_snap_sep_y(float p_val) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	snap_separation.y = p_val; | 
					
						
							|  |  |  | 	workspace->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::draw_highlight_tile(Vector2 coord, const Vector<Vector2> &other_highlighted) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	Vector2 size = tileset->autotile_get_size(get_current_tile()); | 
					
						
							|  |  |  | 	int spacing = tileset->autotile_get_spacing(get_current_tile()); | 
					
						
							|  |  |  | 	Rect2 region = tileset->tile_get_region(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	coord.x *= (size.x + spacing); | 
					
						
							|  |  |  | 	coord.y *= (size.y + spacing); | 
					
						
							|  |  |  | 	workspace->draw_rect(Rect2(0, 0, region.size.x, coord.y), Color(0.5, 0.5, 0.5, 0.5)); | 
					
						
							|  |  |  | 	workspace->draw_rect(Rect2(0, coord.y, coord.x, size.y), Color(0.5, 0.5, 0.5, 0.5)); | 
					
						
							|  |  |  | 	workspace->draw_rect(Rect2(coord.x + size.x, coord.y, region.size.x - coord.x - size.x, size.y), Color(0.5, 0.5, 0.5, 0.5)); | 
					
						
							|  |  |  | 	workspace->draw_rect(Rect2(0, coord.y + size.y, region.size.x, region.size.y - size.y - coord.y), Color(0.5, 0.5, 0.5, 0.5)); | 
					
						
							| 
									
										
										
										
											2018-01-17 21:07:43 -03:00
										 |  |  | 	coord += Vector2(1, 1) / workspace->get_scale().x; | 
					
						
							|  |  |  | 	workspace->draw_rect(Rect2(coord, size - Vector2(2, 2) / workspace->get_scale().x), Color(1, 0, 0), false); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	for (int i = 0; i < other_highlighted.size(); i++) { | 
					
						
							|  |  |  | 		coord = other_highlighted[i]; | 
					
						
							|  |  |  | 		coord.x *= (size.x + spacing); | 
					
						
							|  |  |  | 		coord.y *= (size.y + spacing); | 
					
						
							| 
									
										
										
										
											2018-01-17 21:07:43 -03:00
										 |  |  | 		coord += Vector2(1, 1) / workspace->get_scale().x; | 
					
						
							|  |  |  | 		workspace->draw_rect(Rect2(coord, size - Vector2(2, 2) / workspace->get_scale().x), Color(1, 0, 0), false); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::draw_grid_snap() { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	if (tools[SHAPE_GRID_SNAP]->is_pressed()) { | 
					
						
							|  |  |  | 		Color grid_color = Color(0.39, 0, 1, 0.2f); | 
					
						
							|  |  |  | 		Size2 s = workspace->get_size(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int width_count = (int)(s.width / (snap_step.x + snap_separation.x)); | 
					
						
							|  |  |  | 		int height_count = (int)(s.height / (snap_step.y + snap_separation.y)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (snap_step.x != 0) { | 
					
						
							|  |  |  | 			int last_p = 0; | 
					
						
							|  |  |  | 			for (int i = 0; i <= width_count; i++) { | 
					
						
							|  |  |  | 				if (i == 0 && snap_offset.x != 0) { | 
					
						
							|  |  |  | 					last_p = snap_offset.x; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (snap_separation.x != 0 && i != 0) { | 
					
						
							|  |  |  | 					workspace->draw_rect(Rect2(last_p, 0, snap_separation.x, s.height), grid_color); | 
					
						
							|  |  |  | 					last_p += snap_separation.x; | 
					
						
							|  |  |  | 				} else | 
					
						
							|  |  |  | 					workspace->draw_line(Point2(last_p, 0), Point2(last_p, s.height), grid_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				last_p += snap_step.x; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (snap_step.y != 0) { | 
					
						
							|  |  |  | 			int last_p = 0; | 
					
						
							|  |  |  | 			for (int i = 0; i <= height_count; i++) { | 
					
						
							|  |  |  | 				if (i == 0 && snap_offset.y != 0) { | 
					
						
							|  |  |  | 					last_p = snap_offset.y; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (snap_separation.x != 0 && i != 0) { | 
					
						
							|  |  |  | 					workspace->draw_rect(Rect2(0, last_p, s.width, snap_separation.y), grid_color); | 
					
						
							|  |  |  | 					last_p += snap_separation.y; | 
					
						
							|  |  |  | 				} else | 
					
						
							|  |  |  | 					workspace->draw_line(Point2(0, last_p), Point2(s.width, last_p), grid_color); | 
					
						
							|  |  |  | 				last_p += snap_step.y; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::draw_polygon_shapes() { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int t_id = get_current_tile(); | 
					
						
							|  |  |  | 	if (t_id < 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (edit_mode) { | 
					
						
							|  |  |  | 		case EDITMODE_COLLISION: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			Vector<TileSet::ShapeData> sd = tileset->tile_get_shapes(t_id); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			for (int i = 0; i < sd.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				Vector2 coord = Vector2(0, 0); | 
					
						
							|  |  |  | 				Vector2 anchor = Vector2(0, 0); | 
					
						
							|  |  |  | 				if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 					coord = sd[i].autotile_coord; | 
					
						
							|  |  |  | 					anchor = tileset->autotile_get_size(t_id); | 
					
						
							|  |  |  | 					anchor.x += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.y += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.x *= coord.x; | 
					
						
							|  |  |  | 					anchor.y *= coord.y; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 				Ref<ConvexPolygonShape2D> shape = sd[i].shape; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				if (shape.is_valid()) { | 
					
						
							|  |  |  | 					Color c_bg; | 
					
						
							|  |  |  | 					Color c_border; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 					if ((tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE || coord == edited_shape_coord) && sd[i].shape == edited_collision_shape) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						c_bg = Color(0, 1, 1, 0.5); | 
					
						
							|  |  |  | 						c_border = Color(0, 1, 1); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						c_bg = Color(0.9, 0.7, 0.07, 0.5); | 
					
						
							|  |  |  | 						c_border = Color(0.9, 0.7, 0.07, 1); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					Vector<Vector2> polygon; | 
					
						
							|  |  |  | 					Vector<Color> colors; | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:30 +07:00
										 |  |  | 					if (shape == edited_collision_shape && current_shape.size() > 2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							|  |  |  | 							polygon.push_back(current_shape[j]); | 
					
						
							|  |  |  | 							colors.push_back(c_bg); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 						for (int j = 0; j < shape->get_points().size(); j++) { | 
					
						
							|  |  |  | 							polygon.push_back(shape->get_points()[j] + anchor); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							colors.push_back(c_bg); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 					if (polygon.size() > 2) { | 
					
						
							|  |  |  | 						workspace->draw_polygon(polygon, colors); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 					if (coord == edited_shape_coord || tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 						for (int j = 0; j < shape->get_points().size() - 1; j++) { | 
					
						
							|  |  |  | 							workspace->draw_line(shape->get_points()[j] + anchor, shape->get_points()[j + 1] + anchor, c_border, 1, true); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						if (shape == edited_collision_shape) { | 
					
						
							|  |  |  | 							for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 								workspace->draw_circle(current_shape[j], 8 / workspace->get_scale().x, Color(1, 0, 0, 0.7f)); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case EDITMODE_OCCLUSION: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) { | 
					
						
							|  |  |  | 				Ref<OccluderPolygon2D> shape = edited_occlusion_shape; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				if (shape.is_valid()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 					Color c_bg = Color(0, 1, 1, 0.5); | 
					
						
							|  |  |  | 					Color c_border = Color(0, 1, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 					Vector<Vector2> polygon; | 
					
						
							|  |  |  | 					Vector<Color> colors; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 					for (int j = 0; j < shape->get_polygon().size(); j++) { | 
					
						
							|  |  |  | 						polygon.push_back(shape->get_polygon()[j]); | 
					
						
							|  |  |  | 						colors.push_back(c_bg); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					workspace->draw_polygon(polygon, colors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					for (int j = 0; j < shape->get_polygon().size() - 1; j++) { | 
					
						
							|  |  |  | 						workspace->draw_line(shape->get_polygon()[j], shape->get_polygon()[j + 1], c_border, 1, true); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					workspace->draw_line(shape->get_polygon()[shape->get_polygon().size() - 1], shape->get_polygon()[0], c_border, 1, true); | 
					
						
							|  |  |  | 					if (shape == edited_occlusion_shape) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							workspace->draw_circle(current_shape[j], 8 / workspace->get_scale().x, Color(1, 0, 0)); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				Map<Vector2, Ref<OccluderPolygon2D> > map = tileset->autotile_get_light_oclusion_map(t_id); | 
					
						
							|  |  |  | 				for (Map<Vector2, Ref<OccluderPolygon2D> >::Element *E = map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 					Vector2 coord = E->key(); | 
					
						
							|  |  |  | 					Vector2 anchor = tileset->autotile_get_size(t_id); | 
					
						
							|  |  |  | 					anchor.x += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.y += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.x *= coord.x; | 
					
						
							|  |  |  | 					anchor.y *= coord.y; | 
					
						
							|  |  |  | 					Ref<OccluderPolygon2D> shape = E->value(); | 
					
						
							|  |  |  | 					if (shape.is_valid()) { | 
					
						
							|  |  |  | 						Color c_bg; | 
					
						
							|  |  |  | 						Color c_border; | 
					
						
							|  |  |  | 						if (coord == edited_shape_coord && shape == edited_occlusion_shape) { | 
					
						
							|  |  |  | 							c_bg = Color(0, 1, 1, 0.5); | 
					
						
							|  |  |  | 							c_border = Color(0, 1, 1); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							c_bg = Color(0.9, 0.7, 0.07, 0.5); | 
					
						
							|  |  |  | 							c_border = Color(0.9, 0.7, 0.07, 1); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						Vector<Vector2> polygon; | 
					
						
							|  |  |  | 						Vector<Color> colors; | 
					
						
							|  |  |  | 						if (shape == edited_occlusion_shape && current_shape.size() > 2) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 								polygon.push_back(current_shape[j]); | 
					
						
							|  |  |  | 								colors.push_back(c_bg); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							for (int j = 0; j < shape->get_polygon().size(); j++) { | 
					
						
							|  |  |  | 								polygon.push_back(shape->get_polygon()[j] + anchor); | 
					
						
							|  |  |  | 								colors.push_back(c_bg); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						workspace->draw_polygon(polygon, colors); | 
					
						
							|  |  |  | 						if (coord == edited_shape_coord) { | 
					
						
							|  |  |  | 							for (int j = 0; j < shape->get_polygon().size() - 1; j++) { | 
					
						
							|  |  |  | 								workspace->draw_line(shape->get_polygon()[j] + anchor, shape->get_polygon()[j + 1] + anchor, c_border, 1, true); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							workspace->draw_line(shape->get_polygon()[shape->get_polygon().size() - 1] + anchor, shape->get_polygon()[0] + anchor, c_border, 1, true); | 
					
						
							|  |  |  | 							if (shape == edited_occlusion_shape) { | 
					
						
							|  |  |  | 								for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							|  |  |  | 									workspace->draw_circle(current_shape[j], 8 / workspace->get_scale().x, Color(1, 0, 0)); | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case EDITMODE_NAVIGATION: { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) { | 
					
						
							|  |  |  | 				Ref<NavigationPolygon> shape = edited_navigation_shape; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 				if (shape.is_valid()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 					Color c_bg = Color(0, 1, 1, 0.5); | 
					
						
							|  |  |  | 					Color c_border = Color(0, 1, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 					Vector<Vector2> polygon; | 
					
						
							|  |  |  | 					Vector<Color> colors; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					PoolVector<Vector2> vertices = shape->get_vertices(); | 
					
						
							|  |  |  | 					for (int j = 0; j < shape->get_polygon(0).size(); j++) { | 
					
						
							|  |  |  | 						polygon.push_back(vertices[shape->get_polygon(0)[j]]); | 
					
						
							|  |  |  | 						colors.push_back(c_bg); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					workspace->draw_polygon(polygon, colors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (shape->get_polygon_count() > 0) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						PoolVector<Vector2> vertices = shape->get_vertices(); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						for (int j = 0; j < shape->get_polygon(0).size() - 1; j++) { | 
					
						
							|  |  |  | 							workspace->draw_line(vertices[shape->get_polygon(0)[j]], vertices[shape->get_polygon(0)[j + 1]], c_border, 1, true); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						if (shape == edited_navigation_shape) { | 
					
						
							|  |  |  | 							for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							|  |  |  | 								workspace->draw_circle(current_shape[j], 8 / workspace->get_scale().x, Color(1, 0, 0)); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				Map<Vector2, Ref<NavigationPolygon> > map = tileset->autotile_get_navigation_map(t_id); | 
					
						
							|  |  |  | 				for (Map<Vector2, Ref<NavigationPolygon> >::Element *E = map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 					Vector2 coord = E->key(); | 
					
						
							|  |  |  | 					Vector2 anchor = tileset->autotile_get_size(t_id); | 
					
						
							|  |  |  | 					anchor.x += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.y += tileset->autotile_get_spacing(t_id); | 
					
						
							|  |  |  | 					anchor.x *= coord.x; | 
					
						
							|  |  |  | 					anchor.y *= coord.y; | 
					
						
							|  |  |  | 					Ref<NavigationPolygon> shape = E->value(); | 
					
						
							|  |  |  | 					if (shape.is_valid()) { | 
					
						
							|  |  |  | 						Color c_bg; | 
					
						
							|  |  |  | 						Color c_border; | 
					
						
							|  |  |  | 						if (coord == edited_shape_coord && shape == edited_navigation_shape) { | 
					
						
							|  |  |  | 							c_bg = Color(0, 1, 1, 0.5); | 
					
						
							|  |  |  | 							c_border = Color(0, 1, 1); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							c_bg = Color(0.9, 0.7, 0.07, 0.5); | 
					
						
							|  |  |  | 							c_border = Color(0.9, 0.7, 0.07, 1); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						Vector<Vector2> polygon; | 
					
						
							|  |  |  | 						Vector<Color> colors; | 
					
						
							|  |  |  | 						if (shape == edited_navigation_shape && current_shape.size() > 2) { | 
					
						
							|  |  |  | 							for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							|  |  |  | 								polygon.push_back(current_shape[j]); | 
					
						
							|  |  |  | 								colors.push_back(c_bg); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} else if (shape->get_polygon_count() > 0) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							PoolVector<Vector2> vertices = shape->get_vertices(); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 							for (int j = 0; j < shape->get_polygon(0).size(); j++) { | 
					
						
							|  |  |  | 								polygon.push_back(vertices[shape->get_polygon(0)[j]] + anchor); | 
					
						
							|  |  |  | 								colors.push_back(c_bg); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 						} | 
					
						
							|  |  |  | 						workspace->draw_polygon(polygon, colors); | 
					
						
							|  |  |  | 						if (coord == edited_shape_coord) { | 
					
						
							|  |  |  | 							if (shape->get_polygon_count() > 0) { | 
					
						
							|  |  |  | 								PoolVector<Vector2> vertices = shape->get_vertices(); | 
					
						
							|  |  |  | 								for (int j = 0; j < shape->get_polygon(0).size() - 1; j++) { | 
					
						
							|  |  |  | 									workspace->draw_line(vertices[shape->get_polygon(0)[j]] + anchor, vertices[shape->get_polygon(0)[j + 1]] + anchor, c_border, 1, true); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 								if (shape == edited_navigation_shape) { | 
					
						
							|  |  |  | 									for (int j = 0; j < current_shape.size(); j++) { | 
					
						
							|  |  |  | 										workspace->draw_circle(current_shape[j], 8 / workspace->get_scale().x, Color(1, 0, 0)); | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (creating_shape) { | 
					
						
							|  |  |  | 		for (int j = 0; j < current_shape.size() - 1; j++) { | 
					
						
							|  |  |  | 			workspace->draw_line(current_shape[j], current_shape[j + 1], Color(0, 1, 1), 1, true); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		workspace->draw_line(current_shape[current_shape.size() - 1], snap_point(workspace->get_local_mouse_position()), Color(0, 1, 1), 1, true); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::close_shape(const Vector2 &shape_anchor) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	creating_shape = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (edit_mode == EDITMODE_COLLISION) { | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 		if (current_shape.size() >= 3) { | 
					
						
							|  |  |  | 			Ref<ConvexPolygonShape2D> shape = memnew(ConvexPolygonShape2D); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 			Vector<Vector2> segments; | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 			float p_total = 0; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 			for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 				segments.push_back(current_shape[i] - shape_anchor); | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (i != current_shape.size() - 1) | 
					
						
							|  |  |  | 					p_total += ((current_shape[i + 1].x - current_shape[i].x) * (-current_shape[i + 1].y + (-current_shape[i].y))); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					p_total += ((current_shape[0].x - current_shape[i].x) * (-current_shape[0].y + (-current_shape[i].y))); | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-30 12:34:33 +07:00
										 |  |  | 			if (p_total < 0) | 
					
						
							|  |  |  | 				segments.invert(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 			shape->set_points(segments); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 			if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) | 
					
						
							|  |  |  | 				tileset->tile_add_shape(get_current_tile(), shape, Transform2D(), false, edited_shape_coord); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				tileset->tile_set_shape(get_current_tile(), 0, shape); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 			edited_collision_shape = shape; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		tools[TOOL_SELECT]->set_pressed(true); | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} else if (edit_mode == EDITMODE_OCCLUSION) { | 
					
						
							|  |  |  | 		Ref<OccluderPolygon2D> shape = memnew(OccluderPolygon2D); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PoolVector<Vector2> polygon; | 
					
						
							|  |  |  | 		polygon.resize(current_shape.size()); | 
					
						
							|  |  |  | 		PoolVector<Vector2>::Write w = polygon.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 			w[i] = current_shape[i] - shape_anchor; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w = PoolVector<Vector2>::Write(); | 
					
						
							|  |  |  | 		shape->set_polygon(polygon); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) | 
					
						
							|  |  |  | 			tileset->autotile_set_light_occluder(get_current_tile(), shape, edited_shape_coord); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			tileset->tile_set_light_occluder(get_current_tile(), shape); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		edited_occlusion_shape = shape; | 
					
						
							|  |  |  | 		tools[TOOL_SELECT]->set_pressed(true); | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} else if (edit_mode == EDITMODE_NAVIGATION) { | 
					
						
							|  |  |  | 		Ref<NavigationPolygon> shape = memnew(NavigationPolygon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PoolVector<Vector2> polygon; | 
					
						
							|  |  |  | 		Vector<int> indices; | 
					
						
							|  |  |  | 		polygon.resize(current_shape.size()); | 
					
						
							|  |  |  | 		PoolVector<Vector2>::Write w = polygon.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < current_shape.size(); i++) { | 
					
						
							|  |  |  | 			w[i] = current_shape[i] - shape_anchor; | 
					
						
							|  |  |  | 			indices.push_back(i); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w = PoolVector<Vector2>::Write(); | 
					
						
							|  |  |  | 		shape->set_vertices(polygon); | 
					
						
							|  |  |  | 		shape->add_polygon(indices); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::AUTO_TILE) | 
					
						
							|  |  |  | 			tileset->autotile_set_navigation_polygon(get_current_tile(), shape, edited_shape_coord); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			tileset->tile_set_navigation_polygon(get_current_tile(), shape); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		edited_navigation_shape = shape; | 
					
						
							|  |  |  | 		tools[TOOL_SELECT]->set_pressed(true); | 
					
						
							|  |  |  | 		workspace->update(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tileset->_change_notify(""); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::select_coord(const Vector2 &coord) { | 
					
						
							|  |  |  | 	current_shape = PoolVector2Array(); | 
					
						
							|  |  |  | 	if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) { | 
					
						
							|  |  |  | 		if (edited_collision_shape != tileset->tile_get_shape(get_current_tile(), 0)) | 
					
						
							|  |  |  | 			edited_collision_shape = tileset->tile_get_shape(get_current_tile(), 0); | 
					
						
							|  |  |  | 		if (edited_occlusion_shape != tileset->tile_get_light_occluder(get_current_tile())) | 
					
						
							|  |  |  | 			edited_occlusion_shape = tileset->tile_get_light_occluder(get_current_tile()); | 
					
						
							|  |  |  | 		if (edited_navigation_shape != tileset->tile_get_navigation_polygon(get_current_tile())) | 
					
						
							|  |  |  | 			edited_navigation_shape = tileset->tile_get_navigation_polygon(get_current_tile()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (edit_mode == EDITMODE_COLLISION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_collision_shape.is_valid()) { | 
					
						
							|  |  |  | 				for (int i = 0; i < edited_collision_shape->get_points().size(); i++) { | 
					
						
							|  |  |  | 					current_shape.push_back(edited_collision_shape->get_points()[i]); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:30 +07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		} else if (edit_mode == EDITMODE_OCCLUSION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_occlusion_shape.is_valid()) { | 
					
						
							|  |  |  | 				for (int i = 0; i < edited_occlusion_shape->get_polygon().size(); i++) { | 
					
						
							|  |  |  | 					current_shape.push_back(edited_occlusion_shape->get_polygon()[i]); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (edit_mode == EDITMODE_NAVIGATION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_navigation_shape.is_valid()) { | 
					
						
							|  |  |  | 				if (edited_navigation_shape->get_polygon_count() > 0) { | 
					
						
							|  |  |  | 					PoolVector<Vector2> vertices = edited_navigation_shape->get_vertices(); | 
					
						
							|  |  |  | 					for (int i = 0; i < edited_navigation_shape->get_polygon(0).size(); i++) { | 
					
						
							|  |  |  | 						current_shape.push_back(vertices[edited_navigation_shape->get_polygon(0)[i]]); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:30 +07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		int spacing = tileset->autotile_get_spacing(get_current_tile()); | 
					
						
							|  |  |  | 		Vector2 size = tileset->autotile_get_size(get_current_tile()); | 
					
						
							|  |  |  | 		Vector2 shape_anchor = coord; | 
					
						
							|  |  |  | 		shape_anchor.x *= (size.x + spacing); | 
					
						
							|  |  |  | 		shape_anchor.y *= (size.y + spacing); | 
					
						
							|  |  |  | 		if (edit_mode == EDITMODE_COLLISION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_collision_shape.is_valid()) { | 
					
						
							|  |  |  | 				for (int j = 0; j < edited_collision_shape->get_points().size(); j++) { | 
					
						
							|  |  |  | 					current_shape.push_back(edited_collision_shape->get_points()[j] + shape_anchor); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (edit_mode == EDITMODE_OCCLUSION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_occlusion_shape.is_valid()) { | 
					
						
							|  |  |  | 				for (int i = 0; i < edited_occlusion_shape->get_polygon().size(); i++) { | 
					
						
							|  |  |  | 					current_shape.push_back(edited_occlusion_shape->get_polygon()[i] + shape_anchor); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (edit_mode == EDITMODE_NAVIGATION) { | 
					
						
							|  |  |  | 			current_shape.resize(0); | 
					
						
							|  |  |  | 			if (edited_navigation_shape.is_valid()) { | 
					
						
							|  |  |  | 				if (edited_navigation_shape->get_polygon_count() > 0) { | 
					
						
							|  |  |  | 					PoolVector<Vector2> vertices = edited_navigation_shape->get_vertices(); | 
					
						
							|  |  |  | 					for (int i = 0; i < edited_navigation_shape->get_polygon(0).size(); i++) { | 
					
						
							|  |  |  | 						current_shape.push_back(vertices[edited_navigation_shape->get_polygon(0)[i]] + shape_anchor); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:30 +07:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | Vector2 TileSetEditor::snap_point(const Vector2 &point) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	Vector2 p = point; | 
					
						
							|  |  |  | 	Vector2 coord = edited_shape_coord; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	Vector2 tile_size = tileset->autotile_get_size(get_current_tile()); | 
					
						
							|  |  |  | 	int spacing = tileset->autotile_get_spacing(get_current_tile()); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	Vector2 anchor = coord; | 
					
						
							|  |  |  | 	anchor.x *= (tile_size.x + spacing); | 
					
						
							|  |  |  | 	anchor.y *= (tile_size.y + spacing); | 
					
						
							|  |  |  | 	Rect2 region(anchor, tile_size); | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) | 
					
						
							|  |  |  | 		region.position = Point2(0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 12:57:37 +07:00
										 |  |  | 	if (tools[SHAPE_GRID_SNAP]->is_pressed()) { | 
					
						
							|  |  |  | 		p.x = Math::snap_scalar_seperation(snap_offset.x, snap_step.x, p.x, snap_separation.x); | 
					
						
							|  |  |  | 		p.y = Math::snap_scalar_seperation(snap_offset.y, snap_step.y, p.y, snap_separation.y); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	if (tools[SHAPE_KEEP_INSIDE_TILE]->is_pressed()) { | 
					
						
							|  |  |  | 		if (p.x < region.position.x) | 
					
						
							|  |  |  | 			p.x = region.position.x; | 
					
						
							|  |  |  | 		if (p.y < region.position.y) | 
					
						
							|  |  |  | 			p.y = region.position.y; | 
					
						
							|  |  |  | 		if (p.x > region.position.x + region.size.x) | 
					
						
							|  |  |  | 			p.x = region.position.x + region.size.x; | 
					
						
							|  |  |  | 		if (p.y > region.position.y + region.size.y) | 
					
						
							|  |  |  | 			p.y = region.position.y + region.size.y; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return p; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::update_tile_list() { | 
					
						
							|  |  |  | 	int selected_tile = get_current_tile(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (selected_tile < 0) | 
					
						
							|  |  |  | 		selected_tile = 0; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	helper->set_tileset(tileset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tile_list->clear(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	List<int> ids; | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tileset->get_tile_list(&ids); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	for (List<int>::Element *E = ids.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tile_list->add_item(tileset->tile_get_name(E->get())); | 
					
						
							|  |  |  | 		tile_list->set_item_metadata(tile_list->get_item_count() - 1, E->get()); | 
					
						
							|  |  |  | 		tile_list->set_item_icon(tile_list->get_item_count() - 1, tileset->tile_get_texture(E->get())); | 
					
						
							|  |  |  | 		Rect2 region = tileset->tile_get_region(E->get()); | 
					
						
							|  |  |  | 		if (tileset->tile_get_tile_mode(E->get()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 			region.size = tileset->autotile_get_size(E->get()); | 
					
						
							|  |  |  | 			Vector2 pos = tileset->autotile_get_icon_coordinate(E->get()); | 
					
						
							|  |  |  | 			pos.x *= (tileset->autotile_get_spacing(E->get()) + region.size.x); | 
					
						
							|  |  |  | 			pos.y *= (tileset->autotile_get_spacing(E->get()) + region.size.y); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 			region.position += pos; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tile_list->set_item_icon_region(tile_list->get_item_count() - 1, region); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (tile_list->get_item_count() > 0 && selected_tile < tile_list->get_item_count()) { | 
					
						
							|  |  |  | 		tile_list->select(selected_tile); | 
					
						
							|  |  |  | 		_on_tile_list_selected(selected_tile); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	helper->_change_notify(""); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditor::update_tile_list_icon() { | 
					
						
							|  |  |  | 	List<int> ids; | 
					
						
							|  |  |  | 	tileset->get_tile_list(&ids); | 
					
						
							|  |  |  | 	int current_idx = 0; | 
					
						
							|  |  |  | 	for (List<int>::Element *E = ids.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		if (current_idx >= tile_list->get_item_count()) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Rect2 region = tileset->tile_get_region(E->get()); | 
					
						
							|  |  |  | 		if (tileset->tile_get_tile_mode(E->get()) == TileSet::AUTO_TILE) { | 
					
						
							|  |  |  | 			region.size = tileset->autotile_get_size(E->get()); | 
					
						
							|  |  |  | 			Vector2 pos = tileset->autotile_get_icon_coordinate(E->get()); | 
					
						
							|  |  |  | 			pos.x *= (tileset->autotile_get_spacing(E->get()) + region.size.x); | 
					
						
							|  |  |  | 			pos.y *= (tileset->autotile_get_spacing(E->get()) + region.size.y); | 
					
						
							|  |  |  | 			region.position += pos; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		tile_list->set_item_metadata(current_idx, E->get()); | 
					
						
							|  |  |  | 		tile_list->set_item_icon(current_idx, tileset->tile_get_texture(E->get())); | 
					
						
							|  |  |  | 		tile_list->set_item_icon_region(current_idx, region); | 
					
						
							|  |  |  | 		tile_list->set_item_text(current_idx, tileset->tile_get_name(E->get())); | 
					
						
							|  |  |  | 		current_idx += 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	tile_list->update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TileSetEditor::update_workspace_tile_mode() { | 
					
						
							|  |  |  | 	if (get_current_tile() < 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	if (tileset->tile_get_tile_mode(get_current_tile()) == TileSet::SINGLE_TILE) { | 
					
						
							|  |  |  | 		if (tool_editmode[EDITMODE_ICON]->is_pressed() || tool_editmode[EDITMODE_PRIORITY]->is_pressed() || tool_editmode[EDITMODE_BITMASK]->is_pressed()) { | 
					
						
							|  |  |  | 			tool_editmode[EDITMODE_COLLISION]->set_pressed(true); | 
					
						
							|  |  |  | 			_on_edit_mode_changed(EDITMODE_COLLISION); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			select_coord(Vector2(0, 0)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_ICON]->hide(); | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_BITMASK]->hide(); | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_PRIORITY]->hide(); | 
					
						
							|  |  |  | 		property_editor->hide(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_ICON]->show(); | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_BITMASK]->show(); | 
					
						
							|  |  |  | 		tool_editmode[EDITMODE_PRIORITY]->show(); | 
					
						
							|  |  |  | 		property_editor->show(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | int TileSetEditor::get_current_tile() { | 
					
						
							|  |  |  | 	if (tile_list->get_selected_items().size() == 0) | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		return tile_list->get_item_metadata(tile_list->get_selected_items()[0]); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditorHelper::set_tileset(const Ref<TileSet> &p_tileset) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	tileset = p_tileset; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | bool TileSetEditorHelper::_set(const StringName &p_name, const Variant &p_value) { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (selected_tile < 0 || tileset.is_null()) | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name = p_name.operator String(); | 
					
						
							|  |  |  | 	bool v = false; | 
					
						
							|  |  |  | 	if (name == "bitmask_mode") { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tileset->set(String::num(selected_tile, 0) + "/autotile/bitmask_mode", p_value, &v); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} else if (name.left(7) == "layout/") { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tileset->set(String::num(selected_tile, 0) + "/autotile" + name.right(6), p_value, &v); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (v) { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		tileset->_change_notify("autotile"); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | bool TileSetEditorHelper::_get(const StringName &p_name, Variant &r_ret) const { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (selected_tile < 0 || tileset.is_null()) | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name = p_name.operator String(); | 
					
						
							| 
									
										
										
										
											2017-12-17 16:03:46 -02:00
										 |  |  | 	bool v = false; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	if (name == "bitmask_mode") { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		r_ret = tileset->get(String::num(selected_tile, 0) + "/autotile/bitmask_mode", &v); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} else if (name.left(7) == "layout/") { | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 		r_ret = tileset->get(String::num(selected_tile, 0) + "/autotile" + name.right(6), &v); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-17 16:03:46 -02:00
										 |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | void TileSetEditorHelper::_get_property_list(List<PropertyInfo> *p_list) const { | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	if (selected_tile < 0 || tileset.is_null()) | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p_list->push_back(PropertyInfo(Variant::INT, "bitmask_mode", PROPERTY_HINT_ENUM, "2x2,3x3")); | 
					
						
							|  |  |  | 	p_list->push_back(PropertyInfo(Variant::VECTOR2, "layout/tile_size")); | 
					
						
							|  |  |  | 	p_list->push_back(PropertyInfo(Variant::INT, "layout/spacing", PROPERTY_HINT_RANGE, "0,256,1")); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | TileSetEditorHelper::TileSetEditorHelper(TileSetEditor *p_tileset_editor) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tileset_editor = p_tileset_editor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TileSetEditorPlugin::edit(Object *p_node) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (Object::cast_to<TileSet>(p_node)) { | 
					
						
							|  |  |  | 		tileset_editor->edit(Object::cast_to<TileSet>(p_node)); | 
					
						
							|  |  |  | 		tileset_editor->show(); | 
					
						
							|  |  |  | 		tileset_editor->texture_region_editor->edit(p_node); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		tileset_editor->hide(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TileSetEditorPlugin::handles(Object *p_node) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return p_node->is_class("TileSet"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TileSetEditorPlugin::make_visible(bool p_visible) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_visible) { | 
					
						
							|  |  |  | 		tileset_editor->show(); | 
					
						
							|  |  |  | 		tileset_editor->menu->show(); | 
					
						
							|  |  |  | 		tileset_editor_button->show(); | 
					
						
							|  |  |  | 		tileset_editor->side_panel->show(); | 
					
						
							|  |  |  | 		if (tileset_editor_button->is_pressed()) { | 
					
						
							|  |  |  | 			tileset_editor->bottom_panel->show(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		texture_region_button->show(); | 
					
						
							|  |  |  | 		if (texture_region_button->is_pressed()) | 
					
						
							|  |  |  | 			tileset_editor->texture_region_editor->show(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		tileset_editor->hide(); | 
					
						
							|  |  |  | 		tileset_editor->menu->hide(); | 
					
						
							|  |  |  | 		tileset_editor->side_panel->hide(); | 
					
						
							|  |  |  | 		tileset_editor->bottom_panel->hide(); | 
					
						
							|  |  |  | 		tileset_editor_button->hide(); | 
					
						
							|  |  |  | 		texture_region_button->hide(); | 
					
						
							|  |  |  | 		tileset_editor->texture_region_editor->hide(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TileSetEditorPlugin::TileSetEditorPlugin(EditorNode *p_node) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tileset_editor = memnew(TileSetEditor(p_node)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	add_control_to_container(CONTAINER_CANVAS_EDITOR_MENU, tileset_editor); | 
					
						
							|  |  |  | 	tileset_editor->set_anchors_and_margins_preset(Control::PRESET_TOP_WIDE); | 
					
						
							|  |  |  | 	tileset_editor->set_end(Point2(0, 22)); | 
					
						
							|  |  |  | 	tileset_editor->hide(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tileset_editor->texture_region_editor = memnew(TextureRegionEditor(p_node)); | 
					
						
							|  |  |  | 	texture_region_button = p_node->add_bottom_panel_item(TTR("Texture Region"), tileset_editor->texture_region_editor); | 
					
						
							|  |  |  | 	texture_region_button->set_tooltip(TTR("Texture Region Editor")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tileset_editor->texture_region_editor->set_custom_minimum_size(Size2(0, 200)); | 
					
						
							|  |  |  | 	tileset_editor->texture_region_editor->hide(); | 
					
						
							|  |  |  | 	texture_region_button->hide(); | 
					
						
							| 
									
										
										
										
											2017-10-21 22:42:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 18:08:44 +07:00
										 |  |  | 	add_control_to_container(CONTAINER_CANVAS_EDITOR_SIDE, tileset_editor->side_panel); | 
					
						
							|  |  |  | 	tileset_editor->side_panel->set_anchors_and_margins_preset(Control::PRESET_WIDE); | 
					
						
							|  |  |  | 	tileset_editor->side_panel->set_custom_minimum_size(Size2(200, 0)); | 
					
						
							|  |  |  | 	tileset_editor->side_panel->hide(); | 
					
						
							|  |  |  | 	tileset_editor_button = p_node->add_bottom_panel_item(TTR("Tile Set"), tileset_editor->bottom_panel); | 
					
						
							|  |  |  | 	tileset_editor_button->hide(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |