summaryrefslogtreecommitdiff
path: root/src/options/options.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-08-24 00:02:17 -0500
committersanine <sanine.not@pm.me>2022-08-24 00:02:17 -0500
commit2cb3c3df4099297b0a0554bb482e2de04fe86b5c (patch)
tree7796b4064c16460d9d603707b5256027649aa8b6 /src/options/options.c
parent709e1b6e1ce86f8da4fc136747fcefbc6c6057bd (diff)
add command-line arguments
Diffstat (limited to 'src/options/options.c')
-rw-r--r--src/options/options.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/options/options.c b/src/options/options.c
new file mode 100644
index 0000000..4488837
--- /dev/null
+++ b/src/options/options.c
@@ -0,0 +1,56 @@
+#include <stdio.h>
+#include <cargs.h>
+#include "options.h"
+
+static struct cag_option opts[] = {
+ {
+ .identifier = 's',
+ .access_letters = "s",
+ .access_name = "script",
+ .value_name = "SCRIPT_FILE",
+ .description = "The filename of the main script. (default: main.lua)"
+ },
+ {
+ .identifier = 'h',
+ .access_letters = "h",
+ .access_name = "help",
+ .value_name = NULL,
+ .description = "Shows this help message"
+ },
+};
+
+
+void print_help(char *program_name)
+{
+ printf("usage: %s [OPTIONS]\n", program_name);
+ cag_option_print(opts, CAG_ARRAY_SIZE(opts), stdout);
+}
+
+
+enum outcomes_t parse_options(struct honey_options *options, int argc, char **argv)
+{
+ /* default values */
+ options->script_file = "main.lua";
+
+ /* parse options */
+ char id;
+ const char *value;
+ cag_option_context context;
+
+ cag_option_prepare(&context, opts, CAG_ARRAY_SIZE(opts), argc, argv);
+ while(cag_option_fetch(&context)) {
+ id = cag_option_get(&context);
+ switch(id) {
+ case 's':
+ options->script_file = cag_option_get_value(&context);
+ break;
+ case 'h':
+ print_help(argv[0]);
+ return EXIT_SUCCESS;
+ default:
+ return EXIT_FAILURE;
+ }
+ }
+
+ return CONTINUE_SUCCESS;
+}