2019-08-04 09:57:42 +02:00
|
|
|
tool
|
|
|
|
extends Control
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
enum Tools {
|
|
|
|
PAINT,
|
|
|
|
BRUSH,
|
|
|
|
BUCKET,
|
|
|
|
RAINBOW,
|
|
|
|
LINE,
|
|
|
|
RECT,
|
|
|
|
DARKEN,
|
|
|
|
BRIGHTEN
|
|
|
|
COLORPICKER,
|
|
|
|
CUT,
|
|
|
|
}
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
var layer_buttons: Control
|
2020-10-25 18:39:10 +01:00
|
|
|
var paint_canvas_container_node
|
2020-10-27 20:18:11 +01:00
|
|
|
var paint_canvas: GECanvas
|
2020-10-30 12:32:04 +01:00
|
|
|
var canvas_background: TextureRect
|
2020-10-25 18:39:10 +01:00
|
|
|
var grids_node
|
|
|
|
var colors_grid
|
2019-11-23 12:33:43 +01:00
|
|
|
var selected_color = Color(1, 1, 1, 1)
|
|
|
|
var util = preload("res://addons/graphics_editor/Util.gd")
|
2020-10-25 18:39:10 +01:00
|
|
|
var textinfo
|
2019-08-04 09:57:42 +02:00
|
|
|
var allow_drawing = true
|
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
var mouse_in_region = false
|
|
|
|
var mouse_on_top = false
|
2019-11-23 12:33:43 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
|
|
|
|
var _middle_mouse_pressed_pos = null
|
|
|
|
var _middle_mouse_pressed_start_pos = null
|
2020-10-25 18:39:10 +01:00
|
|
|
var _left_mouse_pressed_start_pos = Vector2()
|
|
|
|
var _previous_tool
|
|
|
|
|
|
|
|
var _layer_button_ref = {}
|
|
|
|
|
|
|
|
var _total_added_layers = 1
|
|
|
|
|
|
|
|
var selected_brush_prefab = 0
|
|
|
|
var _last_drawn_pixel = Vector2.ZERO
|
|
|
|
var _last_preview_draw_cell_pos = Vector2.ZERO
|
2020-10-27 20:18:11 +01:00
|
|
|
|
|
|
|
var _selection_cells = []
|
|
|
|
var _selection_colors = []
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
var _just_cut = false
|
|
|
|
var _show_cut = false
|
|
|
|
var _cut_pos = Vector2.ZERO
|
|
|
|
var _cut_size = Vector2.ZERO
|
|
|
|
|
|
|
|
var _actions_history = [] # for undo
|
|
|
|
var _redo_history = []
|
2020-10-26 17:01:31 +01:00
|
|
|
var _current_action
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func _enter_tree():
|
|
|
|
#--------------------
|
|
|
|
#Setup nodes
|
|
|
|
#--------------------
|
|
|
|
paint_canvas_container_node = find_node("PaintCanvasContainer")
|
|
|
|
textinfo = find_node("DebugTextDisplay")
|
|
|
|
selected_color = find_node("ColorPicker").color
|
|
|
|
colors_grid = find_node("Colors")
|
2020-10-30 12:32:04 +01:00
|
|
|
paint_canvas = paint_canvas_container_node.find_node("Canvas")
|
2020-10-27 20:18:11 +01:00
|
|
|
layer_buttons = find_node("LayerButtons")
|
2020-10-30 12:32:04 +01:00
|
|
|
canvas_background = find_node("CanvasBackground")
|
2020-10-27 20:18:11 +01:00
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
set_process(true)
|
|
|
|
|
|
|
|
#--------------------
|
|
|
|
#connect nodes
|
|
|
|
#--------------------
|
|
|
|
if not colors_grid.is_connected("color_change_request", self, "change_color"):
|
|
|
|
colors_grid.connect("color_change_request", self, "change_color")
|
|
|
|
|
|
|
|
if not is_connected("visibility_changed", self, "_on_Editor_visibility_changed"):
|
|
|
|
connect("visibility_changed", self, "_on_Editor_visibility_changed")
|
2019-11-23 12:33:43 +01:00
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
func _ready():
|
2020-10-26 20:31:41 +01:00
|
|
|
set_brush(Tools.PAINT)
|
2020-10-27 20:18:11 +01:00
|
|
|
_layer_button_ref[layer_buttons.get_child(0).name] = layer_buttons.get_child(0) #ugly
|
|
|
|
_connect_layer_buttons()
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func _input(event):
|
2020-10-30 12:32:04 +01:00
|
|
|
if not Engine.is_editor_hint():
|
|
|
|
return
|
|
|
|
if Rect2(Vector2(), paint_canvas_container_node.rect_size).has_point(
|
|
|
|
paint_canvas_container_node.get_local_mouse_position()):
|
|
|
|
mouse_in_region = true
|
|
|
|
elif mouse_in_region:
|
|
|
|
mouse_in_region = false
|
|
|
|
|
|
|
|
if not mouse_on_top or not mouse_in_region:
|
|
|
|
return
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
if Input.is_key_pressed(KEY_Z):
|
2020-10-26 17:01:31 +01:00
|
|
|
undo_action()
|
2020-10-25 18:39:10 +01:00
|
|
|
elif Input.is_key_pressed(KEY_Y):
|
2020-10-30 12:32:04 +01:00
|
|
|
pass
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
_handle_zoom(event)
|
|
|
|
|
|
|
|
if paint_canvas and (paint_canvas.mouse_in_region and paint_canvas.mouse_on_top):
|
2020-10-27 20:18:11 +01:00
|
|
|
match brush_mode:
|
|
|
|
Tools.BUCKET:
|
|
|
|
if _current_action == null:
|
|
|
|
_current_action = get_action()
|
|
|
|
if event is InputEventMouseButton:
|
|
|
|
if event.button_index == BUTTON_LEFT:
|
|
|
|
if event.pressed:
|
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2020-10-26 20:31:41 +01:00
|
|
|
var brush_mode
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
var mouse_position = Vector2()
|
|
|
|
var canvas_position = Vector2()
|
|
|
|
var canvas_mouse_position = Vector2()
|
|
|
|
var cell_mouse_position = Vector2()
|
|
|
|
var cell_color = Color()
|
|
|
|
|
|
|
|
var last_mouse_position = Vector2()
|
|
|
|
var last_canvas_position = Vector2()
|
|
|
|
var last_canvas_mouse_position = Vector2()
|
|
|
|
var last_cell_mouse_position = Vector2()
|
|
|
|
var last_cell_color = Color()
|
2019-11-23 12:33:43 +01:00
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
# warning-ignore:unused_argument
|
|
|
|
func _process(delta):
|
2020-10-30 12:32:04 +01:00
|
|
|
if not Engine.is_editor_hint():
|
|
|
|
return
|
|
|
|
if not mouse_on_top or not mouse_in_region:
|
|
|
|
return
|
2020-10-25 18:39:10 +01:00
|
|
|
update_text_info()
|
2019-08-04 09:57:42 +02:00
|
|
|
#It's a lot more easier to just keep updating the variables in here than just have a bunch of local variables
|
|
|
|
#in every update function and make it very messy
|
2020-10-26 17:01:31 +01:00
|
|
|
if paint_canvas == null:
|
2020-10-25 18:39:10 +01:00
|
|
|
#_check_variables()
|
|
|
|
set_process(false)
|
|
|
|
return
|
2019-11-23 12:33:43 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
|
|
|
|
if mouse_on_top and mouse_in_region:
|
|
|
|
_handle_scroll()
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
#Update commonly used variables
|
2020-10-26 17:01:31 +01:00
|
|
|
var grid_size = paint_canvas.pixel_size
|
|
|
|
mouse_position = paint_canvas.get_local_mouse_position()
|
2020-10-25 18:39:10 +01:00
|
|
|
canvas_position = paint_canvas_container_node.rect_position
|
|
|
|
canvas_mouse_position = Vector2(mouse_position.x - canvas_position.x, mouse_position.y - canvas_position.y)
|
|
|
|
cell_mouse_position = Vector2(floor(canvas_mouse_position.x / grid_size), floor(canvas_mouse_position.y / grid_size))
|
2020-10-26 17:01:31 +01:00
|
|
|
cell_color = paint_canvas.get_pixel(cell_mouse_position.x, cell_mouse_position.y)
|
2019-08-04 09:57:42 +02:00
|
|
|
|
2020-10-26 17:01:31 +01:00
|
|
|
if (paint_canvas.mouse_in_region and paint_canvas.mouse_on_top):
|
2019-08-04 09:57:42 +02:00
|
|
|
brush_process()
|
|
|
|
|
|
|
|
#Render the highlighting stuff
|
2020-10-30 12:32:04 +01:00
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
#Canvas Shift Moving
|
2020-10-25 18:39:10 +01:00
|
|
|
if not mouse_position == last_mouse_position:
|
2020-10-26 17:01:31 +01:00
|
|
|
if paint_canvas.has_focus():
|
2020-10-25 18:39:10 +01:00
|
|
|
if Input.is_key_pressed(KEY_SHIFT):
|
|
|
|
if Input.is_mouse_button_pressed(BUTTON_LEFT):
|
2019-08-04 09:57:42 +02:00
|
|
|
var relative = mouse_position - last_mouse_position
|
2020-10-26 17:01:31 +01:00
|
|
|
paint_canvas.rect_position += relative
|
2019-08-04 09:57:42 +02:00
|
|
|
allow_drawing = false
|
|
|
|
else:
|
|
|
|
allow_drawing = true
|
|
|
|
|
|
|
|
#Update last variables with the current variables
|
2020-10-25 18:39:10 +01:00
|
|
|
last_mouse_position = mouse_position
|
|
|
|
last_canvas_position = canvas_position
|
|
|
|
last_canvas_mouse_position = canvas_mouse_position
|
|
|
|
last_cell_mouse_position = cell_mouse_position
|
|
|
|
last_cell_color = cell_color
|
|
|
|
|
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
func _handle_scroll():
|
|
|
|
if Input.is_mouse_button_pressed(BUTTON_MIDDLE):
|
|
|
|
if _middle_mouse_pressed_start_pos == null:
|
|
|
|
_middle_mouse_pressed_start_pos = paint_canvas.rect_position
|
|
|
|
_middle_mouse_pressed_pos = get_global_mouse_position()
|
|
|
|
|
|
|
|
paint_canvas.rect_position = _middle_mouse_pressed_start_pos
|
|
|
|
paint_canvas.rect_position += get_global_mouse_position() - _middle_mouse_pressed_pos
|
|
|
|
|
|
|
|
elif _middle_mouse_pressed_start_pos != null:
|
|
|
|
_middle_mouse_pressed_start_pos = null
|
|
|
|
|
|
|
|
|
|
|
|
const max_zoom_out = 1
|
|
|
|
const max_zoom_in = 50
|
|
|
|
|
|
|
|
func _handle_zoom(event):
|
|
|
|
if not event is InputEventMouseButton:
|
|
|
|
return
|
|
|
|
if event.is_pressed():
|
|
|
|
if event.button_index == BUTTON_WHEEL_UP:
|
|
|
|
paint_canvas.set_pixel_size(min(paint_canvas.pixel_size * 2, max_zoom_in))
|
|
|
|
return
|
|
|
|
if paint_canvas.pixel_size != max_zoom_in:
|
|
|
|
paint_canvas.rect_global_position -= Vector2(
|
|
|
|
paint_canvas.canvas_width / 2,
|
|
|
|
paint_canvas.canvas_height / 2)
|
|
|
|
elif event.button_index == BUTTON_WHEEL_DOWN:
|
|
|
|
paint_canvas.set_pixel_size(max(paint_canvas.pixel_size / 2.0, max_zoom_out))
|
|
|
|
return
|
|
|
|
if paint_canvas.pixel_size != max_zoom_out:
|
|
|
|
paint_canvas.rect_global_position += Vector2(
|
|
|
|
paint_canvas.canvas_width / 2,
|
|
|
|
paint_canvas.canvas_height / 2)
|
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
func _reset_cut_tool():
|
|
|
|
_just_cut = false
|
|
|
|
_show_cut = false
|
|
|
|
_selection_cells.clear()
|
|
|
|
_selection_colors.clear()
|
|
|
|
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
func _handle_cut():
|
|
|
|
if Input.is_mouse_button_pressed(BUTTON_RIGHT):
|
2020-10-26 17:01:31 +01:00
|
|
|
paint_canvas.clear_preview_layer()
|
2020-10-27 20:18:11 +01:00
|
|
|
_reset_cut_tool()
|
|
|
|
set_brush(_previous_tool)
|
2020-10-25 18:39:10 +01:00
|
|
|
return
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
if Input.is_mouse_button_pressed(BUTTON_LEFT):
|
|
|
|
for pixel_pos in GEUtils.get_pixels_in_line(cell_mouse_position, last_cell_mouse_position):
|
|
|
|
for idx in range(_selection_cells.size()):
|
|
|
|
var pixel = _selection_cells[idx]
|
|
|
|
var color = _selection_colors[idx]
|
|
|
|
pixel -= _cut_pos
|
|
|
|
pixel += pixel_pos
|
|
|
|
paint_canvas.set_pixel_v(pixel, color)
|
2020-10-25 18:39:10 +01:00
|
|
|
else:
|
|
|
|
if _last_preview_draw_cell_pos == cell_mouse_position:
|
|
|
|
return
|
2020-10-26 17:01:31 +01:00
|
|
|
paint_canvas.clear_preview_layer()
|
2020-10-27 20:18:11 +01:00
|
|
|
for idx in range(_selection_cells.size()):
|
|
|
|
var pixel = _selection_cells[idx]
|
|
|
|
var color = _selection_colors[idx]
|
|
|
|
pixel -= _cut_pos
|
|
|
|
pixel += cell_mouse_position
|
|
|
|
paint_canvas.set_preview_pixel_v(pixel, color)
|
2020-10-25 18:39:10 +01:00
|
|
|
_last_preview_draw_cell_pos = cell_mouse_position
|
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
func brush_process():
|
2020-10-25 18:39:10 +01:00
|
|
|
if _just_cut:
|
|
|
|
_handle_cut()
|
2020-10-30 12:32:04 +01:00
|
|
|
update()
|
|
|
|
paint_canvas.update()
|
2020-10-25 18:39:10 +01:00
|
|
|
return
|
2020-10-26 17:01:31 +01:00
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
if Input.is_mouse_button_pressed(BUTTON_LEFT):
|
2020-10-30 12:32:04 +01:00
|
|
|
update()
|
|
|
|
paint_canvas.update()
|
2020-10-26 20:31:41 +01:00
|
|
|
if _current_action == null:
|
|
|
|
_current_action = get_action()
|
|
|
|
|
|
|
|
match brush_mode:
|
|
|
|
Tools.PAINT:
|
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
|
|
|
Tools.BRUSH:
|
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color, selected_brush_prefab])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.LINE:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.RECT:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.DARKEN:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.BRIGHTEN:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.COLORPICKER:
|
2020-10-27 20:18:11 +01:00
|
|
|
change_color(paint_canvas.get_pixel(cell_mouse_position.x, cell_mouse_position.y))
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.CUT:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, selected_color])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.RAINBOW:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position])
|
2020-10-26 17:01:31 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
elif Input.is_mouse_button_pressed(BUTTON_RIGHT):
|
|
|
|
update()
|
|
|
|
paint_canvas.update()
|
2020-10-27 20:18:11 +01:00
|
|
|
if _current_action == null:
|
|
|
|
_current_action = get_action()
|
2020-10-26 17:01:31 +01:00
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
match brush_mode:
|
|
|
|
Tools.PAINT:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, Color(0, 0, 0, 0)])
|
2020-10-25 18:39:10 +01:00
|
|
|
Tools.BRUSH:
|
2020-10-27 20:18:11 +01:00
|
|
|
do_action([cell_mouse_position, last_cell_mouse_position, Color(0, 0, 0, 0), selected_brush_prefab])
|
2020-10-30 12:32:04 +01:00
|
|
|
else:
|
|
|
|
if _current_action and _current_action.can_commit():
|
|
|
|
commit_action()
|
|
|
|
update()
|
|
|
|
paint_canvas.update()
|
2019-11-23 12:33:43 +01:00
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
func update_text_info():
|
2020-10-25 18:39:10 +01:00
|
|
|
var text = ""
|
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
var cell_color_text = cell_color
|
2020-10-25 18:39:10 +01:00
|
|
|
cell_color_text = Color(0, 0, 0, 0)
|
|
|
|
|
|
|
|
text += \
|
|
|
|
str("FPS %s\t" + \
|
|
|
|
"Mouse Position %s\t" + \
|
|
|
|
"Canvas Mouse Position %s \t" + \
|
|
|
|
"Canvas Position %s\t\n" + \
|
|
|
|
"Cell Position %s \t" + \
|
2020-10-26 17:01:31 +01:00
|
|
|
"Cell Color %s\t") % [
|
2020-10-25 18:39:10 +01:00
|
|
|
str(Engine.get_frames_per_second()),
|
|
|
|
str(mouse_position),
|
|
|
|
str(canvas_mouse_position),
|
|
|
|
str(canvas_position),
|
|
|
|
str(cell_mouse_position),
|
|
|
|
str(cell_color_text),
|
|
|
|
]
|
|
|
|
|
|
|
|
find_node("DebugTextDisplay").display_text(text)
|
2019-08-04 09:57:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
func _on_Save_pressed():
|
|
|
|
get_node("SaveFileDialog").show()
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------
|
|
|
|
# Actions
|
|
|
|
#---------------------------------------
|
|
|
|
|
|
|
|
|
2020-10-26 17:01:31 +01:00
|
|
|
func do_action(data: Array):
|
|
|
|
if _current_action == null:
|
|
|
|
_redo_history.clear()
|
|
|
|
_current_action.do_action(paint_canvas, data)
|
|
|
|
|
|
|
|
|
|
|
|
func commit_action():
|
|
|
|
if not _current_action:
|
|
|
|
return
|
2020-10-26 20:31:41 +01:00
|
|
|
|
|
|
|
print("commit action")
|
2020-10-27 20:18:11 +01:00
|
|
|
var commit_data = _current_action.commit_action(paint_canvas)
|
2020-10-26 20:31:41 +01:00
|
|
|
var action = get_action()
|
|
|
|
action.action_data = _current_action.action_data.duplicate(true)
|
2020-10-27 20:18:11 +01:00
|
|
|
|
2020-10-26 20:31:41 +01:00
|
|
|
_actions_history.push_back(action)
|
2020-10-27 20:18:11 +01:00
|
|
|
|
|
|
|
match brush_mode:
|
|
|
|
Tools.CUT:
|
|
|
|
if _just_cut:
|
|
|
|
continue
|
|
|
|
_cut_pos = _current_action.mouse_start_pos
|
|
|
|
_cut_size = _current_action.mouse_end_pos - _current_action.mouse_start_pos
|
|
|
|
_selection_cells = _current_action.action_data.do.cells.duplicate()
|
|
|
|
_selection_colors = _current_action.action_data.do.colors.duplicate()
|
|
|
|
_just_cut = true
|
|
|
|
|
2020-10-26 20:31:41 +01:00
|
|
|
_current_action = null
|
|
|
|
return
|
2020-10-26 17:01:31 +01:00
|
|
|
action.action_data = _current_action.action_data
|
|
|
|
if not "action_data" in action:
|
|
|
|
print(action.get_class())
|
|
|
|
return
|
|
|
|
_current_action = null
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func redo_action():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
func undo_action():
|
|
|
|
var action = _actions_history.pop_back()
|
2020-10-26 17:01:31 +01:00
|
|
|
if not action:
|
|
|
|
return
|
|
|
|
action.undo_action(paint_canvas)
|
2020-10-30 12:32:04 +01:00
|
|
|
update()
|
|
|
|
paint_canvas.update()
|
2020-10-26 20:31:41 +01:00
|
|
|
print("undo action")
|
|
|
|
|
|
|
|
|
|
|
|
func get_action():
|
|
|
|
match brush_mode:
|
|
|
|
Tools.PAINT:
|
|
|
|
return GEPencil.new()
|
|
|
|
Tools.BRUSH:
|
|
|
|
return GEBrush.new()
|
2020-10-27 20:18:11 +01:00
|
|
|
Tools.LINE:
|
|
|
|
return GELine.new()
|
|
|
|
Tools.RAINBOW:
|
|
|
|
return GERainbow.new()
|
|
|
|
Tools.BUCKET:
|
|
|
|
return GEBucket.new()
|
|
|
|
Tools.RECT:
|
|
|
|
return GERect.new()
|
|
|
|
Tools.DARKEN:
|
|
|
|
return GEDarken.new()
|
|
|
|
Tools.BRIGHTEN:
|
|
|
|
return GEBrighten.new()
|
|
|
|
Tools.CUT:
|
|
|
|
return GECut.new()
|
2020-10-26 20:31:41 +01:00
|
|
|
_:
|
|
|
|
print("no tool!")
|
|
|
|
return null
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------
|
|
|
|
# Brushes
|
|
|
|
#---------------------------------------
|
|
|
|
|
|
|
|
func set_brush(new_mode):
|
|
|
|
if brush_mode == new_mode:
|
|
|
|
return
|
|
|
|
_previous_tool = brush_mode
|
|
|
|
brush_mode = new_mode
|
2020-10-27 20:18:11 +01:00
|
|
|
|
|
|
|
match _previous_tool:
|
|
|
|
Tools.CUT:
|
|
|
|
paint_canvas.clear_preview_layer()
|
|
|
|
_just_cut = false
|
|
|
|
Tools.BUCKET:
|
|
|
|
_current_action = null
|
|
|
|
print("Selected: ", Tools.keys()[brush_mode])
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func change_color(new_color):
|
|
|
|
if new_color.a == 0:
|
|
|
|
return
|
|
|
|
selected_color = new_color
|
|
|
|
find_node("ColorPicker").color = selected_color
|
|
|
|
|
|
|
|
|
|
|
|
func _on_ColorPicker_color_changed(color):
|
|
|
|
selected_color = color
|
|
|
|
|
|
|
|
|
|
|
|
func _on_PaintTool_pressed():
|
2020-10-27 20:18:11 +01:00
|
|
|
set_brush(Tools.PAINT)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func _on_BucketTool_pressed():
|
2020-10-27 20:18:11 +01:00
|
|
|
set_brush(Tools.BUCKET)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2019-08-04 09:57:42 +02:00
|
|
|
func _on_RainbowTool_pressed():
|
2020-10-25 18:39:10 +01:00
|
|
|
set_brush(Tools.RAINBOW)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_BrushTool_pressed():
|
|
|
|
var prev_mode = brush_mode
|
|
|
|
set_brush(Tools.BRUSH)
|
|
|
|
if prev_mode != brush_mode:
|
|
|
|
return
|
|
|
|
selected_brush_prefab += 1
|
|
|
|
selected_brush_prefab = selected_brush_prefab % BrushPrefabs.list.size()
|
|
|
|
var value = float(selected_brush_prefab) / BrushPrefabs.list.size()
|
|
|
|
|
|
|
|
find_node("BrushTool").get("custom_styles/normal").set("bg_color", Color(value, value, value, 1.0))
|
|
|
|
|
|
|
|
|
|
|
|
func _on_LineTool_pressed():
|
|
|
|
set_brush(Tools.LINE)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_RectTool_pressed():
|
|
|
|
set_brush(Tools.RECT)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_DarkenTool_pressed():
|
|
|
|
set_brush(Tools.DARKEN)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_BrightenTool_pressed():
|
|
|
|
set_brush(Tools.BRIGHTEN)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_ColorPickerTool_pressed():
|
|
|
|
set_brush(Tools.COLORPICKER)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_CutTool_pressed():
|
|
|
|
set_brush(Tools.CUT)
|
|
|
|
|
|
|
|
|
|
|
|
func _on_Editor_visibility_changed():
|
|
|
|
pause_mode = not visible
|
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
#---------------------------------------
|
|
|
|
# Layer
|
|
|
|
#---------------------------------------
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
func toggle_layer_visibility(button, layer_name: String):
|
|
|
|
print("toggling: ", layer_name)
|
2020-10-26 17:01:31 +01:00
|
|
|
paint_canvas.toggle_layer_visibility(layer_name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
func select_layer(layer_name: String):
|
|
|
|
print("select layer: ", layer_name)
|
|
|
|
paint_canvas.select_layer(layer_name)
|
|
|
|
|
|
|
|
|
2020-10-25 18:39:10 +01:00
|
|
|
func add_new_layer():
|
2020-10-30 12:32:04 +01:00
|
|
|
var new_layer_button = layer_buttons.get_child(0).duplicate()
|
|
|
|
layer_buttons.add_child_below_node(
|
|
|
|
layer_buttons.get_child(layer_buttons.get_child_count() - 1), new_layer_button, true)
|
2020-10-25 18:39:10 +01:00
|
|
|
_total_added_layers += 1
|
2020-10-30 12:32:04 +01:00
|
|
|
new_layer_button.text = "Layer " + str(_total_added_layers)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
var layer: GELayer = paint_canvas.add_new_layer(new_layer_button.name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
_layer_button_ref[new_layer_button.name] = new_layer_button
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
_connect_layer_buttons()
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
print("added layer: ", layer.name)
|
2020-10-30 12:32:04 +01:00
|
|
|
|
|
|
|
return layer
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func remove_active_layer():
|
2020-10-27 20:18:11 +01:00
|
|
|
if layer_buttons.get_child_count() <= 1:
|
2020-10-25 18:39:10 +01:00
|
|
|
return
|
2020-10-27 20:18:11 +01:00
|
|
|
var layer_name = paint_canvas.active_layer.name
|
|
|
|
paint_canvas.remove_layer(layer_name)
|
|
|
|
layer_buttons.remove_child(_layer_button_ref[layer_name])
|
|
|
|
_layer_button_ref[layer_name].queue_free()
|
|
|
|
_layer_button_ref.erase(layer_name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func duplicate_active_layer():
|
|
|
|
# copy the last layer button (or the initial one)
|
2020-10-27 20:18:11 +01:00
|
|
|
|
|
|
|
var new_layer_button = layer_buttons.get_child(0).duplicate()
|
|
|
|
layer_buttons.add_child_below_node(
|
|
|
|
layer_buttons.get_child(layer_buttons.get_child_count() - 1), new_layer_button, true)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
_total_added_layers += 1 # for keeping track...
|
|
|
|
new_layer_button.text = "Layer " + str(_total_added_layers)
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
var new_layer = paint_canvas.duplicate_layer(paint_canvas.active_layer.name, new_layer_button.name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
_layer_button_ref[new_layer.name] = new_layer_button
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
new_layer_button.disconnect("pressed", self, "select_layer")
|
|
|
|
new_layer_button.find_node("Visible").disconnect("pressed", self, "toggle_layer_visibility")
|
|
|
|
new_layer_button.find_node("Up").disconnect("pressed", self, "move_down")
|
|
|
|
new_layer_button.find_node("Down").disconnect("pressed", self, "move_up")
|
|
|
|
|
|
|
|
new_layer_button.connect("pressed", self, "select_layer", [new_layer_button.name])
|
|
|
|
new_layer_button.find_node("Visible").connect("pressed", self, "toggle_layer_visibility",
|
|
|
|
[new_layer_button.find_node("Visible"), new_layer_button.name])
|
|
|
|
new_layer_button.find_node("Up").connect("pressed", self, "move_down", [new_layer_button])
|
|
|
|
new_layer_button.find_node("Down").connect("pressed", self, "move_up", [new_layer_button])
|
2020-10-25 18:39:10 +01:00
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
print("added layer: ", new_layer.name, " (total:", layer_buttons.size(), ")")
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
func move_up(layer_btn):
|
|
|
|
var new_idx = min(layer_btn.get_index() + 1, layer_buttons.get_child_count())
|
|
|
|
print("move_down: ", layer_btn.name, " from ", layer_btn.get_index(), " to ", new_idx)
|
|
|
|
layer_buttons.move_child(layer_btn, new_idx)
|
|
|
|
paint_canvas.move_layer_back(layer_btn.name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
func move_down(layer_btn):
|
|
|
|
var new_idx = max(layer_btn.get_index() - 1, 0)
|
|
|
|
print("move_up: ", layer_btn.name, " from ", layer_btn.get_index(), " to ", new_idx)
|
|
|
|
layer_buttons.move_child(layer_btn, new_idx)
|
|
|
|
paint_canvas.move_layer_forward(layer_btn.name)
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
2020-10-27 20:18:11 +01:00
|
|
|
func _connect_layer_buttons():
|
|
|
|
for layer_btn in layer_buttons.get_children():
|
|
|
|
if layer_btn.is_connected("pressed", self, "select_layer"):
|
|
|
|
continue
|
|
|
|
layer_btn.connect("pressed", self, "select_layer", [layer_btn.name])
|
|
|
|
layer_btn.find_node("Visible").connect("pressed", self, "toggle_layer_visibility",
|
|
|
|
[layer_btn.find_node("Visible"), layer_btn.name])
|
|
|
|
layer_btn.find_node("Up").connect("pressed", self, "move_down", [layer_btn])
|
|
|
|
layer_btn.find_node("Down").connect("pressed", self, "move_up", [layer_btn])
|
2020-10-25 18:39:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
func _on_Button_pressed():
|
|
|
|
add_new_layer()
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-30 12:32:04 +01:00
|
|
|
func _on_PaintCanvasContainer_mouse_entered():
|
|
|
|
mouse_on_top = true
|
|
|
|
|
|
|
|
|
|
|
|
func _on_PaintCanvasContainer_mouse_exited():
|
|
|
|
mouse_on_top = false
|