2020-03-18 16:20:55 +01:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
var id setget id_set
|
2020-03-18 16:28:48 +01:00
|
|
|
var content setget content_set
|
2020-03-18 16:20:55 +01:00
|
|
|
var type setget type_set
|
2020-09-21 20:28:43 +02:00
|
|
|
var repository: Control
|
2020-03-18 16:20:55 +01:00
|
|
|
|
2020-03-18 20:03:17 +01:00
|
|
|
var children = {} setget children_set
|
2020-09-01 21:25:24 +02:00
|
|
|
var id_always_visible = false
|
2020-09-04 15:10:04 +02:00
|
|
|
var held = false
|
2020-09-21 18:53:36 +02:00
|
|
|
var hovered = false
|
2020-03-18 16:20:55 +01:00
|
|
|
|
|
|
|
var arrow = preload("res://arrow.tscn")
|
|
|
|
|
|
|
|
func _ready():
|
2020-09-24 10:52:58 +02:00
|
|
|
# var t = Timer.new()
|
|
|
|
# t.wait_time = rand_range(0.0, 0.1)
|
|
|
|
# add_child(t)
|
|
|
|
# t.start()
|
|
|
|
# yield(t, "timeout")
|
|
|
|
$Pop.pitch_scale = rand_range(0.8, 1.2)
|
|
|
|
$Pop.play()
|
2020-03-18 16:20:55 +01:00
|
|
|
|
2020-09-08 20:26:14 +02:00
|
|
|
func _process(_delta):
|
2020-09-04 15:10:04 +02:00
|
|
|
if held:
|
2020-09-21 18:33:34 +02:00
|
|
|
if not Input.is_action_pressed("click"):
|
|
|
|
held = false
|
|
|
|
else:
|
|
|
|
global_position = get_global_mouse_position()
|
2020-09-14 16:03:01 +02:00
|
|
|
|
|
|
|
if visible:
|
|
|
|
apply_forces()
|
|
|
|
|
|
|
|
func apply_forces():
|
2020-09-14 14:54:30 +02:00
|
|
|
var offset = Vector2(0, 80)
|
2020-09-14 16:03:01 +02:00
|
|
|
|
2020-08-24 16:48:30 +02:00
|
|
|
for c in children.keys():
|
2020-09-15 18:41:06 +02:00
|
|
|
if repository.objects.has(c):
|
|
|
|
var other = repository.objects[c]
|
2020-09-14 16:03:01 +02:00
|
|
|
if other.visible:
|
|
|
|
var d = other.position.distance_to(position+offset)
|
|
|
|
var dir = (other.position - (position+offset)).normalized()
|
|
|
|
var f = (d*0.03)
|
|
|
|
position += dir*f
|
|
|
|
other.position -= dir*f
|
2020-08-24 16:48:30 +02:00
|
|
|
|
2020-03-18 16:20:55 +01:00
|
|
|
func id_set(new_id):
|
2020-08-24 16:48:30 +02:00
|
|
|
id = new_id
|
|
|
|
$ID.text = id
|
|
|
|
|
2020-03-18 16:28:48 +01:00
|
|
|
func content_set(new_content):
|
2020-08-24 16:48:30 +02:00
|
|
|
content = new_content
|
|
|
|
$Content.text = content
|
2020-03-18 16:20:55 +01:00
|
|
|
|
|
|
|
func type_set(new_type):
|
2020-08-24 16:48:30 +02:00
|
|
|
type = new_type
|
|
|
|
if type != "ref":
|
|
|
|
$ID.text = $ID.text.substr(0,8)
|
2020-09-13 21:55:24 +02:00
|
|
|
#elif type == "ref":
|
|
|
|
#$ID.text = $ID.text.replace("refs/", "")
|
2020-08-24 16:48:30 +02:00
|
|
|
match new_type:
|
|
|
|
"blob":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/blob.svg")
|
|
|
|
#$Rect.color = Color("#333333")
|
2020-08-24 16:48:30 +02:00
|
|
|
"tree":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/tree.svg")
|
|
|
|
#$Rect.color = Color.darkgreen
|
2020-08-24 16:48:30 +02:00
|
|
|
"commit":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/commit.svg")
|
|
|
|
#$Rect.color = Color.orange
|
2020-08-24 16:48:30 +02:00
|
|
|
"tag":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/blob.svg")
|
|
|
|
#$Rect.color = Color.blue
|
2020-08-24 16:48:30 +02:00
|
|
|
"ref":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/ref.svg")
|
|
|
|
#$Rect.color = Color("#6680ff")
|
2020-09-01 21:25:24 +02:00
|
|
|
id_always_visible = true
|
2020-08-24 16:48:30 +02:00
|
|
|
"head":
|
2020-09-21 19:59:36 +02:00
|
|
|
$Sprite.texture = preload("res://nodes/ref.svg")
|
|
|
|
#$Rect.color = Color.red
|
2020-09-01 21:25:24 +02:00
|
|
|
id_always_visible = true
|
|
|
|
if id_always_visible:
|
|
|
|
$ID.show()
|
2020-03-18 16:20:55 +01:00
|
|
|
|
|
|
|
func children_set(new_children):
|
2020-08-24 16:48:30 +02:00
|
|
|
for c in $Arrows.get_children():
|
|
|
|
if not new_children.has(c.target):
|
|
|
|
c.queue_free()
|
|
|
|
for c in new_children:
|
|
|
|
if not children.has(c):
|
|
|
|
var a = arrow.instance()
|
|
|
|
a.label = new_children[c]
|
2020-09-22 20:25:45 +02:00
|
|
|
a.source = id
|
2020-08-24 16:48:30 +02:00
|
|
|
a.target = c
|
2020-09-01 17:24:21 +02:00
|
|
|
a.repository = repository
|
2020-08-24 16:48:30 +02:00
|
|
|
$Arrows.add_child(a)
|
|
|
|
children = new_children
|
2020-03-18 16:28:48 +01:00
|
|
|
|
|
|
|
func _on_hover():
|
2020-09-21 18:53:36 +02:00
|
|
|
hovered = true
|
2020-09-21 19:28:39 +02:00
|
|
|
if not id_always_visible:
|
|
|
|
$Content.visible = true
|
|
|
|
$ID.visible = true
|
2020-08-24 16:48:30 +02:00
|
|
|
|
2020-03-18 16:28:48 +01:00
|
|
|
func _on_unhover():
|
2020-09-21 18:53:36 +02:00
|
|
|
hovered = false
|
2020-09-01 21:25:24 +02:00
|
|
|
if not id_always_visible:
|
|
|
|
$Content.visible = false
|
|
|
|
$ID.visible = false
|
2020-09-21 18:53:36 +02:00
|
|
|
|
|
|
|
func _input(event):
|
|
|
|
if hovered:
|
|
|
|
if event.is_action_pressed("click"):
|
|
|
|
held = true
|
2020-09-21 20:28:43 +02:00
|
|
|
elif event.is_action_pressed("right_click"):
|
2020-09-27 21:50:14 +02:00
|
|
|
var input = get_tree().get_current_scene().find_node("Input")
|
2020-09-21 20:28:43 +02:00
|
|
|
input.text += id
|
|
|
|
input.caret_position = input.text.length()
|
2020-09-21 18:53:36 +02:00
|
|
|
if event.is_action_released("click"):
|
|
|
|
held = false
|