diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/clueboard/66/keymaps/tetris/tetris_text.h |
Diffstat (limited to 'keyboards/clueboard/66/keymaps/tetris/tetris_text.h')
-rw-r--r-- | keyboards/clueboard/66/keymaps/tetris/tetris_text.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/keyboards/clueboard/66/keymaps/tetris/tetris_text.h b/keyboards/clueboard/66/keymaps/tetris/tetris_text.h new file mode 100644 index 000000000..25b4177e0 --- /dev/null +++ b/keyboards/clueboard/66/keymaps/tetris/tetris_text.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /* Copyright 2017 Dan Amlund Thomsen | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #ifndef TETRIS_TEXT_H | ||
17 | #define TETRIS_TEXT_H | ||
18 | |||
19 | //// to implement | ||
20 | void tetris_send_up(void); | ||
21 | void tetris_send_left(void); | ||
22 | void tetris_send_down(void); | ||
23 | void tetris_send_right(void); | ||
24 | |||
25 | void tetris_send_backspace(void); | ||
26 | void tetris_send_delete(void); | ||
27 | |||
28 | void tetris_send_string(const char *s); | ||
29 | |||
30 | void tetris_send_newline(void); | ||
31 | |||
32 | // return = meaning | ||
33 | // 0 = no keys pressed | ||
34 | // 1 = up | ||
35 | // 2 = left | ||
36 | // 3 = down | ||
37 | // 4 = right | ||
38 | int tetris_get_keypress(void); | ||
39 | |||
40 | //// to call | ||
41 | void tetris_start(uint8_t seed); | ||
42 | // returns 0 when game is over | ||
43 | int tetris_tick(int ms_since_previous_tick); | ||
44 | |||
45 | #endif | ||