No Description

pokedex_common.h 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef PDEX_C_H_
  2. #define PDEX_C_H_
  3. #include <pokeagb/pokeagb.h>
  4. #define CPUFSCPY 0
  5. #define CPUFSSET 1
  6. #define CPUModeFS(size, mode) ((size >> 2) | (mode << 24))
  7. #define MAX3_COUNT_DIGITS(n) (n >= 100 ? 3 : (n >= 10 ? 2 : 1))
  8. #define OBJID_HIDE(objid) objects[objid].final_oam.affine_mode = 2
  9. #define OBJID_SHOW(objid) objects[objid].final_oam.affine_mode = 0
  10. #define PDEX_FADEIN_SPD 1
  11. #define FONT_DEX_STD 1
  12. #define TB_STD_LEN 10
  13. #define TB_STD_LEN_PX (TB_STD_LEN * 8)
  14. #define TB_BOT_LEN 9
  15. #define TB_BOT_LEN_PX (TB_BOT_LEN * 8)
  16. #define TB_STD_CENTER(t,w) (((w - t) >> 1) + 2)
  17. #define TB_STD_RIGHT(t,w) ((w - t))
  18. #define DEX_PKMN_TAG 0x1300
  19. #define DEX_BALL_TAG 0x1301
  20. #define DEX_CURSOR_TAG 0x1302
  21. #define DEX_ARROW_TAG 0x1303
  22. #define DEX_ARROW_TAG_EPAL 0x1304
  23. #define DEX_SCROLL_TAG 0x1305
  24. #define DEX_REGION_SELECT 0x1306
  25. #define DEX_REGION_PAL(i) (0x1307 + i)
  26. #define DEX_REGION_ICON(i) (0x1307 + i)
  27. void pdex_cb_handler(void);
  28. void pdex_vblank_handler(void);
  29. void pdex_vram_setup(void);
  30. void pdex_vram_free_bgmaps(void);
  31. void pdex_load(void);
  32. const u16 pdex_text_pal[16];
  33. const struct BgConfig pdex_bg_config[4];
  34. struct TextColor pdex_text_color;
  35. u8 pstr_lines(pchar* str);
  36. #endif