aboutsummaryrefslogtreecommitdiff
path: root/src/menu.c
blob: 77b9f2b9125a2ffdc115c4d2bdb69d32285a382a (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include <stdint.h>
#include <stdio.h>

#include "keyb.h"
#include "vga.h"
#include "sound.h"
#include "text.h"
#include "data.h"
#include "game.h"

#define CAST_LEN 6

static void render_hiscore()
{
    char b[10];

    sprintf(b, "HI %06li", get_hiscore());
    put_text(124, 10, b, 5);

    put_text(96, 180, "_2023 USEBOX.NET", 1);
}

static void render_menu()
{
    Rect dst = { 80, 45, 160, 38 };
    blit(binary_title_start, &dst);

    put_text(84, 110, "PRESS SPACE TO PLAY", 1);

    put_text(64, 140, "CODE, GRAPHICS AND SOUND", 2);
    put_text(96, 150, "JUAN J. MARTINEZ", 3);
}

/* names of the cast */
static const char *names[CAST_LEN] = {
    "MINER",
    "SNAKEY",
    "BATTY",
    "OLD MINER",
    "MR BONES",
    "TIME MONSTER",
};

/* sprites for the cast */
static const Rect sprites[CAST_LEN] = {
    { 0, 0, 144, 112 },
    { 0, 32, 144, 112 },
    { 64, 32, 144, 112 },
    { 0, 80, 144, 112 },
    { 0, 96, 144, 112 },
    { 80, 48, 144, 112 },
};

static void render_cast()
{
    put_text(128, 32, "THE CAST", 1);

    Rect dst = { 104, 50, 16, 16 };

    /* show the cast line by line */
    for (uint8_t i = 0; i < CAST_LEN; i++)
    {
        blitrc(binary_sprites_start, &sprites[i], &dst);
        put_text(dst.x + 16 + 8, dst.y + 6, names[i], i + 2);

        wait_vsync();
        blit_copy_all();

        wait_frames(32);

        dst.y += 20;
    }
}

uint8_t run_menu()
{
    uint16_t count = 0;
    uint8_t cast = 0;
    uint8_t wait;

    blit_target(TARGET_SCREEN);
    while (1)
    {
        if (keys[KEY_ESC])
            return 0;

        if (keys[KEY_SPACE])
        {
            sound_play_efx(EFX_ONEUP);

            for (uint8_t i = 0; i < 32; i++)
            {
                put_text(84, 110, "PRESS SPACE TO PLAY", i & 2 ? 5 : 0);
                wait_vsync();
            }
            wait_frames(96);

            return 1;
        }

        /* change of screen, requires drawing */
        if (count == 0)
        {
            blit_target(TARGET_BUFFER);
            blit_erase(0);

            render_hiscore();
            if (cast)
                render_cast();
            else
            {
                wait = 0;
                render_menu();
            }

            wait_vsync();
            blit_copy_all();
            blit_target(TARGET_SCREEN);
        }

        /* if is not cast, we do the "blink" effect */
        if (!cast)
        {
            wait++;
            if (wait == 64 || wait == 80)
            {
                if (wait == 80)
                    wait = 0;

                put_text(84, 110, "PRESS SPACE TO PLAY", wait ? 0 : 1);
                wait_vsync();
            }
        }

        /* frames before changing screen */
        if (count++ == 324)
        {
            cast ^= 1;
            count = 0;
        }

        wait_vsync();
    }
}