Well, I'm finding patterns. I've never attempted to decode a format myself before but hopefully I'll get lucky and be able to uncover something.
Honestly, this is the easy part. Once I know where to find the information and what it means, I can just write a program that can read the information and manipulate the image accordingly.
Or were you saying that it'll be difficult to find out what it means?
EDIT: Gah this is confusing. The bytes seem to be paired in chunks of two (16-bits/shorts), and probably read in little endian (backwards), but each file has a totally different layout. They seem to have a habit of counting upwards, but sometimes it's interrupted or there's a chunk of emptiness (usually "00 00"s or "00 01"s).
This might take a while
(02-27-2013, 07:04 AM)Hammster Wrote: The problem remains of how to use the info in the .map and .xml files to piece the images all together though.
Honestly, this is the easy part. Once I know where to find the information and what it means, I can just write a program that can read the information and manipulate the image accordingly.
Or were you saying that it'll be difficult to find out what it means?
EDIT: Gah this is confusing. The bytes seem to be paired in chunks of two (16-bits/shorts), and probably read in little endian (backwards), but each file has a totally different layout. They seem to have a habit of counting upwards, but sometimes it's interrupted or there's a chunk of emptiness (usually "00 00"s or "00 01"s).
This might take a while