mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
126 lines
3 KiB
GDScript
126 lines
3 KiB
GDScript
extends Node2D
|
|
|
|
var id setget id_set
|
|
var content setget content_set
|
|
var type setget type_set
|
|
var repository: Control
|
|
|
|
onready var content_label = $Content/ContentLabel
|
|
onready var file_browser = $OnTop/FileBrowser
|
|
|
|
var children = {} setget children_set
|
|
var id_always_visible = false
|
|
var held = false
|
|
var hovered = false
|
|
|
|
var arrow = preload("res://arrow.tscn")
|
|
|
|
func _ready():
|
|
content_set(content)
|
|
type_set(type)
|
|
$Pop.pitch_scale = rand_range(0.8, 1.2)
|
|
$Pop.play()
|
|
|
|
func _process(_delta):
|
|
if held:
|
|
if not Input.is_action_pressed("click"):
|
|
held = false
|
|
else:
|
|
global_position = get_global_mouse_position()
|
|
|
|
if visible:
|
|
apply_forces()
|
|
|
|
func apply_forces():
|
|
var offset = Vector2(0, 80)
|
|
|
|
for c in children.keys():
|
|
if repository.objects.has(c):
|
|
var other = repository.objects[c]
|
|
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
|
|
|
|
func id_set(new_id):
|
|
id = new_id
|
|
$ID.text = id
|
|
|
|
func content_set(new_content):
|
|
content = new_content
|
|
if content_label:
|
|
content_label.text = content
|
|
|
|
func type_set(new_type):
|
|
type = new_type
|
|
if type == "commit" and file_browser:
|
|
file_browser.commit = self
|
|
file_browser.title = "Commit"
|
|
if type != "ref":
|
|
$ID.text = $ID.text.substr(0,8)
|
|
#elif type == "ref":
|
|
#$ID.text = $ID.text.replace("refs/", "")
|
|
match new_type:
|
|
"blob":
|
|
$Sprite.texture = preload("res://nodes/blob.svg")
|
|
#$Rect.color = Color("#333333")
|
|
"tree":
|
|
$Sprite.texture = preload("res://nodes/tree.svg")
|
|
#$Rect.color = Color.darkgreen
|
|
"commit":
|
|
$Sprite.texture = preload("res://nodes/commit.svg")
|
|
#$Rect.color = Color.orange
|
|
"tag":
|
|
$Sprite.texture = preload("res://nodes/blob.svg")
|
|
#$Rect.color = Color.blue
|
|
"ref":
|
|
$Sprite.texture = preload("res://nodes/ref.svg")
|
|
#$Rect.color = Color("#6680ff")
|
|
id_always_visible = true
|
|
"head":
|
|
$Sprite.texture = preload("res://nodes/ref.svg")
|
|
#$Rect.color = Color.red
|
|
id_always_visible = true
|
|
if id_always_visible:
|
|
$ID.show()
|
|
|
|
func children_set(new_children):
|
|
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]
|
|
a.source = id
|
|
a.target = c
|
|
a.repository = repository
|
|
$Arrows.add_child(a)
|
|
children = new_children
|
|
|
|
func _on_hover():
|
|
hovered = true
|
|
if not id_always_visible:
|
|
content_label.visible = true
|
|
$ID.visible = true
|
|
|
|
func _on_unhover():
|
|
hovered = false
|
|
if not id_always_visible:
|
|
content_label.visible = false
|
|
$ID.visible = false
|
|
|
|
func _input(event):
|
|
if hovered:
|
|
if event.is_action_pressed("click"):
|
|
held = true
|
|
if type == "commit":
|
|
file_browser.visible = not file_browser.visible
|
|
elif event.is_action_pressed("right_click"):
|
|
var input = get_tree().get_current_scene().find_node("Input")
|
|
input.text += id
|
|
input.caret_position = input.text.length()
|
|
if event.is_action_released("click"):
|
|
held = false
|