2020-10-13 13:04:12 +02:00
|
|
|
extends Node2D
|
|
|
|
|
2020-10-13 14:16:36 +02:00
|
|
|
var hovered = false
|
2020-10-13 13:04:12 +02:00
|
|
|
var dragged = false
|
|
|
|
var drag_offset
|
2020-10-14 00:27:37 +02:00
|
|
|
|
2020-10-13 17:08:37 +02:00
|
|
|
export var arg_number = 0
|
|
|
|
export var command = "" setget set_command
|
2020-10-14 00:27:37 +02:00
|
|
|
export var description = "" setget set_description
|
|
|
|
|
2020-10-13 17:08:37 +02:00
|
|
|
var _first_argument = null
|
|
|
|
var _home_position = null
|
|
|
|
|
2020-10-13 13:04:12 +02:00
|
|
|
func _ready():
|
|
|
|
set_process_unhandled_input(true)
|
|
|
|
|
|
|
|
func _process(delta):
|
|
|
|
if dragged:
|
|
|
|
var mousepos = get_viewport().get_mouse_position()
|
2020-10-14 14:48:38 +02:00
|
|
|
global_position = mousepos - drag_offset
|
2020-10-13 13:04:12 +02:00
|
|
|
|
|
|
|
func _unhandled_input(event):
|
|
|
|
if event is InputEventMouseButton:
|
2020-10-13 14:16:36 +02:00
|
|
|
if event.button_index == BUTTON_LEFT and event.pressed and hovered:
|
2020-10-13 13:04:12 +02:00
|
|
|
dragged = true
|
2020-10-13 14:16:36 +02:00
|
|
|
game.dragged_object = self
|
2020-10-13 13:04:12 +02:00
|
|
|
drag_offset = get_viewport().get_mouse_position() - global_position
|
2020-10-13 14:16:36 +02:00
|
|
|
get_tree().set_input_as_handled()
|
|
|
|
modulate.a = 0.5
|
2020-10-13 17:08:37 +02:00
|
|
|
elif event.button_index == BUTTON_LEFT and !event.pressed and dragged:
|
2020-10-13 13:04:12 +02:00
|
|
|
dragged = false
|
2020-10-13 14:16:36 +02:00
|
|
|
game.dragged_object = null
|
|
|
|
modulate.a = 1
|
2020-10-13 17:29:24 +02:00
|
|
|
|
|
|
|
|
2020-10-14 14:48:38 +02:00
|
|
|
if get_viewport().get_mouse_position().y < get_viewport().size.y/3*2:
|
2020-10-13 17:29:24 +02:00
|
|
|
if arg_number == 0 :
|
2020-10-14 14:48:38 +02:00
|
|
|
$"../../..".terminal.send_command($Label.text)
|
2020-10-13 17:29:24 +02:00
|
|
|
buuurn()
|
|
|
|
else:
|
|
|
|
move_back()
|
|
|
|
else:
|
2020-10-14 00:04:47 +02:00
|
|
|
move_back()
|
2020-10-13 14:16:36 +02:00
|
|
|
|
|
|
|
func _mouse_entered():
|
|
|
|
hovered = true
|
|
|
|
|
|
|
|
func _mouse_exited():
|
|
|
|
hovered = false
|
2020-10-13 17:08:37 +02:00
|
|
|
|
|
|
|
func set_command(new_command):
|
|
|
|
command = new_command
|
2020-10-14 00:27:37 +02:00
|
|
|
$Label.text = command
|
|
|
|
|
|
|
|
func set_description(new_description):
|
|
|
|
description = new_description
|
|
|
|
$Description.text = description
|
2020-10-13 17:08:37 +02:00
|
|
|
|
|
|
|
func move_back():
|
|
|
|
position = _home_position
|
2020-10-13 17:29:24 +02:00
|
|
|
|
|
|
|
func buuurn():
|
|
|
|
queue_free()
|
2020-10-14 14:48:38 +02:00
|
|
|
$"..".draw_rand_card()
|
|
|
|
#$"..".arrange_cards()
|
2020-10-13 14:16:36 +02:00
|
|
|
|
|
|
|
func dropped_on(other):
|
2020-10-13 17:08:37 +02:00
|
|
|
var full_command = ""
|
|
|
|
match arg_number:
|
2020-10-13 18:13:42 +02:00
|
|
|
1:
|
|
|
|
var argument = other.id
|
|
|
|
if ($Label.text.begins_with("git checkout") or $Label.text.begins_with("git rebase")) and other.id.begins_with("refs/heads"):
|
|
|
|
argument = Array(other.id.split("/")).pop_back()
|
|
|
|
full_command = $Label.text + " " + argument
|
2020-10-14 14:48:38 +02:00
|
|
|
$"../../..".terminal.send_command(full_command)
|
2020-10-13 17:29:24 +02:00
|
|
|
buuurn()
|
2020-10-14 00:57:30 +02:00
|
|
|
# 2:
|
|
|
|
# if _first_argument:
|
|
|
|
# full_command = $Label.text + " " + _first_argument + " " + other.id
|
|
|
|
# $"../Terminal".send_command(full_command)
|
|
|
|
# buuurn()
|
|
|
|
# else:
|
|
|
|
# _first_argument = other.id
|
2020-10-13 17:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|