aboutsummaryrefslogtreecommitdiff
path: root/x11.cpp
blob: dfac96d2fa3c1df7cd83d12fb4dbc38a5447c58b (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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
/* ScummVM - Scumm Interpreter
 * Copyright (C) 2001  Ludvig Strigeus
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Header$
 *
 */

/* The bare pure X11 port done by Lionel 'BBrox' Ulmer */

#include "stdafx.h"
#include "scumm.h"
#include "gui.h"
#include "sound.h"

#include <sys/time.h>
#include <unistd.h>

#include <sys/ipc.h>
#include <sys/shm.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/XShm.h>
#include <linux/soundcard.h>

#include <sched.h>
#include <pthread.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>

Scumm scumm;
ScummDebugger debugger;
Gui gui;
SoundEngine sound;
SOUND_DRIVER_TYPE snd_driv;
static unsigned char *local_fb;

static int window_width, window_height;
static int scumm_x, scumm_y;

static int x11_socket = -1;
static Display *display;
static int screen;
static Window window;
static GC black_gc;
static XImage *image;
static pthread_t sound_thread;
static int old_mouse_x, old_mouse_y;
static int old_mouse_h, old_mouse_w;
static bool has_mouse, hide_mouse;

static unsigned int scale;

#define MAX_NUMBER_OF_DIRTY_SQUARES 32
typedef struct {
  int x, y, w, h;
} dirty_square;
static dirty_square ds[MAX_NUMBER_OF_DIRTY_SQUARES];
static int num_of_dirty_square;

/* Milisecond-based timer management */
static struct timeval start_time;
static void init_timer(void) {
  gettimeofday(&start_time, NULL);
}
static unsigned int get_ms_from_start(void) {
  struct timeval current_time;
  gettimeofday(&current_time, NULL);
  return (((current_time.tv_sec  - start_time.tv_sec ) * 1000) + 
	  ((current_time.tv_usec - start_time.tv_usec) / 1000));
}

#define FRAG_SIZE 4096
static void *sound_and_music_thread(void *params) {
  /* Init sound */
  int sound_fd, param, frag_size;
  unsigned char sound_buffer[FRAG_SIZE];

  sound_fd = open("/dev/dsp", O_WRONLY);
  audio_buf_info info;
  if (sound_fd < 0) {
    error("Error opening sound device !\n");
    exit(1);
  }
  param = 0;
  frag_size = FRAG_SIZE /* audio fragment size */;
  while (frag_size) {
    frag_size >>= 1;
    param++;
  }
  param--;
  param |= /* audio_fragment_num */ 3 << 16;
  if (ioctl(sound_fd, SNDCTL_DSP_SETFRAGMENT, &param) != 0) {
    error("Error in the SNDCTL_DSP_SETFRAGMENT ioctl !\n");
    exit(1);
  }
  param = AFMT_S16_LE;
  if (ioctl(sound_fd, SNDCTL_DSP_SETFMT, &param) == -1) {
    perror("Error in the SNDCTL_DSP_SETFMT ioctl !\n");
    exit(1);
  }
  if (param != AFMT_S16_LE) {
    error("AFMT_S16_LE not supported !\n");
    exit(1);
  }
  param = 2;
  if (ioctl(sound_fd, SNDCTL_DSP_CHANNELS, &param) == -1) {
    error("Error in the SNDCTL_DSP_CHANNELS ioctl !\n");
    exit(1);
  }
  if (param != 2) {
    error("Stereo mode not supported !\n");
    exit(1);
  }
  param = 22050;
  if (ioctl(sound_fd, SNDCTL_DSP_SPEED, &param) == -1) {
    perror("Error in the SNDCTL_DSP_SPEED ioctl !\n");
    exit(1);
  }
  if (param != 22050) {
    error("22050 kHz not supported !\n");
    exit(1);
  }
  if (ioctl(sound_fd, SNDCTL_DSP_GETOSPACE, &info) != 0) {
    perror("SNDCTL_DSP_GETOSPACE");
    exit(-1);
  }

  while (1) {
    unsigned short *buf = (unsigned short *) sound_buffer;
    int size, written;

    scumm.mixWaves((short *) sound_buffer, FRAG_SIZE >> 2);
    /* Now convert to stereo */
    for (int i = ((FRAG_SIZE >> 2) - 1); i >= 0; i--) {
      buf[2 * i + 1] = buf[2 * i] = buf[i];
    }
    size = FRAG_SIZE;
    while (size > 0) {
      written = write(sound_fd, sound_buffer, size);
      size -= written;
    }
  }

  return NULL;
}

/* Function used to hide the mouse cursor */
static void create_empty_cursor(Display *display,
				int screen,
				Window window) {
  XColor bg;
  Pixmap pixmapBits;
  Cursor cursor = None;
  static const char data[] = { 0 };

  bg.red = bg.green = bg.blue = 0x0000;
  pixmapBits = XCreateBitmapFromData(display, XRootWindow(display, screen), data, 1, 1);
  if (pixmapBits) {
    cursor = XCreatePixmapCursor(display, pixmapBits, pixmapBits,
				 &bg, &bg, 0, 0 );
    XFreePixmap(display, pixmapBits);
  } 
  XDefineCursor(display, window, cursor);
}

void cd_playtrack(int track, int offset, int delay) {
  /* No CD on the iPAQ => stub function */
}

void BoxTest(int num) {
  /* No debugger on the iPAQ => stub function */
}

/* Initialize the graphics sub-system */
void initGraphics(Scumm *s, bool fullScreen, unsigned int scaleFactor) {
  char buf[512], *gameName;
  static XShmSegmentInfo shminfo;
  XWMHints *wm_hints;
  XGCValues values;
  XTextProperty window_name;
  char *name = (char *) &buf;
  
	scale = scaleFactor;  // not implemented yet! ignored.

  /* For the window title */
  sprintf(buf, "ScummVM - %s", gameName = s->getGameName());
  free(gameName);

  display = XOpenDisplay(NULL);
  if (display == NULL) {
    error("Could not open display !\n");
    exit(1);
  }
  screen = DefaultScreen(display);
  x11_socket = ConnectionNumber(display);

  window_width = 320;
  window_height = 200;
  scumm_x = 0;
  scumm_y = 0;
  window = XCreateSimpleWindow(display, XRootWindow(display, screen), 0, 0,
			       320, 200, 0, 0, 0);
  wm_hints = XAllocWMHints();
  if (wm_hints == NULL) {
    error("Not enough memory to allocate Hints !\n");
    exit(1);
  }
  wm_hints->flags = InputHint | StateHint;
  wm_hints->input = True;
  wm_hints->initial_state = NormalState;
  XStringListToTextProperty( &name, 1, &window_name );
  XSetWMProperties(display, window, &window_name, &window_name,
		   NULL /* argv */, 0 /* argc */, NULL /* size hints */, wm_hints, NULL /* class hints */ );

  XSelectInput(display, window,
	       ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask |
	       ButtonPressMask | ButtonReleaseMask | StructureNotifyMask);
  image = XShmCreateImage(display, DefaultVisual(display, screen), 16, ZPixmap, NULL, &shminfo, 320, 200);
  shminfo.shmid = shmget(IPC_PRIVATE, 320 * 200 * 2, IPC_CREAT | 0700);
  shminfo.shmaddr = (char *) shmat(shminfo.shmid, 0, 0);
  image->data = shminfo.shmaddr;
  shminfo.readOnly = False;
  if (XShmAttach(display, &shminfo) == 0) {
    error("Could not attach shared memory segment !\n");
    exit(1);
  }
  shmctl(shminfo.shmid, IPC_RMID, 0);

  values.foreground = BlackPixel(display, screen);
  black_gc = XCreateGC(display, window, GCForeground, &values);

  XMapWindow(display, window);
  XFlush(display);

  while (1) {
    XEvent event;
    XNextEvent(display, &event);
    switch (event.type) {
    case Expose:
      goto out_of_loop;
    }
  }
 out_of_loop:
  create_empty_cursor(display, screen, window);

  /* And finally start the music thread */
  pthread_create(&sound_thread, NULL, sound_and_music_thread, NULL);

  /* Initialize the 'local' frame buffer */
  local_fb = (unsigned char *) malloc(320 * 200 * sizeof(unsigned char));
}

void setShakePos(Scumm *s, int shake_pos) {

}

#define AddDirtyRec(xi,yi,wi,hi) 				\
  if (num_of_dirty_square < MAX_NUMBER_OF_DIRTY_SQUARES) {	\
    ds[num_of_dirty_square].x = xi;				\
    ds[num_of_dirty_square].y = yi;				\
    ds[num_of_dirty_square].w = wi;				\
    ds[num_of_dirty_square].h = hi;				\
    num_of_dirty_square++;					\
  }
void blitToScreen(Scumm *s, byte *src, int x, int y, int w, int h) {
  unsigned char *dst = local_fb + 320 * y + x;

  if (h<=0)	return;

  hide_mouse = true;
  if (has_mouse) {
    s->drawMouse();
  }
  
  AddDirtyRec(x, y, w, h);
  while (h-- > 0) {
    memcpy(dst, src, w);
    dst += 320;
    src += 320;
  }
}

#define BAK_WIDTH 40
#define BAK_HEIGHT 40
unsigned char old_backup[BAK_WIDTH * BAK_HEIGHT];

void drawMouse(Scumm *s, int xdraw, int ydraw, int w, int h, byte *buf, bool visible) {
  unsigned char *dst,*bak;

  if ((xdraw >= 320) || ((xdraw + w) <= 0) ||
      (ydraw >= 200) || ((ydraw + h) <= 0)) {
    if (hide_mouse) visible = false;
    if (has_mouse) has_mouse = false;
    if (visible) has_mouse = true;
    return;
  }

  if (hide_mouse)
    visible = false;
  
  assert(w<=BAK_WIDTH && h<=BAK_HEIGHT);

  if (has_mouse) {
    int old_h = old_mouse_h;

    has_mouse = false;
    AddDirtyRec(old_mouse_x, old_mouse_y, old_mouse_w, old_mouse_h);

    dst = local_fb + (old_mouse_y * 320) + old_mouse_x;
    bak = old_backup;
    
    while (old_h > 0) {
      memcpy(dst, bak, old_mouse_w);
      bak += BAK_WIDTH;
      dst += 320;
      old_h--;
    }
  }

  if (visible) {
    int real_w;
    int real_h;
    int real_h_2;
    unsigned char *dst2;

    if (ydraw < 0) {
      real_h = h + ydraw;
      buf += (-ydraw) * w;
      ydraw = 0;
    } else {
      real_h = (ydraw + h) > 200 ? (200 - ydraw) : h;
    }
    if (xdraw < 0) {
      real_w = w + xdraw;
      buf += (-xdraw);
      xdraw = 0;
    } else {
      real_w = (xdraw + w) > 320 ? (320 - xdraw) : w;
    }
    
    dst = local_fb + (ydraw * 320) + xdraw;
    dst2 = dst;
    bak = old_backup;
        
    has_mouse = true;

    AddDirtyRec(xdraw, ydraw, real_w, real_h);
    old_mouse_x = xdraw;
    old_mouse_y = ydraw;
    old_mouse_w = real_w;
    old_mouse_h = real_h;
    
    real_h_2 = real_h;
    while (real_h_2 > 0) {
      memcpy(bak, dst, real_w);
      bak += BAK_WIDTH;
      dst += 320;
      real_h_2--;
    }
    while (real_h > 0) {
      int width = real_w;
      while (width > 0) {
	unsigned char color = *buf;
	if (color != 0xFF) {
	  *dst2 = color;
	}
	buf++;
	dst2++;
	width--;
      }
      buf += w - real_w;
      dst2 += 320 - real_w;
      real_h--;
    }
  }
}

static unsigned short palette[256];
static void update_palette(Scumm *s) {
  int first = s->_palDirtyMin;
  int num = s->_palDirtyMax - first + 1;
  int i;
  unsigned char *data = s->_currentPalette;
  unsigned short *pal = &(palette[first]);

  data += first*3;
  for (i = 0; i < num; i++, data += 3) {
    *pal++ = ((data[0] & 0xF8) << 8) | ((data[1] & 0xFC) << 3) | (data[2] >> 3);
  }
  s->_palDirtyMax = -1;
  s->_palDirtyMin = 0x3E8; 
}

static void update_screen(Scumm *s, const dirty_square *d, dirty_square *dout) {
  int x, y;
  unsigned char *ptr_src = local_fb + (320 * d->y) + d->x;
  unsigned short *ptr_dst = ((unsigned short *) image->data) + (320 * d->y) + d->x;
  for (y = 0; y < d->h; y++) {
    for (x = 0; x < d->w; x++) {
      *ptr_dst++ = palette[*ptr_src++];
    }
    ptr_dst += 320 - d->w;
    ptr_src += 320 - d->w;
  }
  if (d->x < dout->x) dout->x = d->x;
  if (d->y < dout->y) dout->y = d->y;
  if ((d->x + d->w) > dout->w) dout->w = d->x + d->w;
  if ((d->y + d->h) > dout->h) dout->h = d->y + d->h;
}

void updateScreen(Scumm *s) {
  bool full_redraw = false;
  bool need_redraw = false;
  static const dirty_square ds_full = { 0, 0, 320, 200 };
  dirty_square dout = {320, 200, 0, 0 };
  
  if (s->_fastMode&2)
    return;
  
  if (hide_mouse) {
    hide_mouse = false;
    s->drawMouse();
  }

  if (s->_palDirtyMax != -1) {
    update_palette(s);
    full_redraw = true;
    num_of_dirty_square = 0;
  } else if (num_of_dirty_square > MAX_NUMBER_OF_DIRTY_SQUARES) {
    full_redraw = true;
    num_of_dirty_square = 0;
  }

  if (full_redraw) {
    update_screen(s, &ds_full, &dout);
    need_redraw = true;
  } else if (num_of_dirty_square > 0) {
    need_redraw = true;
    while (num_of_dirty_square > 0) {
      num_of_dirty_square--;
      update_screen(s, &(ds[num_of_dirty_square]), &dout);
    }
  }
  if (need_redraw == true) {
    XShmPutImage(display, window, DefaultGC(display, screen), image, 
		 dout.x, dout.y, 
		 scumm_x + dout.x, scumm_y + dout.y, 
		 dout.w - dout.x, dout.h - dout.y, 
		 0);
    XFlush(display);
  }
}

/* This function waits for 'msec_delay' miliseconds and handles external events */
void waitForTimer(Scumm *s, int msec_delay) {
  int start_time = get_ms_from_start();
  int end_time;
  fd_set rfds;
  struct timeval tv;
  XEvent event;

  if (s->_fastMode&2)
    msec_delay = 0;
  else if (s->_fastMode&1)
    msec_delay = 10;
  end_time = start_time + msec_delay;


  while (1) {
    FD_ZERO(&rfds);
    FD_SET(x11_socket, &rfds);

    msec_delay = end_time - get_ms_from_start();
    tv.tv_sec = 0;
    if (msec_delay <= 0) {
      tv.tv_usec = 0;
    } else {
      tv.tv_usec = msec_delay * 1000;
    }    
    if (select(x11_socket + 1, &rfds, NULL, NULL, &tv) == 0)
      break; /* This is the timeout */
    while (XPending(display)) {
      XNextEvent(display,&event);
      switch (event.type) {
      case Expose: {
	int real_w, real_h;
	int real_x, real_y;
	real_x = event.xexpose.x;
	real_y = event.xexpose.y;
	real_w = event.xexpose.width;
	real_h = event.xexpose.height;

	if (real_x < scumm_x) {
	  real_w -= scumm_x - real_x;
	  real_x = 0;
	} else {
	  real_x -= scumm_x;
	}
	if (real_y < scumm_y) {
	  real_h -= scumm_y - real_y;
	  real_y = 0;
	} else {
	  real_y -= scumm_y;
	}
	if ((real_h <= 0) || (real_w <= 0)) break;
	if ((real_x >= 320) || (real_y >= 200)) break;
	
	if ((real_x + real_w) >= 320) {
	  real_w = 320 - real_x;
	}
	if ((real_y + real_h) >= 200) {
	  real_h = 200 - real_y;
	}

	/* Compute the intersection of the expose event with the real ScummVM display zone */
	AddDirtyRec(real_x, real_y, real_w, real_h);
      } break;

      case KeyPress:
	/* Do nothing for now... Will be useful to implement 'pixel hunting mode' */
	break;

      case KeyRelease:
	/* I am using keycodes here and NOT keysyms to be sure that even if the user
	   remaps his iPAQ's keyboard, it will still work.
	*/
	switch (event.xkey.keycode) {
	case 9: /* Escape on my PC */
	case 130: /* Calendar on the iPAQ */
	  s->_keyPressed = 27;
	  break;

	case 71: /* F5 on my PC */
	case 128: /* Record on the iPAQ */
	  s->_keyPressed = 319;
	  break;
	  
	case 65: /* Space on my PC */
	case 131: /* Schedule on the iPAQ */
	  s->_keyPressed = 32;
	  break;

	default: {
	    KeySym xsym;
	    xsym = XKeycodeToKeysym(display, event.xkey.keycode, 0);
	    if ((xsym >= 'a') && (xsym <= 'z') && (event.xkey.state & 0x01)) xsym &= ~0x20; /* Handle shifted keys */
	    s->_keyPressed = xsym;
	  }
	}
	break;
	
      case ButtonPress:
	if (event.xbutton.button == 1)
	  s->_leftBtnPressed |= msClicked|msDown;
	else if (event.xbutton.button == 3)
	  s->_rightBtnPressed |= msClicked|msDown;
	break;

      case ButtonRelease:
	if (event.xbutton.button == 1)
	  s->_leftBtnPressed &= ~msDown;
	else if (event.xbutton.button == 3)
	  s->_rightBtnPressed &= ~msDown;
	break;	

      case MotionNotify: {
	int newx,newy;
	newx = event.xmotion.x - scumm_x;
	newy = event.xmotion.y - scumm_y;
	if ((newx != s->mouse.x) || (newy != s->mouse.y)) {
	  s->mouse.x = newx;
	  s->mouse.y = newy;
	  s->drawMouse();
	  updateScreen(s);
	}
      } break;

      case ConfigureNotify: {
	if ((window_width != event.xconfigure.width) ||
	    (window_height != event.xconfigure.height)) {
	  window_width = event.xconfigure.width;
	  window_height = event.xconfigure.height;
	  scumm_x = (window_width - 320) / 2;
	  scumm_y = (window_height - 200) / 2;
	  XFillRectangle(display, window, black_gc, 0, 0, window_width, window_height);
	}
      } break;

      default:
	printf("%d\n", event.type);
	break;
      }
    }
  }
}

/* Main function for the system-dependent part. Needs to handle :
    - handle command line arguments
    - initialize all the 'globals' (sound driver, Scumm object, ...)
    - do the main loop of the game
*/
int main(int argc, char* argv[]) {
  int delta;
  int last_time, new_time;
  
  sound.initialize(&scumm, &snd_driv);
  
  scumm._gui = &gui;
  scumm.scummMain(argc, argv);
  
  if (!(scumm._features & GF_SMALL_HEADER))
    gui.init(&scumm);
  num_of_dirty_square = 0;

  /* Start the milisecond counter */
  init_timer();
  last_time = 0;
  delta = 0;
  while (1) {
    updateScreen(&scumm);
    
    new_time = get_ms_from_start();
    waitForTimer(&scumm, delta * 15 + last_time - new_time);
    last_time = get_ms_from_start();
    
    if (gui._active) {
      gui.loop();
      delta = 5;
    } else {
      delta = scumm.scummLoop(delta);
    }
  }
  
  return 0;
}