Implement a ESM/ESP reader
Check out FO3edit
I'm working on it, it works but i MUST optimize it and parse it better, and handle all the childs/parents relations, a huge work.
I found a lot of information about the records ESM/ESP FO3. http://falloutmods.wikia.com/wiki/Record_Structure_XML
basically there is something working made by roby in the tools folder of the repository, though i never tried it myself
ESx-Reader my implementation of ESM/ESP reader.
My work was based on this documentation: http://www.uesp.net/wiki/Tes5Mod:Mod_File_Format
Thank you, Can I know your progress on the reader?
It's been a long time since i wrote it, but as i remember it was working perfectly. I used it to extract the needed data, as keeping all the records in memory would fill it up. ParseLoadedData is called once the parsing is done, recordPointers is a vector of all the loaded records. Hope this is helpful!