diff --git a/.gitignore b/.gitignore index eeae8a53..f4ade874 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,7 @@ __pycache__/ .Python build/ develop-eggs/ -dist/ +/dist/ downloads/ eggs/ .eggs/ diff --git a/automation/anim_stitcher/stitcher.py b/automation/anim_stitcher/stitcher.py index 5bdaab39..e65b0b4b 100644 --- a/automation/anim_stitcher/stitcher.py +++ b/automation/anim_stitcher/stitcher.py @@ -4,6 +4,8 @@ import os from PIL import Image import json import logging +import time +import getpass from typing import List from project_root import get_project_root logger = logging.getLogger(__name__) @@ -26,12 +28,12 @@ def check_sprite_exists(sprite_type: str, sprite_name: str) -> bool: # Build the path the sprite should exist in sprite_path = os.path.join( - project_root, "game", "dist", "anm", sprite_type, f"{sprite_type}_{sprite_name}") + project_root, "game", "dist", "assets", "anm", sprite_type, f"{sprite_type}_{sprite_name}") return os.path.isdir(sprite_path) -def stitch_images_and_write_to_disk(sprite_type: str, sprite_name: str, images: List[str]) -> None: +def stitch_images_and_write_to_disk(sprite_type: str, sprite_name: str, images: List[str], quantize: bool) -> None: # Load all the images images_to_stitch = [] @@ -57,14 +59,17 @@ def stitch_images_and_write_to_disk(sprite_type: str, sprite_name: str, images: # Save the new image project_root = get_project_root() logger.debug(f"Project root: {project_root}") - new_image = new_image.quantize(method=2) - new_image.save(os.path.join(project_root, "game", "dist", "anm", sprite_type, + if quantize: + new_image = new_image.quantize(method=2) + new_image.save(os.path.join(project_root, "game", "dist", "assets", "anm", sprite_type, f"{sprite_type}_{sprite_name}", f"{sprite_type}_{sprite_name}.png")) # Build some JSON metadata metadata = { "sheet_height": max_height, "sheet_width": total_width, + "published_at": time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()), + "published_by": getpass.getuser(), "frames": [] } @@ -80,6 +85,6 @@ def stitch_images_and_write_to_disk(sprite_type: str, sprite_name: str, images: x_offset += image.size[0] # Write the metadata to disk - with open(os.path.join(project_root, "game", "dist", "anm", sprite_type, + with open(os.path.join(project_root, "game", "dist", "assets", "anm", sprite_type, f"{sprite_type}_{sprite_name}", f"{sprite_type}_{sprite_name}.anim_meta.json"), "w") as f: json.dump(metadata, f, indent=4) diff --git a/automation/anim_stitcher/ui.py b/automation/anim_stitcher/ui.py index 42b8dba5..6dc06ad6 100644 --- a/automation/anim_stitcher/ui.py +++ b/automation/anim_stitcher/ui.py @@ -74,6 +74,17 @@ class AnimStitcherWindow(QtWidgets.QWidget): self.sprite_name_layout.addWidget(self.sprite_name_input) self.layout().addLayout(self.sprite_name_layout) + # Add a selection option for the sprite optimization + self.optimization_layout = QtWidgets.QHBoxLayout() + self.optimization_label = QtWidgets.QLabel("Optimize For") + self.optimization_layout.addWidget(self.optimization_label) + self.optimization_dropdown = QtWidgets.QComboBox() + self.optimization_dropdown.addItem("Size") + self.optimization_dropdown.addItem("Quality") + self.optimization_dropdown.setEnabled(False) + self.optimization_layout.addWidget(self.optimization_dropdown) + self.layout().addLayout(self.optimization_layout) + # Add a seperator self.layout().addWidget(qt_lines.QHLine()) @@ -110,6 +121,7 @@ class AnimStitcherWindow(QtWidgets.QWidget): self.sprite_type_dropdown.setEnabled(True) self.sprite_name_input.setEnabled(True) self.stitch_button.setEnabled(True) + self.optimization_dropdown.setEnabled(True) # Save the selected files self.selected_files = file_dialog.selectedFiles() @@ -157,7 +169,7 @@ class AnimStitcherWindow(QtWidgets.QWidget): # Perform the actual stitching action stitcher.stitch_images_and_write_to_disk( - sprite_type, sprite_name, self.selected_files) + sprite_type, sprite_name, self.selected_files, self.optimization_dropdown.currentText() == "Size") # Close the window self.close() diff --git a/game/dist/assets/.gitkeep b/game/dist/assets/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/game/dist/assets/anm/chr/chr_testFox/chr_testFox.anim_meta.json b/game/dist/assets/anm/chr/chr_testFox/chr_testFox.anim_meta.json new file mode 100644 index 00000000..ce06ec6d --- /dev/null +++ b/game/dist/assets/anm/chr/chr_testFox/chr_testFox.anim_meta.json @@ -0,0 +1,116 @@ +{ + "sheet_height": 1080, + "sheet_width": 34560, + "published_at": "2022-03-21 17:25:40", + "published_by": "ewpratten", + "frames": [ + { + "x": 0, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 1920, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 3840, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 5760, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 7680, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 9600, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 11520, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 13440, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 15360, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 17280, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 19200, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 21120, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 23040, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 24960, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 26880, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 28800, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 30720, + "y": 0, + "width": 1920, + "height": 1080 + }, + { + "x": 32640, + "y": 0, + "width": 1920, + "height": 1080 + } + ] +} \ No newline at end of file diff --git a/game/dist/assets/anm/chr/chr_testFox/chr_testFox.png b/game/dist/assets/anm/chr/chr_testFox/chr_testFox.png new file mode 100644 index 00000000..155c9eaf Binary files /dev/null and b/game/dist/assets/anm/chr/chr_testFox/chr_testFox.png differ diff --git a/game/dist/known-sprite-types.json b/game/dist/known-sprite-types.json new file mode 100644 index 00000000..60d65adb --- /dev/null +++ b/game/dist/known-sprite-types.json @@ -0,0 +1,18 @@ +[ + { + "short": "chr", + "friendly": "Character" + }, + { + "short": "env", + "friendly": "Environment" + }, + { + "short": "prp", + "friendly": "Prop" + }, + { + "short": "cut", + "friendly": "Cutscene" + } +] \ No newline at end of file