PokeMe64/include
Philippe Symons c0638e8d69 Various changes
- Upgrade libpokemegb to commit c47f8b3

- [Korean gen II games]: Make the UI show Trainer and Pokémon instead of the actual trainer name and pokémon name.
  This is needed because our font does not include the necessary characters for the Korean games. And while I could attempt to add them, I don't sufficiently care to do so.

- Attempt to randomize random values. This is needed for random IVs and shininess chances.
  It's not entirely clear to me whether the rand() function would actually return random values in previous versions of PokeMe64.
  While libdragon does gather entropy at bootup and implements a getentropy() function, I don't see this function referenced anywhere.
  That being said, it DOES look like libstdc++ would call a getentropy() function, so perhaps this is a way in which getentropy() from libdragon would get called.
  But I'm not using libstdc++'s functionality to obtain random values, I'm using libc's rand() function. And I don't see any reference from libc (for rand()) to getentropy(), so...
  At the very least we might need to use values from getentropy() to seed with srand(). But because I have trust issues with randomizing pseudo-random values in a system
  that doesn't have a system clock, I also added trainerID, trainerName and the number of elapsed cpu cycles until we are going to the main menu to the seed. I might consider
  adding the RTC values for gen II games to the seed as well later.
2025-02-10 12:35:11 +01:00
..
animations Initial import of the first (extremely early) functional version. 2024-07-19 21:46:11 +02:00
core Feature/backup cartridge save to flashcart sd (#7) 2024-09-11 22:31:50 +02:00
menu Feature/backup cartridge save to flashcart sd (#7) 2024-09-11 22:31:50 +02:00
scenes Various changes 2025-02-10 12:35:11 +01:00
transferpak Make validating Japanese save files work correctly 2024-12-16 12:17:55 +01:00
widget Add support for other game localizations/languages 2024-11-25 16:42:38 +01:00