Compare commits

..

2 Commits

Author SHA1 Message Date
41bf1322ac add Interactive Mode section to README. 2024-06-27 22:07:53 +01:00
f88fb9b994 pass len of input to replace_multiple_space_with_one()
add an input prompt to interactive mode
2024-06-27 22:06:15 +01:00
4 changed files with 32 additions and 14 deletions

View File

@ -16,7 +16,7 @@
Where:
- `i`: Enable interactive mode. If set any api commands passed will be ignored.
- `i`: Enable interactive mode. If set, any api commands passed on the command line will be ignored.
- `k`: The kind of Voicemeeter (basic, banana or potato). Use this to launch the GUI.
- `D`: Set log level 0=TRACE, 1=DEBUG, 2=INFO, 3=WARN, 4=ERROR, 5=FATAL
@ -36,6 +36,21 @@ Launch banana GUI, set log level to DEBUG, set Strip 0 label to podmic then prin
`./vmrcli.exe -kbanana -D1 strip[0].label=podmic strip[2].label`
## `Interactive Mode`
Running the following command in Powershell:
`./vmrcli.exe -i`
Will open an interactive prompt:
```powershell
Interactive mode enabled. Enter 'Q' to exit.
>>
```
API commands follow the same rules as listed above. Entering `Q` or `q` will exit the program.
## `Script files`
Scripts can be loaded from text files, for example in Powershell:

View File

@ -1,6 +1,6 @@
#ifndef __UTIL_H__
#define __UTIL_H__
void replace_multiple_space_with_one(char *s);
void replace_multiple_space_with_one(char *s, size_t len);
#endif /* __UTIL_H__ */

View File

@ -1,10 +1,9 @@
#include <string.h>
#include <stddef.h>
void replace_multiple_space_with_one(char *s)
void replace_multiple_space_with_one(char *s, size_t len)
{
int j = 0;
int count = 0;
int len = strlen(s);
if (len == 1 && (s[0] == ' ' || s[0] == '\t'))
{
@ -33,6 +32,4 @@ void replace_multiple_space_with_one(char *s)
}
}
s[j] = '\0';
return;
}

View File

@ -175,17 +175,24 @@ void interactive(T_VBVMR_INTERFACE *vmr)
char *p = input;
char command[MAX_LINE];
int i;
size_t len;
printf(">> ");
while (fgets(input, MAX_LINE, stdin) != NULL)
{
input[strcspn(input, "\n")] = 0;
if (strlen(input) == 1 && (strncmp(input, "Q", 1) == 0 || strncmp(input, "q", 1) == 0))
len = strlen(input);
if (len == 1 && toupper(input[0]) == 'Q')
break;
replace_multiple_space_with_one(input);
replace_multiple_space_with_one(input, len);
while (*p)
{
memset(command, '\0', sizeof(command));
if (isspace(*p))
{
p++;
continue;
}
i = 0;
while (!isspace(*p))
@ -194,11 +201,11 @@ void interactive(T_VBVMR_INTERFACE *vmr)
if (command[0] != '\0')
parse_command(vmr, command);
p++; /* shift to next input char */
memset(command, '\0', sizeof(command));
}
p = input; /* reset pointer */
printf(">> ");
}
}
@ -237,7 +244,6 @@ void parse_command(T_VBVMR_INTERFACE *vmr, char *command)
puts(res.val.s);
break;
default:
log_error("Unexpected result type");
break;
}
}
@ -252,7 +258,7 @@ void get(T_VBVMR_INTERFACE *vmr, char *command, struct result *res)
if (get_parameter_string(vmr, command, res->val.s) != 0)
{
res->val.s[0] = 0;
log_error("Unknown parameter");
log_error("Unknown parameter '%s'", command);
}
}
}