vmrcli/src/vmrcli.c

294 lines
6.2 KiB
C
Raw Normal View History

2024-06-25 04:34:28 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <getopt.h>
#include "cdll.h"
#include "vmr.h"
2024-06-26 16:44:28 +01:00
#include "log.h"
#include "util.h"
2024-06-25 04:34:28 +01:00
#define MAX_LINE 512
2024-06-25 04:34:28 +01:00
2024-06-25 23:32:32 +01:00
enum
{
FLOAT_T,
STRING_T,
};
struct result
{
int type;
union val
{
float f;
wchar_t s[MAX_LINE];
2024-06-25 23:32:32 +01:00
} val;
};
void help(void);
enum kind set_kind(char *kval);
int init_voicemeeter(T_VBVMR_INTERFACE *vmr, int kind);
2024-06-25 04:34:28 +01:00
void interactive(T_VBVMR_INTERFACE *vmr);
void parse_input(T_VBVMR_INTERFACE *vmr, char *input, int len);
2024-06-25 23:32:32 +01:00
void parse_command(T_VBVMR_INTERFACE *vmr, char *command);
void get(T_VBVMR_INTERFACE *vmr, char *command, struct result *res);
2024-06-25 04:34:28 +01:00
bool vflag = false;
2024-06-25 04:34:28 +01:00
int main(int argc, char *argv[])
{
bool iflag = false;
2024-06-25 20:01:38 +01:00
int opt;
char *kvalue = "";
2024-06-26 16:44:28 +01:00
int dvalue;
enum kind kind = BANANAX64;
2024-06-25 04:34:28 +01:00
if (argc == 1)
{
help();
exit(EXIT_SUCCESS);
}
log_set_level(LOG_WARN);
2024-06-26 16:44:28 +01:00
while ((opt = getopt(argc, argv, "k:ihD:v")) != -1)
2024-06-25 04:34:28 +01:00
{
2024-06-25 20:01:38 +01:00
switch (opt)
2024-06-25 04:34:28 +01:00
{
case 'i':
iflag = true;
break;
case 'k':
kvalue = optarg;
2024-06-26 16:44:28 +01:00
kind = set_kind(kvalue);
break;
2024-06-25 20:01:38 +01:00
case 'h':
2024-06-25 23:32:32 +01:00
help();
2024-06-25 20:01:38 +01:00
exit(EXIT_SUCCESS);
2024-06-26 16:44:28 +01:00
case 'D':
dvalue = atoi(optarg);
if (dvalue >= LOG_TRACE && dvalue <= LOG_FATAL)
2024-06-26 16:44:28 +01:00
{
log_set_level(dvalue);
}
else
{
2024-06-27 08:27:49 +01:00
log_error(
"-D arg out of range, expected value from 0 up to 5\n"
2024-06-27 08:27:49 +01:00
"Log level will default to LOG_WARN (3).\n");
}
2024-06-26 16:44:28 +01:00
break;
case 'v':
vflag = true;
break;
2024-06-25 04:34:28 +01:00
default:
abort();
}
}
2024-06-26 06:01:01 +01:00
T_VBVMR_INTERFACE iVMR;
2024-06-25 04:34:28 +01:00
T_VBVMR_INTERFACE *vmr = &iVMR;
int rep = init_voicemeeter(vmr, kind);
2024-06-25 17:22:46 +01:00
if (rep != 0)
2024-06-25 04:34:28 +01:00
{
exit(EXIT_FAILURE);
}
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]));
2024-06-25 04:34:28 +01:00
}
}
rep = logout(vmr);
2024-06-25 17:22:46 +01:00
if (rep == 0)
2024-06-25 04:34:28 +01:00
return EXIT_SUCCESS;
else
return EXIT_FAILURE;
}
/**
* @brief prints the help dialogue
*
*/
2024-06-25 23:32:32 +01:00
void help()
2024-06-25 20:01:38 +01:00
{
2024-06-25 23:32:32 +01:00
puts(
"Usage: ./vmrcli.exe [-h] [-i] [-k] [-D] [-v] <api commands>\n"
2024-06-25 20:01:38 +01:00
"Where: \n"
"\th: Prints the help dialogue\n"
2024-06-25 20:01:38 +01:00
"\ti: Enable interactive mode\n"
2024-06-26 16:44:28 +01:00
"\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"
"\tv: Enable extra console output (toggle, set messages)\n");
2024-06-25 20:01:38 +01:00
}
/**
* @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
{
2024-06-27 08:27:49 +01:00
log_error("Unknown Voicemeeter kind '%s'\n", kval);
exit(EXIT_FAILURE);
}
2024-06-25 04:34:28 +01:00
}
int init_voicemeeter(T_VBVMR_INTERFACE *vmr, int kind)
2024-06-25 04:34:28 +01:00
{
int rep = initialize_dll_interfaces(vmr);
if (rep < 0)
{
if (rep == -100)
{
2024-06-27 08:27:49 +01:00
log_error("Voicemeeter is not installed");
2024-06-25 04:34:28 +01:00
}
else
{
2024-06-27 08:27:49 +01:00
log_error("Error loading Voicemeeter dll with code %d\n", rep);
2024-06-25 04:34:28 +01:00
}
return rep;
}
rep = login(vmr, kind);
2024-06-25 04:34:28 +01:00
if (rep != 0)
{
2024-06-27 08:27:49 +01:00
log_error("Error logging into Voicemeeter");
2024-06-25 04:34:28 +01:00
return rep;
}
return 0;
}
void interactive(T_VBVMR_INTERFACE *vmr)
{
char input[MAX_LINE];
size_t len;
2024-06-25 04:34:28 +01:00
printf(">> ");
2024-06-25 04:34:28 +01:00
while (fgets(input, MAX_LINE, stdin) != NULL)
{
2024-06-26 16:44:28 +01:00
input[strcspn(input, "\n")] = 0;
len = strlen(input);
if (len == 1 && toupper(input[0]) == 'Q')
2024-06-25 04:34:28 +01:00
break;
parse_input(vmr, input, len);
memset(input, '\0', MAX_LINE); /* reset input buffer */
printf(">> ");
2024-06-25 23:32:32 +01:00
}
}
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, " ");
}
}
2024-06-25 23:32:32 +01:00
void parse_command(T_VBVMR_INTERFACE *vmr, char *command)
{
2024-06-26 16:44:28 +01:00
log_debug("Parsing %s", command);
2024-06-25 23:32:32 +01:00
if (command[0] == '!') /* toggle */
{
2024-06-26 00:03:50 +01:00
command++;
struct result res = {.type = FLOAT_T};
get(vmr, command, &res);
if (res.type == FLOAT_T)
{
2024-07-01 03:40:33 +01:00
if (res.val.f == 1 || res.val.f == 0)
{
2024-07-01 03:40:33 +01:00
set_parameter_float(vmr, command, 1 - res.val.f);
if (vflag)
{
printf("Toggling %s\n", command);
}
}
2024-07-01 03:40:33 +01:00
else
log_warn("%s does not appear to be a boolean parameter", command);
2024-06-26 00:03:50 +01:00
}
2024-06-25 23:32:32 +01:00
return;
}
if (strchr(command, '=') != NULL) /* set */
{
set_parameters(vmr, command);
if (vflag)
{
printf("Setting %s\n", command);
}
2024-06-25 23:32:32 +01:00
}
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);
2024-06-25 23:32:32 +01:00
break;
case STRING_T:
printf("%s: %ls\n", command, res.val.s);
2024-06-25 23:32:32 +01:00
break;
default:
break;
}
}
}
void get(T_VBVMR_INTERFACE *vmr, char *command, struct result *res)
2024-06-25 23:32:32 +01:00
{
2024-06-26 00:03:50 +01:00
clear_dirty(vmr);
2024-06-25 23:32:32 +01:00
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);
}
2024-06-25 04:34:28 +01:00
}
}