Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Graphics in STATIC2_ADD.BIN:
- * 0x40000 - 0xf3fff: font image (tiles of 256x144, 4bpp)
- * 0xf4000 - 0xf43ff: 8bpp palette
- * 0xf4400 - 0x1343ff: looks like the graphics for in-battle messages
- * At 0x134400 a pointer table seems to start. It finishes at 0x1364ef (it's fucking big, 2108 entries). Entries are little-endian. Doesn't seem to be relevant.
- * At 0x204040 we find a TX48 file. Basically a texture file. They all seem to be 4bpp with a 128-byte header that includes the 64-byte palette.
- * TX48 format seems to be (values are little-endian):
- - Bytes 0 - 3: "TX48" magic word.
- - Bytes 4 - 7: 0 for 4bpp. 1 for 8 bpp
- - Bytes 8 - 11: width
- - Bytes 12 - 15: height
- - Bytes 16 - 19: start of palette
- - Bytes 20 - 23: size of palette
- - Bytes 24 - 27: start of image data
- - Bytes 28 - 31: size of image data
- - Bytes 32 - 63: All zeroes.
- - Bytes 64 - ? (typically 127): palette colours
- * The graphics found in this section are probably map markers... or something like that. They represent some objects related to some of the shows in the game, but not sure of what is what.
- * More TX48 files, likely used for non-animation battles:
- - At 0x26a980: lifebar
- - At 0x26b180: numbers
- - At 0x26c1c0: "Counter"
- - At 0x26d1c0: "Simultaneous attack"
- - At 0x26e180: "Support (shien) attack"
- - At 0x26f180: "Support (engo) attack"
- - At 0x270180: "Battleship support attack"
- - At 0x271980: "Combination attack"
- ...and so on.
- * These graphics seem to be 2048-byte alligned. If the size of the file is a multiple of 2048 (like 4096), it adds an extra 2048 of padding.
- * At 0x2dd980 we start to find "OMG" files. These are considerably more complicated, and from the looks of these, they're applied to 3D objects. I doubt these will need edition.
- * At 0x2e0840 is the "UPAK" section. After an empty 64-byte header, it's comprised of 32x128 4bpp images with the sprites of the different units used on the map. Every image is preceded by its 64-byte palette.
Advertisement
Add Comment
Please, Sign In to add comment