XLIB.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:6k
源码类别:

游戏

开发平台:

Visual C++

  1. /*----------------------------------------------------------------------
  2. ;
  3. ; XLIB - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ;
  11. ; egg@dstos3.dsto.gov.au
  12. ; teg@bart.dsto.gov.au
  13. ;
  14. ; Header file contributed by Darren Lyon (darren@nicky.DIALix.oz.au)
  15. ;
  16. ;
  17. ;  Terminology & notes:
  18. ;         VRAM ==   Video RAM
  19. ;         SRAM ==   System RAM
  20. ;         X coordinates are in pixels unless explicitly stated
  21. ;
  22. ;----------------------------------------------------------------------*/
  23. #ifndef _XLIB_H_
  24. #define _XLIB_H_
  25. #define BYTER unsigned char
  26. #define WORD unsigned int
  27. #define X_MODE_320x200  0
  28. #define X_MODE_320x240  1
  29. #define X_MODE_360x200  2
  30. #define X_MODE_360x240  3
  31. #define X_MODE_376x282  4
  32. #define X_MODE_320x400  5
  33. #define X_MODE_320x480  6
  34. #define X_MODE_360x400  7
  35. #define X_MODE_360x480  8
  36. #define X_MODE_360x360  9
  37. #define X_MODE_376x308  10
  38. #define X_MODE_376x564  11
  39. #define X_MODE_256x400  12
  40. #define X_MODE_256x480  13
  41. #define BACKWARD 0
  42. #define FORWARD  1
  43. #define X_MODE_INVALID  -1
  44. #define ERROR            1
  45. #define OK               0
  46. /* FUNCTIONS =========================================================== */
  47. #ifdef __cplusplus
  48. extern "C" {
  49. #endif
  50.  WORD x_set_mode(
  51. WORD mode,                /* Initialize x mode           */
  52. WORD WidthInPixels);
  53.   void x_select_default_plane( /*Enables Read/Write access to a    */
  54. BYTER plane);   /* a specified plane                */
  55.  void x_set_splitscreen(            /* set the split screen start  */
  56. WORD line);         /*scan line (initialize)       */
  57.  void x_set_start_addr(
  58. WORD X,             /* Set the screen start        */
  59. WORD Y);            /* address in video ram        */
  60.  void x_hide_splitscreen(void); /* Disable the split screen (Split */
  61. /* Screen RAM remains reserved)    */
  62.  void x_show_splitscreen(void); /* Enable the split screen (given it */
  63. /* was previously "hidden")          */
  64.  void x_adjust_splitscreen(   /* Adjust the start scan line of the */
  65. WORD line);   /* split screen                      */
  66.  WORD x_set_doublebuffer(         /* Enable double buffering with a    */
  67. WORD PageHeight); /* specified page height             */
  68.  WORD x_set_tripplebuffer(         /* Enable tripple buffering with a    */
  69. WORD PageHeight); /* specified page height             */
  70.  void x_page_flip(        /* Swap visible page (only when double   */
  71. WORD X,   /* buffering is active) & sets virt start*/
  72. WORD Y);
  73.  void x_set_cliprect(      /* Define the clipping rectangle */
  74. WORD left, /* NOTE: left and right are in bytes */
  75. WORD top,
  76. WORD righ,
  77. WORD bottom);
  78.  void x_text_mode(void);   /* return to text mode */
  79.  void x_wait_vsync(void);  /* wait for vsync */
  80. #ifdef __cplusplus
  81. }
  82. #endif
  83. /* VARIABLES =========================================================== */
  84. extern BYTER InGraphics;             /* non zero if in X graphics mode      */
  85. extern WORD CurrXMode;              /* contains current X graphics mode id */
  86. extern WORD ScrnPhysicalByteWidth;  /* Physical screen width in bytes      */
  87. extern WORD ScrnPhysicalPixelWidth; /* Physical screen width in pixels     */
  88. extern WORD ScrnPhysicalHeight;     /* Physical screen height in pixels    */
  89. extern WORD ErrorValue;             /* Error return value                  */
  90. extern WORD SplitScrnOffs;          /* Offset in VRAM  of split screen     */
  91. extern WORD SplitScrnScanLine;      /* Scan line split screen starts at    */
  92.     /* initially. Resizing the split scrn  */
  93.     /* using the other functions does not  */
  94.     /* change this value                   */
  95. extern WORD SplitScrnVisibleHeight; /* Height of the visible portion of the*/
  96.     /* split screen.                       */
  97. extern WORD Page0_Offs;             /* Offset in VRAM of main virt. screen */
  98. extern WORD Page1_Offs;             /* Offset in VRAM of 2nd virt. screen  */
  99. extern WORD Page2_Offs;             /* Offset in VRAM of 3rd virt. screen  */
  100. extern WORD ScrnLogicalByteWidth;   /* Virtual screen width in bytes       */
  101. extern WORD ScrnLogicalPixelWidth;  /* Virtual screen width in pixels      */
  102. extern WORD ScrnLogicalHeight;      /* Virtual screen height in pixels     */
  103. extern WORD MaxScrollX;             /* Max X position of physical screen   */
  104.     /*  within virtual screen              */
  105. extern WORD MaxScrollY;             /* Max Y position of physical screen   */
  106.     /*  within virtual screen              */
  107. extern WORD DoubleBufferActive;     /* Indicates whether double buffering  */
  108. /* is active                           */
  109. extern WORD TrippleBufferActive;    /* Indicates whether tripple           */
  110.     /* buffering is active                 */
  111. extern WORD VisiblePageIdx;         /* Index number of visible page 0 or 1 */
  112. extern WORD HiddenPageOffs;         /* Offset of Hidden Pg | only valid    */
  113. extern WORD VisiblePageOffs;        /* Offset of Visible Pg| for D.B. mode */
  114. extern WORD WaitingPageOffs;        /* Offset of Waiting Pg| for T.B. mode */
  115. extern WORD NonVisual_Offs;         /* Offset of first non-visible VRAM    */
  116. extern WORD StartAddressFlag;
  117. extern WORD TopClip;                /* Clipping rectangle                  */
  118. extern WORD BottomClip;
  119. extern WORD LeftClip;
  120. extern WORD RightClip;
  121. extern WORD PhysicalStartPixelX;    /* Coordinates of physical (visible) */
  122. extern WORD PhysicalStartByteX;     /* screen relative to the virtual    */
  123. extern WORD PhysicalStartY;         /* screen's U.L. corner              */
  124. extern char* VsyncPaletteBuffer;
  125. #endif