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.

score.h 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * score.h
  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. #ifndef __SCORE_H__
  20. #define __SCORE_H__
  21. #include <gbdk/platform.h>
  22. #include <stdint.h>
  23. #define SCORE_NUM 5
  24. struct scores {
  25. uint16_t name;
  26. int32_t score;
  27. };
  28. uint16_t convert_name(char a, char b, char c) BANKED;
  29. uint8_t score_ranking(int32_t score) BANKED;
  30. void score_add(struct scores score) BANKED;
  31. void score_highest(uint8_t off, struct scores *t) BANKED;
  32. void score_lowest(uint8_t off, struct scores *t) BANKED;
  33. void score_reset(void);
  34. void score_zero(void);
  35. BANKREF_EXTERN(score)
  36. #endif // __SCORE_H__