GameBoy (Color) port of the GTA San Andreas arcade game Duality
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

input.c 942B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * input.c
  3. * Duality
  4. *
  5. * Copyright (C) 2025 Thomas Buck <thomas@xythobuz.de>
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * See <http://www.gnu.org/licenses/>.
  18. */
  19. #include <gbdk/platform.h>
  20. #include "input.h"
  21. static uint8_t joyp = 0;
  22. static uint8_t old_joyp = 0;
  23. void key_read(void) {
  24. old_joyp = joyp;
  25. joyp = joypad();
  26. }
  27. uint8_t key_down(uint8_t key) {
  28. return joyp & key;
  29. }
  30. uint8_t key_pressed(uint8_t key) {
  31. return (joyp ^ old_joyp) & joyp & key;
  32. }