SDL_xbiosevents.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/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_xbiosevents.c,v 1.1 2002/04/22 21:38:04 wmay Exp $";
  21. #endif
  22. /*
  23.  * XBIOS mouse & joystick vectors
  24.  *
  25.  * Patrice Mandin
  26.  */
  27. #include <stdlib.h>
  28. #include <string.h>
  29. #include <mint/osbind.h>
  30. #include "SDL_events_c.h"
  31. #include "SDL_xbiosevents_c.h"
  32. #include "SDL_xbiosinterrupt_s.h"
  33. /* Variables */
  34. int SDL_AtariXbios_enabled=0;
  35. static _KBDVECS *kbdvecs; /* Pointer to access vectors */
  36. static _KBDVECS sys_kbdvecs; /* Backup of system vectors */
  37. static Uint16 atari_prevmouseb; /* buttons */
  38. void SDL_AtariXbios_InstallVectors(int vectors_mask)
  39. {
  40. void *oldpile;
  41. /* Clear variables */
  42. SDL_AtariXbios_mouseb =
  43. SDL_AtariXbios_mousex =
  44. SDL_AtariXbios_mousey =
  45. SDL_AtariXbios_joystick =
  46. atari_prevmouseb = 0;
  47. /* Read IKBD vectors base */
  48. kbdvecs=Kbdvbase();
  49. /* Go to supervisor mode */
  50. oldpile=(void *)Super(0);
  51. /* Backup system vectors */
  52. memcpy(&sys_kbdvecs, kbdvecs, sizeof(_KBDVECS));
  53. /* Install our vector */
  54. SDL_AtariXbios_Install(
  55. kbdvecs,
  56. (vectors_mask & ATARI_XBIOS_MOUSEEVENTS) ? SDL_AtariXbios_MouseVector : NULL,
  57. (vectors_mask & ATARI_XBIOS_JOYSTICKEVENTS) ? SDL_AtariXbios_JoystickVector : NULL
  58. );
  59. /* Back to user mode */
  60. Super(oldpile);
  61. SDL_AtariXbios_enabled=1;
  62. }
  63. void SDL_AtariXbios_RestoreVectors(void)
  64. {
  65. void *oldpile;
  66. /* Go to supervisor mode */
  67. oldpile=(void *)Super(NULL);
  68. /* Reinstall system vector */
  69. SDL_AtariXbios_Install(kbdvecs,sys_kbdvecs.mousevec,sys_kbdvecs.joyvec);
  70. /* Back to user mode */
  71. Super(oldpile);
  72. }
  73. static int atari_GetButton(int button)
  74. {
  75. switch(button)
  76. {
  77. case 0:
  78. return SDL_BUTTON_RIGHT;
  79. break;
  80. case 1:
  81. default:
  82. return SDL_BUTTON_LEFT;
  83. break;
  84. }
  85. }
  86. void SDL_AtariXbios_PostMouseEvents(_THIS)
  87. {
  88. /* Mouse motion ? */
  89. if (SDL_AtariXbios_mousex || SDL_AtariXbios_mousey) {
  90. SDL_PrivateMouseMotion(0, 1, SDL_AtariXbios_mousex, SDL_AtariXbios_mousey);
  91. SDL_AtariXbios_mousex = SDL_AtariXbios_mousey = 0;
  92. }
  93. /* Mouse button ? */
  94. if (SDL_AtariXbios_mouseb != atari_prevmouseb) {
  95. int i;
  96. for (i=0;i<2;i++) {
  97. int curbutton, prevbutton;
  98. curbutton = SDL_AtariXbios_mouseb & (1<<i);
  99. prevbutton = atari_prevmouseb & (1<<i);
  100. if (curbutton && !prevbutton) {
  101. SDL_PrivateMouseButton(SDL_PRESSED, atari_GetButton(i), 0, 0);
  102. }
  103. if (!curbutton && prevbutton) {
  104. SDL_PrivateMouseButton(SDL_RELEASED, atari_GetButton(i), 0, 0);
  105. }
  106. }
  107. atari_prevmouseb = SDL_AtariXbios_mouseb;
  108. }
  109. }