evfl

Library for parsing and writing Breath of the Wild Event Flow files


Keywords
botw, nintendo-switch, nintendo-wii-u, python3, zelda
Licenses
GPL-3.0/GPL-3.0+
Install
pip install evfl==1.1.1

Documentation

Library for parsing and writing Nintendo EventFlow binary files

evfl is able to parse and rewrite every single event flow found in Breath of the Wild, both flowcharts (bfevfl) and timelines (bfevtm).

Usage

import evfl

flow = evfl.EventFlow()
with open('Animal_Master.bfevfl', 'rb') as file:
    flow.read(file.read())

flowchart = flow.flowchart
# Real documentation is nonexistent at the moment. I'm sorry.

with open('Animal_Master_Modified.bfevfl', 'wb') as modified_file:
    flow.write(modified_file)

Tests

Unit and integration tests can be executed by running python3 -m unittest discover.

License

This software is licensed under the terms of the GNU General Public License, version 2 or later.