aboutsummaryrefslogtreecommitdiff
path: root/src/proton.c
blob: 0b0f2896afce9a70d26d8d47ea56245002c5a527 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include <stdio.h>
#include <unistd.h>
#include <dirent.h>

#include "proton.h"
#include "config.h"

static const struct Command proton_commands[] = {
    { .name = "download",   .func = proton_download,    .description = "download and extract a third.party Proton release" },
    { .name = "list",       .func = proton_list,        .description = "list installable Proton version" },
    { .name = "installed",  .func = proton_installed,   .description = "list already installed Proton versions" },
    { .name = "remove",     .func = proton_remove,      .description = "remove a Proton release" },
};

static const struct Flag proton_flags[] = {
    { .name = "no-net",     .variant = TWO, .returns = 0, .func = set_no_net,   .description = "run commands without commitment"}
};

char* repos[]  = {
    GITHUB_RELEASE("GloriousEggroll/proton-ge-custom"),
    GITHUB_RELEASE("Frogging-Family/wine-tkg-git"),
    NULL
};

COMMAND_GROUP_FUNC(proton)

COMMAND(proton, download)
{
    return 0;
}

COMMAND(proton, list)
{
    char** repo_index = repos;

    do
    {
        puts(*repo_index);
        ++repo_index;
    }
    while(*repo_index);

    return 0;
}

COMMAND(proton, installed)
{
    char protondir[PATH_MAX];
    getProtonDir(protondir, sizeof(protondir));

    size_t protonlen = strlen(protondir)+1;
    protondir[protonlen-1] = '/';

    DIR *dir;
    struct dirent *ent;

    int intty = isatty(STDOUT_FILENO);

    if (intty) puts("Installed Proton versions:");

    if ((dir = opendir(protondir)) != NULL)
    {
        while ((ent = readdir (dir)) != NULL)
        {
            if (ent->d_name[0] == '.') continue;
            strncat(protondir, ent->d_name, sizeof(protondir) - protonlen - 1);
            int isdirec = isDir(protondir);
            protondir[protonlen] = '\0';

            if (!isdirec) continue;

            if (intty) printf(" - ");
            printf("%s\n", ent->d_name);
        }
        closedir(dir);
    }

    return EXIT_SUCCESS;
}

COMMAND(proton, remove)
{
    return 0;
}


COMMAND_HELP(proton, " proton")