95f790c670
1. Implemented preset_count() and preset_label(). 2. Added presetA[] and presetN to flow_t. 2. Broke out initialize() from create(). 3. Initialize now takes the index of a top-level preset to be applied when network is instantiated.
76 lines
3.3 KiB
C++
76 lines
3.3 KiB
C++
#ifndef cwFlowSys_h
|
|
#define cwFlowSys_h
|
|
|
|
namespace cw
|
|
{
|
|
namespace flow
|
|
{
|
|
|
|
typedef handle<struct flow_str> handle_t;
|
|
|
|
void print_abuf( const struct abuf_str* abuf );
|
|
void print_external_device( const external_device_t* dev );
|
|
|
|
// Parse the cfg's but don't yet instantiate the network.
|
|
// Upon completion of this function the caller can
|
|
// query the network for configuration information which can
|
|
// be used to setup the extern_device_t array.
|
|
rc_t create(handle_t& hRef,
|
|
const object_t* classCfg, // processor class dictionary
|
|
const object_t* pgmCfg, // top level program cfg
|
|
const object_t* udpCfg = nullptr,
|
|
const char* projDir = nullptr);
|
|
|
|
// Network cfg. information which is available following create().
|
|
bool is_non_real_time( handle_t h );
|
|
double sample_rate( handle_t h );
|
|
unsigned frames_per_cycle( handle_t h );
|
|
unsigned preset_cfg_flags( handle_t h );
|
|
|
|
// Get the count and labels of the top level presets
|
|
unsigned preset_count( handle_t h );
|
|
const char* preset_label( handle_t h, unsigned preset_idx );
|
|
|
|
// Instantiate the network and prepare for runtime.
|
|
rc_t initialize( handle_t handle,
|
|
external_device_t* deviceA = nullptr,
|
|
unsigned deviceN = 0,
|
|
unsigned preset_idx = kInvalidIdx );
|
|
|
|
rc_t destroy( handle_t& hRef );
|
|
|
|
// Run one cycle of the network.
|
|
rc_t exec_cycle( handle_t h );
|
|
|
|
// Run a non-real-time program to completion.
|
|
rc_t exec( handle_t h );
|
|
|
|
rc_t apply_preset( handle_t h, const char* presetLabel );
|
|
rc_t apply_dual_preset( handle_t h, const char* presetLabel_0, const char* presetLabel_1, double coeff );
|
|
rc_t apply_preset( handle_t h, const multi_preset_selector_t& multi_preset_sel );
|
|
|
|
|
|
rc_t set_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, bool value );
|
|
rc_t set_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, int value );
|
|
rc_t set_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, unsigned value );
|
|
rc_t set_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, float value );
|
|
rc_t set_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, double value );
|
|
|
|
rc_t get_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, bool& valueRef );
|
|
rc_t get_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, int& valueRef );
|
|
rc_t get_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, unsigned& valueRef );
|
|
rc_t get_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, float& valueRef );
|
|
rc_t get_variable_value( handle_t h, const char* inst_label, const char* var_label, unsigned chIdx, double& valueRef );
|
|
|
|
void print_class_list( handle_t h );
|
|
void print_network( handle_t h );
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif
|