ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/video_x.cpp
Revision: 1.44
Committed: 2001-06-30T17:21:54Z (23 years ago) by cebix
Branch: MAIN
Changes since 1.43: +520 -380 lines
Log Message:
- experimental gamma table support
- restructured video_x.cpp: uses classes for display types

File Contents

# Content
1 /*
2 * video_x.cpp - Video/graphics emulation, X11 specific stuff
3 *
4 * Basilisk II (C) 1997-2001 Christian Bauer
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 /*
22 * NOTES:
23 * The Ctrl key works like a qualifier for special actions:
24 * Ctrl-Tab = suspend DGA mode
25 * Ctrl-Esc = emergency quit
26 * Ctrl-F1 = mount floppy
27 */
28
29 #include "sysdeps.h"
30
31 #include <X11/Xlib.h>
32 #include <X11/Xutil.h>
33 #include <X11/keysym.h>
34 #include <X11/extensions/XShm.h>
35 #include <sys/ipc.h>
36 #include <sys/shm.h>
37 #include <errno.h>
38
39 #ifdef HAVE_PTHREADS
40 # include <pthread.h>
41 #endif
42
43 #ifdef ENABLE_XF86_DGA
44 # include <X11/extensions/xf86dga.h>
45 #endif
46
47 #ifdef ENABLE_XF86_VIDMODE
48 # include <X11/extensions/xf86vmode.h>
49 #endif
50
51 #ifdef ENABLE_FBDEV_DGA
52 # include <sys/mman.h>
53 #endif
54
55 #include "cpu_emulation.h"
56 #include "main.h"
57 #include "adb.h"
58 #include "macos_util.h"
59 #include "prefs.h"
60 #include "user_strings.h"
61 #include "video.h"
62
63 #define DEBUG 0
64 #include "debug.h"
65
66
67 // Display types
68 enum {
69 DISPLAY_WINDOW, // X11 window, using MIT SHM extensions if possible
70 DISPLAY_DGA // DGA fullscreen display
71 };
72
73 // Constants
74 const char KEYCODE_FILE_NAME[] = DATADIR "/keycodes";
75
76 static const int win_eventmask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | EnterWindowMask | ExposureMask | StructureNotifyMask;
77 static const int dga_eventmask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask;
78
79
80 // Global variables
81 static int32 frame_skip; // Prefs items
82 static int16 mouse_wheel_mode;
83 static int16 mouse_wheel_lines;
84
85 static int display_type = DISPLAY_WINDOW; // See enum above
86 static bool local_X11; // Flag: X server running on local machine?
87 static uint8 *the_buffer = NULL; // Mac frame buffer (where MacOS draws into)
88 static uint8 *the_buffer_copy = NULL; // Copy of Mac frame buffer (for refreshed modes)
89
90 #ifdef HAVE_PTHREADS
91 static bool redraw_thread_active = false; // Flag: Redraw thread installed
92 static volatile bool redraw_thread_cancel; // Flag: Cancel Redraw thread
93 static pthread_t redraw_thread; // Redraw thread
94 #endif
95
96 static bool has_dga = false; // Flag: Video DGA capable
97 static bool has_vidmode = false; // Flag: VidMode extension available
98
99 #ifdef ENABLE_VOSF
100 static bool use_vosf = true; // Flag: VOSF enabled
101 #else
102 static const bool use_vosf = false; // VOSF not possible
103 #endif
104
105 static bool ctrl_down = false; // Flag: Ctrl key pressed
106 static bool caps_on = false; // Flag: Caps Lock on
107 static bool quit_full_screen = false; // Flag: DGA close requested from redraw thread
108 static bool emerg_quit = false; // Flag: Ctrl-Esc pressed, emergency quit requested from MacOS thread
109 static bool emul_suspended = false; // Flag: Emulator suspended
110
111 static bool classic_mode = false; // Flag: Classic Mac video mode
112
113 static bool use_keycodes = false; // Flag: Use keycodes rather than keysyms
114 static int keycode_table[256]; // X keycode -> Mac keycode translation table
115
116 // X11 variables
117 static int screen; // Screen number
118 static int xdepth; // Depth of X screen
119 static Window rootwin; // Root window and our window
120 static XVisualInfo visualInfo;
121 static Visual *vis;
122 static Colormap cmap[2] = {0, 0}; // Colormaps for indexed modes (DGA needs two of them)
123 static XColor black, white;
124 static unsigned long black_pixel, white_pixel;
125 static int eventmask;
126
127 static XColor palette[256]; // Color palette for indexed modes
128 static bool palette_changed = false; // Flag: Palette changed, redraw thread must set new colors
129
130 #ifdef ENABLE_FBDEV_DGA
131 static int fbdev_fd = -1;
132 #endif
133
134 #ifdef ENABLE_XF86_VIDMODE
135 static XF86VidModeModeInfo **x_video_modes = NULL; // Array of all available modes
136 static int num_x_video_modes;
137 #endif
138
139 // Mutex to protect palette
140 #ifdef HAVE_PTHREADS
141 static pthread_mutex_t palette_lock = PTHREAD_MUTEX_INITIALIZER;
142 #define LOCK_PALETTE pthread_mutex_lock(&palette_lock)
143 #define UNLOCK_PALETTE pthread_mutex_unlock(&palette_lock)
144 #else
145 #define LOCK_PALETTE
146 #define UNLOCK_PALETTE
147 #endif
148
149 // Mutex to protect frame buffer
150 #ifdef HAVE_PTHREADS
151 static pthread_mutex_t frame_buffer_lock = PTHREAD_MUTEX_INITIALIZER;
152 #define LOCK_FRAME_BUFFER pthread_mutex_lock(&frame_buffer_lock);
153 #define UNLOCK_FRAME_BUFFER pthread_mutex_unlock(&frame_buffer_lock);
154 #else
155 #define LOCK_FRAME_BUFFER
156 #define UNLOCK_FRAME_BUFFER
157 #endif
158
159 // Variables for non-VOSF incremental refresh
160 static const int sm_uptd[] = {4,1,6,3,0,5,2,7};
161 static int sm_no_boxes[] = {1,8,32,64,128,300};
162 static bool updt_box[17][17];
163 static int nr_boxes;
164
165 // Video refresh function
166 static void VideoRefreshInit(void);
167 static void (*video_refresh)(void);
168
169
170 // Prototypes
171 static void *redraw_func(void *arg);
172 static int event2keycode(XKeyEvent &ev);
173
174 // From main_unix.cpp
175 extern char *x_display_name;
176 extern Display *x_display;
177
178 // From sys_unix.cpp
179 extern void SysMountFirstFloppy(void);
180
181
182 /*
183 * Utility functions
184 */
185
186 // Add mode to list of supported modes
187 static void add_mode(uint32 width, uint32 height, uint32 resolution_id, uint32 bytes_per_row, video_depth depth)
188 {
189 video_mode mode;
190 mode.x = width;
191 mode.y = height;
192 mode.resolution_id = resolution_id;
193 mode.bytes_per_row = bytes_per_row;
194 mode.depth = depth;
195 VideoModes.push_back(mode);
196 }
197
198 // Set Mac frame layout and base address (uses the_buffer/MacFrameBaseMac)
199 static void set_mac_frame_buffer(video_depth depth, bool native_byte_order)
200 {
201 #if !REAL_ADDRESSING && !DIRECT_ADDRESSING
202 int layout = FLAYOUT_DIRECT;
203 if (depth == VDEPTH_16BIT)
204 layout = (xdepth == 15) ? FLAYOUT_HOST_555 : FLAYOUT_HOST_565;
205 else if (depth == VDEPTH_32BIT)
206 layour = (xdepth == 24) ? FLAYOUT_HOST_888 : FLAYOUT_DIRECT;
207 if (native_byte_order)
208 MacFrameLayout = layout;
209 else
210 MacFrameLayout = FLAYOUT_DIRECT;
211 VideoMonitor.mac_frame_base = MacFrameBaseMac;
212
213 // Set variables used by UAE memory banking
214 MacFrameBaseHost = the_buffer;
215 MacFrameSize = VideoMonitor.mode.bytes_per_row * VideoMonitor.mode.y;
216 InitFrameBufferMapping();
217 #else
218 VideoMonitor.mac_frame_base = Host2MacAddr(the_buffer);
219 D(bug("Host frame buffer = %p, ", the_buffer));
220 #endif
221 D(bug("VideoMonitor.mac_frame_base = %08x\n", VideoMonitor.mac_frame_base));
222 }
223
224 // Set window name and class
225 static void set_window_name(Window w, int name)
226 {
227 const char *str = GetString(name);
228 XStoreName(x_display, w, str);
229 XSetIconName(x_display, w, str);
230
231 XClassHint *hints;
232 hints = XAllocClassHint();
233 if (hints) {
234 hints->res_name = "BasiliskII";
235 hints->res_class = "BasiliskII";
236 XSetClassHint(x_display, w, hints);
237 XFree(hints);
238 }
239 }
240
241 // Set window input focus flag
242 static void set_window_focus(Window w)
243 {
244 XWMHints *hints = XAllocWMHints();
245 if (hints) {
246 hints->input = True;
247 hints->initial_state = NormalState;
248 hints->flags = InputHint | StateHint;
249 XSetWMHints(x_display, w, hints);
250 XFree(hints);
251 }
252 }
253
254 // Set WM_DELETE_WINDOW protocol on window (preventing it from being destroyed by the WM when clicking on the "close" widget)
255 static Atom WM_DELETE_WINDOW = (Atom)0;
256 static void set_window_delete_protocol(Window w)
257 {
258 WM_DELETE_WINDOW = XInternAtom(x_display, "WM_DELETE_WINDOW", false);
259 XSetWMProtocols(x_display, w, &WM_DELETE_WINDOW, 1);
260 }
261
262 // Wait until window is mapped/unmapped
263 void wait_mapped(Window w)
264 {
265 XEvent e;
266 do {
267 XMaskEvent(x_display, StructureNotifyMask, &e);
268 } while ((e.type != MapNotify) || (e.xmap.event != w));
269 }
270
271 void wait_unmapped(Window w)
272 {
273 XEvent e;
274 do {
275 XMaskEvent(x_display, StructureNotifyMask, &e);
276 } while ((e.type != UnmapNotify) || (e.xmap.event != w));
277 }
278
279 // Trap SHM errors
280 static bool shm_error = false;
281 static int (*old_error_handler)(Display *, XErrorEvent *);
282
283 static int error_handler(Display *d, XErrorEvent *e)
284 {
285 if (e->error_code == BadAccess) {
286 shm_error = true;
287 return 0;
288 } else
289 return old_error_handler(d, e);
290 }
291
292
293 /*
294 * Display "driver" classes
295 */
296
297 class driver_base {
298 public:
299 driver_base();
300 virtual ~driver_base();
301
302 virtual void update_palette(void);
303 virtual void suspend(void) {}
304 virtual void resume(void) {}
305
306 public:
307 bool init_ok; // Initialization succeeded (we can't use exceptions because of -fomit-frame-pointer)
308 Window w; // The window we draw into
309 };
310
311 class driver_window;
312 static void update_display_window_vosf(driver_window *drv);
313 static void update_display_dynamic(int ticker, driver_window *drv);
314 static void update_display_static(driver_window *drv);
315
316 class driver_window : public driver_base {
317 friend void update_display_window_vosf(driver_window *drv);
318 friend void update_display_dynamic(int ticker, driver_window *drv);
319 friend void update_display_static(driver_window *drv);
320
321 public:
322 driver_window(const video_mode &mode);
323 ~driver_window();
324
325 private:
326 GC gc;
327 XImage *img;
328 bool have_shm; // Flag: SHM extensions available
329 XShmSegmentInfo shminfo;
330 Cursor mac_cursor;
331 };
332
333 static driver_base *drv = NULL; // Pointer to currently used driver object
334
335 #ifdef ENABLE_VOSF
336 # include "video_vosf.h"
337 #endif
338
339 driver_base::driver_base()
340 : init_ok(false), w(0)
341 {
342 the_buffer = NULL;
343 the_buffer_copy = NULL;
344 }
345
346 driver_base::~driver_base()
347 {
348 XFlush(x_display);
349 XSync(x_display, false);
350
351 if (w) {
352 XUnmapWindow(x_display, w);
353 wait_unmapped(w);
354 XDestroyWindow(x_display, w);
355 }
356
357 // Free frame buffer(s)
358 if (!use_vosf) {
359 if (the_buffer) {
360 free(the_buffer);
361 the_buffer = NULL;
362 }
363 if (the_buffer_copy) {
364 free(the_buffer_copy);
365 the_buffer_copy = NULL;
366 }
367 }
368 #ifdef ENABLE_VOSF
369 else {
370 if (the_buffer != (uint8 *)VM_MAP_FAILED) {
371 vm_release(the_buffer, the_buffer_size);
372 the_buffer = NULL;
373 }
374 if (the_buffer_copy != (uint8 *)VM_MAP_FAILED) {
375 vm_release(the_buffer_copy, the_buffer_size);
376 the_buffer_copy = NULL;
377 }
378 }
379 #endif
380 }
381
382 // Palette has changed
383 void driver_base::update_palette(void)
384 {
385 if (cmap[0] && cmap[1]) {
386 int num = 256;
387 if (xdepth == 15)
388 num = 32;
389 else if (xdepth == 16)
390 num = 64;
391 XStoreColors(x_display, cmap[0], palette, num);
392 XStoreColors(x_display, cmap[1], palette, num);
393 }
394 XSync(x_display, false);
395 }
396
397
398 /*
399 * Windowed display driver
400 */
401
402 // Open display
403 driver_window::driver_window(const video_mode &mode)
404 : gc(0), img(NULL), have_shm(false), mac_cursor(0)
405 {
406 int width = mode.x, height = mode.y;
407 int aligned_width = (width + 15) & ~15;
408 int aligned_height = (height + 15) & ~15;
409
410 // Set absolute mouse mode
411 ADBSetRelMouseMode(false);
412
413 // Create window
414 XSetWindowAttributes wattr;
415 wattr.event_mask = eventmask = win_eventmask;
416 wattr.background_pixel = black_pixel;
417 wattr.colormap = cmap[0];
418 w = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
419 InputOutput, vis, CWEventMask | CWBackPixel | ((mode.depth == VDEPTH_1BIT || cmap[0] == 0) ? 0 : CWColormap), &wattr);
420
421 // Set window name/class
422 set_window_name(w, STR_WINDOW_TITLE);
423
424 // Indicate that we want keyboard input
425 set_window_focus(w);
426
427 // Set delete protocol property
428 set_window_delete_protocol(w);
429
430 // Make window unresizable
431 {
432 XSizeHints *hints = XAllocSizeHints();
433 if (hints) {
434 hints->min_width = width;
435 hints->max_width = width;
436 hints->min_height = height;
437 hints->max_height = height;
438 hints->flags = PMinSize | PMaxSize;
439 XSetWMNormalHints(x_display, w, hints);
440 XFree(hints);
441 }
442 }
443
444 // Show window
445 XMapWindow(x_display, w);
446 wait_mapped(w);
447
448 // Try to create and attach SHM image
449 if (local_X11 && mode.depth != VDEPTH_1BIT && XShmQueryExtension(x_display)) {
450
451 // Create SHM image ("height + 2" for safety)
452 img = XShmCreateImage(x_display, vis, mode.depth == VDEPTH_1BIT ? 1 : xdepth, mode.depth == VDEPTH_1BIT ? XYBitmap : ZPixmap, 0, &shminfo, width, height);
453 shminfo.shmid = shmget(IPC_PRIVATE, (aligned_height + 2) * img->bytes_per_line, IPC_CREAT | 0777);
454 the_buffer_copy = (uint8 *)shmat(shminfo.shmid, 0, 0);
455 shminfo.shmaddr = img->data = (char *)the_buffer_copy;
456 shminfo.readOnly = False;
457
458 // Try to attach SHM image, catching errors
459 shm_error = false;
460 old_error_handler = XSetErrorHandler(error_handler);
461 XShmAttach(x_display, &shminfo);
462 XSync(x_display, false);
463 XSetErrorHandler(old_error_handler);
464 if (shm_error) {
465 shmdt(shminfo.shmaddr);
466 XDestroyImage(img);
467 shminfo.shmid = -1;
468 } else {
469 have_shm = true;
470 shmctl(shminfo.shmid, IPC_RMID, 0);
471 }
472 }
473
474 // Create normal X image if SHM doesn't work ("height + 2" for safety)
475 if (!have_shm) {
476 int bytes_per_row = TrivialBytesPerRow(aligned_width, mode.depth);
477 the_buffer_copy = (uint8 *)malloc((aligned_height + 2) * bytes_per_row);
478 img = XCreateImage(x_display, vis, mode.depth == VDEPTH_1BIT ? 1 : xdepth, mode.depth == VDEPTH_1BIT ? XYBitmap : ZPixmap, 0, (char *)the_buffer_copy, aligned_width, aligned_height, 32, bytes_per_row);
479 }
480
481 // 1-Bit mode is big-endian
482 if (mode.depth == VDEPTH_1BIT) {
483 img->byte_order = MSBFirst;
484 img->bitmap_bit_order = MSBFirst;
485 }
486
487 #ifdef ENABLE_VOSF
488 // Allocate memory for frame buffer (SIZE is extended to page-boundary)
489 the_host_buffer = the_buffer_copy;
490 the_buffer_size = page_extend((aligned_height + 2) * img->bytes_per_line);
491 the_buffer_copy = (uint8 *)vm_acquire(the_buffer_size);
492 the_buffer = (uint8 *)vm_acquire(the_buffer_size);
493 #else
494 // Allocate memory for frame buffer
495 the_buffer = (uint8 *)malloc((aligned_height + 2) * img->bytes_per_line);
496 #endif
497
498 // Create GC
499 gc = XCreateGC(x_display, w, 0, 0);
500 XSetState(x_display, gc, black_pixel, white_pixel, GXcopy, AllPlanes);
501
502 // Create no_cursor
503 mac_cursor = XCreatePixmapCursor(x_display,
504 XCreatePixmap(x_display, w, 1, 1, 1),
505 XCreatePixmap(x_display, w, 1, 1, 1),
506 &black, &white, 0, 0);
507 XDefineCursor(x_display, w, mac_cursor);
508
509 // Init blitting routines
510 bool native_byte_order;
511 #ifdef WORDS_BIGENDIAN
512 native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
513 #else
514 native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
515 #endif
516 #ifdef ENABLE_VOSF
517 Screen_blitter_init(&visualInfo, native_byte_order);
518 #endif
519
520 // Set VideoMonitor
521 VideoMonitor.mode = mode;
522 set_mac_frame_buffer(mode.depth, native_byte_order);
523
524 // Everything went well
525 init_ok = true;
526 }
527
528 // Close display
529 driver_window::~driver_window()
530 {
531 if (img)
532 XDestroyImage(img);
533 if (have_shm) {
534 XShmDetach(x_display, &shminfo);
535 the_buffer_copy = NULL; // don't free() in driver_base dtor
536 }
537 if (gc)
538 XFreeGC(x_display, gc);
539 }
540
541
542 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
543 /*
544 * DGA display driver base class
545 */
546
547 class driver_dga : public driver_base {
548 public:
549 driver_dga();
550 ~driver_dga();
551
552 void suspend(void);
553 void resume(void);
554
555 private:
556 Window suspend_win; // "Suspend" information window
557 void *fb_save; // Saved frame buffer for suspend/resume
558 };
559
560 driver_dga::driver_dga()
561 : suspend_win(0), fb_save(NULL)
562 {
563 }
564
565 driver_dga::~driver_dga()
566 {
567 XUngrabPointer(x_display, CurrentTime);
568 XUngrabKeyboard(x_display, CurrentTime);
569 }
570
571 // Suspend emulation
572 void driver_dga::suspend(void)
573 {
574 // Release ctrl key
575 ADBKeyUp(0x36);
576 ctrl_down = false;
577
578 // Lock frame buffer (this will stop the MacOS thread)
579 LOCK_FRAME_BUFFER;
580
581 // Save frame buffer
582 fb_save = malloc(VideoMonitor.mode.y * VideoMonitor.mode.bytes_per_row);
583 if (fb_save)
584 memcpy(fb_save, the_buffer, VideoMonitor.mode.y * VideoMonitor.mode.bytes_per_row);
585
586 // Close full screen display
587 #ifdef ENABLE_XF86_DGA
588 XF86DGADirectVideo(x_display, screen, 0);
589 #endif
590 XUngrabPointer(x_display, CurrentTime);
591 XUngrabKeyboard(x_display, CurrentTime);
592 XUnmapWindow(x_display, w);
593 wait_unmapped(w);
594
595 // Open "suspend" window
596 XSetWindowAttributes wattr;
597 wattr.event_mask = KeyPressMask;
598 wattr.background_pixel = black_pixel;
599
600 suspend_win = XCreateWindow(x_display, rootwin, 0, 0, 512, 1, 0, xdepth,
601 InputOutput, vis, CWEventMask | CWBackPixel, &wattr);
602 set_window_name(suspend_win, STR_SUSPEND_WINDOW_TITLE);
603 set_window_focus(suspend_win);
604 XMapWindow(x_display, suspend_win);
605 emul_suspended = true;
606 }
607
608 // Resume emulation
609 void driver_dga::resume(void)
610 {
611 // Close "suspend" window
612 XDestroyWindow(x_display, suspend_win);
613 XSync(x_display, false);
614
615 // Reopen full screen display
616 XMapRaised(x_display, w);
617 wait_mapped(w);
618 XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
619 XGrabKeyboard(x_display, rootwin, 1, GrabModeAsync, GrabModeAsync, CurrentTime);
620 XGrabPointer(x_display, rootwin, 1, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
621 #ifdef ENABLE_XF86_DGA
622 XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
623 XF86DGASetViewPort(x_display, screen, 0, 0);
624 #endif
625 XSync(x_display, false);
626
627 // the_buffer already contains the data to restore. i.e. since a temporary
628 // frame buffer is used when VOSF is actually used, fb_save is therefore
629 // not necessary.
630 #ifdef ENABLE_VOSF
631 if (use_vosf) {
632 LOCK_VOSF;
633 PFLAG_SET_ALL;
634 UNLOCK_VOSF;
635 memset(the_buffer_copy, 0, VideoMonitor.mode.bytes_per_row * VideoMonitor.mode.y);
636 }
637 #endif
638
639 // Restore frame buffer
640 if (fb_save) {
641 #ifdef ENABLE_VOSF
642 // Don't copy fb_save to the temporary frame buffer in VOSF mode
643 if (!use_vosf)
644 #endif
645 memcpy(the_buffer, fb_save, VideoMonitor.mode.y * VideoMonitor.mode.bytes_per_row);
646 free(fb_save);
647 fb_save = NULL;
648 }
649
650 // Unlock frame buffer (and continue MacOS thread)
651 UNLOCK_FRAME_BUFFER;
652 emul_suspended = false;
653 }
654 #endif
655
656
657 #ifdef ENABLE_FBDEV_DGA
658 /*
659 * fbdev DGA display driver
660 */
661
662 class driver_fbdev : public driver_dga {
663 public:
664 driver_fbdev(const video_mode &mode);
665 ~driver_fbdev();
666
667 private:
668 const char FBDEVICES_FILE_NAME[] = DATADIR "/fbdevices";
669 const char FBDEVICE_FILE_NAME[] = "/dev/fb";
670 };
671
672 // Open display
673 driver_fbdev::driver_fbdev(const video_mode &mode)
674 {
675 int width = mode.x, height = mode.y;
676
677 // Set absolute mouse mode
678 ADBSetRelMouseMode(false);
679
680 // Find the maximum depth available
681 int ndepths, max_depth(0);
682 int *depths = XListDepths(x_display, screen, &ndepths);
683 if (depths == NULL) {
684 printf("FATAL: Could not determine the maximal depth available\n");
685 return;
686 } else {
687 while (ndepths-- > 0) {
688 if (depths[ndepths] > max_depth)
689 max_depth = depths[ndepths];
690 }
691 }
692
693 // Get fbdevices file path from preferences
694 const char *fbd_path = PrefsFindString("fbdevicefile");
695
696 // Open fbdevices file
697 FILE *fp = fopen(fbd_path ? fbd_path : FBDEVICES_FILE_NAME, "r");
698 if (fp == NULL) {
699 char str[256];
700 sprintf(str, GetString(STR_NO_FBDEVICE_FILE_ERR), fbd_path ? fbd_path : FBDEVICES_FILE_NAME, strerror(errno));
701 ErrorAlert(str);
702 return;
703 }
704
705 int fb_depth; // supported depth
706 uint32 fb_offset; // offset used for mmap(2)
707 char fb_name[20];
708 char line[256];
709 bool device_found = false;
710 while (fgets(line, 255, fp)) {
711 // Read line
712 int len = strlen(line);
713 if (len == 0)
714 continue;
715 line[len - 1] = '\0';
716
717 // Comments begin with "#" or ";"
718 if ((line[0] == '#') || (line[0] == ';') || (line[0] == '\0'))
719 continue;
720
721 if ((sscanf(line, "%19s %d %x", &fb_name, &fb_depth, &fb_offset) == 3)
722 && (strcmp(fb_name, fb_name) == 0) && (fb_depth == max_depth)) {
723 device_found = true;
724 break;
725 }
726 }
727
728 // fbdevices file completely read
729 fclose(fp);
730
731 // Frame buffer name not found ? Then, display warning
732 if (!device_found) {
733 char str[256];
734 sprintf(str, GetString(STR_FBDEV_NAME_ERR), fb_name, max_depth);
735 ErrorAlert(str);
736 return;
737 }
738
739 // Create window
740 XSetWindowAttributes wattr;
741 wattr.event_mask = eventmask = dga_eventmask;
742 wattr.background_pixel = white_pixel;
743 wattr.override_redirect = True;
744 wattr.colormap = cmap[0];
745
746 w = XCreateWindow(x_display, rootwin,
747 0, 0, width, height,
748 0, xdepth, InputOutput, vis,
749 CWEventMask | CWBackPixel | CWOverrideRedirect | (fb_depth <= 8 ? CWColormap : 0),
750 &wattr);
751
752 // Set window name/class
753 set_window_name(w, STR_WINDOW_TITLE);
754
755 // Indicate that we want keyboard input
756 set_window_focus(w);
757
758 // Show window
759 XMapRaised(x_display, w);
760 wait_mapped(w);
761
762 // Grab mouse and keyboard
763 XGrabKeyboard(x_display, w, True,
764 GrabModeAsync, GrabModeAsync, CurrentTime);
765 XGrabPointer(x_display, w, True,
766 PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
767 GrabModeAsync, GrabModeAsync, w, None, CurrentTime);
768
769 // Calculate bytes per row
770 int bytes_per_row = TrivialBytesPerRow(mode.x, mode.depth);
771
772 // Map frame buffer
773 if ((the_buffer = (uint8 *) mmap(NULL, height * bytes_per_row, PROT_READ | PROT_WRITE, MAP_PRIVATE, fbdev_fd, fb_offset)) == MAP_FAILED) {
774 if ((the_buffer = (uint8 *) mmap(NULL, height * bytes_per_row, PROT_READ | PROT_WRITE, MAP_SHARED, fbdev_fd, fb_offset)) == MAP_FAILED) {
775 char str[256];
776 sprintf(str, GetString(STR_FBDEV_MMAP_ERR), strerror(errno));
777 ErrorAlert(str);
778 return;
779 }
780 }
781
782 #if ENABLE_VOSF
783 #if REAL_ADDRESSING || DIRECT_ADDRESSING
784 // Screen_blitter_init() returns TRUE if VOSF is mandatory
785 // i.e. the framebuffer update function is not Blit_Copy_Raw
786 use_vosf = Screen_blitter_init(&visualInfo, true);
787
788 if (use_vosf) {
789 // Allocate memory for frame buffer (SIZE is extended to page-boundary)
790 the_host_buffer = the_buffer;
791 the_buffer_size = page_extend((height + 2) * bytes_per_row);
792 the_buffer_copy = (uint8 *)vm_acquire(the_buffer_size);
793 the_buffer = (uint8 *)vm_acquire(the_buffer_size);
794 }
795 #else
796 use_vosf = false;
797 #endif
798 #endif
799
800 // Set VideoMonitor
801 VideoModes[0].bytes_per_row = bytes_per_row;
802 VideoModes[0].depth = DepthModeForPixelDepth();
803 VideoMonitor.mode = mode;
804 set_mac_frame_buffer(mode.depth, true);
805
806 // Everything went well
807 init_ok = true;
808 }
809
810 // Close display
811 driver_fbdev::~driver_fbdev()
812 {
813 }
814 #endif
815
816
817 #ifdef ENABLE_XF86_DGA
818 /*
819 * XFree86 DGA display driver
820 */
821
822 class driver_xf86dga : public driver_dga {
823 public:
824 driver_xf86dga(const video_mode &mode);
825 ~driver_xf86dga();
826
827 void update_palette(void);
828 void resume(void);
829
830 private:
831 int current_dga_cmap; // Number (0 or 1) of currently installed DGA colormap
832 };
833
834 // Open display
835 driver_xf86dga::driver_xf86dga(const video_mode &mode)
836 : current_dga_cmap(0)
837 {
838 int width = mode.x, height = mode.y;
839
840 // Set relative mouse mode
841 ADBSetRelMouseMode(true);
842
843 #ifdef ENABLE_XF86_VIDMODE
844 // Switch to best mode
845 if (has_vidmode) {
846 int best = 0;
847 for (int i=1; i<num_x_video_modes; i++) {
848 if (x_video_modes[i]->hdisplay >= width && x_video_modes[i]->vdisplay >= height &&
849 x_video_modes[i]->hdisplay <= x_video_modes[best]->hdisplay && x_video_modes[i]->vdisplay <= x_video_modes[best]->vdisplay) {
850 best = i;
851 }
852 }
853 XF86VidModeSwitchToMode(x_display, screen, x_video_modes[best]);
854 XF86VidModeSetViewPort(x_display, screen, 0, 0);
855 XSync(x_display, false);
856 }
857 #endif
858
859 // Create window
860 XSetWindowAttributes wattr;
861 wattr.event_mask = eventmask = dga_eventmask;
862 wattr.override_redirect = True;
863
864 w = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
865 InputOutput, vis, CWEventMask | CWOverrideRedirect, &wattr);
866
867 // Set window name/class
868 set_window_name(w, STR_WINDOW_TITLE);
869
870 // Indicate that we want keyboard input
871 set_window_focus(w);
872
873 // Show window
874 XMapRaised(x_display, w);
875 wait_mapped(w);
876
877 // Establish direct screen connection
878 XMoveResizeWindow(x_display, w, 0, 0, width, height);
879 XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
880 XGrabKeyboard(x_display, rootwin, True, GrabModeAsync, GrabModeAsync, CurrentTime);
881 XGrabPointer(x_display, rootwin, True, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
882
883 int v_width, v_bank, v_size;
884 XF86DGAGetVideo(x_display, screen, (char **)&the_buffer, &v_width, &v_bank, &v_size);
885 XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
886 XF86DGASetViewPort(x_display, screen, 0, 0);
887 XF86DGASetVidPage(x_display, screen, 0);
888
889 // Set colormap
890 if (!IsDirectMode(mode)) {
891 XSetWindowColormap(x_display, w, cmap[current_dga_cmap = 0]);
892 XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
893 }
894 XSync(x_display, false);
895
896 // Init blitting routines
897 int bytes_per_row = TrivialBytesPerRow((v_width + 7) & ~7, mode.depth);
898 #ifdef VIDEO_VOSF
899 #if REAL_ADDRESSING || DIRECT_ADDRESSING
900 // Screen_blitter_init() returns TRUE if VOSF is mandatory
901 // i.e. the framebuffer update function is not Blit_Copy_Raw
902 use_vosf = Screen_blitter_init(&visualInfo, true);
903
904 if (use_vosf) {
905 // Allocate memory for frame buffer (SIZE is extended to page-boundary)
906 the_host_buffer = the_buffer;
907 the_buffer_size = page_extend((height + 2) * bytes_per_row);
908 the_buffer_copy = (uint8 *)vm_acquire(the_buffer_size);
909 the_buffer = (uint8 *)vm_acquire(the_buffer_size);
910 }
911 #else
912 use_vosf = false;
913 #endif
914 #endif
915
916 // Set VideoMonitor
917 const_cast<video_mode *>(&mode)->bytes_per_row = bytes_per_row;
918 VideoMonitor.mode = mode;
919 set_mac_frame_buffer(mode.depth, true);
920
921 // Everything went well
922 init_ok = true;
923 }
924
925 // Close display
926 driver_xf86dga::~driver_xf86dga()
927 {
928 XF86DGADirectVideo(x_display, screen, 0);
929 #ifdef ENABLE_XF86_VIDMODE
930 if (has_vidmode)
931 XF86VidModeSwitchToMode(x_display, screen, x_video_modes[0]);
932 #endif
933 }
934
935 // Palette has changed
936 void driver_xf86dga::update_palette(void)
937 {
938 driver_dga::update_palette();
939 current_dga_cmap ^= 1;
940 if (!IsDirectMode(VideoMonitor.mode) && cmap[current_dga_cmap])
941 XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
942 }
943
944 // Resume emulation
945 void driver_xf86dga::resume(void)
946 {
947 driver_dga::resume();
948 if (!IsDirectMode(VideoMonitor.mode))
949 XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
950 }
951 #endif
952
953
954 /*
955 * Initialization
956 */
957
958 // Init keycode translation table
959 static void keycode_init(void)
960 {
961 bool use_kc = PrefsFindBool("keycodes");
962 if (use_kc) {
963
964 // Get keycode file path from preferences
965 const char *kc_path = PrefsFindString("keycodefile");
966
967 // Open keycode table
968 FILE *f = fopen(kc_path ? kc_path : KEYCODE_FILE_NAME, "r");
969 if (f == NULL) {
970 char str[256];
971 sprintf(str, GetString(STR_KEYCODE_FILE_WARN), kc_path ? kc_path : KEYCODE_FILE_NAME, strerror(errno));
972 WarningAlert(str);
973 return;
974 }
975
976 // Default translation table
977 for (int i=0; i<256; i++)
978 keycode_table[i] = -1;
979
980 // Search for server vendor string, then read keycodes
981 const char *vendor = ServerVendor(x_display);
982 bool vendor_found = false;
983 char line[256];
984 while (fgets(line, 255, f)) {
985 // Read line
986 int len = strlen(line);
987 if (len == 0)
988 continue;
989 line[len-1] = 0;
990
991 // Comments begin with "#" or ";"
992 if (line[0] == '#' || line[0] == ';' || line[0] == 0)
993 continue;
994
995 if (vendor_found) {
996 // Read keycode
997 int x_code, mac_code;
998 if (sscanf(line, "%d %d", &x_code, &mac_code) == 2)
999 keycode_table[x_code & 0xff] = mac_code;
1000 else
1001 break;
1002 } else {
1003 // Search for vendor string
1004 if (strstr(vendor, line) == vendor)
1005 vendor_found = true;
1006 }
1007 }
1008
1009 // Keycode file completely read
1010 fclose(f);
1011 use_keycodes = vendor_found;
1012
1013 // Vendor not found? Then display warning
1014 if (!vendor_found) {
1015 char str[256];
1016 sprintf(str, GetString(STR_KEYCODE_VENDOR_WARN), vendor, kc_path ? kc_path : KEYCODE_FILE_NAME);
1017 WarningAlert(str);
1018 return;
1019 }
1020 }
1021 }
1022
1023 // Open display for specified mode
1024 static bool video_open(const video_mode &mode)
1025 {
1026 // Create display driver object of requested type
1027 switch (display_type) {
1028 case DISPLAY_WINDOW:
1029 drv = new driver_window(mode);
1030 break;
1031 #ifdef ENABLE_FBDEV_DGA
1032 case DISPLAY_DGA:
1033 drv = new driver_fbdev(mode);
1034 break;
1035 #endif
1036 #ifdef ENABLE_XF86_DGA
1037 case DISPLAY_DGA:
1038 drv = new driver_xf86dga(mode);
1039 break;
1040 #endif
1041 }
1042 if (drv == NULL)
1043 return false;
1044 if (!drv->init_ok) {
1045 delete drv;
1046 drv = NULL;
1047 return false;
1048 }
1049
1050 #ifdef ENABLE_VOSF
1051 if (use_vosf) {
1052 // Initialize the mainBuffer structure
1053 if (!video_init_buffer()) {
1054 ErrorAlert(STR_VOSF_INIT_ERR);
1055 return false;
1056 }
1057
1058 // Initialize the handler for SIGSEGV
1059 if (!sigsegv_install_handler(screen_fault_handler)) {
1060 ErrorAlert("Could not initialize Video on SEGV signals");
1061 return false;
1062 }
1063 }
1064 #endif
1065
1066 // Initialize VideoRefresh function
1067 VideoRefreshInit();
1068
1069 // Lock down frame buffer
1070 XSync(x_display, false);
1071 LOCK_FRAME_BUFFER;
1072
1073 #ifdef HAVE_PTHREADS
1074 // Start redraw/input thread
1075 redraw_thread_cancel = false;
1076 redraw_thread_active = (pthread_create(&redraw_thread, NULL, redraw_func, NULL) == 0);
1077 if (!redraw_thread_active) {
1078 printf("FATAL: cannot create redraw thread\n");
1079 return false;
1080 }
1081 #endif
1082
1083 return true;
1084 }
1085
1086 bool VideoInit(bool classic)
1087 {
1088 classic_mode = classic;
1089
1090 #ifdef ENABLE_VOSF
1091 // Zero the mainBuffer structure
1092 mainBuffer.dirtyPages = NULL;
1093 mainBuffer.pageInfo = NULL;
1094 #endif
1095
1096 // Check if X server runs on local machine
1097 local_X11 = (strncmp(XDisplayName(x_display_name), ":", 1) == 0)
1098 || (strncmp(XDisplayName(x_display_name), "unix:", 5) == 0);
1099
1100 // Init keycode translation
1101 keycode_init();
1102
1103 // Read prefs
1104 frame_skip = PrefsFindInt32("frameskip");
1105 mouse_wheel_mode = PrefsFindInt32("mousewheelmode");
1106 mouse_wheel_lines = PrefsFindInt32("mousewheellines");
1107
1108 // Find screen and root window
1109 screen = XDefaultScreen(x_display);
1110 rootwin = XRootWindow(x_display, screen);
1111
1112 // Get screen depth
1113 xdepth = DefaultDepth(x_display, screen);
1114
1115 #ifdef ENABLE_FBDEV_DGA
1116 // Frame buffer name
1117 char fb_name[20];
1118
1119 // Could do fbdev DGA?
1120 if ((fbdev_fd = open(FBDEVICE_FILE_NAME, O_RDWR)) != -1)
1121 has_dga = true;
1122 else
1123 has_dga = false;
1124 #endif
1125
1126 #ifdef ENABLE_XF86_DGA
1127 // DGA available?
1128 int dga_event_base, dga_error_base;
1129 if (local_X11 && XF86DGAQueryExtension(x_display, &dga_event_base, &dga_error_base)) {
1130 int dga_flags = 0;
1131 XF86DGAQueryDirectVideo(x_display, screen, &dga_flags);
1132 has_dga = dga_flags & XF86DGADirectPresent;
1133 } else
1134 has_dga = false;
1135 #endif
1136
1137 #ifdef ENABLE_XF86_VIDMODE
1138 // VidMode available?
1139 int vm_event_base, vm_error_base;
1140 has_vidmode = XF86VidModeQueryExtension(x_display, &vm_event_base, &vm_error_base);
1141 if (has_vidmode)
1142 XF86VidModeGetAllModeLines(x_display, screen, &num_x_video_modes, &x_video_modes);
1143 #endif
1144
1145 // Find black and white colors
1146 XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:00/00/00", &black);
1147 XAllocColor(x_display, DefaultColormap(x_display, screen), &black);
1148 XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:ff/ff/ff", &white);
1149 XAllocColor(x_display, DefaultColormap(x_display, screen), &white);
1150 black_pixel = BlackPixel(x_display, screen);
1151 white_pixel = WhitePixel(x_display, screen);
1152
1153 // Get appropriate visual
1154 int color_class;
1155 switch (xdepth) {
1156 case 1:
1157 color_class = StaticGray;
1158 break;
1159 case 8:
1160 color_class = PseudoColor;
1161 break;
1162 case 15:
1163 case 16:
1164 case 24:
1165 case 32: // Try DirectColor first, as this will allow gamma correction
1166 if (!XMatchVisualInfo(x_display, screen, xdepth, DirectColor, &visualInfo))
1167 color_class = TrueColor;
1168 break;
1169 default:
1170 ErrorAlert(STR_UNSUPP_DEPTH_ERR);
1171 return false;
1172 }
1173 if (!XMatchVisualInfo(x_display, screen, xdepth, color_class, &visualInfo)) {
1174 ErrorAlert(STR_NO_XVISUAL_ERR);
1175 return false;
1176 }
1177 if (visualInfo.depth != xdepth) {
1178 ErrorAlert(STR_NO_XVISUAL_ERR);
1179 return false;
1180 }
1181 vis = visualInfo.visual;
1182
1183 // Create color maps
1184 if (color_class == PseudoColor || color_class == DirectColor) {
1185 cmap[0] = XCreateColormap(x_display, rootwin, vis, AllocAll);
1186 cmap[1] = XCreateColormap(x_display, rootwin, vis, AllocAll);
1187 }
1188
1189 // Get screen mode from preferences
1190 const char *mode_str;
1191 if (classic_mode)
1192 mode_str = "win/512/342";
1193 else
1194 mode_str = PrefsFindString("screen");
1195
1196 // Determine display type and default dimensions
1197 int default_width = 512, default_height = 384;
1198 display_type = DISPLAY_WINDOW;
1199 if (mode_str) {
1200 if (sscanf(mode_str, "win/%d/%d", &default_width, &default_height) == 2) {
1201 display_type = DISPLAY_WINDOW;
1202 #ifdef ENABLE_FBDEV_DGA
1203 } else if (has_dga && sscanf(mode_str, "dga/%19s", fb_name) == 1) {
1204 display_type = DISPLAY_DGA;
1205 default_width = -1; default_height = -1; // use entire screen
1206 #endif
1207 #ifdef ENABLE_XF86_DGA
1208 } else if (has_dga && sscanf(mode_str, "dga/%d/%d", &default_width, &default_height) == 2) {
1209 display_type = DISPLAY_DGA;
1210 #endif
1211 }
1212 }
1213 if (default_width <= 0)
1214 default_width = DisplayWidth(x_display, screen);
1215 else if (default_width > DisplayWidth(x_display, screen))
1216 default_width = DisplayWidth(x_display, screen);
1217 if (default_height <= 0)
1218 default_height = DisplayHeight(x_display, screen);
1219 else if (default_height > DisplayHeight(x_display, screen))
1220 default_height = DisplayHeight(x_display, screen);
1221
1222 // Mac screen depth is always 1 bit in Classic mode, but follows X depth otherwise
1223 int depth = (classic_mode ? 1 : xdepth);
1224 video_depth depth_mode = DepthModeForPixelDepth(depth);
1225
1226 // Construct list of supported modes
1227 if (display_type == DISPLAY_WINDOW) {
1228 if (classic)
1229 add_mode(512, 342, 0x80, 64, depth_mode);
1230 else {
1231 add_mode(512, 384, 0x80, TrivialBytesPerRow(512, depth_mode), depth_mode);
1232 add_mode(640, 480, 0x81, TrivialBytesPerRow(640, depth_mode), depth_mode);
1233 add_mode(800, 600, 0x82, TrivialBytesPerRow(800, depth_mode), depth_mode);
1234 add_mode(1024, 768, 0x83, TrivialBytesPerRow(1024, depth_mode), depth_mode);
1235 add_mode(1280, 1024, 0x84, TrivialBytesPerRow(1280, depth_mode), depth_mode);
1236 }
1237 } else
1238 add_mode(default_width, default_height, 0x80, TrivialBytesPerRow(default_width, depth_mode), depth_mode);
1239
1240 // Find requested default mode and open display
1241 if (VideoModes.size() == 1)
1242 return video_open(VideoModes[0]);
1243 else {
1244 // Find mode with specified dimensions
1245 std::vector<video_mode>::const_iterator i = VideoModes.begin(), end = VideoModes.end();
1246 while (i != end) {
1247 if (i->x == default_width && i->y == default_height)
1248 return video_open(*i);
1249 ++i;
1250 }
1251 return video_open(VideoModes[0]);
1252 }
1253 }
1254
1255
1256 /*
1257 * Deinitialization
1258 */
1259
1260 // Close display
1261 static void video_close(void)
1262 {
1263 #ifdef HAVE_PTHREADS
1264 // Stop redraw thread
1265 if (redraw_thread_active) {
1266 redraw_thread_cancel = true;
1267 #ifdef HAVE_PTHREAD_CANCEL
1268 pthread_cancel(redraw_thread);
1269 #endif
1270 pthread_join(redraw_thread, NULL);
1271 redraw_thread_active = false;
1272 }
1273 #endif
1274
1275 // Unlock frame buffer
1276 UNLOCK_FRAME_BUFFER;
1277 XSync(x_display, false);
1278
1279 #ifdef ENABLE_VOSF
1280 // Deinitialize VOSF
1281 if (use_vosf) {
1282 if (mainBuffer.pageInfo) {
1283 free(mainBuffer.pageInfo);
1284 mainBuffer.pageInfo = NULL;
1285 }
1286 if (mainBuffer.dirtyPages) {
1287 free(mainBuffer.dirtyPages);
1288 mainBuffer.dirtyPages = NULL;
1289 }
1290 }
1291 #endif
1292
1293 // Close display
1294 delete drv;
1295 drv = NULL;
1296 }
1297
1298 void VideoExit(void)
1299 {
1300 // Close display
1301 video_close();
1302
1303 // Free colormaps
1304 if (cmap[0]) {
1305 XFreeColormap(x_display, cmap[0]);
1306 cmap[0] = 0;
1307 }
1308 if (cmap[1]) {
1309 XFreeColormap(x_display, cmap[1]);
1310 cmap[1] = 0;
1311 }
1312
1313 #ifdef ENABLE_XF86_VIDMODE
1314 // Free video mode list
1315 if (x_video_modes) {
1316 XFree(x_video_modes);
1317 x_video_modes = NULL;
1318 }
1319 #endif
1320
1321 #ifdef ENABLE_FBDEV_DGA
1322 // Close framebuffer device
1323 if (fbdev_fd >= 0) {
1324 close(fbdev_fd);
1325 fbdev_fd = -1;
1326 }
1327 #endif
1328 }
1329
1330
1331 /*
1332 * Close down full-screen mode (if bringing up error alerts is unsafe while in full-screen mode)
1333 */
1334
1335 void VideoQuitFullScreen(void)
1336 {
1337 D(bug("VideoQuitFullScreen()\n"));
1338 quit_full_screen = true;
1339 }
1340
1341
1342 /*
1343 * Mac VBL interrupt
1344 */
1345
1346 void VideoInterrupt(void)
1347 {
1348 // Emergency quit requested? Then quit
1349 if (emerg_quit)
1350 QuitEmulator();
1351
1352 // Temporarily give up frame buffer lock (this is the point where
1353 // we are suspended when the user presses Ctrl-Tab)
1354 UNLOCK_FRAME_BUFFER;
1355 LOCK_FRAME_BUFFER;
1356 }
1357
1358
1359 /*
1360 * Set palette
1361 */
1362
1363 void video_set_palette(uint8 *pal)
1364 {
1365 LOCK_PALETTE;
1366
1367 // Convert colors to XColor array
1368 for (int i=0; i<256; i++) {
1369 palette[i].red = pal[i*3] * 0x0101;
1370 palette[i].green = pal[i*3+1] * 0x0101;
1371 palette[i].blue = pal[i*3+2] * 0x0101;
1372 palette[i].pixel = i;
1373 palette[i].flags = DoRed | DoGreen | DoBlue;
1374 }
1375
1376 // Tell redraw thread to change palette
1377 palette_changed = true;
1378
1379 UNLOCK_PALETTE;
1380 }
1381
1382
1383 /*
1384 * Switch video mode
1385 */
1386
1387 void video_switch_to_mode(const video_mode &mode)
1388 {
1389 // Close and reopen display
1390 video_close();
1391 video_open(mode);
1392
1393 if (drv == NULL) {
1394 ErrorAlert(STR_OPEN_WINDOW_ERR);
1395 QuitEmulator();
1396 }
1397 }
1398
1399
1400 /*
1401 * Translate key event to Mac keycode
1402 */
1403
1404 static int kc_decode(KeySym ks)
1405 {
1406 switch (ks) {
1407 case XK_A: case XK_a: return 0x00;
1408 case XK_B: case XK_b: return 0x0b;
1409 case XK_C: case XK_c: return 0x08;
1410 case XK_D: case XK_d: return 0x02;
1411 case XK_E: case XK_e: return 0x0e;
1412 case XK_F: case XK_f: return 0x03;
1413 case XK_G: case XK_g: return 0x05;
1414 case XK_H: case XK_h: return 0x04;
1415 case XK_I: case XK_i: return 0x22;
1416 case XK_J: case XK_j: return 0x26;
1417 case XK_K: case XK_k: return 0x28;
1418 case XK_L: case XK_l: return 0x25;
1419 case XK_M: case XK_m: return 0x2e;
1420 case XK_N: case XK_n: return 0x2d;
1421 case XK_O: case XK_o: return 0x1f;
1422 case XK_P: case XK_p: return 0x23;
1423 case XK_Q: case XK_q: return 0x0c;
1424 case XK_R: case XK_r: return 0x0f;
1425 case XK_S: case XK_s: return 0x01;
1426 case XK_T: case XK_t: return 0x11;
1427 case XK_U: case XK_u: return 0x20;
1428 case XK_V: case XK_v: return 0x09;
1429 case XK_W: case XK_w: return 0x0d;
1430 case XK_X: case XK_x: return 0x07;
1431 case XK_Y: case XK_y: return 0x10;
1432 case XK_Z: case XK_z: return 0x06;
1433
1434 case XK_1: case XK_exclam: return 0x12;
1435 case XK_2: case XK_at: return 0x13;
1436 case XK_3: case XK_numbersign: return 0x14;
1437 case XK_4: case XK_dollar: return 0x15;
1438 case XK_5: case XK_percent: return 0x17;
1439 case XK_6: return 0x16;
1440 case XK_7: return 0x1a;
1441 case XK_8: return 0x1c;
1442 case XK_9: return 0x19;
1443 case XK_0: return 0x1d;
1444
1445 case XK_grave: case XK_asciitilde: return 0x0a;
1446 case XK_minus: case XK_underscore: return 0x1b;
1447 case XK_equal: case XK_plus: return 0x18;
1448 case XK_bracketleft: case XK_braceleft: return 0x21;
1449 case XK_bracketright: case XK_braceright: return 0x1e;
1450 case XK_backslash: case XK_bar: return 0x2a;
1451 case XK_semicolon: case XK_colon: return 0x29;
1452 case XK_apostrophe: case XK_quotedbl: return 0x27;
1453 case XK_comma: case XK_less: return 0x2b;
1454 case XK_period: case XK_greater: return 0x2f;
1455 case XK_slash: case XK_question: return 0x2c;
1456
1457 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
1458 case XK_Tab: if (ctrl_down) {drv->suspend(); return -1;} else return 0x30;
1459 #else
1460 case XK_Tab: return 0x30;
1461 #endif
1462 case XK_Return: return 0x24;
1463 case XK_space: return 0x31;
1464 case XK_BackSpace: return 0x33;
1465
1466 case XK_Delete: return 0x75;
1467 case XK_Insert: return 0x72;
1468 case XK_Home: case XK_Help: return 0x73;
1469 case XK_End: return 0x77;
1470 #ifdef __hpux
1471 case XK_Prior: return 0x74;
1472 case XK_Next: return 0x79;
1473 #else
1474 case XK_Page_Up: return 0x74;
1475 case XK_Page_Down: return 0x79;
1476 #endif
1477
1478 case XK_Control_L: return 0x36;
1479 case XK_Control_R: return 0x36;
1480 case XK_Shift_L: return 0x38;
1481 case XK_Shift_R: return 0x38;
1482 case XK_Alt_L: return 0x37;
1483 case XK_Alt_R: return 0x37;
1484 case XK_Meta_L: return 0x3a;
1485 case XK_Meta_R: return 0x3a;
1486 case XK_Menu: return 0x32;
1487 case XK_Caps_Lock: return 0x39;
1488 case XK_Num_Lock: return 0x47;
1489
1490 case XK_Up: return 0x3e;
1491 case XK_Down: return 0x3d;
1492 case XK_Left: return 0x3b;
1493 case XK_Right: return 0x3c;
1494
1495 case XK_Escape: if (ctrl_down) {quit_full_screen = true; emerg_quit = true; return -1;} else return 0x35;
1496
1497 case XK_F1: if (ctrl_down) {SysMountFirstFloppy(); return -1;} else return 0x7a;
1498 case XK_F2: return 0x78;
1499 case XK_F3: return 0x63;
1500 case XK_F4: return 0x76;
1501 case XK_F5: return 0x60;
1502 case XK_F6: return 0x61;
1503 case XK_F7: return 0x62;
1504 case XK_F8: return 0x64;
1505 case XK_F9: return 0x65;
1506 case XK_F10: return 0x6d;
1507 case XK_F11: return 0x67;
1508 case XK_F12: return 0x6f;
1509
1510 case XK_Print: return 0x69;
1511 case XK_Scroll_Lock: return 0x6b;
1512 case XK_Pause: return 0x71;
1513
1514 #if defined(XK_KP_Prior) && defined(XK_KP_Left) && defined(XK_KP_Insert) && defined (XK_KP_End)
1515 case XK_KP_0: case XK_KP_Insert: return 0x52;
1516 case XK_KP_1: case XK_KP_End: return 0x53;
1517 case XK_KP_2: case XK_KP_Down: return 0x54;
1518 case XK_KP_3: case XK_KP_Next: return 0x55;
1519 case XK_KP_4: case XK_KP_Left: return 0x56;
1520 case XK_KP_5: case XK_KP_Begin: return 0x57;
1521 case XK_KP_6: case XK_KP_Right: return 0x58;
1522 case XK_KP_7: case XK_KP_Home: return 0x59;
1523 case XK_KP_8: case XK_KP_Up: return 0x5b;
1524 case XK_KP_9: case XK_KP_Prior: return 0x5c;
1525 case XK_KP_Decimal: case XK_KP_Delete: return 0x41;
1526 #else
1527 case XK_KP_0: return 0x52;
1528 case XK_KP_1: return 0x53;
1529 case XK_KP_2: return 0x54;
1530 case XK_KP_3: return 0x55;
1531 case XK_KP_4: return 0x56;
1532 case XK_KP_5: return 0x57;
1533 case XK_KP_6: return 0x58;
1534 case XK_KP_7: return 0x59;
1535 case XK_KP_8: return 0x5b;
1536 case XK_KP_9: return 0x5c;
1537 case XK_KP_Decimal: return 0x41;
1538 #endif
1539 case XK_KP_Add: return 0x45;
1540 case XK_KP_Subtract: return 0x4e;
1541 case XK_KP_Multiply: return 0x43;
1542 case XK_KP_Divide: return 0x4b;
1543 case XK_KP_Enter: return 0x4c;
1544 case XK_KP_Equal: return 0x51;
1545 }
1546 return -1;
1547 }
1548
1549 static int event2keycode(XKeyEvent &ev)
1550 {
1551 KeySym ks;
1552 int as;
1553 int i = 0;
1554
1555 do {
1556 ks = XLookupKeysym(&ev, i++);
1557 as = kc_decode(ks);
1558 if (as != -1)
1559 return as;
1560 } while (ks != NoSymbol);
1561
1562 return -1;
1563 }
1564
1565
1566 /*
1567 * X event handling
1568 */
1569
1570 static void handle_events(void)
1571 {
1572 while (XPending(x_display)) {
1573 XEvent event;
1574 XNextEvent(x_display, &event);
1575
1576 switch (event.type) {
1577 // Mouse button
1578 case ButtonPress: {
1579 unsigned int button = event.xbutton.button;
1580 if (button < 4)
1581 ADBMouseDown(button - 1);
1582 else if (button < 6) { // Wheel mouse
1583 if (mouse_wheel_mode == 0) {
1584 int key = (button == 5) ? 0x79 : 0x74; // Page up/down
1585 ADBKeyDown(key);
1586 ADBKeyUp(key);
1587 } else {
1588 int key = (button == 5) ? 0x3d : 0x3e; // Cursor up/down
1589 for(int i=0; i<mouse_wheel_lines; i++) {
1590 ADBKeyDown(key);
1591 ADBKeyUp(key);
1592 }
1593 }
1594 }
1595 break;
1596 }
1597 case ButtonRelease: {
1598 unsigned int button = event.xbutton.button;
1599 if (button < 4)
1600 ADBMouseUp(button - 1);
1601 break;
1602 }
1603
1604 // Mouse moved
1605 case EnterNotify:
1606 case MotionNotify:
1607 ADBMouseMoved(event.xmotion.x, event.xmotion.y);
1608 break;
1609
1610 // Keyboard
1611 case KeyPress: {
1612 int code;
1613 if (use_keycodes) {
1614 event2keycode(event.xkey); // This is called to process the hotkeys
1615 code = keycode_table[event.xkey.keycode & 0xff];
1616 } else
1617 code = event2keycode(event.xkey);
1618 if (code != -1) {
1619 if (!emul_suspended) {
1620 if (code == 0x39) { // Caps Lock pressed
1621 if (caps_on) {
1622 ADBKeyUp(code);
1623 caps_on = false;
1624 } else {
1625 ADBKeyDown(code);
1626 caps_on = true;
1627 }
1628 } else
1629 ADBKeyDown(code);
1630 if (code == 0x36)
1631 ctrl_down = true;
1632 } else {
1633 if (code == 0x31)
1634 drv->resume(); // Space wakes us up
1635 }
1636 }
1637 break;
1638 }
1639 case KeyRelease: {
1640 int code;
1641 if (use_keycodes) {
1642 event2keycode(event.xkey); // This is called to process the hotkeys
1643 code = keycode_table[event.xkey.keycode & 0xff];
1644 } else
1645 code = event2keycode(event.xkey);
1646 if (code != -1 && code != 0x39) { // Don't propagate Caps Lock releases
1647 ADBKeyUp(code);
1648 if (code == 0x36)
1649 ctrl_down = false;
1650 }
1651 break;
1652 }
1653
1654 // Hidden parts exposed, force complete refresh of window
1655 case Expose:
1656 if (display_type == DISPLAY_WINDOW) {
1657 #ifdef ENABLE_VOSF
1658 if (use_vosf) { // VOSF refresh
1659 LOCK_VOSF;
1660 PFLAG_SET_ALL;
1661 UNLOCK_VOSF;
1662 memset(the_buffer_copy, 0, VideoMonitor.mode.bytes_per_row * VideoMonitor.mode.y);
1663 }
1664 else
1665 #endif
1666 if (frame_skip == 0) { // Dynamic refresh
1667 int x1, y1;
1668 for (y1=0; y1<16; y1++)
1669 for (x1=0; x1<16; x1++)
1670 updt_box[x1][y1] = true;
1671 nr_boxes = 16 * 16;
1672 } else // Static refresh
1673 memset(the_buffer_copy, 0, VideoMonitor.mode.bytes_per_row * VideoMonitor.mode.y);
1674 }
1675 break;
1676
1677 // Window "close" widget clicked
1678 case ClientMessage:
1679 if (event.xclient.format == 32 && event.xclient.data.l[0] == WM_DELETE_WINDOW) {
1680 ADBKeyDown(0x7f); // Power key
1681 ADBKeyUp(0x7f);
1682 }
1683 break;
1684 }
1685 }
1686 }
1687
1688
1689 /*
1690 * Window display update
1691 */
1692
1693 // Dynamic display update (variable frame rate for each box)
1694 static void update_display_dynamic(int ticker, driver_window *drv)
1695 {
1696 int y1, y2, y2s, y2a, i, x1, xm, xmo, ymo, yo, yi, yil, xi;
1697 int xil = 0;
1698 int rxm = 0, rxmo = 0;
1699 int bytes_per_row = VideoMonitor.mode.bytes_per_row;
1700 int bytes_per_pixel = VideoMonitor.mode.bytes_per_row / VideoMonitor.mode.x;
1701 int rx = VideoMonitor.mode.bytes_per_row / 16;
1702 int ry = VideoMonitor.mode.y / 16;
1703 int max_box;
1704
1705 y2s = sm_uptd[ticker % 8];
1706 y2a = 8;
1707 for (i = 0; i < 6; i++)
1708 if (ticker % (2 << i))
1709 break;
1710 max_box = sm_no_boxes[i];
1711
1712 if (y2a) {
1713 for (y1=0; y1<16; y1++) {
1714 for (y2=y2s; y2 < ry; y2 += y2a) {
1715 i = ((y1 * ry) + y2) * bytes_per_row;
1716 for (x1=0; x1<16; x1++, i += rx) {
1717 if (updt_box[x1][y1] == false) {
1718 if (memcmp(&the_buffer_copy[i], &the_buffer[i], rx)) {
1719 updt_box[x1][y1] = true;
1720 nr_boxes++;
1721 }
1722 }
1723 }
1724 }
1725 }
1726 }
1727
1728 if ((nr_boxes <= max_box) && (nr_boxes)) {
1729 for (y1=0; y1<16; y1++) {
1730 for (x1=0; x1<16; x1++) {
1731 if (updt_box[x1][y1] == true) {
1732 if (rxm == 0)
1733 xm = x1;
1734 rxm += rx;
1735 updt_box[x1][y1] = false;
1736 }
1737 if (((updt_box[x1+1][y1] == false) || (x1 == 15)) && (rxm)) {
1738 if ((rxmo != rxm) || (xmo != xm) || (yo != y1 - 1)) {
1739 if (rxmo) {
1740 xi = xmo * rx;
1741 yi = ymo * ry;
1742 xil = rxmo;
1743 yil = (yo - ymo +1) * ry;
1744 }
1745 rxmo = rxm;
1746 xmo = xm;
1747 ymo = y1;
1748 }
1749 rxm = 0;
1750 yo = y1;
1751 }
1752 if (xil) {
1753 i = (yi * bytes_per_row) + xi;
1754 for (y2=0; y2 < yil; y2++, i += bytes_per_row)
1755 memcpy(&the_buffer_copy[i], &the_buffer[i], xil);
1756 if (VideoMonitor.mode.depth == VDEPTH_1BIT) {
1757 if (drv->have_shm)
1758 XShmPutImage(x_display, drv->w, drv->gc, drv->img, xi * 8, yi, xi * 8, yi, xil * 8, yil, 0);
1759 else
1760 XPutImage(x_display, drv->w, drv->gc, drv->img, xi * 8, yi, xi * 8, yi, xil * 8, yil);
1761 } else {
1762 if (drv->have_shm)
1763 XShmPutImage(x_display, drv->w, drv->gc, drv->img, xi / bytes_per_pixel, yi, xi / bytes_per_pixel, yi, xil / bytes_per_pixel, yil, 0);
1764 else
1765 XPutImage(x_display, drv->w, drv->gc, drv->img, xi / bytes_per_pixel, yi, xi / bytes_per_pixel, yi, xil / bytes_per_pixel, yil);
1766 }
1767 xil = 0;
1768 }
1769 if ((x1 == 15) && (y1 == 15) && (rxmo)) {
1770 x1--;
1771 xi = xmo * rx;
1772 yi = ymo * ry;
1773 xil = rxmo;
1774 yil = (yo - ymo +1) * ry;
1775 rxmo = 0;
1776 }
1777 }
1778 }
1779 nr_boxes = 0;
1780 }
1781 }
1782
1783 // Static display update (fixed frame rate, but incremental)
1784 static void update_display_static(driver_window *drv)
1785 {
1786 // Incremental update code
1787 int wide = 0, high = 0, x1, x2, y1, y2, i, j;
1788 int bytes_per_row = VideoMonitor.mode.bytes_per_row;
1789 int bytes_per_pixel = VideoMonitor.mode.bytes_per_row / VideoMonitor.mode.x;
1790 uint8 *p, *p2;
1791
1792 // Check for first line from top and first line from bottom that have changed
1793 y1 = 0;
1794 for (j=0; j<VideoMonitor.mode.y; j++) {
1795 if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
1796 y1 = j;
1797 break;
1798 }
1799 }
1800 y2 = y1 - 1;
1801 for (j=VideoMonitor.mode.y-1; j>=y1; j--) {
1802 if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
1803 y2 = j;
1804 break;
1805 }
1806 }
1807 high = y2 - y1 + 1;
1808
1809 // Check for first column from left and first column from right that have changed
1810 if (high) {
1811 if (VideoMonitor.mode.depth == VDEPTH_1BIT) {
1812 x1 = VideoMonitor.mode.x - 1;
1813 for (j=y1; j<=y2; j++) {
1814 p = &the_buffer[j * bytes_per_row];
1815 p2 = &the_buffer_copy[j * bytes_per_row];
1816 for (i=0; i<(x1>>3); i++) {
1817 if (*p != *p2) {
1818 x1 = i << 3;
1819 break;
1820 }
1821 p++; p2++;
1822 }
1823 }
1824 x2 = x1;
1825 for (j=y1; j<=y2; j++) {
1826 p = &the_buffer[j * bytes_per_row];
1827 p2 = &the_buffer_copy[j * bytes_per_row];
1828 p += bytes_per_row;
1829 p2 += bytes_per_row;
1830 for (i=(VideoMonitor.mode.x>>3); i>(x2>>3); i--) {
1831 p--; p2--;
1832 if (*p != *p2) {
1833 x2 = (i << 3) + 7;
1834 break;
1835 }
1836 }
1837 }
1838 wide = x2 - x1 + 1;
1839
1840 // Update copy of the_buffer
1841 if (high && wide) {
1842 for (j=y1; j<=y2; j++) {
1843 i = j * bytes_per_row + (x1 >> 3);
1844 memcpy(the_buffer_copy + i, the_buffer + i, wide >> 3);
1845 }
1846 }
1847
1848 } else {
1849 x1 = VideoMonitor.mode.x;
1850 for (j=y1; j<=y2; j++) {
1851 p = &the_buffer[j * bytes_per_row];
1852 p2 = &the_buffer_copy[j * bytes_per_row];
1853 for (i=0; i<x1*bytes_per_pixel; i++) {
1854 if (*p != *p2) {
1855 x1 = i / bytes_per_pixel;
1856 break;
1857 }
1858 p++; p2++;
1859 }
1860 }
1861 x2 = x1;
1862 for (j=y1; j<=y2; j++) {
1863 p = &the_buffer[j * bytes_per_row];
1864 p2 = &the_buffer_copy[j * bytes_per_row];
1865 p += bytes_per_row;
1866 p2 += bytes_per_row;
1867 for (i=VideoMonitor.mode.x*bytes_per_pixel; i>x2*bytes_per_pixel; i--) {
1868 p--;
1869 p2--;
1870 if (*p != *p2) {
1871 x2 = i / bytes_per_pixel;
1872 break;
1873 }
1874 }
1875 }
1876 wide = x2 - x1;
1877
1878 // Update copy of the_buffer
1879 if (high && wide) {
1880 for (j=y1; j<=y2; j++) {
1881 i = j * bytes_per_row + x1 * bytes_per_pixel;
1882 memcpy(the_buffer_copy + i, the_buffer + i, bytes_per_pixel * wide);
1883 }
1884 }
1885 }
1886 }
1887
1888 // Refresh display
1889 if (high && wide) {
1890 if (drv->have_shm)
1891 XShmPutImage(x_display, drv->w, drv->gc, drv->img, x1, y1, x1, y1, wide, high, 0);
1892 else
1893 XPutImage(x_display, drv->w, drv->gc, drv->img, x1, y1, x1, y1, wide, high);
1894 }
1895 }
1896
1897
1898 /*
1899 * Screen refresh functions
1900 */
1901
1902 // We suggest the compiler to inline the next two functions so that it
1903 // may specialise the code according to the current screen depth and
1904 // display type. A clever compiler would do that job by itself though...
1905
1906 // NOTE: update_display_vosf is inlined too
1907
1908 static inline void possibly_quit_dga_mode()
1909 {
1910 // Quit DGA mode if requested
1911 if (quit_full_screen) {
1912 quit_full_screen = false;
1913 delete drv;
1914 drv = NULL;
1915 }
1916 }
1917
1918 static inline void handle_palette_changes(void)
1919 {
1920 LOCK_PALETTE;
1921
1922 if (palette_changed) {
1923 palette_changed = false;
1924 drv->update_palette();
1925 }
1926
1927 UNLOCK_PALETTE;
1928 }
1929
1930 static void video_refresh_dga(void)
1931 {
1932 // Quit DGA mode if requested
1933 possibly_quit_dga_mode();
1934
1935 // Handle X events
1936 handle_events();
1937
1938 // Handle palette changes
1939 handle_palette_changes();
1940 }
1941
1942 #ifdef ENABLE_VOSF
1943 #if REAL_ADDRESSING || DIRECT_ADDRESSING
1944 static void video_refresh_dga_vosf(void)
1945 {
1946 // Quit DGA mode if requested
1947 possibly_quit_dga_mode();
1948
1949 // Handle X events
1950 handle_events();
1951
1952 // Handle palette changes
1953 handle_palette_changes();
1954
1955 // Update display (VOSF variant)
1956 static int tick_counter = 0;
1957 if (++tick_counter >= frame_skip) {
1958 tick_counter = 0;
1959 if (mainBuffer.dirty) {
1960 LOCK_VOSF;
1961 update_display_dga_vosf();
1962 UNLOCK_VOSF;
1963 }
1964 }
1965 }
1966 #endif
1967
1968 static void video_refresh_window_vosf(void)
1969 {
1970 // Quit DGA mode if requested
1971 possibly_quit_dga_mode();
1972
1973 // Handle X events
1974 handle_events();
1975
1976 // Handle palette changes
1977 handle_palette_changes();
1978
1979 // Update display (VOSF variant)
1980 static int tick_counter = 0;
1981 if (++tick_counter >= frame_skip) {
1982 tick_counter = 0;
1983 if (mainBuffer.dirty) {
1984 LOCK_VOSF;
1985 update_display_window_vosf(static_cast<driver_window *>(drv));
1986 UNLOCK_VOSF;
1987 XSync(x_display, false); // Let the server catch up
1988 }
1989 }
1990 }
1991 #endif // def ENABLE_VOSF
1992
1993 static void video_refresh_window_static(void)
1994 {
1995 // Handle X events
1996 handle_events();
1997
1998 // Handle_palette changes
1999 handle_palette_changes();
2000
2001 // Update display (static variant)
2002 static int tick_counter = 0;
2003 if (++tick_counter >= frame_skip) {
2004 tick_counter = 0;
2005 update_display_static(static_cast<driver_window *>(drv));
2006 }
2007 }
2008
2009 static void video_refresh_window_dynamic(void)
2010 {
2011 // Handle X events
2012 handle_events();
2013
2014 // Handle_palette changes
2015 handle_palette_changes();
2016
2017 // Update display (dynamic variant)
2018 static int tick_counter = 0;
2019 tick_counter++;
2020 update_display_dynamic(tick_counter, static_cast<driver_window *>(drv));
2021 }
2022
2023
2024 /*
2025 * Thread for screen refresh, input handling etc.
2026 */
2027
2028 static void VideoRefreshInit(void)
2029 {
2030 // TODO: set up specialised 8bpp VideoRefresh handlers ?
2031 if (display_type == DISPLAY_DGA) {
2032 #if ENABLE_VOSF && (REAL_ADDRESSING || DIRECT_ADDRESSING)
2033 if (use_vosf)
2034 video_refresh = video_refresh_dga_vosf;
2035 else
2036 #endif
2037 video_refresh = video_refresh_dga;
2038 }
2039 else {
2040 #ifdef ENABLE_VOSF
2041 if (use_vosf)
2042 video_refresh = video_refresh_window_vosf;
2043 else
2044 #endif
2045 if (frame_skip == 0)
2046 video_refresh = video_refresh_window_dynamic;
2047 else
2048 video_refresh = video_refresh_window_static;
2049 }
2050 }
2051
2052 void VideoRefresh(void)
2053 {
2054 // TODO: make main_unix/VideoRefresh call directly video_refresh() ?
2055 video_refresh();
2056 }
2057
2058 #ifdef HAVE_PTHREADS
2059 static void *redraw_func(void *arg)
2060 {
2061 uint64 start = GetTicks_usec();
2062 int64 ticks = 0;
2063 uint64 next = GetTicks_usec();
2064 while (!redraw_thread_cancel) {
2065 video_refresh();
2066 next += 16667;
2067 int64 delay = next - GetTicks_usec();
2068 if (delay > 0)
2069 Delay_usec(delay);
2070 else if (delay < -16667)
2071 next = GetTicks_usec();
2072 ticks++;
2073 }
2074 uint64 end = GetTicks_usec();
2075 // printf("%Ld ticks in %Ld usec = %Ld ticks/sec\n", ticks, end - start, ticks * 1000000 / (end - start));
2076 return NULL;
2077 }
2078 #endif