summaryrefslogtreecommitdiff
path: root/src/code/code_8008E6A0.c
blob: 47d437e987a2cc90fcc9586b62fb76a0f633f07c (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
#include "global.h"

void func_8008E6A0(SubGlobalContext7B8* this) {
    this->counter = 0;
    this->toggle = false;
}

u32 func_8008E6AC(SubGlobalContext7B8* this, Input* input) {
    if (CHECK_BTN_ALL(input->cur.button, BTN_R) && CHECK_BTN_ALL(input->press.button, BTN_DDOWN)) {
        this->toggle = !this->toggle;
    }
    if (!this->toggle) {
        goto ret_true;
    }

    if (CHECK_BTN_ALL(input->cur.button, BTN_Z)) {

        if (CHECK_BTN_ALL(input->press.button, BTN_R)) {
            goto ret_true;
        }

        if (CHECK_BTN_ALL(input->cur.button, BTN_R)) {
            this->counter++;
            if (this->counter >= 9) {
                goto ret_true;
            }
        }
    }

    goto ret_false;

ret_true:
    this->counter = 0;
    return true;

ret_false:
    return false;
}