Skip to content

Bo98/libbndl

 
 

Repository files navigation

Purpose of this project

This project is aimed at reading BUNDLE archives used in Burnout Paradise. The project is used in libapt2 but might be helpful for others for usage.

Build status

Build Status Build status

How to build

$ mkdir build && cd build
$ cmake ..
$ cmake --build .

How to use the library

#include <libbndl/bundle.hpp>
#include <iostream>

int main(int argc,char** argv)
{
    // Create a bundle instance
    libbndl::Bundle arch;
    // Load the archive
    arch.Load(argv[1]);
    // Load an entry from the archive
    EntryData *entry = arch.GetBinary(argv[2]);
    // etc.
    // Remember to delete the EntryData and its data members.
    // ...
}

About

Library to read bundle (BNDL/BND2) archives from Burnout Paradise

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • C++ 93.0%
  • CMake 7.0%