mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-07 19:09:50 +00:00
* Add files via upload * add fps counter * formatting * Update Recorder.gd * Some improvements * typo * another typo * formatting
200 lines
5.4 KiB
GDScript
200 lines
5.4 KiB
GDScript
extends PanelContainer
|
||
|
||
signal frame_saved
|
||
|
||
enum Mode { CANVAS, PIXELORAMA }
|
||
|
||
var mode = 0
|
||
var chosen_dir = ""
|
||
var save_dir = ""
|
||
var project: Project
|
||
var cache: Array = [] # Array of images stored during recording
|
||
var frame_captured = 0 # A variable used to visualize frames captured
|
||
var skip_amount = 1 # No of "do" actions after which a frame can be captured
|
||
var current_frame_no = 0 # used to compare with skip_amount to see if it can be captured
|
||
|
||
var resize := 100
|
||
|
||
onready var project_list = $"%TargetProjectOption"
|
||
onready var folder_button: Button = $"%Folder"
|
||
onready var start_button = $"%Start"
|
||
onready var size: Label = $"%Size"
|
||
onready var path_field = $"%Path"
|
||
|
||
|
||
func _ready() -> void:
|
||
refresh_projects_list()
|
||
project = Global.current_project
|
||
connect("frame_saved", self, "_on_frame_saved")
|
||
# Make a recordings folder if there isn't one
|
||
var dir = Directory.new()
|
||
chosen_dir = Global.directory_module.xdg_data_home.plus_file("Recordings")
|
||
dir.make_dir_recursive(chosen_dir)
|
||
path_field.text = chosen_dir
|
||
size.text = str("(", project.size.x, "×", project.size.y, ")")
|
||
|
||
|
||
func initialize_recording():
|
||
connect_undo() # connect to detect changes in project
|
||
cache.clear() # clear the cache array to store new images
|
||
frame_captured = 0
|
||
current_frame_no = skip_amount - 1
|
||
|
||
# disable some options that are not required during recording
|
||
folder_button.visible = true
|
||
project_list.visible = false
|
||
$ScrollContainer/CenterContainer/GridContainer/Captured.visible = true
|
||
for child in $Dialogs/Options/PanelContainer/VBoxContainer.get_children():
|
||
if !child.is_in_group("visible during recording"):
|
||
child.visible = false
|
||
|
||
save_dir = chosen_dir
|
||
# Remove end back-slashes if present
|
||
if save_dir.ends_with("/"):
|
||
save_dir[-1] = ""
|
||
|
||
# Create a new directory based on time
|
||
var folder = str(
|
||
project.name, OS.get_time().hour, "_", OS.get_time().minute, "_", OS.get_time().second
|
||
)
|
||
save_dir = save_dir.plus_file(folder)
|
||
var dir := Directory.new()
|
||
|
||
# warning-ignore:return_value_discarded
|
||
dir.make_dir_recursive(save_dir)
|
||
|
||
capture_frame() # capture first frame
|
||
$Timer.start()
|
||
|
||
|
||
func capture_frame() -> void:
|
||
current_frame_no += 1
|
||
if current_frame_no != skip_amount:
|
||
return
|
||
current_frame_no = 0
|
||
var image := Image.new()
|
||
if mode == Mode.PIXELORAMA:
|
||
image = get_tree().root.get_viewport().get_texture().get_data()
|
||
image.flip_y()
|
||
else:
|
||
var frame = project.frames[project.current_frame]
|
||
image.create(project.size.x, project.size.y, false, Image.FORMAT_RGBA8)
|
||
Export.blend_selected_cels(image, frame, Vector2(0, 0), project)
|
||
|
||
if mode == Mode.CANVAS:
|
||
if resize != 100:
|
||
image.unlock()
|
||
image.resize(image.get_size().x * resize / 100, image.get_size().y * resize / 100, 0)
|
||
|
||
cache.append(image)
|
||
|
||
|
||
func _on_Timer_timeout() -> void:
|
||
# Saves frames little by little During recording
|
||
if cache.size() > 0:
|
||
save_frame(cache[0])
|
||
cache.remove(0)
|
||
|
||
|
||
func save_frame(img: Image) -> void:
|
||
var save_file = str(project.name, "_", frame_captured, ".png")
|
||
img.save_png(save_dir.plus_file(save_file))
|
||
emit_signal("frame_saved")
|
||
|
||
|
||
func _on_frame_saved():
|
||
frame_captured += 1
|
||
$ScrollContainer/CenterContainer/GridContainer/Captured.text = str("Saved: ", frame_captured)
|
||
|
||
|
||
func finalize_recording():
|
||
$Timer.stop()
|
||
for img in cache:
|
||
save_frame(img)
|
||
cache.clear()
|
||
disconnect_undo()
|
||
folder_button.visible = false
|
||
project_list.visible = true
|
||
$ScrollContainer/CenterContainer/GridContainer/Captured.visible = false
|
||
for child in $Dialogs/Options/PanelContainer/VBoxContainer.get_children():
|
||
child.visible = true
|
||
if mode == Mode.PIXELORAMA:
|
||
size.get_parent().visible = false
|
||
|
||
|
||
func disconnect_undo() -> void:
|
||
project.undo_redo.disconnect("version_changed", self, "capture_frame")
|
||
|
||
|
||
func connect_undo() -> void:
|
||
project.undo_redo.connect("version_changed", self, "capture_frame")
|
||
|
||
|
||
func _on_TargetProjectOption_item_selected(index: int) -> void:
|
||
project = Global.projects[index]
|
||
|
||
|
||
func _on_TargetProjectOption_pressed() -> void:
|
||
refresh_projects_list()
|
||
|
||
|
||
func refresh_projects_list() -> void:
|
||
project_list.clear()
|
||
for proj in Global.projects:
|
||
project_list.add_item(proj.name)
|
||
|
||
|
||
func _on_Start_toggled(button_pressed: bool) -> void:
|
||
if button_pressed:
|
||
initialize_recording()
|
||
Global.change_button_texturerect(start_button.get_child(0), "stop.png")
|
||
else:
|
||
finalize_recording()
|
||
Global.change_button_texturerect(start_button.get_child(0), "start.png")
|
||
|
||
|
||
func _on_Settings_pressed():
|
||
var settings = $Dialogs/Options
|
||
var pos = rect_position
|
||
settings.popup(Rect2(pos, settings.rect_size))
|
||
|
||
|
||
func _on_SkipAmount_value_changed(value: float) -> void:
|
||
skip_amount = value
|
||
|
||
|
||
func _on_Mode_toggled(button_pressed) -> void:
|
||
if button_pressed:
|
||
mode = Mode.PIXELORAMA
|
||
size.get_parent().visible = false
|
||
else:
|
||
mode = Mode.CANVAS
|
||
size.get_parent().visible = true
|
||
|
||
|
||
func _on_SpinBox_value_changed(value: float) -> void:
|
||
resize = value
|
||
var new_size: Vector2 = project.size * (resize / 100.0)
|
||
size.text = str("(", new_size.x, "×", new_size.y, ")")
|
||
|
||
|
||
func _on_Choose_pressed() -> void:
|
||
$Dialogs/Path.popup_centered()
|
||
$Dialogs/Path.current_dir = chosen_dir
|
||
|
||
|
||
func _on_Open_pressed() -> void:
|
||
OS.shell_open(path_field.text)
|
||
|
||
|
||
func _on_Path_dir_selected(dir: String) -> void:
|
||
chosen_dir = dir
|
||
path_field.text = chosen_dir
|
||
start_button.disabled = false
|
||
|
||
|
||
func _on_Fps_value_changed(value: float) -> void:
|
||
var dur_label = $Dialogs/Options/PanelContainer/VBoxContainer/Fps/Duration
|
||
var duration = stepify(1.0 / value, 0.0001)
|
||
dur_label.text = str("= ", duration, " sec")
|