Page 1 of 1

DataPacker (yet another DataSection packer/generator)

Posted: Fri Oct 13, 2017 7:55 pm
by Lunasole
Nothing much special, one more small tool which allows to be more lazy with PB ^^

It takes input file(s) and packs them as is to data section. Folders processed also.
I've made this one instead of using existing mostly because of some different output representation: it stores file size as a constant (instead of 2 labels), also label and constant names are same as name of input file + all data is stored in a single line, thus allowing to scroll less.

Generally see screenshots or check it yourself:
http://geocities.ws/lunasole/data/_4pb/datapacker/l

Re: DataPacker (yet another DataSection packer/generator)

Posted: Fri Oct 13, 2017 8:09 pm
by Lunasole
+ all data is stored in a single line, thus allowing to scroll less
Though now I see that might be bad idea. Seems that IDE hangs much more if put 10mb text in a single line, lol, unlike if split it to several.
Somehow later I'll improve that

Re: DataPacker (yet another DataSection packer/generator)

Posted: Sat Oct 14, 2017 5:42 am
by Lunasole
Now it should be usable ^^
1.0.0.1
- fixed bug with "remove selected" menu
- fixed processing of 0-len files
- now records of resulting DataSection are sorted
- now records have timestamp (file modified date)
- improved processing at all
Generally not bad idea to use with some standalone include files (instead of playing with external dependencies).
For large files IncludeBinary is better of course.