README.MiNT
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. ==============================================================================
  2. Using the Simple DirectMedia Layer on Atari
  3. ==============================================================================
  4. ==============================================================================
  5. I.  Building the Simple DirectMedia Layer libraries:
  6.     (This step isn't necessary if you have the SDL binary distribution)
  7.   Do the classic configure, with --disable-shared --enable-static and:
  8.     Tos version (should run everywhere):
  9.       --disable-audio --disable-threads
  10.     Tos does not support threads, so can not support audio, maybe in a future
  11.     version audio support will be added via interrupts.
  12.     MiNT version (maybe Magic, only for multitasking OS):
  13.       --disable-pthreads --enable-pth
  14.     Mint and Magic may supports threads, so audio can be used with current
  15.     devices, like Sun audio, or disk-writing support. Like Tos, interrupt
  16.     audio without threads is more suited for Atari machines.
  17.   Then you can make ; make install it.
  18. ==============================================================================
  19. II. Building the Simple DirectMedia Layer test programs:
  20.   Do the classic configure, then make.
  21.   Run them !
  22. ==============================================================================
  23. III.  Enjoy! :)
  24.   If you have a project you'd like me to know about, or want to ask questions,
  25.   go ahead and join the SDL developer's mailing list by sending e-mail to:
  26. sdl-request@libsdl.org
  27.   and put "subscribe" into the subject of the message. Or alternatively you
  28.   can use the web interface:
  29. http://www.libsdl.org/mailman/listinfo/sdl
  30.   
  31. ==============================================================================
  32. IV.  What is supported:
  33. Keyboard (GEMDOS, BIOS, GEM, Ikbd)
  34. Mouse (XBIOS, GEM, Ikbd)
  35. Video (XBIOS (Fullscreen), GEM (Windowed and Fullscreen))
  36. Timer (VBL vector)
  37. Joystick and joypad support (Ikbd, Hardware)
  38. - What is missing:
  39. Audio support (TOS)
  40. CDROM support (Metados, /dev/cdrom)
  41. Threads support (TOS)
  42. - Driver combinations:
  43. Video Kbd Mouse Timer Jstick Joypads
  44. xbios ikbd ikbd vbl ikbd hardware
  45. xbios gemdos xbios vbl xbios hardware
  46. xbios bios xbios vbl xbios hardware
  47. gem gem gem(*) vbl xbios hardware
  48. (*) GEM does not report relative mouse motion, so xbios mouse driver is used
  49. to report this type event.
  50. ==============================================================================
  51. V.  Environment variables:
  52. SDL_ATARI_EVENTSDRIVER
  53. Set to 'ikbd' to force IKBD 6301 keyboard driver
  54. Set to 'gemdos' to force gemdos keyboard driver
  55. Set to 'bios' to force bios keyboard driver
  56. SDL_VIDEODRIVER:
  57. Set to 'xbios' to force xbios video driver
  58. Set to 'gem' to force gem video driver
  59. SDL_JOYSTICK_ATARI:
  60. Use any of these strings in the environment variable to enable or
  61. disable a joystick:
  62. 'ikbd-joy1-[on|off]' for IKBD joystick on port 1 (hardware access)
  63. 'xbios-joy1-[on|off]' for IKBD joystick on port 1 (xbios access)
  64. 'porta-pad-[on|off]' for joypad on port A
  65. 'porta-joy0-[on|off]' for joystick 0 on port A
  66. 'porta-joy1-[on|off]' for joystick 1 on port A
  67. 'porta-lp-[on|off]' for lightpen on port A
  68. 'porta-anpad-[on|off]' for analog paddle on port A
  69. 'portb-pad-[on|off]' for joypad on port B
  70. 'portb-joy0-[on|off]' for joystick 0 on port B
  71. 'portb-joy1-[on|off]' for joystick 1 on port B
  72. 'portb-anpad-[on|off]' for analog paddle on port B
  73. Default configuration is:
  74. 'ikbd-joy1-on' (if IKBD events driver enabled)
  75. 'xbios-joy1-on' (if gemdos/bios/gem events driver enabled)
  76. 'porta-pad-on portb-pad-on' (if available on the machine)
  77. port[a|b]-[pad|joy?|lp|anpad]-* strings are mutually exclusives.
  78. On such a port, you can only use a joypad OR 1 or 2 joysticks OR
  79. a lightpen OR an analog paddle. You must disable joypad before
  80. setting another controller.
  81. The second joystick port on IKBD is used by the mouse, so not usable.
  82. Joypads are multibuttons controller (Atari Jaguar console-like).
  83. Joysticks are 1 button, 2 axis controllers.
  84. Lightpen and analog paddle are 2 buttons, 2 axis controllers. The 2
  85. buttons are those affected to 1 button joysticks on the same port.
  86. ==============================================================================
  87. VI.  More informations about drivers:
  88. Xbios video:
  89. Video chip is detected using the _VDO cookie.
  90. Screen enhancers are not supported, but could be if you know how to
  91. use them.
  92. ST, STE, Mega ST, Mega STE:
  93. 320x200x4 bits, shades of grey, available only for the purpose
  94. of testing SDL.
  95. TT:
  96. 320x480x8 and 320x240x8 (software double-lined mode).
  97. Falcon:
  98. All modes supported by the current monitor (RVB or VGA).
  99. Clones and any machine with monochrome monitor:
  100. Not supported.
  101. Gem video:
  102. Automatically used if xbios not available.
  103. All machines:
  104. Only the current resolution, if 8 bits or higher depth.
  105. IKBD keyboard, mouse and joystick driver:
  106. Available if _MCH cookie is ST, Mega ST, STE, Mega STE, TT or Falcon.
  107. Hades has an IKBD, but xbios is not available for video, so IKBD
  108. driver is disabled.
  109. Gemdos and bios keyboard driver:
  110. Available on all machines.
  111. Mouse and joystick xbios driver:
  112. Available on all machines (I think).
  113. Joypad driver:
  114. Available if _MCH cookie is STE or Falcon.
  115. VBL timer driver:
  116. Available all machines (I think).
  117. -- 
  118. Patrice Mandin <pmandin@caramail.com>
  119. http://membres.lycos.fr/pmandin/