Add in readme for txdtutils.
This commit is contained in:
parent
a1c8d18b49
commit
56e68f211a
@ -312,6 +312,15 @@ pointers to sub-structures and pointers to C strings. Note that much like "psmap
|
|||||||
has the ability to print out structures that are dynamically constructed at runtime by
|
has the ability to print out structures that are dynamically constructed at runtime by
|
||||||
emulating x86 and x64 instructions. Run it like `./struct --help` to see how to use this.
|
emulating x86 and x64 instructions. Run it like `./struct --help` to see how to use this.
|
||||||
|
|
||||||
|
## tdxtfiles
|
||||||
|
|
||||||
|
Utilities for working with raw TDXT texture files. These are found packed inside TXP2
|
||||||
|
and TEXP containers but sometimes can be found standalone. This utility has the capability
|
||||||
|
to extract a PNG of the texture for all known texture formats that I've come across, and
|
||||||
|
can repack a TDXT file given a PNG of the same size under certain circumstances. Not all
|
||||||
|
texture formats are supported for repacking. Run it like `./tdxtutils --help` to see help
|
||||||
|
output and determine how to use it.
|
||||||
|
|
||||||
## trafficgen
|
## trafficgen
|
||||||
|
|
||||||
A utility for simulating traffic to an eAmusement service. Given a particular game,
|
A utility for simulating traffic to an eAmusement service. Given a particular game,
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
#! /usr/bin/env python3
|
#! /usr/bin/env python3
|
||||||
import argparse
|
import argparse
|
||||||
import io
|
import io
|
||||||
import json
|
|
||||||
import math
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
import textwrap
|
from PIL import Image
|
||||||
from PIL import Image, ImageDraw
|
from typing import Optional
|
||||||
from typing import Any, Dict, List, Optional, Tuple, TypeVar
|
|
||||||
|
|
||||||
from bemani.format import TDXT
|
from bemani.format import TDXT
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user