Multilayer.pp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. unit Multilayer;
  2. interface
  3. uses
  4. ctypes;
  5. //======================================================================
  6. //
  7. // Layer_1, 256x256@8,
  8. // + regular map (flat), not compressed, 32x32
  9. // Total size: 2048 = 2048
  10. //
  11. // Time-stamp: 2007-12-07, 18:17:34
  12. // Exported by Cearn's GBA Image Transmogrifier
  13. // ( http://www.coranac.com )
  14. //
  15. //======================================================================
  16. const
  17. Layer_1MapLen = 2048;
  18. var
  19. Layer_1Map: array [0..1023] of cushort; cvar; external;
  20. //======================================================================
  21. //
  22. // Layer_2, 256x256@8,
  23. // + regular map (flat), not compressed, 32x32
  24. // Total size: 2048 = 2048
  25. //
  26. // Time-stamp: 2007-12-07, 18:17:34
  27. // Exported by Cearn's GBA Image Transmogrifier
  28. // ( http://www.coranac.com )
  29. //
  30. //======================================================================
  31. const
  32. Layer_2MapLen = 2048;
  33. var
  34. Layer_2Map: array [0..1023] of cushort; cvar; external;
  35. //======================================================================
  36. //
  37. // Layer_3, 256x256@8,
  38. // + regular map (flat), not compressed, 32x32
  39. // Total size: 2048 = 2048
  40. //
  41. // Time-stamp: 2007-12-07, 18:17:34
  42. // Exported by Cearn's GBA Image Transmogrifier
  43. // ( http://www.coranac.com )
  44. //
  45. //======================================================================
  46. const
  47. Layer_3MapLen = 2048;
  48. var
  49. Layer_3Map: array [0..1023] of cushort; cvar; external;
  50. //======================================================================
  51. //
  52. // Multilayer, 8x2504@8,
  53. // + palette 256 entries, not compressed
  54. // + 313 tiles not compressed
  55. // Total size: 512 + 20032 = 20544
  56. //
  57. // Time-stamp: 2007-12-07, 18:17:35
  58. // Exported by Cearn's GBA Image Transmogrifier
  59. // ( http://www.coranac.com )
  60. //
  61. //======================================================================
  62. const
  63. MultilayerPalLen = 512;
  64. MultilayerTilesLen = 20032;
  65. var
  66. MultilayerPal: array [0..255] of cushort; cvar; external;
  67. MultilayerTiles: array [0..5007] of cuint; cvar; external;
  68. implementation
  69. end.