summaryrefslogtreecommitdiff
path: root/keyboards/terrazzo/terrazzo_effects/outrun.h
blob: b4455ef49f0dd85fe8776fc9f513554d1e007f44 (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
/* Copyright 2020 ademey "MsMustard"
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef DISABLE_TERRAZZO_EFFECT_OUTRUN
TERRAZZO_EFFECT(OUTRUN)
#   ifdef TERRAZZO_EFFECT_IMPLS

static uint8_t outrun_sun[25] = {
    0, 9, 9, 9, 0,
    7, 7, 7, 7, 7,
    4, 4, 4, 4, 4,
    2, 2, 2, 2, 2,
    0, 1, 1, 1, 0
};

static uint8_t outrun_ground[63] = {
    0, 0, 1, 1, 1, 0, 0,
    0, 2, 0, 2, 0, 2, 0,
    0, 2, 0, 2, 0, 2, 0,
    0, 2, 0, 4, 0, 2, 0,
    2, 0, 0, 5, 0, 0, 2,
    2, 0, 0, 5, 0, 0, 2,
    2, 0, 0, 6, 0, 0, 2,
    0, 0, 0, 7, 0, 0, 0,
    0, 0, 0, 8, 0, 0, 0
};

static uint8_t outrun_rows[4][63] = {
{
    1, 1, 1, 1, 1, 1, 1,
    0, 0, 0, 0, 0, 0, 0,
    2, 2, 2, 2, 2, 2, 2,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0,
    4, 4, 4, 4, 4, 4, 4,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0
},
{
    0, 0, 0, 0, 0, 0, 0,
    1, 1, 1, 1, 1, 1, 1,
    0, 0, 0, 0, 0, 0, 0,
    2, 2, 2, 2, 2, 2, 2,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0,
    4, 4, 4, 4, 4, 4, 4,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0
},
{
    1, 1, 1, 1, 1, 1, 1,
    0, 0, 0, 0, 0, 0, 0,
    2, 2, 2, 2, 2, 2, 2,
    0, 0, 0, 0, 0, 0, 0,
    4, 4, 4, 4, 4, 4, 4,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0,
    9, 9, 9, 9, 9, 9, 9,
    0, 0, 0, 0, 0, 0, 0
},
{
    0, 0, 0, 0, 0, 0, 0,
    1, 1, 1, 1, 1, 1, 1,
    0, 0, 0, 0, 0, 0, 0,
    2, 2, 2, 2, 2, 2, 2,
    0, 0, 0, 0, 0, 0, 0,
    4, 4, 4, 4, 4, 4, 4,
    0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0,
    9, 9, 9, 9, 9, 9, 9
}
};

bool last_dir;
uint8_t change_index = 0;

void OUTRUN(uint8_t i, bool dir) {
    led_matrix_set_index_value_all(0);
    
    if(dir != last_dir) {
       change_index = i;
    }

    uint8_t change_diff = abs(i - change_index);
    uint8_t horz_bright = 9;

    if(change_diff < 4) { 
        if (dir) {
           terrazzo_draw_at(1, 4 - change_diff, 5, 1 + change_diff, outrun_sun);
           horz_bright = 3 + change_diff;
        } else {
           terrazzo_draw_at(1, 0 + change_diff, 5, 5 - change_diff, outrun_sun);
           horz_bright = 5 - change_diff;
        }
    } else { 
       if (dir) {
            terrazzo_draw_at(1, 0, 5, 5, outrun_sun);
       } else {
           horz_bright = 1;
       }
    }

    for(int x = 0; x < 7; x++){
        terrazzo_set_pixel(x, 5, horz_bright);
    }
    // Sun is larger but render the top 3 rows only
    terrazzo_draw_at(0, 6, 7, 10, outrun_ground);
    terrazzo_draw_at(0, 6, 7, 10, outrun_rows[i % 4]);
    last_dir = dir;
}

#   endif
#endif