summaryrefslogtreecommitdiff
path: root/board/MAI/bios_emulator/scitech/src/pm/x11/event.c
blob: 23b938023deae048b0dcbac916d63b64d4c4120e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/****************************************************************************
*
*                   SciTech OS Portability Manager Library
*
*  ========================================================================
*
*    The contents of this file are subject to the SciTech MGL Public
*    License Version 1.0 (the "License"); you may not use this file
*    except in compliance with the License. You may obtain a copy of
*    the License at http://www.scitechsoft.com/mgl-license.txt
*
*    Software distributed under the License is distributed on an
*    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
*    implied. See the License for the specific language governing
*    rights and limitations under the License.
*
*    The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
*
*    The Initial Developer of the Original Code is SciTech Software, Inc.
*    All Rights Reserved.
*
*  ========================================================================
*
* Language:     ANSI C
* Environment:  Unix / X11
*
* Description:  X11 event queue implementation for the MGL.
*               This can be used both for windowed and fullscreen (DGA) modes.
*
****************************************************************************/

/*---------------------------- Global Variables ---------------------------*/

static ushort       keyUpMsg[256] = {0};/* Table of key up messages     */
static int          rangeX,rangeY;      /* Range of mouse coordinates   */

static Display  *_EVT_dpy;
static Window    _EVT_win;

typedef struct {
  int keycode;
  int scancode;
} xkeymap;

xkeymap xkeymaps[] = {
  { 9, KB_esc},
  {24, KB_Q},
  {25, KB_W},
  {26, KB_E},
  {27, KB_R},
  {28, KB_T},
  {29, KB_Y},
  {30, KB_U},
  {31, KB_I},
  {32, KB_O},
  {33, KB_P},
};

/*---------------------------- Implementation -----------------------------*/

/* These are not used under non-DOS systems */
#define _EVT_disableInt()       1
#define _EVT_restoreInt(flags)

/****************************************************************************
PARAMETERS:
scanCode    - Scan code to test

REMARKS:
This macro determines if a specified key is currently down at the
time that the call is made.
****************************************************************************/
#define _EVT_isKeyDown(scanCode)    (keyUpMsg[scanCode] != 0)

/****************************************************************************
REMARKS:
This function is used to return the number of ticks since system
startup in milliseconds. This should be the same value that is placed into
the time stamp fields of events, and is used to implement auto mouse down
events.
****************************************************************************/
ulong _EVT_getTicks(void)
{
  static unsigned starttime = 0;
  struct timeval t;
  
  gettimeofday(&t, NULL);
  if (starttime == 0)
    starttime = t.tv_sec * 1000 + (t.tv_usec/1000);
  return ((t.tv_sec * 1000 + (t.tv_usec/1000)) - starttime);
}

static int getScancode(int keycode)
{
  return keycode-8;
}

/****************************************************************************
REMARKS:
Pumps all messages in the application message queue into our event queue.
****************************************************************************/
#ifdef X11_CORE
static void _EVT_pumpX11Messages(void)
#else
static void _EVT_pumpMessages(void)
#endif
{
  // TODO: The purpose of this function is to read all keyboard and mouse
  //         events from the OS specific event queue, translate them and post
  //         them into the SciTech event queue.
  event_t evt;
  XEvent  ev;
  static int old_mx = 0, old_my = 0, buts = 0, c;
  char buf[2];
  
  while (XPending(_EVT_dpy) && XNextEvent(_EVT_dpy,&ev)) {
    evt.when = _MGL_getTicks();

    switch(ev.type){
    case KeyPress:
      c = getScancode(ev.xkey.keycode);
      evt.what = EVT_KEYDOWN;
      evt.message = c << 8;
      XLookupString(&ev.xkey, buf, 2, NULL, NULL);
      evt.message |= buf[0];
      break;
    case KeyRelease:
      c = getScancode(ev.xkey.keycode);
      evt.what = EVT_KEYUP;
      evt.message = keyUpMsg[c];
      if(count < EVENTQSIZE)
        addEvent(&evt);
      keyUpMsg[c] = 0;
      repeatKey[c] = 0;
      break;
    case ButtonPress:
      evt.what = EVT_MOUSEDOWN;
      if(ev.xbutton.button == 1){
        buts |= EVT_LEFTBUT;
        evt.message = EVT_LEFTBMASK;
      }else if(ev.xbutton.button == 2){
        buts |= EVT_MIDDLEBUT;
        evt.message = EVT_MIDDLEBMASK;
      }else if(ev.xbutton.button == 3){
        buts |= EVT_RIGHTBUT;
        evt.message = EVT_RIGHTBMASK;
      }
      evt.modifiers = modifiers | buts;
      
      break;
    case ButtonRelease:
      evt.what = EVT_MOUSEUP;
      if(ev.xbutton.button == 1){
        buts &= ~EVT_LEFTBUT;
        evt.message = EVT_LEFTBMASK;
      }else if(ev.xbutton.button == 2){
        buts &= ~EVT_MIDDLEBUT;
        evt.message = EVT_MIDDLEBMASK;
      }else if(ev.xbutton.button == 3){
        buts &= ~EVT_RIGHTBUT;
        evt.message = EVT_RIGHTBMASK;
      }
      evt.modifiers = modifiers | buts;

      break;
    case MotionNotify:
      evt.what = EVT_MOUSEMOVE;
      evt.where_x = ev.xmotion.x;
      evt.where_y = ev.xmotion.y;
      evt.relative_x = evt.where_x - old_mx;
      evt.relative_y = evt.where_y - old_my;
      old_mx = evt.where_x;
      old_my = evt.where_y;
      break;
    }
    if (count < EVENTQSIZE)
      addEvent(&evt);
  }

}

