mirror of
https://github.com/Virtual-World-RE/NeoGF.git
synced 2024-11-15 12:45:34 +01:00
Update pzztool.py
This commit is contained in:
parent
f7e9533af8
commit
66e5fa58e5
165
pzztool.py
165
pzztool.py
|
@ -1,12 +1,16 @@
|
|||
#!/usr/bin/env python3
|
||||
__version__ = "1.0"
|
||||
__version__ = "1.1"
|
||||
__author__ = "rigodron, algoflash, GGLinnk"
|
||||
__OriginalAutor__ = "infval"
|
||||
|
||||
from os import listdir, path, stat
|
||||
from os import listdir
|
||||
from pathlib import Path
|
||||
from struct import unpack, pack
|
||||
from math import ceil
|
||||
|
||||
BIT_COMPRESSION_FLAG = 0x40000000
|
||||
FILE_LENGTH_MASK = 0x3FFFFFFF
|
||||
CHUNK_SIZE = 0x800
|
||||
|
||||
def pzz_decompress(compressed_bytes: bytes):
|
||||
uncompressed_bytes = bytearray()
|
||||
|
@ -49,7 +53,6 @@ def pzz_decompress(compressed_bytes: bytes):
|
|||
|
||||
return uncompressed_bytes
|
||||
|
||||
|
||||
def bytes_align(bout: bytes):
|
||||
success = False
|
||||
while not success:
|
||||
|
@ -58,7 +61,6 @@ def bytes_align(bout: bytes):
|
|||
if hex(address).endswith("00"):
|
||||
break
|
||||
|
||||
|
||||
def pzz_compress(b):
|
||||
bout = bytearray()
|
||||
size_b = len(b) // 2 * 2
|
||||
|
@ -134,32 +136,31 @@ def pzz_compress(b):
|
|||
|
||||
return bout
|
||||
|
||||
|
||||
def pzz_unpack(path, dir_path):
|
||||
def pzz_unpack(pzz_path):
|
||||
# Script BMS pour les pzz de ps2 (GioGio's adventure) -> https://zenhax.com/viewtopic.php?f=9&t=8724&p=39437#p39437
|
||||
unpacked_pzz_path = Path( Path(pzz_path).stem )
|
||||
unpacked_pzz_path.mkdir(exist_ok=True)
|
||||
|
||||
with open(path, "rb") as f:
|
||||
with open(pzz_path, "rb") as pzz_file:
|
||||
# file_count reçoit le nombre de fichiers présent dans le PZZ :
|
||||
file_count, = unpack(">I", f.read(4)) # On lit les 4 premiers octets (uint32 big-endian)
|
||||
file_count, = unpack(">I", pzz_file.read(4)) # On lit les 4 premiers octets (uint32 big-endian)
|
||||
|
||||
# files_descriptors reçoit un tuple avec l'ensemble des descripteurs de fichiers (groupes d'uint32 big-endian)
|
||||
files_descriptors = unpack(">{}I".format(file_count), f.read(file_count * 4))
|
||||
files_descriptors = unpack(">{}I".format(file_count), pzz_file.read(file_count * 4))
|
||||
|
||||
print("File count:", file_count)
|
||||
|
||||
offset = 0x800
|
||||
offset = CHUNK_SIZE
|
||||
for i, file_descriptor in enumerate(files_descriptors): # on parcours le tuple de descripteurs de fichiers
|
||||
|
||||
is_compressed = (file_descriptor & 0x40000000) != 0 # Le bit 30 correspond au flag de compression (bits numérotés de 0 à 31)
|
||||
print(file_descriptor)
|
||||
is_compressed = (file_descriptor & BIT_COMPRESSION_FLAG) != 0 # Le bit 30 correspond au flag de compression (bits numérotés de 0 à 31)
|
||||
|
||||
# file_descriptor reçoit maintenant les 30 premiers bits : (la taille / 0x800)
|
||||
file_descriptor &= 0x3FFFFFFF
|
||||
print(file_descriptor)
|
||||
# file_descriptor reçoit maintenant les 30 premiers bits : (la taille / CHUNK_SIZE)
|
||||
file_descriptor &= FILE_LENGTH_MASK
|
||||
|
||||
# file_len reçoit la taille du fichier
|
||||
# la taille du fichier est un multiple de 0x800, on paddera avec des 0 jusqu'au fichier suivant
|
||||
file_len = file_descriptor * 0x800 # file_len contient alors la taille du fichier en octets
|
||||
# la taille du fichier est un multiple de CHUNK_SIZE, on paddera avec des 0 jusqu'au fichier suivant
|
||||
file_len = file_descriptor * CHUNK_SIZE # file_len contient alors la taille du fichier en octets
|
||||
|
||||
# Si la taille est nulle, on passe au descripteur de fichier suivant
|
||||
if file_len == 0:
|
||||
|
@ -171,98 +172,68 @@ def pzz_unpack(path, dir_path):
|
|||
comp_str = "_compressed"
|
||||
|
||||
# On forme le nom du nouveau fichier que l'on va extraire
|
||||
filename = "{}_{:03}{}".format(Path(path).stem, i, comp_str)
|
||||
file_path = (Path(dir_path) / filename).with_suffix(".dat")
|
||||
filename = "{}_{:03}{}".format(Path(pzz_path).stem, i, comp_str)
|
||||
file_path = (Path(unpacked_pzz_path) / filename).with_suffix(".dat")
|
||||
|
||||
print("Offset: {:010} - {}".format(offset, file_path))
|
||||
|
||||
# On se positionne au début du fichier dans l'archive
|
||||
f.seek(offset)
|
||||
pzz_file.seek(offset)
|
||||
# On extrait notre fichier
|
||||
file_path.write_bytes(f.read(file_len))
|
||||
file_path.write_bytes(pzz_file.read(file_len))
|
||||
|
||||
# Enfin, on ajoute la taille du fichier afin de pointer sur le fichier suivant
|
||||
# La taille du fichier étant un multiple de 0x800, on aura complété les 2048 octets finaux avec des 0x00
|
||||
# La taille du fichier étant un multiple de CHUNK_SIZE, on aura complété les 2048 octets finaux avec des 0x00
|
||||
offset += file_len
|
||||
|
||||
def pzz_pack(src, dir_path):
|
||||
bout = bytearray()
|
||||
filebout = bytearray()
|
||||
file_count = 0;
|
||||
files = []
|
||||
def pzz_pack(src_path):
|
||||
# On récupère les fichiers du dossier à compresser
|
||||
src_files = listdir(src_path)
|
||||
|
||||
linkPath = path.normpath(dir_path)
|
||||
linkFiles = [f for f in listdir(linkPath) if path.isfile(path.join(linkPath, f))]
|
||||
# On récupère le nombre total de fichiers
|
||||
file_count = int(src_files[-1].split("_")[1][0:3]) + 1
|
||||
|
||||
for file in linkFiles:
|
||||
if (str(src)[12:-18] in file):
|
||||
file_count += 1
|
||||
files.append(file)
|
||||
print(str(file_count) + " files to pack in " + str(src_path.with_suffix(".pzz")))
|
||||
|
||||
is_odd_number = (file_count % 2) != 0
|
||||
with src_path.with_suffix(".pzz").open("wb") as pzz_file :
|
||||
# On écrit file_count au début de header
|
||||
pzz_file.write(file_count.to_bytes(4, byteorder='big'))
|
||||
|
||||
if (file_count == 6 or file_count == 12):
|
||||
file_count += 4
|
||||
for i, file in enumerate(files):
|
||||
count = int(0x40 << 24) + int(path.getsize(linkPath + "/" + file) / 0x800)
|
||||
# On écrit les file_descriptor dans le header du PZZ pour chaque fichier
|
||||
last_index = 0 # permet d'ajouter les file_descriptor=NULL
|
||||
for src_file_name in src_files :
|
||||
index = int(src_file_name.split("_")[1][0:3])
|
||||
is_compressed = ( len(src_file_name.split("_compressed")) > 1 )
|
||||
|
||||
if (i == 1 or i == 3 or i == 5 or i == 7):
|
||||
filebout.extend(b"\x00\x00\x00\x00")
|
||||
filebout.extend(pack(">I", count))
|
||||
else:
|
||||
filebout.extend(pack(">I", count))
|
||||
# On ajoute les file_descriptor=NULL
|
||||
while(last_index < index):
|
||||
pzz_file.write(b"\x00\x00\x00\x00")
|
||||
last_index += 1
|
||||
|
||||
file_count = pack(">I", file_count)
|
||||
bout.extend(file_count)
|
||||
bout.extend(filebout)
|
||||
# file_descriptor = arrondi supérieur de la taille / CHUNK_SIZE
|
||||
file_descriptor = ceil( (src_path / src_file_name).stat().st_size / CHUNK_SIZE)
|
||||
|
||||
elif (file_count == 6 or file_count == 14):
|
||||
file_count += 2
|
||||
for i, file in enumerate(files):
|
||||
count = int(0x40 << 24) + int(path.getsize(linkPath + "/" + file) / 0x800)
|
||||
# On ajoute le flag de compression au file_descriptor
|
||||
if is_compressed :
|
||||
file_descriptor |= BIT_COMPRESSION_FLAG
|
||||
|
||||
if (i == 1 or i == 3):
|
||||
filebout.extend(b"\x00\x00\x00\x00")
|
||||
filebout.extend(pack(">I", count))
|
||||
else:
|
||||
filebout.extend(pack(">I", count))
|
||||
# On ecrit le file_descriptor
|
||||
pzz_file.write(file_descriptor.to_bytes(4, byteorder='big'))
|
||||
last_index += 1
|
||||
|
||||
file_count = pack(">I", file_count)
|
||||
bout.extend(file_count)
|
||||
bout.extend(filebout)
|
||||
# On se place à la fin du header PZZ
|
||||
pzz_file.seek(CHUNK_SIZE)
|
||||
|
||||
elif is_odd_number:
|
||||
file_count += 1
|
||||
for i, file in enumerate(files):
|
||||
count = int(0x40 << 24) + int(path.getsize(linkPath + "/" + file) / 0x800)
|
||||
# On écrit tous les fichiers à la suite du header
|
||||
for src_file_name in src_files :
|
||||
is_compressed = ( len(src_file_name.split("_compressed")) > 1 )
|
||||
|
||||
if (i == 1):
|
||||
filebout.extend(b"\x00\x00\x00\x00")
|
||||
filebout.extend(pack(">I", count))
|
||||
else:
|
||||
filebout.extend(pack(">I", count))
|
||||
with (src_path / src_file_name).open("rb") as src_file :
|
||||
pzz_file.write( src_file.read() )
|
||||
|
||||
file_count = pack(">I", file_count)
|
||||
bout.extend(file_count)
|
||||
bout.extend(filebout)
|
||||
|
||||
success = False
|
||||
|
||||
while not success:
|
||||
bout.extend(b"\x00\x00")
|
||||
address = len(bout)
|
||||
if hex(address).endswith("800"):
|
||||
break
|
||||
for file in files:
|
||||
filebout = open(linkPath + "/" + file, "rb")
|
||||
data = filebout.read()
|
||||
bout.extend(data)
|
||||
filename = "{}".format(str(src)[12:-19])
|
||||
p = (Path(dir_path) / filename).with_suffix(".pzz")
|
||||
p.write_bytes(bout)
|
||||
|
||||
def pzz_test():
|
||||
print(pack(">I", int(0x40 << 24) + int(stat(linkPath + "/" + file).st_size) / 0x800))
|
||||
# Si le fichier n'est pas compressé, on ajoute le padding pour correspondre à un multiple de CHUNK_SIZE
|
||||
if not is_compressed and (src_file.tell() % CHUNK_SIZE) > 0:
|
||||
pzz_file.write( b"\x00" * (CHUNK_SIZE - (src_file.tell() % CHUNK_SIZE)) )
|
||||
|
||||
def get_argparser():
|
||||
import argparse
|
||||
|
@ -271,17 +242,15 @@ def get_argparser():
|
|||
parser.add_argument('input_path', metavar='INPUT', help='only relative if -bu, -bc, -bd, p')
|
||||
parser.add_argument('output_path', metavar='OUTPUT', help='directory if -u, -bu, -bc, -bd')
|
||||
group = parser.add_mutually_exclusive_group(required=True)
|
||||
group.add_argument('-u', '--unpack', action='store_true', help='PZZ files from AFS')
|
||||
group.add_argument('-c', '--compress', action='store_true')
|
||||
group.add_argument('-u', '--unpack', action='store_true', help='-u source_pzz.pzz : Unpack the pzz in source_pzz folder')
|
||||
group.add_argument('-p', '--pack', action='store_true', help="-p source_folder : Pack source_folder in source_folder.pzz")
|
||||
group.add_argument('-c', '--compress', action='store_true', help='')
|
||||
group.add_argument('-d', '--decompress', action='store_true', help='Unpacked files from PZZ')
|
||||
group.add_argument('-bu', '--batch-unpack', action='store_true', help='INPUT relative pattern; e.g. AFS_DATA\\*.pzz')
|
||||
group.add_argument('-bc', '--batch-compress', action='store_true', help='INPUT relative pattern; e.g. AFS_DATA\\*.bin')
|
||||
group.add_argument('-bd', '--batch-decompress', action='store_true', help='INPUT relative pattern; e.g. AFS_DATA\\*_compressed.dat')
|
||||
group.add_argument('-p', '--pack', action='store_true')
|
||||
group.add_argument('-t', '--test', action='store_true')
|
||||
return parser
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
parser = get_argparser()
|
||||
|
@ -318,14 +287,10 @@ if __name__ == '__main__':
|
|||
print("! Wrong PZZ file")
|
||||
elif args.pack:
|
||||
print("### Pack")
|
||||
p_output.mkdir(exist_ok=True)
|
||||
pzz_pack(p_input, p_output)
|
||||
elif args.test:
|
||||
pzz_test()
|
||||
pzz_pack(p_input)
|
||||
elif args.unpack:
|
||||
print("### Unpack")
|
||||
p_output.mkdir(exist_ok=True)
|
||||
pzz_unpack(p_input, p_output)
|
||||
pzz_unpack(p_input)
|
||||
#elif args.batch_pack:
|
||||
# pass
|
||||
elif args.batch_unpack:
|
||||
|
@ -336,5 +301,3 @@ if __name__ == '__main__':
|
|||
for filename in p.glob(args.input_path):
|
||||
print(filename)
|
||||
pzz_unpack(filename, p_output)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user