#include #include #include #include #include "cdll.h" #include "vmr.h" #include "log.h" #include "util.h" #define MAX_LINE 512 /** * @brief An enum used to define the kind of value * a 'get' call returns. * */ enum { FLOAT_T, STRING_T, }; /** * @brief A struct holding the result of a get call. * */ struct result { int type; union val { float f; wchar_t s[MAX_LINE]; } val; }; void help(void); enum kind set_kind(char *kval); int init_voicemeeter(T_VBVMR_INTERFACE *vmr, int kind); void interactive(T_VBVMR_INTERFACE *vmr); void parse_input(T_VBVMR_INTERFACE *vmr, char *input, int len); void parse_command(T_VBVMR_INTERFACE *vmr, char *command); void get(T_VBVMR_INTERFACE *vmr, char *command, struct result *res); bool vflag = false; int main(int argc, char *argv[]) { bool iflag = false; bool mflag = false; bool sflag = false; int opt; char *kvalue = ""; int dvalue; enum kind kind = BANANAX64; if (argc == 1) { help(); exit(EXIT_SUCCESS); } log_set_level(LOG_WARN); while ((opt = getopt(argc, argv, "hk:msiD:v")) != -1) { switch (opt) { case 'h': help(); exit(EXIT_SUCCESS); case 'k': kvalue = optarg; kind = set_kind(kvalue); break; case 'm': mflag = true; break; case 's': sflag = true; break; case 'i': iflag = true; break; case 'D': dvalue = atoi(optarg); if (dvalue >= LOG_TRACE && dvalue <= LOG_FATAL) { log_set_level(dvalue); } else { log_error( "-D arg out of range, expected value from 0 up to 5\n" "Log level will default to LOG_WARN (3).\n"); } break; case 'v': vflag = true; break; default: abort(); } } T_VBVMR_INTERFACE iVMR; T_VBVMR_INTERFACE *vmr = &iVMR; int rep = init_voicemeeter(vmr, kind); if (rep != 0) { exit(EXIT_FAILURE); } if (mflag) { log_info("MacroButtons app launched"); run_voicemeeter(vmr, MACROBUTTONS); } if (sflag) { log_info("StreamerView app launched"); run_voicemeeter(vmr, STREAMERVIEW); } if (iflag) { puts("Interactive mode enabled. Enter 'Q' to exit."); interactive(vmr); } else { for (int i = optind; i < argc; i++) { parse_input(vmr, argv[i], strlen(argv[i])); } } rep = logout(vmr); if (rep == 0) return EXIT_SUCCESS; else return EXIT_FAILURE; } /** * @brief prints the help message * */ void help() { puts( "Usage: ./vmrcli.exe [-h] [-i] [-k] [-D] [-v] [-m] [-s] \n" "Where: \n" "\th: Prints the help message\n" "\ti: Enable interactive mode\n" "\tk: The kind of Voicemeeter (basic, banana, potato)\n" "\tD: Set log level 0=TRACE, 1=DEBUG, 2=INFO, 3=WARN, 4=ERROR, 5=FATAL\n" "\tv: Enable extra console output (toggle, set messages)\n" "\tm: Launch the MacroButtons application\n" "\tm: Launch the StreamerView application"); } /** * @brief Set the kind object * * @param kval * @return enum kind */ enum kind set_kind(char *kval) { if (strcmp(kval, "basic") == 0) { if (sizeof(void *) == 8) return BASICX64; else return BASIC; } else if (strcmp(kval, "banana") == 0) { if (sizeof(void *) == 8) return BANANAX64; else return BANANA; } else if (strcmp(kval, "potato") == 0) { if (sizeof(void *) == 8) return POTATOX64; else return POTATO; } else { log_error("Unknown Voicemeeter kind '%s'\n", kval); exit(EXIT_FAILURE); } } /** * @brief Defines the DLL interface as a struct. * Logs into the API. * * @param vmr The API interface as a struct * @param kind * @return int */ int init_voicemeeter(T_VBVMR_INTERFACE *vmr, int kind) { int rep = initialize_dll_interfaces(vmr); if (rep < 0) { if (rep == -100) { log_error("Voicemeeter is not installed"); } else { log_error("Error loading Voicemeeter dll with code %d\n", rep); } return rep; } rep = login(vmr, kind); if (rep != 0) { log_error("Error logging into Voicemeeter"); return rep; } return 0; } /** * @brief Continuously read lines from stdin. * Break if 'Q' is entered on the interactive prompt. * Each line is passed to parse_input() * * @param vmr The API interface as a struct */ void interactive(T_VBVMR_INTERFACE *vmr) { char input[MAX_LINE]; size_t len; printf(">> "); while (fgets(input, MAX_LINE, stdin) != NULL) { input[strcspn(input, "\n")] = 0; len = strlen(input); if (len == 1 && toupper(input[0]) == 'Q') break; parse_input(vmr, input, len); memset(input, '\0', MAX_LINE); /* reset input buffer */ printf(">> "); } } /** * @brief Walks through each line split by a space delimiter. * Each token is passed to parse_command() * * @param vmr The API interface as a struct * @param input Each input line, from stdin or CLI args * @param len The length of the input line */ void parse_input(T_VBVMR_INTERFACE *vmr, char *input, int len) { char *token; replace_multiple_space_with_one(input, len); token = strtok(input, " "); while (token != NULL) { parse_command(vmr, token); token = strtok(NULL, " "); } } /** * @brief Execute each command according to type. * See command type definitions in: * https://github.com/onyx-and-iris/vmrcli?tab=readme-ov-file#api-commands * * @param vmr The API interface as a struct * @param command Each token from the input line as its own command string */ void parse_command(T_VBVMR_INTERFACE *vmr, char *command) { log_debug("Parsing %s", command); if (command[0] == '!') /* toggle */ { command++; struct result res = {.type = FLOAT_T}; get(vmr, command, &res); if (res.type == FLOAT_T) { if (res.val.f == 1 || res.val.f == 0) { set_parameter_float(vmr, command, 1 - res.val.f); if (vflag) { printf("Toggling %s\n", command); } } else log_warn("%s does not appear to be a boolean parameter", command); } return; } if (strchr(command, '=') != NULL) /* set */ { set_parameters(vmr, command); if (vflag) { printf("Setting %s\n", command); } } else /* get */ { struct result res = {.type = FLOAT_T}; get(vmr, command, &res); switch (res.type) { case FLOAT_T: printf("%s: %.1f\n", command, res.val.f); break; case STRING_T: printf("%s: %ls\n", command, res.val.s); break; default: break; } } } /** * @brief * * @param vmr The API interface as a struct * @param command A parsed 'get' command as a string * @param res A struct holding the result of the API call. */ void get(T_VBVMR_INTERFACE *vmr, char *command, struct result *res) { clear_dirty(vmr); if (get_parameter_float(vmr, command, &res->val.f) != 0) { res->type = STRING_T; if (get_parameter_string(vmr, command, res->val.s) != 0) { res->val.s[0] = 0; log_error("Unknown parameter '%s'", command); } } }