home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 08 / dflat5 / system.h < prev    next >
Text File  |  1991-06-25  |  4KB  |  140 lines

  1. /* --------------- system.h -------------- */
  2. #ifndef SYSTEM_H
  3. #define SYSTEM_H
  4. #define swap(a,b){int x=a;a=b;b=x;}
  5. /* ----- interrupt vectors ----- */
  6. #define TIMER  8
  7. #define VIDEO  0x10
  8. #define KEYBRD 0x16
  9. #define DOS    0x21
  10. #define CRIT   0x24
  11. #define MOUSE  0x33
  12. #define KEYBOARDVECT 9
  13. /* ------- platform-dependent values ------ */
  14. #define KEYBOARDPORT 0x60
  15. #define FREQUENCY 100
  16. #define COUNT (1193280L / FREQUENCY)
  17. #define ZEROFLAG 0x40
  18. #define MAXSAVES 50
  19. #define SCREENWIDTH  80
  20. #define SCREENHEIGHT (isVGA() || isEGA() ? peekb(0x40,0x84)+1 : 25)
  21. #define clearBIOSbuffer() *(int far *)(MK_FP(0x40,0x1a)) = \
  22.                           *(int far *)(MK_FP(0x40,0x1c));
  23. #define waitforkeyboard() while ((keyportvalue & 0x80) == 0) \
  24.                           clearBIOSbuffer()
  25. /* ----- keyboard BIOS (0x16) functions -------- */
  26. #define READKB 0
  27. #define KBSTAT 1
  28. /* ------- video BIOS (0x10) functions --------- */
  29. #define SETCURSORTYPE 1
  30. #define SETCURSOR     2
  31. #define READCURSOR    3
  32. #define READATTRCHAR  8
  33. #define WRITEATTRCHAR 9
  34. #define HIDECURSOR 0x20
  35. /* ------- the interrupt function registers -------- */
  36. typedef struct {
  37.     int bp,di,si,ds,es,dx,cx,bx,ax,ip,cs,fl;
  38. } IREGS;
  39. /* ---------- keyboard prototypes -------- */
  40. int AltConvert(int);
  41. int getkey(void);
  42. int getshift(void);
  43. int keyhit(void);
  44. void beep(void);
  45. /* ---------- cursor prototypes -------- */
  46. void curr_cursor(int *x, int *y);
  47. void cursor(int x, int y);
  48. void hidecursor(void);
  49. void unhidecursor(void);
  50. void savecursor(void);
  51. void restorecursor(void);
  52. void normalcursor(void);
  53. void set_cursor_type(unsigned t);
  54. void videomode(void);
  55. void SwapCursorStack(void);
  56. /* ---------- mouse prototypes ---------- */
  57. int mouse_installed(void);
  58. int mousebuttons(void);
  59. void get_mouseposition(int *x, int *y);
  60. void set_mouseposition(int x, int y);
  61. void show_mousecursor(void);
  62. void hide_mousecursor(void);
  63. int button_releases(void);
  64. void resetmouse(void);
  65. #define leftbutton()     (mousebuttons()&1)
  66. #define rightbutton()     (mousebuttons()&2)
  67. #define waitformouse()     while(mousebuttons());
  68. /* ------------ timer macros -------------- */
  69. #define timed_out(timer)         (timer==0)
  70. #define set_timer(timer, secs)     timer=(secs)*182/10+1
  71. #define disable_timer(timer)     timer = -1
  72. #define timer_running(timer)     (timer > 0)
  73. #define countdown(timer)         --timer
  74. #define timer_disabled(timer)     (timer == -1)
  75. /* ----------- video adaptor prototypes ----------- */
  76. int isEGA(void);
  77. int isVGA(void);
  78. void Set25(void);
  79. void Set43(void);
  80. void Set50(void);
  81.  
  82. #ifdef MSC
  83. /* ============= MSC Compatibility Macros ============ */
  84. #define BLACK         0
  85. #define BLUE          1
  86. #define GREEN         2
  87. #define CYAN          3
  88. #define RED           4
  89. #define MAGENTA       5
  90. #define BROWN         6
  91. #define LIGHTGRAY     7
  92. #define DARKGRAY      8
  93. #define LIGHTBLUE     9
  94. #define LIGHTGREEN   10
  95. #define LIGHTCYAN    11
  96. #define LIGHTRED     12
  97. #define LIGHTMAGENTA 13
  98. #define YELLOW       14
  99. #define WHITE        15
  100. #define keyhit           kbhit
  101. #undef FP_OFF
  102. #undef FP_SEG
  103. #define FP_OFF(p)    ((unsigned)(p))
  104. #define FP_SEG(p)    ((unsigned)((unsigned long)((void *)p) >> 16))
  105.  
  106. #define getvect(v)   _dos_getvect(v)
  107. #define setvect(v,f) _dos_setvect(v,f)
  108. #undef MK_FP
  109. #define MK_FP(s,o)   ((void far *) \
  110.                (((unsigned long)(s) << 16) | (unsigned)(o)))
  111. #undef FP_OFF
  112. #undef FP_SEG
  113. #define FP_OFF(p)    ((unsigned)(p))
  114. #define FP_SEG(p)    ((unsigned)((unsigned long)(p) >> 16))
  115. #define poke(a,b,c)  (*((int  far*)MK_FP((a),(b))) = (int)(c))
  116. #define pokeb(a,b,c) (*((char far*)MK_FP((a),(b))) = (char)(c))
  117. #define peek(a,b)    (*((int  far*)MK_FP((a),(b))))
  118. #define peekb(a,b)   (*((char far*)MK_FP((a),(b))))
  119. #define findfirst(p,f,a) _dos_findfirst(p,a,f)
  120. #define findnext(f)      _dos_findnext(f)
  121. #define ffblk            find_t
  122. #define ff_name          name
  123. #define ff_fsize         size
  124. #define ff_attrib        attrib
  125. #define fnsplit          _splitpath
  126. #define fnmerge          _makepath
  127. #define EXTENSION         2
  128. #define FILENAME          4
  129. #define DIRECTORY         8
  130. #define DRIVE            16
  131. #define MAXPATH          80
  132. #define MAXDRIVE          3 
  133. #define MAXDIR           66
  134. #define MAXFILE           9
  135. #define MAXEXT            5
  136. #define setdisk(d)       _dos_setdrive((d)+1, NULL)
  137. #define bioskey          _bios_keybrd
  138. #endif
  139. #endif
  140.