Wwise Audio Tools
0.5.2
Tools for working with Wwise file types
|
contains helper functions for Wwise Soundbank files More...
Functions | |
void | extract (const std::string &indata, std::vector< std::string > &outdata) |
Extract BNK to array of WEMS. More... | |
std::string | get_info (const std::string &indata) |
get the info string More... | |
std::string | get_event_id_info (const std::string &indata, const std::string &in_event_id) |
get WEMs correlating to a BNK and an optional event ID More... | |
std::string | get_wem_id_at_index (const std::string &indata, const int &index) |
get the ID of a WEM at an index More... | |
std::string | get_event_name_from_id (const std::uint32_t &event_id) |
std::string | get_event_action_type (bnk_t::action_type_t action_type) |
get a string with the action type from the enum More... | |
contains helper functions for Wwise Soundbank files
void wwtools::bnk::extract | ( | const std::string & | indata, |
std::vector< std::string > & | outdata | ||
) |
Extract BNK to array of WEMS.
indata | std::string with the BNK content |
outdata | vector of std::string that has all the embedded WEM files |
std::string wwtools::bnk::get_event_action_type | ( | bnk_t::action_type_t | action_type | ) |
get a string with the action type from the enum
action_type | an action type to be converted to string |
std::string wwtools::bnk::get_event_id_info | ( | const std::string & | indata, |
const std::string & | in_event_id | ||
) |
get WEMs correlating to a BNK and an optional event ID
indata | std::string with the file data |
in_event_id | the input event ID |
std::string wwtools::bnk::get_info | ( | const std::string & | indata | ) |
get the info string
indata | std::string with the file data |
std::string wwtools::bnk::get_wem_id_at_index | ( | const std::string & | indata, |
const int & | index | ||
) |
get the ID of a WEM at an index
indata | std::string with the file data |
index | the index to get the ID from |