A simple C++ library to read and write lbx files - a container format used in some DOS games developed by Simtex:
-
Master of Magic
-
Master of Orion
-
Master of Orion 2
-
1830: Railroads & Robber Barons
It is intended for developers that want to be able to view or alter lbx files. Some files in these games have a .LBX suffix but aren't real lbx file containers. This also seems to be true for all lbx files contained in StarLords - a precessor of Master of Orion.
To build, test and install the library, using cmake command line, a typical workflow is:
- Get the source code and change to it.
git clone https://github.com/MarcoKull/liblbx.git
cd liblbx
- Create a build directory and change to it.
mkdir build
cd build
- Run cmake to configure the build tree.
cmake -DBUILD_SHARED_LIBS=ON -G "Unix Makefiles" ..
- Compile the project.
cmake --build .
- Run tests.
ctest .
- Install header and compiled library.
make install
Now you should be able to use the library in your application:
#include <lbx.h>
#include <iostream>
int main(int argc, char** argv) {
try {
LbxFile lbx(argv[1]);
std::cout << "Archive " << argv[1] << " contains " << lbx.size() << " files:\n";
for (int i = 0; i < lbx.size(); ++i) {
std::cout << " " << i + 1 << ":\t" << lbx[i].second << " byte\n";
}
return 0;
} catch (std::exception &e) {
std::cerr << "error: " << e.what() << "\n";
return 1;
}
}
To get familiar with the API see the simple class diagram:
If you are intrested any further have a look at the file format description. There are still some unclear aspects, maybe you have an idea?