mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-20 18:19:48 +00:00
4a668f71f5
* Refactoring tools * Remove unused code * Fixed some inferring errors and added translations * Attempt to fix some Script Errors found in the CI workflow * Fix bucket crash. * Fix static type convert. Co-authored-by: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com>
69 lines
1.5 KiB
GDScript
69 lines
1.5 KiB
GDScript
extends "res://src/Tools/Draw.gd"
|
|
|
|
|
|
var _last_position := Vector2.INF
|
|
var _changed := false
|
|
|
|
|
|
class AlphaBlendOp extends Drawer.ColorOp:
|
|
var changed := false
|
|
|
|
|
|
func process(src: Color, dst: Color) -> Color:
|
|
changed = true
|
|
src.a *= strength
|
|
return dst.blend(src)
|
|
|
|
|
|
func _init() -> void:
|
|
_drawer.color_op = AlphaBlendOp.new()
|
|
|
|
|
|
func draw_start(position : Vector2) -> void:
|
|
update_mask()
|
|
_changed = false
|
|
_drawer.color_op.changed = false
|
|
|
|
prepare_undo()
|
|
_drawer.reset()
|
|
|
|
_draw_line = Tools.shift
|
|
if _draw_line:
|
|
_line_start = position
|
|
_line_end = position
|
|
update_line_polylines(_line_start, _line_end)
|
|
else:
|
|
draw_tool(position)
|
|
_last_position = position
|
|
Global.canvas.sprite_changed_this_frame = true
|
|
cursor_text = ""
|
|
|
|
|
|
func draw_move(position : Vector2) -> void:
|
|
if _draw_line:
|
|
var d = _line_angle_constraint(_line_start, position)
|
|
_line_end = d.position
|
|
cursor_text = d.text
|
|
update_line_polylines(_line_start, _line_end)
|
|
else:
|
|
draw_fill_gap(_last_position, position)
|
|
_last_position = position
|
|
cursor_text = ""
|
|
Global.canvas.sprite_changed_this_frame = true
|
|
|
|
|
|
func draw_end(_position : Vector2) -> void:
|
|
if _draw_line:
|
|
draw_tool(_line_start)
|
|
draw_fill_gap(_line_start, _line_end)
|
|
_draw_line = false
|
|
if _changed or _drawer.color_op.changed:
|
|
commit_undo("Draw")
|
|
cursor_text = ""
|
|
update_random_image()
|
|
|
|
|
|
func _draw_brush_image(image : Image, src_rect: Rect2, dst: Vector2) -> void:
|
|
_changed = true
|
|
_get_draw_image().blend_rect(image, src_rect, dst)
|