Skip to content

Manoplay/zishzingers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zishzingers

A set of tools for working with the fish fingers (FF) bytecode script format used in the mainline LittleBigPlanet franchise.

Compilation

  • Install the latest version of Zig (tested with version 0.13.0-dev.245+5fe9f88b1)
  • Run zig build, which will place an executable file titled zishzingers in zig-out/bin/

Usage

All tools are compiled into the same zishzingers executable file, with each tool being available through a different subcommand

disasm

Disassembles script files into a human-readable format

# When a script is inside the LBP resource container, just pass the script name
$ zishzingers disasm compressed_script.ff
# When a script is pre-decompressed, you need to specify the compression flags and the asset revision
$ zishzingers disasm -n decompressed_script.ff -c integers -c matrices -c vectors -r 0x272

generate_library

Generates an A# library from a folder of extracted assets and a MAP file.

# Read the help file `zishzingers generate_library --help` for details on what these options do!
$ zishzingers generate_library -m blurayguids.map -o deploy_std/ -f game_data/ -s std -n lbpdeploy

compile

Compiles an A# file into an LBP script file.

Compilation options for games:

  • Deploy -r 0x2C2
  • Vita -r 0x3E2 -z 17457 -y 132
  • LBP2 -r 0x3E6
# Read the help file `zishzingers compile --help` for details on what these options do!
$ zishzingers compile compile samples/tweakegg.as -l lbpdeploy:deploy_std/ -i 1234

Sample scripts are provided in the samples/ folder.

You can read a WIP language reference here.

Special Thanks

Massive shoutouts to Aidan for the constant help with my reverse engineering efforts, this project would not have been possible if it not for the work they did on toolkit (which I referenced for resource serialization) and craftworld.js (which I referenced for the FF file structure and instruction class types).

Along with shoutouts to uh wot for early help with the bytecode encoding, and pointing me towards craftworld.js for the file structure.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Zig 100.0%