RMAP LFD Resource Type Author: Jagged Fel (jaggedfel621@gmail.com) Site: http://idmr.empirereborn.net Updated: 2009.10.05 ===== The "Resource Map" Resource type is essentially the table of contents for a resource file. ===== RMAP Structure The following values are used through this and all of my file definitions unless otherwise specified: NAME LENGTH DESC ---- ------ ---- CHAR 1 ASCII character INT 4 signed Int32 -- Header SubHeaders[Length / 0x10] -- struct Header (size 0x10) { 0x0 CHAR[4] "RMAP" 0x04 CHAR[8] Name typically "resource" 0xC INT Length NumberOfSubHeaders * 16 } struct SubHeader (size 0x10) { 0x0 CHAR[4] Type 0x4 CHAR[8] Name 0xC INT Length } ===== RMAP Detail The SubHeader array really contains no unique information of itself, as it is merely a listing of other Headers from the file. There's really nothing of note here. =====