mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
from source.wt import *
|
|
from source.wt import _run, _run_popen
|
|
|
|
tools_path = tools_szs_dir / ("wimgt.exe" if system == "win64" else "wimgt")
|
|
|
|
|
|
@better_wt_error(tools_path)
|
|
def _tools_run(*args) -> bytes:
|
|
"""
|
|
Return a command with wimgt and return the output
|
|
:param args: command arguments
|
|
:return: the output of the command
|
|
"""
|
|
return _run(tools_path, *args)
|
|
|
|
|
|
def _tools_run_popen(*args) -> subprocess.Popen:
|
|
"""
|
|
Return a popen of command with wimgt
|
|
:param args: command arguments
|
|
:return: the process of the command
|
|
"""
|
|
return _run_popen(tools_path, *args)
|
|
|
|
|
|
@better_wt_error(tools_path)
|
|
def encode_data(image_data: bytes, transform: str = "CMPR") -> bytes:
|
|
"""
|
|
Convert the image data and return the encoded image data
|
|
:param image_data: the original image data
|
|
:param transform: the type of the image encoding
|
|
:return: the encoded image data
|
|
"""
|
|
process = _tools_run_popen("ENCODE", "-", "--transform", transform, "--DEST", "-")
|
|
stdout, _ = process.communicate(input=image_data)
|
|
|
|
if process.returncode != 0:
|
|
raise WTError(tools_path, process.returncode)
|
|
|
|
return stdout
|
|
|
|
|
|
class IMGPath:
|
|
"""
|
|
Represent a path to a normal image, that can be converted into game image data
|
|
"""
|
|
__slots__ = ("path", )
|
|
|
|
def __init__(self, path: Path | str):
|
|
self.path: Path = Path(path)
|
|
|
|
def get_encoded_data(self, transform: str = "CMPR") -> bytes:
|
|
"""
|
|
Convert the image and return the encoded image data
|
|
:transform: the type of the image encoding
|
|
:return: the data of the encoded image
|
|
"""
|
|
# using "-" for destination allow for output in the stdout
|
|
return _tools_run("ENCODE", self.path, "--transform", transform, "--DEST", "-")
|
|
|