aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 352694f83771b294d7b402b71f24c879a66c9334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <stdio.h>
#include <string.h>
#include <linux/limits.h>

#include "main.h"
#include "wine.h"
#include "dxvk.h"
#include "lutris.h"
#include "common.h"
#include "config.h"

const static struct Command main_commands[] = {
    { .name = "wine",   .func = wine,      .description = "manage wine versions" },
    { .name = "dxvk",   .func = dxvk,      .description = "manage DXVK versions" },
    { .name = "lutris", .func = lutris,    .description = "run lutris instraller"},
    { .name = "env",    .func = main_env,  .description = "show some information about polecat" },
};


int main(int argc, char** argv)
{
    if (argc > 1)
    {
        for (int i = 0; i < ARRAY_LEN(main_commands); ++i)
        {
            if (!strcmp(main_commands[i].name, argv[1])) return main_commands[i].func(argc-1, argv+1);
        }
    } 

    return main_help(argc-1, argv+1);
}

int main_env(int argc, char** argv)
{
    char buffer[PATH_MAX];


    printf("version:\t\t%s\n"
           "user-Agent:\t\t%s\n",
           VERSION,
           USER_AGENT);

    getConfigDir(buffer, sizeof(buffer));
    printf("config dir\t\t%s\n", buffer);

    getDataDir(buffer, sizeof(buffer));
    printf("data dir\t\t%s\n", buffer);


    return 0;
}

int main_help(int argc, char** argv)
{
    puts(USAGE_STR " <command>\n\nList of commands:");

    print_help(main_commands, ARRAY_LEN(main_commands));

    return 0;
}