tetris_text.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. //// to implement
  19. void tetris_send_up(void);
  20. void tetris_send_left(void);
  21. void tetris_send_down(void);
  22. void tetris_send_right(void);
  23. void tetris_send_backspace(void);
  24. void tetris_send_delete(void);
  25. void tetris_send_string(const char *s);
  26. void tetris_send_newline(void);
  27. // return = meaning
  28. // 0 = no keys pressed
  29. // 1 = up
  30. // 2 = left
  31. // 3 = down
  32. // 4 = right
  33. int tetris_get_keypress(void);
  34. //// to call
  35. void tetris_start(uint8_t seed);
  36. // returns 0 when game is over
  37. int tetris_tick(int ms_since_previous_tick);
  38. #endif