aboutsummaryrefslogtreecommitdiff
path: root/src/resolve_deps.c
blob: e4d50f6811c005ddd2804d6ae41649e36f9b2ae1 (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
#include <stdio.h>
#include <unistd.h>

#include "resolve_deps.h"

void resolve_deps(void) {
    const char *frame_top = "  (C_C)";
    const char *frame1_bot = "_/    \\-";
    const char *frame2_bot = "-/    \\_";

    printf("\033[2J\033[H");
    printf("Unfortunately due to budget issues, we could not afford a progress bar. Enjoy this instead:\n\n");

    for (int i = 0; i < 16; i++) {
        printf("%s\n%s\n", frame_top, i % 2 == 0 ? frame1_bot : frame2_bot);
        for (int j = 0; j <= i; j++) {
            printf("67! ");
        }
        printf("\n");
        fflush(stdout);
        usleep(300000);
        if (i < 15) {
            printf("\033[3A");
        }
    }
    printf("\n");
    printf("Dependencies resolved! 1 pregnancy found.\n");
}