/****************************************************************************
REMARKS:
This macro/function is used to converts the scan codes reported by the
keyboard to our event libraries normalised format. We only have one scan
code for the 'A' key, and use shift modifiers to determine if it is a
Ctrl-F1, Alt-F1 etc. The raw scan codes from the keyboard work this way,
but the OS gives us 'cooked' scan codes, we have to translate them back
to the raw format.
****************************************************************************/
#define _EVT_maskKeyCode(evt)

/****************************************************************************
REMARKS:
Safely abort the event module upon catching a fatal error.
****************************************************************************/
void _EVT_abort()
{
    EVT_exit();
    PM_fatalError("Unhandled exception!");
}

/****************************************************************************
PARAMETERS:
mouseMove   - Callback function to call wheneve the mouse needs to be moved

REMARKS:
Initiliase the event handling module. Here we install our mouse handling ISR
to be called whenever any button's are pressed or released. We also build
the free list of events in the event queue.

We use handler number 2 of the mouse libraries interrupt handlers for our
event handling routines.
****************************************************************************/
#ifdef X11_CORE
void EVTAPI EVT_initX11(
#else
void EVTAPI EVT_init(
#endif
    _EVT_mouseMoveHandler mouseMove)
{
  int result, i,j,k;
  XDeviceInfoPtr    list,slist;

  /* Initialise the event queue */
  _mouseMove = mouseMove;
  initEventQueue();
  memset(keyUpMsg,0,sizeof(keyUpMsg));
  

  /* query server for input extensions */
  result =XQueryExtension(_EVT_dpy,"XInputExtension",&i,&j,&k);
  if(!result) {
    fprintf(stderr,"Your server doesn't support XInput Extensions\n");
    fprintf(stderr,"X11 Joystick disabled\n");
  }
  list = XListInputDevices(_EVT_dpy,&result);
  if (!list) {
    fprintf(stderr,"No extended input devices found !!\n");
    fprintf(stderr,"X11 Joystick disabled\n");
  }


  /* Catch program termination signals so we can clean up properly */
  signal(SIGABRT, _EVT_abort);
  signal(SIGFPE, _EVT_abort);
  signal(SIGINT, _EVT_abort);
}

/****************************************************************************
REMARKS
Changes the range of coordinates returned by the mouse functions to the
specified range of values. This is used when changing between graphics
modes set the range of mouse coordinates for the new display mode.
****************************************************************************/
void EVTAPI EVT_setMouseRange(
    int xRes,
    int yRes)
{
    rangeX = xRes;
    rangeY = yRes;
}

/****************************************************************************
REMARKS:
Initiailises the internal event handling modules. The EVT_suspend function
can be called to suspend event handling (such as when shelling out to DOS),
and this function can be used to resume it again later.
****************************************************************************/
void EVT_resume(void)
{
    // Do nothing for non DOS systems
}

/****************************************************************************
REMARKS
Suspends all of our event handling operations. This is also used to
de-install the event handling code.
****************************************************************************/
void EVT_suspend(void)
{
    // Do nothing for non DOS systems
}

/****************************************************************************
REMARKS
Exits the event module for program terminatation.
****************************************************************************/
void EVT_exit(void)
{
    /* Restore signal handlers */
    signal(SIGABRT, SIG_DFL);
    signal(SIGFPE, SIG_DFL);
    signal(SIGINT, SIG_DFL);

    // TODO: Do any OS specific cleanup in here
}

/****************************************************************************
REMARKS
Sets the current X11 display
****************************************************************************/
void EVT_setX11Display(Display *dpy, Window win)
{
  _EVT_dpy = dpy;
  _EVT_win = win;
}