SDL_xbios.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_xbios.h,v 1.1 2002/04/22 21:38:06 wmay Exp $";
  21. #endif
  22. #ifndef _SDL_xbios_h
  23. #define _SDL_xbios_h
  24. #include "SDL_types.h"
  25. #include "SDL_sysvideo.h"
  26. /* Hidden "this" pointer for the video functions */
  27. #define _THIS SDL_VideoDevice *this
  28. /* TT video modes: 2
  29.    Falcon RVB: 16 (could be *2 by adding PAL/NTSC modes)
  30.    Falcon VGA: 6
  31.    ST low: 1
  32. */
  33. #define SDL_NUMMODES 16
  34. typedef struct
  35. {
  36. Uint16 number; /* Video mode number */
  37. Uint16 width; /* Size */
  38. Uint16 height;
  39. Uint16 depth; /* bits per plane */
  40. SDL_bool doubleline; /* Double the lines ? */
  41. } xbiosmode_t;
  42. /* Private display data */
  43. #define NUM_MODELISTS 2 /* 8 and 16 bits-per-pixel */
  44. struct SDL_PrivateVideoData {
  45. long cookie_vdo;
  46. int old_video_mode; /* Old video mode before entering SDL */
  47. void *old_video_base; /* Old pointer to screen buffer */
  48. void *old_palette; /* Old palette */
  49. Uint32 old_num_colors; /* Nb of colors in saved palette */
  50. int num_modes; /* Number of xbios video modes */
  51. xbiosmode_t *mode_list; /* List of xbios video modes */
  52. void *screens[2]; /* Pointers to aligned screen buffer */
  53. void *screensmem[2]; /* Pointers to screen buffer */
  54. void *shadowscreen; /* Shadow screen for c2p conversion */
  55. int doubleline; /* Double line mode ? */
  56. int frame_number; /* Number of frame for double buffer */
  57. int pitch; /* Destination line width for C2P */
  58. int width, height; /* Screen size for centered C2P */
  59. SDL_Rect *SDL_modelist[NUM_MODELISTS][SDL_NUMMODES+1];
  60. xbiosmode_t *videomodes[NUM_MODELISTS][SDL_NUMMODES+1];
  61. };
  62. /* _VDO cookie values */
  63. enum {
  64. VDO_ST=0,
  65. VDO_STE,
  66. VDO_TT,
  67. VDO_F30
  68. };
  69. /* Monitor types */
  70. enum {
  71. MONITOR_MONO=0,
  72. MONITOR_TV,
  73. MONITOR_VGA,
  74. MONITOR_RGB
  75. };
  76. /* EgetShift masks */
  77. #define ES_BANK 0x000f
  78. #define ES_MODE 0x0700
  79. #define ES_GRAY 0x1000
  80. #define ES_SMEAR 0x8000
  81. /* TT shifter modes */
  82. #define ST_LOW 0x0000
  83. #define ST_MED 0x0100
  84. #define ST_HIGH 0x0200
  85. #define TT_LOW 0x0700
  86. #define TT_MED 0x0300
  87. #define TT_HIGH 0x0600
  88. /* Hidden structure -> variables names */
  89. #define SDL_modelist (this->hidden->SDL_modelist)
  90. #define XBIOS_mutex     (this->hidden->mutex)
  91. #define XBIOS_cvdo     (this->hidden->cookie_vdo)
  92. #define XBIOS_oldpalette (this->hidden->old_palette)
  93. #define XBIOS_oldnumcol (this->hidden->old_num_colors)
  94. #define XBIOS_oldvbase (this->hidden->old_video_base)
  95. #define XBIOS_oldvmode (this->hidden->old_video_mode)
  96. #define XBIOS_nummodes (this->hidden->num_modes)
  97. #define XBIOS_modelist (this->hidden->mode_list)
  98. #define XBIOS_screens (this->hidden->screens)
  99. #define XBIOS_screensmem (this->hidden->screensmem)
  100. #define XBIOS_shadowscreen (this->hidden->shadowscreen)
  101. #define XBIOS_videomodes (this->hidden->videomodes)
  102. #define XBIOS_doubleline (this->hidden->doubleline)
  103. #define XBIOS_fbnum (this->hidden->frame_number)
  104. #define XBIOS_pitch (this->hidden->pitch)
  105. #define XBIOS_width (this->hidden->width)
  106. #define XBIOS_height (this->hidden->height)
  107. #endif /* _SDL_xbios_h */