https://github.com/pixelomer/libshimejifinder
Library for finding and extracting shimeji from archives
https://github.com/pixelomer/libshimejifinder
Last synced: about 2 months ago
JSON representation
Library for finding and extracting shimeji from archives
- Host: GitHub
- URL: https://github.com/pixelomer/libshimejifinder
- Owner: pixelomer
- License: gpl-3.0
- Created: 2025-01-19T15:36:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-18T07:57:03.000Z (3 months ago)
- Last Synced: 2026-03-18T23:32:45.954Z (3 months ago)
- Language: C++
- Size: 136 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libshimejifinder
Library for finding and extracting shimeji from archives
(**Disclaimer:** libshimejifinder is currently not accepting contributions. Any pull requests will be closed without review.)
## Usage
```cpp
auto ar = shimejifinder::analyze("/path/to/archive.zip");
ar->extract("/path/to/mascots/");
std::set changedMascots = ar->shimejis();
// Shimeji will be written in the following format:
//
// | mascots/
// |-. Shimeji_1.mascot/
// | |-- behaviors.xml
// | |-- actions.xml
// | |-. img/
// | | |-- shime1.png
// | | |-- shime2.png
// | | '-- [...]
// | '-. sound/
// | |-- sound1.wav
// | |-- sound2.wav
// | '-- [...]
// '-. Shimeji_2.mascot/
// |-- [...]
```