mirror of
https://github.com/Relintai/MemR.git
synced 2024-11-14 10:27:20 +01:00
319 lines
7.8 KiB
GDScript
319 lines
7.8 KiB
GDScript
extends VBoxContainer
|
|
|
|
var sort_folder : String
|
|
var target_folder : String
|
|
|
|
var shell_script_name : String = "apply.sh"
|
|
|
|
var _texture_rect : TextureRect
|
|
var _gif_rect : TextureRect
|
|
var _error_label : Label
|
|
var _categories_ob : OptionButton
|
|
var _sub_categories_ob : OptionButton
|
|
|
|
var _categories_popup : ConfirmationDialog
|
|
var _categories_popup_line_edit : LineEdit
|
|
|
|
var _sub_categories_popup : ConfirmationDialog
|
|
var _sub_categories_popup_line_edit : LineEdit
|
|
|
|
var _current_folder_index : int
|
|
var _folders : PoolStringArray
|
|
|
|
var _current_file_index : int
|
|
var _current_folder_files : PoolStringArray
|
|
|
|
func refresh_categories() -> void:
|
|
_categories_ob.clear()
|
|
|
|
var tf : Directory = Directory.new()
|
|
if tf.open(target_folder) != OK:
|
|
return
|
|
|
|
var folders : PoolStringArray = PoolStringArray()
|
|
|
|
tf.list_dir_begin(true)
|
|
|
|
var f : String = tf.get_next()
|
|
while !f.empty():
|
|
if !tf.current_is_dir():
|
|
f = tf.get_next()
|
|
continue
|
|
|
|
folders.push_back(f)
|
|
f = tf.get_next()
|
|
|
|
tf.list_dir_end()
|
|
|
|
folders.sort()
|
|
|
|
for i in range(folders.size()):
|
|
_categories_ob.add_item(folders[i])
|
|
|
|
func refresh_sub_categories() -> void:
|
|
_sub_categories_ob.clear()
|
|
|
|
if _categories_ob.selected < 0:
|
|
return
|
|
|
|
var tf : Directory = Directory.new()
|
|
if tf.open(target_folder.append_path(_categories_ob.get_item_text(_categories_ob.selected))) != OK:
|
|
return
|
|
|
|
var folders : PoolStringArray = PoolStringArray()
|
|
|
|
tf.list_dir_begin(true)
|
|
|
|
var f : String = tf.get_next()
|
|
while !f.empty():
|
|
if !tf.current_is_dir():
|
|
f = tf.get_next()
|
|
continue
|
|
|
|
folders.push_back(f)
|
|
f = tf.get_next()
|
|
|
|
tf.list_dir_end()
|
|
|
|
folders.sort()
|
|
|
|
_sub_categories_ob.add_item("<NONE>")
|
|
|
|
for i in range(folders.size()):
|
|
_sub_categories_ob.add_item(folders[i])
|
|
|
|
func validate_folders() -> bool:
|
|
sort_folder = ProjectSettings.get("application/config/sort_folder")
|
|
target_folder = ProjectSettings.get("application/config/target_folder")
|
|
|
|
if sort_folder.empty() || target_folder.empty():
|
|
return false
|
|
|
|
var d1 : Directory = Directory.new()
|
|
if d1.open(sort_folder) != OK:
|
|
return false
|
|
|
|
var d2 : Directory = Directory.new()
|
|
if d2.open(target_folder) != OK:
|
|
return false
|
|
|
|
return true
|
|
|
|
func next_image() -> void:
|
|
_current_file_index += 1
|
|
|
|
if _current_file_index >= _current_folder_files.size():
|
|
next_folder()
|
|
return
|
|
|
|
_error_label.hide()
|
|
_texture_rect.hide()
|
|
_gif_rect.hide()
|
|
|
|
var curr_file : String = _current_folder_files[_current_file_index]
|
|
|
|
if curr_file.get_extension().to_lower() != "gif":
|
|
var img : Image = Image.new()
|
|
if img.load(curr_file) != OK:
|
|
_error_label.text = "Error loading file: " + curr_file
|
|
_error_label.show()
|
|
else:
|
|
_texture_rect.show()
|
|
_texture_rect.texture.create_from_image(img, 0)
|
|
else:
|
|
if !_gif_rect.load_gif(curr_file):
|
|
_error_label.text = "Error loading file: " + curr_file
|
|
_error_label.show()
|
|
else:
|
|
_gif_rect.show()
|
|
|
|
func evaluate_folders() -> void:
|
|
_folders.clear()
|
|
|
|
evaluate_folder(sort_folder)
|
|
|
|
_folders.sort()
|
|
|
|
func evaluate_folder(folder : String) -> void:
|
|
var d : Directory = Directory.new()
|
|
|
|
if d.open(folder) != OK:
|
|
return
|
|
|
|
d.list_dir_begin(true)
|
|
|
|
var f : String = d.get_next()
|
|
while !f.empty():
|
|
if !d.current_is_dir():
|
|
f = d.get_next()
|
|
continue
|
|
|
|
var fp : String = folder.append_path(f)
|
|
_folders.push_back(fp)
|
|
evaluate_folder(fp)
|
|
|
|
f = d.get_next()
|
|
|
|
d.list_dir_end()
|
|
|
|
func next_folder() -> void:
|
|
_current_folder_index += 1
|
|
|
|
if _current_folder_index >= _folders.size():
|
|
return
|
|
|
|
_current_file_index = 0
|
|
_current_folder_files.clear()
|
|
|
|
var curr_path : String = _folders[_current_folder_index]
|
|
|
|
var tf : Directory = Directory.new()
|
|
if tf.open(curr_path) != OK:
|
|
return
|
|
|
|
tf.list_dir_begin(true)
|
|
|
|
var f : String = tf.get_next()
|
|
while !f.empty():
|
|
if tf.current_is_dir():
|
|
f = tf.get_next()
|
|
continue
|
|
|
|
_current_folder_files.push_back(curr_path.append_path(f))
|
|
f = tf.get_next()
|
|
|
|
tf.list_dir_end()
|
|
|
|
if _current_folder_files.size() == 0:
|
|
next_folder()
|
|
else:
|
|
_current_file_index = -1
|
|
next_image()
|
|
|
|
func append_command(command : String) -> void:
|
|
var shscript_file : String = sort_folder.plus_file(shell_script_name)
|
|
|
|
var file : File = File.new()
|
|
|
|
if !file.file_exists(shscript_file):
|
|
file.open(shscript_file, File.WRITE)
|
|
else:
|
|
file.open(shscript_file, File.READ_WRITE)
|
|
file.seek_end()
|
|
|
|
file.store_string(command + "\n")
|
|
file.close()
|
|
|
|
func _on_Apply_pressed() -> void:
|
|
if _categories_ob.selected == -1:
|
|
print("_categories_ob.selected == -1!")
|
|
return
|
|
|
|
if _sub_categories_ob.selected == -1:
|
|
print("_sub_categories_ob.selected == -1!")
|
|
return
|
|
|
|
if _current_file_index >= _current_folder_files.size():
|
|
next_image()
|
|
return
|
|
|
|
var cimagefn : String = _current_folder_files[_current_file_index]
|
|
var targetf : String = target_folder.append_path(_categories_ob.get_item_text(_categories_ob.selected))
|
|
|
|
if _sub_categories_ob.selected > 0:
|
|
targetf = targetf.append_path(_sub_categories_ob.get_item_text(_sub_categories_ob.selected))
|
|
|
|
targetf = targetf.plus_file(cimagefn.get_file())
|
|
|
|
var dir : Directory = Directory.new()
|
|
var err : int = dir.copy(cimagefn, targetf)
|
|
|
|
if err != OK:
|
|
print("_on_Apply_pressed dir.copy(cimagefn, targetf) err != OK! " + str(err))
|
|
return
|
|
|
|
append_command("mv " + cimagefn + " " + targetf)
|
|
|
|
err = dir.remove(cimagefn)
|
|
|
|
if err != OK:
|
|
print("_on_Apply_pressed dir.remove(cimagefn) err != OK! " + str(err))
|
|
return
|
|
|
|
next_image()
|
|
|
|
func _on_Skip_pressed() -> void:
|
|
next_image()
|
|
|
|
func _on_Categories_item_selected(index: int) -> void:
|
|
refresh_sub_categories()
|
|
|
|
func _on_SubCategoies_item_selected(index: int) -> void:
|
|
pass # Replace with function body.
|
|
|
|
func _on_Categories_Add_pressed() -> void:
|
|
_categories_popup_line_edit.text = ""
|
|
_categories_popup.popup_centered()
|
|
|
|
func _on_SubCategoies_Add_pressed() -> void:
|
|
_sub_categories_popup_line_edit.text = ""
|
|
_sub_categories_popup.popup_centered()
|
|
|
|
func _on_NewCategoryPopup_confirmed() -> void:
|
|
if _categories_popup_line_edit.text.empty():
|
|
return
|
|
|
|
var folder : String = target_folder.append_path(_categories_popup_line_edit.text)
|
|
|
|
var d : Directory = Directory.new()
|
|
d.make_dir_recursive(folder)
|
|
|
|
append_command("mkdir " + folder)
|
|
|
|
refresh_categories()
|
|
refresh_sub_categories()
|
|
|
|
func _on_NewSubCategoryPopup_confirmed() -> void:
|
|
if _categories_ob.selected == -1:
|
|
return
|
|
|
|
if _sub_categories_popup_line_edit.text.empty():
|
|
return
|
|
|
|
var folder : String = target_folder.append_path(_categories_ob.get_item_text(_categories_ob.selected))
|
|
folder = folder.append_path(_sub_categories_popup_line_edit.text)
|
|
|
|
var d : Directory = Directory.new()
|
|
d.make_dir_recursive(folder)
|
|
|
|
append_command("mkdir " + folder)
|
|
|
|
refresh_sub_categories()
|
|
|
|
|
|
func _notification(what: int) -> void:
|
|
if what == NOTIFICATION_READY:
|
|
_texture_rect = get_node("ScrollContainer/VBoxContainer/TextureRect") as TextureRect
|
|
_gif_rect = get_node("ScrollContainer/VBoxContainer/GifRect") as TextureRect
|
|
_error_label = get_node("ScrollContainer/VBoxContainer/ErrorLabel") as Label
|
|
_categories_ob = get_node("Categories/Categories") as OptionButton
|
|
_sub_categories_ob = get_node("SubCategoies/SubCategoies") as OptionButton
|
|
|
|
_categories_popup = get_node("Control/NewCategoryPopup") as ConfirmationDialog
|
|
_categories_popup_line_edit = get_node("Control/NewCategoryPopup/VBoxContainer/LineEdit") as LineEdit
|
|
|
|
_sub_categories_popup = get_node("Control/NewSubCategoryPopup") as ConfirmationDialog
|
|
_sub_categories_popup_line_edit = get_node("Control/NewSubCategoryPopup/VBoxContainer/LineEdit") as LineEdit
|
|
|
|
_texture_rect.texture = ImageTexture.new()
|
|
elif what == NOTIFICATION_VISIBILITY_CHANGED:
|
|
if is_visible_in_tree():
|
|
sort_folder = ProjectSettings.get("application/config/sort_folder")
|
|
target_folder = ProjectSettings.get("application/config/target_folder")
|
|
refresh_categories()
|
|
refresh_sub_categories()
|
|
|
|
evaluate_folders()
|
|
_current_folder_index = -1
|
|
next_folder()
|