]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard_66/keymaps/tetris/tetris_text.h
Clueboard 60% support (#1746)
[qmk_firmware.git] / keyboards / clueboard_66 / keymaps / tetris / tetris_text.h
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