Mizux / KalistoUnpacker

Unpacker for Kalisto data files (KBF/KIX) found in "New York Race" game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Github-CI: Build Status Build Status Build Status Build Status

Introduction

| Codemap | Build | Test | Install | CI | License |

Unpacker for Kalisto data files (.KBF/.KIX) found in the "New York Race" (NYR) video game.

NYR is a flying car racing game developed by Kalisto Entertainment and released in 2001. It is based on The Fifth Element film.

smx:

Based on my discoveries, the KBF extension stands for "Kalisto Binary File" and KIX stands for "Kalisto Index File". I don't own any other Kalisto-made game to verify if other games also use the same binary format, but you're free to try this tool and see if it works for you

Codemap

Thus the project layout is as follow:

Build Project

To build the C++ project, as usual:

cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --target all -v

note: replace all by ALL_BUILD for non makefile generators.

Test Project

To test the C++ project, as usual:

cmake --build build --config Release --target test -v

note: replace test by RUN_TESTS for non makefile generators.

Install Project

To install the C++ project, as usual:

cmake --build build --config Release --target install -v

note: replace install by INSTALL for non makefile/xcode generators.

License

Apache 2. See the LICENSE file for details.

About

Unpacker for Kalisto data files (KBF/KIX) found in "New York Race" game

License:Apache License 2.0


Languages

Language:C++ 38.8%Language:Dockerfile 27.2%Language:Makefile 16.3%Language:CMake 13.8%Language:Shell 4.0%