2020-09-22 13:15:36 +02:00
|
|
|
extends Control
|
|
|
|
|
2020-10-23 15:08:51 +02:00
|
|
|
enum FileBrowserMode {
|
|
|
|
WORKING_DIRECTORY,
|
|
|
|
COMMIT,
|
|
|
|
INDEX
|
|
|
|
}
|
|
|
|
|
2021-01-08 13:54:37 +01:00
|
|
|
signal saved
|
|
|
|
|
2020-10-23 16:43:02 +02:00
|
|
|
export(String) var title setget _set_title
|
|
|
|
export(FileBrowserMode) var mode = FileBrowserMode.WORKING_DIRECTORY setget _set_mode
|
2020-10-23 15:08:51 +02:00
|
|
|
|
2020-09-22 13:15:36 +02:00
|
|
|
var shell
|
2020-10-23 15:08:51 +02:00
|
|
|
var commit setget _set_commit
|
2020-10-23 15:19:25 +02:00
|
|
|
var repository
|
2020-09-22 13:15:36 +02:00
|
|
|
|
2020-10-23 16:43:02 +02:00
|
|
|
var open_file
|
|
|
|
|
2020-10-23 13:07:16 +02:00
|
|
|
onready var grid = $Panel/Margin/Rows/Scroll/Grid
|
2020-10-23 16:43:02 +02:00
|
|
|
onready var text_edit = $Panel/TextEdit
|
|
|
|
onready var save_button = $Panel/TextEdit/SaveButton
|
|
|
|
onready var title_label = $Panel/Margin/Rows/Title
|
2020-09-22 13:15:36 +02:00
|
|
|
|
2020-10-23 15:08:51 +02:00
|
|
|
func _ready():
|
|
|
|
update()
|
2020-10-23 16:43:02 +02:00
|
|
|
_set_mode(mode)
|
|
|
|
_set_title(title)
|
2020-11-10 18:34:51 +01:00
|
|
|
$PopupMenu.add_item("New file", 1)
|
2020-10-23 16:43:02 +02:00
|
|
|
|
|
|
|
func _input(event):
|
|
|
|
if event.is_action_pressed("save"):
|
2020-10-26 16:36:38 +01:00
|
|
|
if text_edit.visible:
|
|
|
|
save()
|
2020-10-23 15:19:25 +02:00
|
|
|
|
|
|
|
func clear():
|
|
|
|
for item in grid.get_children():
|
|
|
|
item.queue_free()
|
|
|
|
|
2020-11-10 15:27:42 +01:00
|
|
|
func substr2(s):
|
|
|
|
return s.substr(2)
|
|
|
|
|
2020-09-22 13:15:36 +02:00
|
|
|
func update():
|
2021-01-06 17:04:23 +01:00
|
|
|
if grid and repository:
|
2020-10-23 15:19:25 +02:00
|
|
|
clear()
|
2021-01-06 17:04:23 +01:00
|
|
|
|
|
|
|
# Files in the working directory.
|
|
|
|
var wd_files = Array(repository.shell.run("find . -type f -not -path '*/\\.git/*'").split("\n"))
|
|
|
|
# The last entry is an empty string, remove it.
|
|
|
|
wd_files.pop_back()
|
|
|
|
wd_files = helpers.map(wd_files, self, "substr2")
|
|
|
|
|
2021-01-07 11:36:11 +01:00
|
|
|
var files = wd_files
|
|
|
|
|
2021-01-06 17:04:23 +01:00
|
|
|
var head_files
|
|
|
|
var index_files
|
|
|
|
|
2021-01-13 13:44:15 +01:00
|
|
|
if repository.there_is_a_git_cache:
|
2021-01-06 17:04:23 +01:00
|
|
|
# Files in the HEAD commit.
|
|
|
|
head_files = Array(repository.shell.run("git ls-tree --name-only -r HEAD 2> /dev/null || true").split("\n"))
|
|
|
|
# The last entry is an empty string, remove it.
|
|
|
|
head_files.pop_back()
|
|
|
|
# Files in the index.
|
|
|
|
index_files = Array(repository.shell.run("git ls-files -s | cut -f2 | uniq").split("\n"))
|
|
|
|
# The last entry is an empty string, remove it.
|
|
|
|
index_files.pop_back()
|
|
|
|
|
2021-01-07 11:36:11 +01:00
|
|
|
for f in head_files:
|
|
|
|
if not f in files:
|
|
|
|
files.push_back(f)
|
|
|
|
for f in index_files:
|
|
|
|
if not f in files:
|
|
|
|
files.push_back(f)
|
2021-01-06 17:04:23 +01:00
|
|
|
|
|
|
|
files.sort_custom(self, "very_best_sort")
|
|
|
|
|
|
|
|
for file_path in files:
|
|
|
|
var item = preload("res://scenes/file_browser_item.tscn").instance()
|
|
|
|
item.label = file_path
|
|
|
|
item.repository = repository
|
|
|
|
item.connect("clicked", self, "item_clicked")
|
|
|
|
grid.add_child(item)
|
2021-01-19 12:48:16 +01:00
|
|
|
|
|
|
|
if files.size() > 0:
|
|
|
|
game.notify("Click on these files to edit them!", self, "file-browser")
|
2021-01-06 17:04:23 +01:00
|
|
|
|
|
|
|
if false:
|
|
|
|
match mode:
|
|
|
|
FileBrowserMode.WORKING_DIRECTORY:
|
|
|
|
if shell:
|
|
|
|
|
|
|
|
var deleted_files = []
|
|
|
|
if shell.run("test -d .git && echo yes || echo no") == "yes\n":
|
|
|
|
deleted_files = Array(shell.run("git status -s | grep '^.D' | sed 's/^...//'").split("\n"))
|
|
|
|
deleted_files.pop_back()
|
|
|
|
|
|
|
|
#var is_visible = false
|
|
|
|
for file_path in files:
|
|
|
|
if file_path.substr(0, 5) == ".git/":
|
|
|
|
continue
|
|
|
|
#is_visible = true
|
|
|
|
var item = preload("res://scenes/file_browser_item.tscn").instance()
|
|
|
|
item.label = file_path
|
|
|
|
item.connect("clicked", self, "item_clicked")
|
|
|
|
item.connect("deleted", self, "item_deleted")
|
|
|
|
item.status = get_file_status(file_path, shell, 1)
|
|
|
|
|
|
|
|
grid.add_child(item)
|
|
|
|
#visible = is_visible
|
|
|
|
|
|
|
|
FileBrowserMode.COMMIT:
|
|
|
|
if commit:
|
|
|
|
# The last entry is an empty string, remove it.
|
|
|
|
files.pop_back()
|
|
|
|
for file_path in files:
|
|
|
|
var item = preload("res://scenes/file_browser_item.tscn").instance()
|
|
|
|
item.label = file_path
|
|
|
|
item.connect("clicked", self, "item_clicked")
|
|
|
|
grid.add_child(item)
|
|
|
|
FileBrowserMode.INDEX:
|
|
|
|
#var is_visible = false
|
2021-01-13 13:44:15 +01:00
|
|
|
if repository and repository.there_is_a_git_cache:
|
2021-01-06 17:04:23 +01:00
|
|
|
|
|
|
|
var deleted_files = Array(repository.shell.run("git status -s | grep '^D' | sed 's/^...//'").split("\n"))
|
|
|
|
# The last entries are empty strings, remove them.
|
2020-11-10 18:22:24 +01:00
|
|
|
|
2021-01-06 17:04:23 +01:00
|
|
|
for file_path in files:
|
|
|
|
var item = preload("res://scenes/file_browser_item.tscn").instance()
|
|
|
|
item.label = file_path
|
|
|
|
item.connect("clicked", self, "item_clicked")
|
|
|
|
item.status = get_file_status(file_path, repository.shell, 0)
|
|
|
|
grid.add_child(item)
|
|
|
|
#if item.status != item.IconStatus.NONE:
|
|
|
|
# is_visible = true
|
2020-11-10 21:51:59 +01:00
|
|
|
#visible = is_visible
|
2020-11-03 16:39:55 +01:00
|
|
|
|
2020-11-10 22:37:10 +01:00
|
|
|
func get_file_status(file_path, the_shell, idx):
|
|
|
|
var file_status = the_shell.run("git status -s '%s'" % file_path)
|
2020-11-03 16:39:55 +01:00
|
|
|
if file_status.length()>0:
|
|
|
|
match file_status[idx]:
|
|
|
|
"D":
|
|
|
|
return FileBrowserItem.IconStatus.REMOVED
|
|
|
|
"M":
|
|
|
|
return FileBrowserItem.IconStatus.EDIT
|
|
|
|
"U":
|
|
|
|
return FileBrowserItem.IconStatus.CONFLICT
|
|
|
|
" ":
|
|
|
|
return FileBrowserItem.IconStatus.NONE
|
|
|
|
"A":
|
|
|
|
return FileBrowserItem.IconStatus.NEW
|
|
|
|
"?":
|
|
|
|
return FileBrowserItem.IconStatus.UNTRACKED
|
|
|
|
else:
|
|
|
|
return FileBrowserItem.IconStatus.NONE
|
2020-09-22 13:15:36 +02:00
|
|
|
|
2020-10-23 13:07:16 +02:00
|
|
|
func item_clicked(item):
|
2021-01-06 17:04:23 +01:00
|
|
|
if not item.get_node("VBoxContainer/Control/WD").visible:
|
2020-11-10 15:27:42 +01:00
|
|
|
return
|
|
|
|
|
2020-10-23 16:43:02 +02:00
|
|
|
match mode:
|
|
|
|
FileBrowserMode.WORKING_DIRECTORY:
|
2021-01-06 17:04:23 +01:00
|
|
|
text_edit.text = helpers.read_file(repository.shell._cwd + item.label)
|
2020-10-23 16:43:02 +02:00
|
|
|
FileBrowserMode.COMMIT:
|
|
|
|
text_edit.text = commit.repository.shell.run("git show %s:\"%s\"" % [commit.id, item.label])
|
|
|
|
FileBrowserMode.INDEX:
|
2020-11-03 16:39:55 +01:00
|
|
|
if item.status == item.IconStatus.CONFLICT:
|
|
|
|
return
|
2020-10-23 16:43:02 +02:00
|
|
|
text_edit.text = repository.shell.run("git show :\"%s\"" % [item.label])
|
2020-11-03 16:39:55 +01:00
|
|
|
|
|
|
|
open_file = item.label
|
2020-10-23 16:43:02 +02:00
|
|
|
text_edit.show()
|
|
|
|
text_edit.grab_focus()
|
2020-11-10 18:22:24 +01:00
|
|
|
|
|
|
|
func item_deleted(item):
|
|
|
|
helpers.careful_delete(shell._cwd + item.label)
|
|
|
|
update()
|
2020-10-23 16:43:02 +02:00
|
|
|
|
|
|
|
func close():
|
|
|
|
text_edit.hide()
|
2021-02-04 16:11:56 +01:00
|
|
|
emit_signal("saved")
|
2020-10-23 16:43:02 +02:00
|
|
|
|
|
|
|
func save():
|
|
|
|
match mode:
|
|
|
|
FileBrowserMode.WORKING_DIRECTORY:
|
2021-01-06 17:04:23 +01:00
|
|
|
var fixme_path = repository.shell._cwd
|
2020-10-23 16:43:02 +02:00
|
|
|
|
|
|
|
# Add a newline to the end of the file if there is none.
|
|
|
|
if text_edit.text.length() > 0 and text_edit.text.substr(text_edit.text.length()-1, 1) != "\n":
|
|
|
|
text_edit.text += "\n"
|
|
|
|
|
|
|
|
helpers.write_file(fixme_path+open_file, text_edit.text)
|
2021-01-08 13:54:37 +01:00
|
|
|
update()
|
2020-10-23 16:43:02 +02:00
|
|
|
close()
|
2020-10-23 13:07:16 +02:00
|
|
|
|
2020-10-23 15:08:51 +02:00
|
|
|
func _set_commit(new_commit):
|
|
|
|
commit = new_commit
|
|
|
|
update()
|
2020-10-23 16:43:02 +02:00
|
|
|
|
|
|
|
func _set_mode(new_mode):
|
|
|
|
mode = new_mode
|
2020-10-29 17:39:26 +01:00
|
|
|
|
2020-10-23 16:43:02 +02:00
|
|
|
if save_button:
|
|
|
|
save_button.visible = mode == FileBrowserMode.WORKING_DIRECTORY
|
|
|
|
text_edit.readonly = not mode == FileBrowserMode.WORKING_DIRECTORY
|
|
|
|
text_edit.selecting_enabled = mode == FileBrowserMode.WORKING_DIRECTORY
|
|
|
|
if mode == FileBrowserMode.WORKING_DIRECTORY:
|
|
|
|
text_edit.focus_mode = Control.FOCUS_CLICK
|
|
|
|
else:
|
|
|
|
text_edit.focus_mode = Control.FOCUS_NONE
|
|
|
|
|
|
|
|
func _set_title(new_title):
|
|
|
|
title = new_title
|
|
|
|
if title_label:
|
|
|
|
title_label.text = new_title
|
2020-11-10 18:34:51 +01:00
|
|
|
|
|
|
|
func _gui_input(event):
|
|
|
|
if event is InputEventMouseButton and event.is_pressed() and event.button_index == BUTTON_RIGHT:
|
|
|
|
$PopupMenu.set_position(get_global_mouse_position())
|
|
|
|
$PopupMenu.popup()
|
2020-10-23 15:08:51 +02:00
|
|
|
|
2020-09-22 15:50:57 +02:00
|
|
|
func very_best_sort(a,b):
|
2020-11-10 15:27:42 +01:00
|
|
|
if a[0] == "." and b[0] != ".":
|
2020-09-22 15:50:57 +02:00
|
|
|
return false
|
2020-11-10 15:27:42 +01:00
|
|
|
if a[0] != "." and b[0] == ".":
|
2020-09-22 15:50:57 +02:00
|
|
|
return true
|
|
|
|
return a.casecmp_to(b) == -1
|