ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/video_x.cpp
Revision: 1.38
Committed: 2005-03-27T19:05:18Z (19 years, 5 months ago) by gbeauche
Branch: MAIN
Changes since 1.37: +331 -31 lines
Log Message:
- Implement fullscreen DGA via fbdev access under Linux. Besides, r/w access
to /dev/mem is required on Linux to use XF86 DGA mode. Otherwise, there is
now a fallback to fbdev.
- Forward port some features from Basilisk II (set_window_name,
disable_mouse_accel).
- Don't SIGSTOP the emulation thread on suspend since that would completely
stop the process on Linux. Use a frame buffer lock instead (as B2 does)

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * video_x.cpp - Video/graphics emulation, X11 specific stuff
3     *
4 gbeauche 1.35 * SheepShaver (C) 1997-2005 Marc Hellwig and Christian Bauer
5 cebix 1.1 *
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 gbeauche 1.38 /*
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     * Ctrl-F5 = grab mouse (in windowed mode)
28     */
29    
30 gbeauche 1.6 #include "sysdeps.h"
31    
32 cebix 1.1 #include <X11/Xlib.h>
33     #include <X11/Xutil.h>
34     #include <X11/keysym.h>
35     #include <X11/extensions/XShm.h>
36     #include <sys/ipc.h>
37     #include <sys/shm.h>
38 gbeauche 1.6 #include <errno.h>
39 gbeauche 1.7 #include <pthread.h>
40 gbeauche 1.6
41 gbeauche 1.13 #include <algorithm>
42    
43 gbeauche 1.38 #ifdef ENABLE_FBDEV_DGA
44     # include <linux/fb.h>
45     # include <sys/ioctl.h>
46     #endif
47    
48 gbeauche 1.6 #ifdef ENABLE_XF86_DGA
49 gbeauche 1.15 # include <X11/extensions/xf86dga.h>
50 gbeauche 1.6 #endif
51    
52     #ifdef ENABLE_XF86_VIDMODE
53     # include <X11/extensions/xf86vmode.h>
54     #endif
55 cebix 1.1
56     #include "main.h"
57     #include "adb.h"
58     #include "prefs.h"
59     #include "user_strings.h"
60     #include "about_window.h"
61     #include "video.h"
62     #include "video_defs.h"
63 gbeauche 1.30 #include "video_blit.h"
64 cebix 1.1
65     #define DEBUG 0
66     #include "debug.h"
67    
68 gbeauche 1.13 #ifndef NO_STD_NAMESPACE
69     using std::sort;
70     #endif
71    
72 cebix 1.1
73 gbeauche 1.6 // Constants
74     const char KEYCODE_FILE_NAME[] = DATADIR "/keycodes";
75 gbeauche 1.22 static const bool hw_mac_cursor_accl = true; // Flag: Enable MacOS to X11 copy of cursor?
76 cebix 1.1
77     // Global variables
78     static int32 frame_skip;
79 gbeauche 1.8 static int16 mouse_wheel_mode;
80     static int16 mouse_wheel_lines;
81 cebix 1.1 static bool redraw_thread_active = false; // Flag: Redraw thread installed
82 gbeauche 1.15 static pthread_attr_t redraw_thread_attr; // Redraw thread attributes
83 gbeauche 1.28 static volatile bool redraw_thread_cancel; // Flag: Cancel Redraw thread
84 cebix 1.1 static pthread_t redraw_thread; // Redraw thread
85    
86 gbeauche 1.4 static bool local_X11; // Flag: X server running on local machine?
87 cebix 1.1 static volatile bool thread_stop_req = false;
88     static volatile bool thread_stop_ack = false; // Acknowledge for thread_stop_req
89    
90     static bool has_dga = false; // Flag: Video DGA capable
91     static bool has_vidmode = false; // Flag: VidMode extension available
92    
93 gbeauche 1.3 #ifdef ENABLE_VOSF
94     static bool use_vosf = true; // Flag: VOSF enabled
95     #else
96     static const bool use_vosf = false; // VOSF not possible
97     #endif
98    
99 cebix 1.1 static bool palette_changed = false; // Flag: Palette changed, redraw thread must update palette
100     static bool ctrl_down = false; // Flag: Ctrl key pressed
101 gbeauche 1.27 static bool caps_on = false; // Flag: Caps Lock on
102 cebix 1.1 static bool quit_full_screen = false; // Flag: DGA close requested from redraw thread
103     static volatile bool quit_full_screen_ack = false; // Acknowledge for quit_full_screen
104     static bool emerg_quit = false; // Flag: Ctrl-Esc pressed, emergency quit requested from MacOS thread
105    
106     static bool emul_suspended = false; // Flag: emulator suspended
107     static Window suspend_win; // "Suspend" window
108     static void *fb_save = NULL; // Saved frame buffer for suspend
109 gbeauche 1.6 static bool use_keycodes = false; // Flag: Use keycodes rather than keysyms
110     static int keycode_table[256]; // X keycode -> Mac keycode translation table
111 cebix 1.1
112     // X11 variables
113     static int screen; // Screen number
114     static int xdepth; // Depth of X screen
115     static int depth; // Depth of Mac frame buffer
116     static Window rootwin, the_win; // Root window and our window
117 gbeauche 1.13 static int num_depths = 0; // Number of available X depths
118     static int *avail_depths = NULL; // List of available X depths
119 gbeauche 1.30 static VisualFormat visualFormat;
120 cebix 1.1 static XVisualInfo visualInfo;
121     static Visual *vis;
122 gbeauche 1.13 static int color_class;
123     static int rshift, rloss, gshift, gloss, bshift, bloss; // Pixel format of DirectColor/TrueColor modes
124 cebix 1.1 static Colormap cmap[2]; // Two colormaps (DGA) for 8-bit mode
125 gbeauche 1.13 static XColor x_palette[256]; // Color palette to be used as CLUT and gamma table
126 gbeauche 1.38 static int orig_accel_numer, orig_accel_denom, orig_threshold; // Original mouse acceleration
127 gbeauche 1.13
128 cebix 1.1 static XColor black, white;
129     static unsigned long black_pixel, white_pixel;
130     static int eventmask;
131 gbeauche 1.13 static const int win_eventmask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | EnterWindowMask | ExposureMask | StructureNotifyMask;
132     static const int dga_eventmask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask;
133 cebix 1.1
134     // Variables for window mode
135     static GC the_gc;
136     static XImage *img = NULL;
137     static XShmSegmentInfo shminfo;
138     static XImage *cursor_image, *cursor_mask_image;
139     static Pixmap cursor_map, cursor_mask_map;
140     static Cursor mac_cursor;
141     static GC cursor_gc, cursor_mask_gc;
142     static bool cursor_changed = false; // Flag: Cursor changed, window_func must update cursor
143     static bool have_shm = false; // Flag: SHM present and usable
144 gbeauche 1.3 static uint8 *the_buffer = NULL; // Pointer to Mac frame buffer
145 cebix 1.1 static uint8 *the_buffer_copy = NULL; // Copy of Mac frame buffer
146 gbeauche 1.3 static uint32 the_buffer_size; // Size of allocated the_buffer
147 cebix 1.1
148     // Variables for DGA mode
149 gbeauche 1.38 static bool is_fbdev_dga_mode = false; // Flag: Use FBDev DGA mode?
150 cebix 1.1 static int current_dga_cmap;
151    
152 gbeauche 1.38 #ifdef ENABLE_FBDEV_DGA
153     static int fb_dev_fd = -1; // Handle to fb device name
154     static struct fb_fix_screeninfo fb_finfo; // Fixed info
155     static struct fb_var_screeninfo fb_vinfo; // Variable info
156     static struct fb_var_screeninfo fb_orig_vinfo; // Variable info to restore later
157     static struct fb_cmap fb_oldcmap; // Colormap to restore later
158     #endif
159    
160 cebix 1.1 #ifdef ENABLE_XF86_VIDMODE
161     // Variables for XF86 VidMode support
162     static XF86VidModeModeInfo **x_video_modes; // Array of all available modes
163     static int num_x_video_modes;
164     #endif
165    
166 gbeauche 1.13 // Mutex to protect palette
167     #ifdef HAVE_SPINLOCKS
168     static spinlock_t x_palette_lock = SPIN_LOCK_UNLOCKED;
169     #define LOCK_PALETTE spin_lock(&x_palette_lock)
170     #define UNLOCK_PALETTE spin_unlock(&x_palette_lock)
171     #elif defined(HAVE_PTHREADS)
172     static pthread_mutex_t x_palette_lock = PTHREAD_MUTEX_INITIALIZER;
173     #define LOCK_PALETTE pthread_mutex_lock(&x_palette_lock)
174     #define UNLOCK_PALETTE pthread_mutex_unlock(&x_palette_lock)
175     #else
176     #define LOCK_PALETTE
177     #define UNLOCK_PALETTE
178     #endif
179    
180 gbeauche 1.38 // Mutex to protect frame buffer
181     #ifdef HAVE_SPINLOCKS
182     static spinlock_t frame_buffer_lock = SPIN_LOCK_UNLOCKED;
183     #define LOCK_FRAME_BUFFER spin_lock(&frame_buffer_lock)
184     #define UNLOCK_FRAME_BUFFER spin_unlock(&frame_buffer_lock)
185     #elif defined(HAVE_PTHREADS)
186     static pthread_mutex_t frame_buffer_lock = PTHREAD_MUTEX_INITIALIZER;
187     #define LOCK_FRAME_BUFFER pthread_mutex_lock(&frame_buffer_lock);
188     #define UNLOCK_FRAME_BUFFER pthread_mutex_unlock(&frame_buffer_lock);
189     #else
190     #define LOCK_FRAME_BUFFER
191     #define UNLOCK_FRAME_BUFFER
192     #endif
193    
194 cebix 1.1
195     // Prototypes
196     static void *redraw_func(void *arg);
197    
198    
199 gbeauche 1.4 // From main_unix.cpp
200     extern char *x_display_name;
201 cebix 1.1 extern Display *x_display;
202    
203     // From sys_unix.cpp
204     extern void SysMountFirstFloppy(void);
205    
206 gbeauche 1.9 // From clip_unix.cpp
207     extern void ClipboardSelectionClear(XSelectionClearEvent *);
208     extern void ClipboardSelectionRequest(XSelectionRequestEvent *);
209    
210 cebix 1.1
211 gbeauche 1.3 // Video acceleration through SIGSEGV
212     #ifdef ENABLE_VOSF
213     # include "video_vosf.h"
214     #endif
215    
216    
217 cebix 1.1 /*
218 gbeauche 1.13 * Utility functions
219     */
220    
221     // Get current video mode
222     static inline int get_current_mode(void)
223     {
224     return VModes[cur_mode].viAppleMode;
225     }
226    
227     // Find palette size for given color depth
228     static int palette_size(int mode)
229     {
230     switch (mode) {
231     case APPLE_1_BIT: return 2;
232     case APPLE_2_BIT: return 4;
233     case APPLE_4_BIT: return 16;
234     case APPLE_8_BIT: return 256;
235     case APPLE_16_BIT: return 32;
236     case APPLE_32_BIT: return 256;
237     default: return 0;
238     }
239     }
240    
241 gbeauche 1.16 // Return bits per pixel for requested depth
242     static inline int bytes_per_pixel(int depth)
243     {
244     int bpp;
245     switch (depth) {
246     case 8:
247     bpp = 1;
248     break;
249     case 15: case 16:
250     bpp = 2;
251     break;
252     case 24: case 32:
253     bpp = 4;
254     break;
255     default:
256     abort();
257     }
258     return bpp;
259     }
260    
261 gbeauche 1.13 // Map video_mode depth ID to numerical depth value
262     static inline int depth_of_video_mode(int mode)
263     {
264 gbeauche 1.16 int depth;
265 gbeauche 1.13 switch (mode) {
266     case APPLE_1_BIT:
267     depth = 1;
268     break;
269     case APPLE_2_BIT:
270     depth = 2;
271     break;
272     case APPLE_4_BIT:
273     depth = 4;
274     break;
275     case APPLE_8_BIT:
276     depth = 8;
277     break;
278     case APPLE_16_BIT:
279     depth = 16;
280     break;
281     case APPLE_32_BIT:
282     depth = 32;
283     break;
284     default:
285     abort();
286     }
287     return depth;
288     }
289    
290     // Map RGB color to pixel value (this only works in TrueColor/DirectColor visuals)
291     static inline uint32 map_rgb(uint8 red, uint8 green, uint8 blue)
292     {
293     return ((red >> rloss) << rshift) | ((green >> gloss) << gshift) | ((blue >> bloss) << bshift);
294     }
295    
296    
297     // Do we have a visual for handling the specified Mac depth? If so, set the
298     // global variables "xdepth", "visualInfo", "vis" and "color_class".
299     static bool find_visual_for_depth(int depth)
300     {
301     D(bug("have_visual_for_depth(%d)\n", depth_of_video_mode(depth)));
302    
303     // 1-bit works always and uses default visual
304     if (depth == APPLE_1_BIT) {
305     vis = DefaultVisual(x_display, screen);
306     visualInfo.visualid = XVisualIDFromVisual(vis);
307     int num = 0;
308     XVisualInfo *vi = XGetVisualInfo(x_display, VisualIDMask, &visualInfo, &num);
309     visualInfo = vi[0];
310     XFree(vi);
311     xdepth = visualInfo.depth;
312     color_class = visualInfo.c_class;
313     D(bug(" found visual ID 0x%02x, depth %d\n", visualInfo.visualid, xdepth));
314     return true;
315     }
316    
317     // Calculate minimum and maximum supported X depth
318     int min_depth = 1, max_depth = 32;
319     switch (depth) {
320     #ifdef ENABLE_VOSF
321     case APPLE_2_BIT:
322     case APPLE_4_BIT: // VOSF blitters can convert 2/4/8-bit -> 8/16/32-bit
323     case APPLE_8_BIT:
324     min_depth = 8;
325     max_depth = 32;
326     break;
327     #else
328     case APPLE_2_BIT:
329     case APPLE_4_BIT: // 2/4-bit requires VOSF blitters
330     return false;
331     case APPLE_8_BIT: // 8-bit without VOSF requires an 8-bit visual
332     min_depth = 8;
333     max_depth = 8;
334     break;
335     #endif
336     case APPLE_16_BIT: // 16-bit requires a 15/16-bit visual
337     min_depth = 15;
338     max_depth = 16;
339     break;
340     case APPLE_32_BIT: // 32-bit requires a 24/32-bit visual
341     min_depth = 24;
342     max_depth = 32;
343     break;
344     }
345     D(bug(" minimum required X depth is %d, maximum supported X depth is %d\n", min_depth, max_depth));
346    
347     // Try to find a visual for one of the color depths
348     bool visual_found = false;
349     for (int i=0; i<num_depths && !visual_found; i++) {
350    
351     xdepth = avail_depths[i];
352     D(bug(" trying to find visual for depth %d\n", xdepth));
353     if (xdepth < min_depth || xdepth > max_depth)
354     continue;
355    
356     // Determine best color class for this depth
357     switch (xdepth) {
358     case 1: // Try StaticGray or StaticColor
359     if (XMatchVisualInfo(x_display, screen, xdepth, StaticGray, &visualInfo)
360     || XMatchVisualInfo(x_display, screen, xdepth, StaticColor, &visualInfo))
361     visual_found = true;
362     break;
363     case 8: // Need PseudoColor
364     if (XMatchVisualInfo(x_display, screen, xdepth, PseudoColor, &visualInfo))
365     visual_found = true;
366     break;
367     case 15:
368     case 16:
369     case 24:
370     case 32: // Try DirectColor first, as this will allow gamma correction
371     if (XMatchVisualInfo(x_display, screen, xdepth, DirectColor, &visualInfo)
372     || XMatchVisualInfo(x_display, screen, xdepth, TrueColor, &visualInfo))
373     visual_found = true;
374     break;
375     default:
376     D(bug(" not a supported depth\n"));
377     break;
378     }
379     }
380     if (!visual_found)
381     return false;
382    
383     // Visual was found
384     vis = visualInfo.visual;
385     color_class = visualInfo.c_class;
386     D(bug(" found visual ID 0x%02x, depth %d, class ", visualInfo.visualid, xdepth));
387     #if DEBUG
388     switch (color_class) {
389     case StaticGray: D(bug("StaticGray\n")); break;
390     case GrayScale: D(bug("GrayScale\n")); break;
391     case StaticColor: D(bug("StaticColor\n")); break;
392     case PseudoColor: D(bug("PseudoColor\n")); break;
393     case TrueColor: D(bug("TrueColor\n")); break;
394     case DirectColor: D(bug("DirectColor\n")); break;
395     }
396     #endif
397     return true;
398     }
399    
400    
401     /*
402 cebix 1.1 * Open display (window or fullscreen)
403     */
404    
405 gbeauche 1.38 // Set window name and class
406     static void set_window_name(Window w, int name)
407     {
408     const char *str = GetString(name);
409     XStoreName(x_display, w, str);
410     XSetIconName(x_display, w, str);
411    
412     XClassHint *hints;
413     hints = XAllocClassHint();
414     if (hints) {
415     hints->res_name = "SheepShaver";
416     hints->res_class = "SheepShaver";
417     XSetClassHint(x_display, w, hints);
418     XFree(hints);
419     }
420     }
421    
422     // Set window input focus flag
423     static void set_window_focus(Window w)
424     {
425     XWMHints *hints = XAllocWMHints();
426     if (hints) {
427     hints->input = True;
428     hints->initial_state = NormalState;
429     hints->flags = InputHint | StateHint;
430     XSetWMHints(x_display, w, hints);
431     XFree(hints);
432     }
433     }
434    
435 gbeauche 1.14 // Set WM_DELETE_WINDOW protocol on window (preventing it from being destroyed by the WM when clicking on the "close" widget)
436     static Atom WM_DELETE_WINDOW = (Atom)0;
437     static void set_window_delete_protocol(Window w)
438     {
439     WM_DELETE_WINDOW = XInternAtom(x_display, "WM_DELETE_WINDOW", false);
440     XSetWMProtocols(x_display, w, &WM_DELETE_WINDOW, 1);
441     }
442    
443 gbeauche 1.13 // Wait until window is mapped/unmapped
444 gbeauche 1.15 static void wait_mapped(Window w)
445 gbeauche 1.13 {
446     XEvent e;
447     do {
448     XMaskEvent(x_display, StructureNotifyMask, &e);
449     } while ((e.type != MapNotify) || (e.xmap.event != w));
450     }
451    
452 gbeauche 1.15 static void wait_unmapped(Window w)
453 gbeauche 1.13 {
454     XEvent e;
455     do {
456     XMaskEvent(x_display, StructureNotifyMask, &e);
457     } while ((e.type != UnmapNotify) || (e.xmap.event != w));
458     }
459    
460 gbeauche 1.38 // Disable mouse acceleration
461     static void disable_mouse_accel(void)
462     {
463     XChangePointerControl(x_display, True, False, 1, 1, 0);
464     }
465    
466     // Restore mouse acceleration to original value
467     static void restore_mouse_accel(void)
468     {
469     XChangePointerControl(x_display, True, True, orig_accel_numer, orig_accel_denom, orig_threshold);
470     }
471    
472 cebix 1.1 // Trap SHM errors
473     static bool shm_error = false;
474     static int (*old_error_handler)(Display *, XErrorEvent *);
475    
476     static int error_handler(Display *d, XErrorEvent *e)
477     {
478     if (e->error_code == BadAccess) {
479     shm_error = true;
480     return 0;
481     } else
482     return old_error_handler(d, e);
483     }
484    
485     // Open window
486     static bool open_window(int width, int height)
487     {
488 gbeauche 1.3 int aligned_width = (width + 15) & ~15;
489     int aligned_height = (height + 15) & ~15;
490    
491 cebix 1.1 // Set absolute mouse mode
492     ADBSetRelMouseMode(false);
493    
494     // Create window
495     XSetWindowAttributes wattr;
496     wattr.event_mask = eventmask = win_eventmask;
497 gbeauche 1.13 wattr.background_pixel = (vis == DefaultVisual(x_display, screen) ? black_pixel : 0);
498     wattr.border_pixel = 0;
499 cebix 1.1 wattr.backing_store = NotUseful;
500 gbeauche 1.13 wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
501     the_win = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
502     InputOutput, vis, CWEventMask | CWBackPixel | CWBorderPixel | CWBackingStore | CWColormap, &wattr);
503 cebix 1.1
504 gbeauche 1.38 // Set window name/class
505     set_window_name(the_win, STR_WINDOW_TITLE);
506    
507     // Indicate that we want keyboard input
508     set_window_focus(the_win);
509 cebix 1.1
510 gbeauche 1.14 // Set delete protocol property
511     set_window_delete_protocol(the_win);
512    
513 cebix 1.1 // Make window unresizable
514     XSizeHints *hints;
515     if ((hints = XAllocSizeHints()) != NULL) {
516     hints->min_width = width;
517     hints->max_width = width;
518     hints->min_height = height;
519     hints->max_height = height;
520     hints->flags = PMinSize | PMaxSize;
521     XSetWMNormalHints(x_display, the_win, hints);
522     XFree((char *)hints);
523     }
524    
525 gbeauche 1.13 // Show window
526     XMapWindow(x_display, the_win);
527     wait_mapped(the_win);
528    
529 gbeauche 1.5 // 1-bit mode is big-endian; if the X server is little-endian, we can't
530     // use SHM because that doesn't allow changing the image byte order
531     bool need_msb_image = (depth == 1 && XImageByteOrder(x_display) == LSBFirst);
532    
533 cebix 1.1 // Try to create and attach SHM image
534     have_shm = false;
535 gbeauche 1.5 if (local_X11 && !need_msb_image && XShmQueryExtension(x_display)) {
536 cebix 1.1
537     // Create SHM image ("height + 2" for safety)
538 gbeauche 1.5 img = XShmCreateImage(x_display, vis, depth == 1 ? 1 : xdepth, depth == 1 ? XYBitmap : ZPixmap, 0, &shminfo, width, height);
539 gbeauche 1.13 shminfo.shmid = shmget(IPC_PRIVATE, (aligned_height + 2) * img->bytes_per_line, IPC_CREAT | 0777);
540     D(bug(" shm image created\n"));
541 gbeauche 1.3 the_buffer_copy = (uint8 *)shmat(shminfo.shmid, 0, 0);
542     shminfo.shmaddr = img->data = (char *)the_buffer_copy;
543 cebix 1.1 shminfo.readOnly = False;
544    
545     // Try to attach SHM image, catching errors
546     shm_error = false;
547     old_error_handler = XSetErrorHandler(error_handler);
548     XShmAttach(x_display, &shminfo);
549     XSync(x_display, false);
550     XSetErrorHandler(old_error_handler);
551     if (shm_error) {
552     shmdt(shminfo.shmaddr);
553     XDestroyImage(img);
554     shminfo.shmid = -1;
555     } else {
556     have_shm = true;
557     shmctl(shminfo.shmid, IPC_RMID, 0);
558     }
559 gbeauche 1.13 D(bug(" shm image attached\n"));
560 cebix 1.1 }
561    
562     // Create normal X image if SHM doesn't work ("height + 2" for safety)
563     if (!have_shm) {
564 gbeauche 1.13 int bytes_per_row = depth == 1 ? aligned_width/8 : TrivialBytesPerRow(aligned_width, DepthModeForPixelDepth(xdepth));
565 gbeauche 1.3 the_buffer_copy = (uint8 *)malloc((aligned_height + 2) * bytes_per_row);
566     img = XCreateImage(x_display, vis, depth == 1 ? 1 : xdepth, depth == 1 ? XYBitmap : ZPixmap, 0, (char *)the_buffer_copy, aligned_width, aligned_height, 32, bytes_per_row);
567 gbeauche 1.13 D(bug(" X image created\n"));
568 cebix 1.1 }
569    
570     // 1-Bit mode is big-endian
571 gbeauche 1.13 if (need_msb_image) {
572 cebix 1.1 img->byte_order = MSBFirst;
573     img->bitmap_bit_order = MSBFirst;
574     }
575    
576 gbeauche 1.3 #ifdef ENABLE_VOSF
577     use_vosf = true;
578     // Allocate memory for frame buffer (SIZE is extended to page-boundary)
579     the_host_buffer = the_buffer_copy;
580     the_buffer_size = page_extend((aligned_height + 2) * img->bytes_per_line);
581     the_buffer = (uint8 *)vm_acquire(the_buffer_size);
582     the_buffer_copy = (uint8 *)malloc(the_buffer_size);
583     D(bug("the_buffer = %p, the_buffer_copy = %p, the_host_buffer = %p\n", the_buffer, the_buffer_copy, the_host_buffer));
584     #else
585     // Allocate memory for frame buffer
586     the_buffer = (uint8 *)malloc((aligned_height + 2) * img->bytes_per_line);
587     D(bug("the_buffer = %p, the_buffer_copy = %p\n", the_buffer, the_buffer_copy));
588     #endif
589 gbeauche 1.33 screen_base = Host2MacAddr(the_buffer);
590 cebix 1.1
591     // Create GC
592     the_gc = XCreateGC(x_display, the_win, 0, 0);
593 gbeauche 1.13 XSetState(x_display, the_gc, black_pixel, white_pixel, GXcopy, AllPlanes);
594 cebix 1.1
595     // Create cursor
596 gbeauche 1.22 if (hw_mac_cursor_accl) {
597 gbeauche 1.21 cursor_image = XCreateImage(x_display, vis, 1, XYPixmap, 0, (char *)MacCursor + 4, 16, 16, 16, 2);
598     cursor_image->byte_order = MSBFirst;
599     cursor_image->bitmap_bit_order = MSBFirst;
600     cursor_mask_image = XCreateImage(x_display, vis, 1, XYPixmap, 0, (char *)MacCursor + 36, 16, 16, 16, 2);
601     cursor_mask_image->byte_order = MSBFirst;
602     cursor_mask_image->bitmap_bit_order = MSBFirst;
603     cursor_map = XCreatePixmap(x_display, the_win, 16, 16, 1);
604     cursor_mask_map = XCreatePixmap(x_display, the_win, 16, 16, 1);
605     cursor_gc = XCreateGC(x_display, cursor_map, 0, 0);
606     cursor_mask_gc = XCreateGC(x_display, cursor_mask_map, 0, 0);
607     mac_cursor = XCreatePixmapCursor(x_display, cursor_map, cursor_mask_map, &black, &white, 0, 0);
608     cursor_changed = false;
609     }
610    
611     // Create no_cursor
612     else {
613     mac_cursor = XCreatePixmapCursor(x_display,
614     XCreatePixmap(x_display, the_win, 1, 1, 1),
615     XCreatePixmap(x_display, the_win, 1, 1, 1),
616     &black, &white, 0, 0);
617     XDefineCursor(x_display, the_win, mac_cursor);
618     }
619 cebix 1.1
620 gbeauche 1.3 // Init blitting routines
621     bool native_byte_order;
622     #ifdef WORDS_BIGENDIAN
623     native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
624     #else
625     native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
626     #endif
627     #ifdef ENABLE_VOSF
628 gbeauche 1.30 Screen_blitter_init(visualFormat, native_byte_order, depth);
629 gbeauche 1.3 #endif
630    
631 cebix 1.1 // Set bytes per row
632     XSync(x_display, false);
633     return true;
634     }
635    
636 gbeauche 1.38 // Open FBDev display
637     static bool open_fbdev(int width, int height)
638     {
639     #ifdef ENABLE_FBDEV_DGA
640     if (ioctl(fb_dev_fd, FBIOGET_FSCREENINFO, &fb_finfo) != 0) {
641     D(bug("[fbdev] Can't get FSCREENINFO: %s\n", strerror(errno)));
642     return false;
643     }
644     D(bug("[fbdev] Device ID: %s\n", fb_finfo.id));
645     D(bug("[fbdev] smem_start: %p [%d bytes]\n", fb_finfo.smem_start, fb_finfo.smem_len));
646     int fb_type = fb_finfo.type;
647     const char *fb_type_str = NULL;
648     switch (fb_type) {
649     case FB_TYPE_PACKED_PIXELS: fb_type_str = "Packed Pixels"; break;
650     case FB_TYPE_PLANES: fb_type_str = "Non interleaved planes"; break;
651     case FB_TYPE_INTERLEAVED_PLANES: fb_type_str = "Interleaved planes"; break;
652     case FB_TYPE_TEXT: fb_type_str = "Text/attributes"; break;
653     case FB_TYPE_VGA_PLANES: fb_type_str = "EGA/VGA planes"; break;
654     default: fb_type_str = "<unknown>"; break;
655     }
656     D(bug("[fbdev] type: %s\n", fb_type_str));
657     int fb_visual = fb_finfo.visual;
658     const char *fb_visual_str;
659     switch (fb_visual) {
660     case FB_VISUAL_MONO01: fb_visual_str = "Monochrome 1=Black 0=White"; break;
661     case FB_VISUAL_MONO10: fb_visual_str = "Monochrome 1=While 0=Black"; break;
662     case FB_VISUAL_TRUECOLOR: fb_visual_str = "True color"; break;
663     case FB_VISUAL_PSEUDOCOLOR: fb_visual_str = "Pseudo color (like atari)"; break;
664     case FB_VISUAL_DIRECTCOLOR: fb_visual_str = "Direct color"; break;
665     case FB_VISUAL_STATIC_PSEUDOCOLOR: fb_visual_str = "Pseudo color readonly"; break;
666     default: fb_visual_str = "<unknown>"; break;
667     }
668     D(bug("[fbdev] visual: %s\n", fb_visual_str));
669    
670     if (fb_type != FB_TYPE_PACKED_PIXELS) {
671     D(bug("[fbdev] type %s not supported\n", fb_type_str));
672     return false;
673     }
674    
675     // Map frame buffer
676     the_buffer = (uint8 *)mmap(NULL, fb_finfo.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fb_dev_fd, 0);
677     if (the_buffer == MAP_FAILED) {
678     D(bug("[fbdev] Can't mmap /dev/fb0: %s\n", strerror(errno)));
679     return false;
680     }
681    
682     // Set absolute mouse mode
683     ADBSetRelMouseMode(false);
684    
685     // Create window
686     XSetWindowAttributes wattr;
687     wattr.event_mask = eventmask = dga_eventmask;
688     wattr.override_redirect = True;
689     wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
690     the_win = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
691     InputOutput, vis, CWEventMask | CWOverrideRedirect |
692     (color_class == DirectColor ? CWColormap : 0), &wattr);
693    
694     // Show window
695     XMapRaised(x_display, the_win);
696     wait_mapped(the_win);
697    
698     // Grab mouse and keyboard
699     XGrabKeyboard(x_display, the_win, True,
700     GrabModeAsync, GrabModeAsync, CurrentTime);
701     XGrabPointer(x_display, the_win, True,
702     PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
703     GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
704     disable_mouse_accel();
705    
706     // Create no_cursor
707     mac_cursor = XCreatePixmapCursor(x_display,
708     XCreatePixmap(x_display, the_win, 1, 1, 1),
709     XCreatePixmap(x_display, the_win, 1, 1, 1),
710     &black, &white, 0, 0);
711     XDefineCursor(x_display, the_win, mac_cursor);
712    
713     // Init blitting routines
714     int bytes_per_row = TrivialBytesPerRow((width + 7) & ~7, DepthModeForPixelDepth(depth));
715     #if ENABLE_VOSF
716     bool native_byte_order;
717     #ifdef WORDS_BIGENDIAN
718     native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
719     #else
720     native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
721     #endif
722     #if REAL_ADDRESSING || DIRECT_ADDRESSING
723     // Screen_blitter_init() returns TRUE if VOSF is mandatory
724     // i.e. the framebuffer update function is not Blit_Copy_Raw
725     use_vosf = Screen_blitter_init(visualFormat, native_byte_order, depth);
726    
727     if (use_vosf) {
728     // Allocate memory for frame buffer (SIZE is extended to page-boundary)
729     the_host_buffer = the_buffer;
730     the_buffer_size = page_extend((height + 2) * bytes_per_row);
731     the_buffer_copy = (uint8 *)malloc(the_buffer_size);
732     the_buffer = (uint8 *)vm_acquire(the_buffer_size);
733     D(bug("the_buffer = %p, the_buffer_copy = %p, the_host_buffer = %p\n", the_buffer, the_buffer_copy, the_host_buffer));
734     }
735     #else
736     use_vosf = false;
737     #endif
738     #endif
739    
740     // Set frame buffer base
741     D(bug("the_buffer = %p, use_vosf = %d\n", the_buffer, use_vosf));
742     screen_base = Host2MacAddr(the_buffer);
743     VModes[cur_mode].viRowBytes = bytes_per_row;
744     return true;
745     #else
746     ErrorAlert("SheepShaver has been compiled with DGA support disabled.");
747     return false;
748     #endif
749     }
750    
751 cebix 1.1 // Open DGA display (!! should use X11 VidMode extensions to set mode)
752     static bool open_dga(int width, int height)
753     {
754 gbeauche 1.38 if (is_fbdev_dga_mode)
755     return false;
756    
757 cebix 1.1 #ifdef ENABLE_XF86_DGA
758     // Set relative mouse mode
759     ADBSetRelMouseMode(true);
760    
761 gbeauche 1.15 // Create window
762     XSetWindowAttributes wattr;
763     wattr.event_mask = eventmask = dga_eventmask;
764     wattr.override_redirect = True;
765     wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
766     the_win = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
767     InputOutput, vis, CWEventMask | CWOverrideRedirect |
768     (color_class == DirectColor ? CWColormap : 0), &wattr);
769    
770     // Show window
771     XMapRaised(x_display, the_win);
772     wait_mapped(the_win);
773    
774 cebix 1.1 #ifdef ENABLE_XF86_VIDMODE
775     // Switch to best mode
776     if (has_vidmode) {
777     int best = 0;
778     for (int i=1; i<num_x_video_modes; i++) {
779     if (x_video_modes[i]->hdisplay >= width && x_video_modes[i]->vdisplay >= height &&
780     x_video_modes[i]->hdisplay <= x_video_modes[best]->hdisplay && x_video_modes[i]->vdisplay <= x_video_modes[best]->vdisplay) {
781     best = i;
782     }
783     }
784     XF86VidModeSwitchToMode(x_display, screen, x_video_modes[best]);
785     XF86VidModeSetViewPort(x_display, screen, 0, 0);
786     }
787     #endif
788    
789     // Establish direct screen connection
790 gbeauche 1.15 XMoveResizeWindow(x_display, the_win, 0, 0, width, height);
791     XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
792 cebix 1.1 XGrabKeyboard(x_display, rootwin, True, GrabModeAsync, GrabModeAsync, CurrentTime);
793     XGrabPointer(x_display, rootwin, True, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
794 gbeauche 1.15
795     int v_width, v_bank, v_size;
796     XF86DGAGetVideo(x_display, screen, (char **)&the_buffer, &v_width, &v_bank, &v_size);
797 cebix 1.1 XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
798     XF86DGASetViewPort(x_display, screen, 0, 0);
799     XF86DGASetVidPage(x_display, screen, 0);
800    
801     // Set colormap
802 gbeauche 1.15 if (!IsDirectMode(get_current_mode())) {
803     XSetWindowColormap(x_display, the_win, cmap[current_dga_cmap = 0]);
804 cebix 1.1 XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
805 gbeauche 1.15 }
806     XSync(x_display, false);
807 cebix 1.1
808 gbeauche 1.15 // Init blitting routines
809     int bytes_per_row = TrivialBytesPerRow((v_width + 7) & ~7, DepthModeForPixelDepth(depth));
810 gbeauche 1.3 #if ENABLE_VOSF
811     bool native_byte_order;
812     #ifdef WORDS_BIGENDIAN
813     native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
814     #else
815     native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
816     #endif
817     #if REAL_ADDRESSING || DIRECT_ADDRESSING
818     // Screen_blitter_init() returns TRUE if VOSF is mandatory
819     // i.e. the framebuffer update function is not Blit_Copy_Raw
820 gbeauche 1.30 use_vosf = Screen_blitter_init(visualFormat, native_byte_order, depth);
821 gbeauche 1.3
822     if (use_vosf) {
823     // Allocate memory for frame buffer (SIZE is extended to page-boundary)
824     the_host_buffer = the_buffer;
825     the_buffer_size = page_extend((height + 2) * bytes_per_row);
826     the_buffer_copy = (uint8 *)malloc(the_buffer_size);
827     the_buffer = (uint8 *)vm_acquire(the_buffer_size);
828 gbeauche 1.15 D(bug("the_buffer = %p, the_buffer_copy = %p, the_host_buffer = %p\n", the_buffer, the_buffer_copy, the_host_buffer));
829 gbeauche 1.3 }
830     #else
831     use_vosf = false;
832     #endif
833     #endif
834 gbeauche 1.15
835     // Set frame buffer base
836     D(bug("the_buffer = %p, use_vosf = %d\n", the_buffer, use_vosf));
837 gbeauche 1.33 screen_base = Host2MacAddr(the_buffer);
838 cebix 1.1 VModes[cur_mode].viRowBytes = bytes_per_row;
839     return true;
840     #else
841     ErrorAlert("SheepShaver has been compiled with DGA support disabled.");
842     return false;
843     #endif
844     }
845    
846     static bool open_display(void)
847     {
848 gbeauche 1.13 D(bug("open_display()\n"));
849     const VideoInfo &mode = VModes[cur_mode];
850    
851 gbeauche 1.38 // Get original mouse acceleration
852     XGetPointerControl(x_display, &orig_accel_numer, &orig_accel_denom, &orig_threshold);
853    
854 gbeauche 1.13 // Find best available X visual
855     if (!find_visual_for_depth(mode.viAppleMode)) {
856     ErrorAlert(GetString(STR_NO_XVISUAL_ERR));
857     return false;
858     }
859    
860 gbeauche 1.30 // Build up visualFormat structure
861     visualFormat.depth = visualInfo.depth;
862     visualFormat.Rmask = visualInfo.red_mask;
863     visualFormat.Gmask = visualInfo.green_mask;
864     visualFormat.Bmask = visualInfo.blue_mask;
865    
866 gbeauche 1.13 // Create color maps
867     if (color_class == PseudoColor || color_class == DirectColor) {
868     cmap[0] = XCreateColormap(x_display, rootwin, vis, AllocAll);
869     cmap[1] = XCreateColormap(x_display, rootwin, vis, AllocAll);
870     } else {
871     cmap[0] = XCreateColormap(x_display, rootwin, vis, AllocNone);
872     cmap[1] = XCreateColormap(x_display, rootwin, vis, AllocNone);
873     }
874    
875     // Find pixel format of direct modes
876     if (color_class == DirectColor || color_class == TrueColor) {
877     rshift = gshift = bshift = 0;
878     rloss = gloss = bloss = 8;
879     uint32 mask;
880     for (mask=vis->red_mask; !(mask&1); mask>>=1)
881     ++rshift;
882     for (; mask&1; mask>>=1)
883     --rloss;
884     for (mask=vis->green_mask; !(mask&1); mask>>=1)
885     ++gshift;
886     for (; mask&1; mask>>=1)
887     --gloss;
888     for (mask=vis->blue_mask; !(mask&1); mask>>=1)
889     ++bshift;
890     for (; mask&1; mask>>=1)
891     --bloss;
892     }
893    
894     // Preset palette pixel values for CLUT or gamma table
895     if (color_class == DirectColor) {
896     int num = vis->map_entries;
897     for (int i=0; i<num; i++) {
898     int c = (i * 256) / num;
899     x_palette[i].pixel = map_rgb(c, c, c);
900     x_palette[i].flags = DoRed | DoGreen | DoBlue;
901     }
902     } else if (color_class == PseudoColor) {
903     for (int i=0; i<256; i++) {
904     x_palette[i].pixel = i;
905     x_palette[i].flags = DoRed | DoGreen | DoBlue;
906     }
907     }
908    
909     // Load gray ramp to color map
910     int num = (color_class == DirectColor ? vis->map_entries : 256);
911     for (int i=0; i<num; i++) {
912     int c = (i * 256) / num;
913     x_palette[i].red = c * 0x0101;
914     x_palette[i].green = c * 0x0101;
915     x_palette[i].blue = c * 0x0101;
916     }
917     if (color_class == PseudoColor || color_class == DirectColor) {
918     XStoreColors(x_display, cmap[0], x_palette, num);
919     XStoreColors(x_display, cmap[1], x_palette, num);
920 cebix 1.1 }
921 gbeauche 1.3
922 gbeauche 1.13 #ifdef ENABLE_VOSF
923     // Load gray ramp to 8->16/32 expand map
924     if (!IsDirectMode(get_current_mode()) && xdepth > 8)
925     for (int i=0; i<256; i++)
926     ExpandMap[i] = map_rgb(i, i, i);
927     #endif
928    
929     // Create display of requested type
930     display_type = mode.viType;
931     depth = depth_of_video_mode(mode.viAppleMode);
932    
933 gbeauche 1.3 bool display_open = false;
934 gbeauche 1.38 if (display_type == DIS_SCREEN) {
935 gbeauche 1.3 display_open = open_dga(VModes[cur_mode].viXsize, VModes[cur_mode].viYsize);
936 gbeauche 1.38 #ifdef ENABLE_FBDEV_DGA
937     // Try to fallback to FBDev DGA mode
938     if (!display_open) {
939     is_fbdev_dga_mode = true;
940     display_open = open_fbdev(VModes[cur_mode].viXsize, VModes[cur_mode].viYsize);
941     }
942     #endif
943    
944     }
945 cebix 1.1 else if (display_type == DIS_WINDOW)
946 gbeauche 1.3 display_open = open_window(VModes[cur_mode].viXsize, VModes[cur_mode].viYsize);
947    
948     #ifdef ENABLE_VOSF
949     if (use_vosf) {
950     // Initialize the VOSF system
951     if (!video_vosf_init()) {
952     ErrorAlert(GetString(STR_VOSF_INIT_ERR));
953     return false;
954     }
955     }
956     #endif
957    
958     return display_open;
959 cebix 1.1 }
960    
961    
962     /*
963     * Close display
964     */
965    
966     // Close window
967     static void close_window(void)
968     {
969 gbeauche 1.3 if (have_shm) {
970     XShmDetach(x_display, &shminfo);
971     #ifdef ENABLE_VOSF
972     the_host_buffer = NULL; // don't free() in driver_base dtor
973     #else
974     the_buffer_copy = NULL; // don't free() in driver_base dtor
975     #endif
976     }
977     if (img) {
978     if (!have_shm)
979     img->data = NULL;
980     XDestroyImage(img);
981     }
982     if (have_shm) {
983     shmdt(shminfo.shmaddr);
984     shmctl(shminfo.shmid, IPC_RMID, 0);
985     }
986     if (the_gc)
987     XFreeGC(x_display, the_gc);
988    
989 gbeauche 1.13 XFlush(x_display);
990     XSync(x_display, false);
991 cebix 1.1 }
992    
993 gbeauche 1.38 // Close FBDev mode
994     static void close_fbdev(void)
995     {
996     #ifdef ENABLE_FBDEV_DGA
997     XUngrabPointer(x_display, CurrentTime);
998     XUngrabKeyboard(x_display, CurrentTime);
999    
1000     uint8 *fb_base;
1001     if (!use_vosf) {
1002     // don't free() the screen buffer in driver_base dtor
1003     fb_base = the_buffer;
1004     the_buffer = NULL;
1005     }
1006     #ifdef ENABLE_VOSF
1007     else {
1008     // don't free() the screen buffer in driver_base dtor
1009     fb_base = the_host_buffer;
1010     the_host_buffer = NULL;
1011     }
1012     #endif
1013     munmap(fb_base, fb_finfo.smem_len);
1014     #endif
1015     }
1016    
1017 cebix 1.1 // Close DGA mode
1018     static void close_dga(void)
1019     {
1020 gbeauche 1.38 if (is_fbdev_dga_mode)
1021     return;
1022    
1023 cebix 1.1 #ifdef ENABLE_XF86_DGA
1024     XF86DGADirectVideo(x_display, screen, 0);
1025     XUngrabPointer(x_display, CurrentTime);
1026     XUngrabKeyboard(x_display, CurrentTime);
1027     #endif
1028    
1029     #ifdef ENABLE_XF86_VIDMODE
1030     if (has_vidmode)
1031     XF86VidModeSwitchToMode(x_display, screen, x_video_modes[0]);
1032     #endif
1033 gbeauche 1.3
1034     if (!use_vosf) {
1035     // don't free() the screen buffer in driver_base dtor
1036     the_buffer = NULL;
1037     }
1038     #ifdef ENABLE_VOSF
1039     else {
1040     // don't free() the screen buffer in driver_base dtor
1041     the_host_buffer = NULL;
1042     }
1043     #endif
1044 cebix 1.1 }
1045    
1046     static void close_display(void)
1047     {
1048 gbeauche 1.38 if (display_type == DIS_SCREEN) {
1049     if (is_fbdev_dga_mode)
1050     close_fbdev();
1051     else
1052     close_dga();
1053     }
1054 cebix 1.1 else if (display_type == DIS_WINDOW)
1055     close_window();
1056 gbeauche 1.3
1057 gbeauche 1.15 // Close window
1058     if (the_win) {
1059     XUnmapWindow(x_display, the_win);
1060     wait_unmapped(the_win);
1061     XDestroyWindow(x_display, the_win);
1062     }
1063    
1064 gbeauche 1.13 // Free colormaps
1065     if (cmap[0]) {
1066     XFreeColormap(x_display, cmap[0]);
1067     cmap[0] = 0;
1068     }
1069     if (cmap[1]) {
1070     XFreeColormap(x_display, cmap[1]);
1071     cmap[1] = 0;
1072     }
1073    
1074 gbeauche 1.3 #ifdef ENABLE_VOSF
1075     if (use_vosf) {
1076     // Deinitialize VOSF
1077     video_vosf_exit();
1078     }
1079     #endif
1080    
1081     // Free frame buffer(s)
1082     if (!use_vosf) {
1083     if (the_buffer_copy) {
1084     free(the_buffer_copy);
1085     the_buffer_copy = NULL;
1086     }
1087     }
1088     #ifdef ENABLE_VOSF
1089     else {
1090     // the_buffer shall always be mapped through vm_acquire() so that we can vm_protect() it at will
1091     if (the_buffer != VM_MAP_FAILED) {
1092     D(bug(" releasing the_buffer at %p (%d bytes)\n", the_buffer, the_buffer_size));
1093     vm_release(the_buffer, the_buffer_size);
1094     the_buffer = NULL;
1095     }
1096     if (the_host_buffer) {
1097     D(bug(" freeing the_host_buffer at %p\n", the_host_buffer));
1098     free(the_host_buffer);
1099     the_host_buffer = NULL;
1100     }
1101     if (the_buffer_copy) {
1102     D(bug(" freeing the_buffer_copy at %p\n", the_buffer_copy));
1103     free(the_buffer_copy);
1104     the_buffer_copy = NULL;
1105     }
1106     }
1107     #endif
1108 gbeauche 1.38
1109     // Restore mouse acceleration
1110     restore_mouse_accel();
1111 cebix 1.1 }
1112    
1113    
1114     /*
1115     * Initialization
1116     */
1117    
1118 gbeauche 1.6 // Init keycode translation table
1119     static void keycode_init(void)
1120     {
1121     bool use_kc = PrefsFindBool("keycodes");
1122     if (use_kc) {
1123    
1124     // Get keycode file path from preferences
1125     const char *kc_path = PrefsFindString("keycodefile");
1126    
1127     // Open keycode table
1128     FILE *f = fopen(kc_path ? kc_path : KEYCODE_FILE_NAME, "r");
1129     if (f == NULL) {
1130     char str[256];
1131     sprintf(str, GetString(STR_KEYCODE_FILE_WARN), kc_path ? kc_path : KEYCODE_FILE_NAME, strerror(errno));
1132     WarningAlert(str);
1133     return;
1134     }
1135    
1136     // Default translation table
1137     for (int i=0; i<256; i++)
1138     keycode_table[i] = -1;
1139    
1140     // Search for server vendor string, then read keycodes
1141     const char *vendor = ServerVendor(x_display);
1142 gbeauche 1.29 // Force use of MacX mappings on MacOS X with Apple's X server
1143     int dummy;
1144     if (XQueryExtension(x_display, "Apple-DRI", &dummy, &dummy, &dummy))
1145     vendor = "MacX";
1146 gbeauche 1.6 bool vendor_found = false;
1147     char line[256];
1148     while (fgets(line, 255, f)) {
1149     // Read line
1150     int len = strlen(line);
1151     if (len == 0)
1152     continue;
1153     line[len-1] = 0;
1154    
1155     // Comments begin with "#" or ";"
1156     if (line[0] == '#' || line[0] == ';' || line[0] == 0)
1157     continue;
1158    
1159     if (vendor_found) {
1160     // Read keycode
1161     int x_code, mac_code;
1162     if (sscanf(line, "%d %d", &x_code, &mac_code) == 2)
1163     keycode_table[x_code & 0xff] = mac_code;
1164     else
1165     break;
1166     } else {
1167     // Search for vendor string
1168     if (strstr(vendor, line) == vendor)
1169     vendor_found = true;
1170     }
1171     }
1172    
1173     // Keycode file completely read
1174     fclose(f);
1175     use_keycodes = vendor_found;
1176    
1177     // Vendor not found? Then display warning
1178     if (!vendor_found) {
1179     char str[256];
1180     sprintf(str, GetString(STR_KEYCODE_VENDOR_WARN), vendor, kc_path ? kc_path : KEYCODE_FILE_NAME);
1181     WarningAlert(str);
1182     return;
1183     }
1184     }
1185     }
1186    
1187 gbeauche 1.15 // Find Apple mode matching best specified dimensions
1188     static int find_apple_resolution(int xsize, int ysize)
1189     {
1190     int apple_id;
1191     if (xsize < 800)
1192     apple_id = APPLE_640x480;
1193     else if (xsize < 1024)
1194     apple_id = APPLE_800x600;
1195     else if (xsize < 1152)
1196     apple_id = APPLE_1024x768;
1197     else if (xsize < 1280) {
1198     if (ysize < 900)
1199     apple_id = APPLE_1152x768;
1200     else
1201     apple_id = APPLE_1152x900;
1202     }
1203     else if (xsize < 1600)
1204     apple_id = APPLE_1280x1024;
1205     else
1206     apple_id = APPLE_1600x1200;
1207     return apple_id;
1208     }
1209    
1210     // Find mode in list of supported modes
1211     static int find_mode(int apple_mode, int apple_id, int type)
1212     {
1213     for (VideoInfo *p = VModes; p->viType != DIS_INVALID; p++) {
1214     if (p->viType == type && p->viAppleID == apple_id && p->viAppleMode == apple_mode)
1215     return p - VModes;
1216     }
1217     return -1;
1218     }
1219    
1220 gbeauche 1.36 // Add custom video mode
1221     static void add_custom_mode(VideoInfo *&p, int type, uint32 x, uint32 y, int apple_mode, int apple_id)
1222     {
1223     p->viType = type;
1224     p->viXsize = x;
1225     p->viYsize = y;
1226     p->viRowBytes = TrivialBytesPerRow(p->viXsize, apple_mode);
1227     p->viAppleMode = apple_mode;
1228     p->viAppleID = apple_id;
1229     p++;
1230     }
1231    
1232 gbeauche 1.13 // Add mode to list of supported modes
1233     static void add_mode(VideoInfo *&p, uint32 allow, uint32 test, int apple_mode, int apple_id, int type)
1234 cebix 1.1 {
1235     if (allow & test) {
1236 gbeauche 1.36 uint32 x = 0, y = 0;
1237 cebix 1.1 switch (apple_id) {
1238     case APPLE_W_640x480:
1239     case APPLE_640x480:
1240 gbeauche 1.36 x = 640;
1241     y = 480;
1242 cebix 1.1 break;
1243     case APPLE_W_800x600:
1244     case APPLE_800x600:
1245 gbeauche 1.36 x = 800;
1246     y = 600;
1247 cebix 1.1 break;
1248     case APPLE_1024x768:
1249 gbeauche 1.36 x = 1024;
1250     y = 768;
1251 cebix 1.1 break;
1252 gbeauche 1.15 case APPLE_1152x768:
1253 gbeauche 1.36 x = 1152;
1254     y = 768;
1255 gbeauche 1.15 break;
1256 cebix 1.1 case APPLE_1152x900:
1257 gbeauche 1.36 x = 1152;
1258     y = 900;
1259 cebix 1.1 break;
1260     case APPLE_1280x1024:
1261 gbeauche 1.36 x = 1280;
1262     y = 1024;
1263 cebix 1.1 break;
1264     case APPLE_1600x1200:
1265 gbeauche 1.36 x = 1600;
1266     y = 1200;
1267 cebix 1.1 break;
1268     }
1269 gbeauche 1.36 add_custom_mode(p, type, x, y, apple_mode, apple_id);
1270 cebix 1.1 }
1271     }
1272    
1273 gbeauche 1.13 // Add standard list of windowed modes for given color depth
1274     static void add_window_modes(VideoInfo *&p, int window_modes, int mode)
1275     {
1276     add_mode(p, window_modes, 1, mode, APPLE_W_640x480, DIS_WINDOW);
1277     add_mode(p, window_modes, 2, mode, APPLE_W_800x600, DIS_WINDOW);
1278     }
1279    
1280 cebix 1.1 static bool has_mode(int x, int y)
1281     {
1282     #ifdef ENABLE_XF86_VIDMODE
1283     for (int i=0; i<num_x_video_modes; i++)
1284     if (x_video_modes[i]->hdisplay >= x && x_video_modes[i]->vdisplay >= y)
1285     return true;
1286     return false;
1287     #else
1288     return DisplayWidth(x_display, screen) >= x && DisplayHeight(x_display, screen) >= y;
1289     #endif
1290     }
1291    
1292     bool VideoInit(void)
1293     {
1294 gbeauche 1.3 #ifdef ENABLE_VOSF
1295     // Zero the mainBuffer structure
1296     mainBuffer.dirtyPages = NULL;
1297     mainBuffer.pageInfo = NULL;
1298     #endif
1299    
1300 gbeauche 1.4 // Check if X server runs on local machine
1301     local_X11 = (strncmp(XDisplayName(x_display_name), ":", 1) == 0)
1302     || (strncmp(XDisplayName(x_display_name), "unix:", 5) == 0);
1303    
1304 gbeauche 1.6 // Init keycode translation
1305     keycode_init();
1306    
1307 gbeauche 1.8 // Read frame skip prefs
1308     frame_skip = PrefsFindInt32("frameskip");
1309     if (frame_skip == 0)
1310     frame_skip = 1;
1311    
1312     // Read mouse wheel prefs
1313     mouse_wheel_mode = PrefsFindInt32("mousewheelmode");
1314     mouse_wheel_lines = PrefsFindInt32("mousewheellines");
1315    
1316 cebix 1.1 // Init variables
1317     private_data = NULL;
1318     video_activated = true;
1319    
1320     // Find screen and root window
1321     screen = XDefaultScreen(x_display);
1322     rootwin = XRootWindow(x_display, screen);
1323    
1324 gbeauche 1.13 // Get sorted list of available depths
1325     avail_depths = XListDepths(x_display, screen, &num_depths);
1326     if (avail_depths == NULL) {
1327     ErrorAlert(GetString(STR_UNSUPP_DEPTH_ERR));
1328     return false;
1329     }
1330     sort(avail_depths, avail_depths + num_depths);
1331    
1332 cebix 1.1 // Get screen depth
1333     xdepth = DefaultDepth(x_display, screen);
1334    
1335     #ifdef ENABLE_XF86_DGA
1336     // DGA available?
1337     int event_base, error_base;
1338 gbeauche 1.38 is_fbdev_dga_mode = false;
1339 gbeauche 1.4 if (local_X11 && XF86DGAQueryExtension(x_display, &event_base, &error_base)) {
1340 cebix 1.1 int dga_flags = 0;
1341     XF86DGAQueryDirectVideo(x_display, screen, &dga_flags);
1342     has_dga = dga_flags & XF86DGADirectPresent;
1343 gbeauche 1.38 #if defined(__linux__)
1344     // Check r/w permission on /dev/mem for DGA mode to work
1345     if (has_dga && access("/dev/mem", R_OK | W_OK) != 0)
1346     has_dga = false;
1347     #endif
1348 cebix 1.1 } else
1349     has_dga = false;
1350     #endif
1351    
1352     #ifdef ENABLE_XF86_VIDMODE
1353     // VidMode available?
1354     int vm_event_base, vm_error_base;
1355     has_vidmode = XF86VidModeQueryExtension(x_display, &vm_event_base, &vm_error_base);
1356     if (has_vidmode)
1357     XF86VidModeGetAllModeLines(x_display, screen, &num_x_video_modes, &x_video_modes);
1358     #endif
1359    
1360 gbeauche 1.38 #ifdef ENABLE_FBDEV_DGA
1361     // FBDev available?
1362     if (!has_dga && local_X11) {
1363     if ((fb_dev_fd = open("/dev/fb0", O_RDWR)) > 0) {
1364     if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo) != 0)
1365     close(fb_dev_fd);
1366     else {
1367     has_dga = true;
1368     is_fbdev_dga_mode = true;
1369     fb_orig_vinfo = fb_vinfo;
1370     D(bug("Frame buffer device initial resolution: %dx%dx%d\n", fb_vinfo.xres, fb_vinfo.yres, fb_vinfo.bits_per_pixel));
1371     }
1372     }
1373     }
1374     #endif
1375    
1376 cebix 1.1 // Find black and white colors
1377     XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:00/00/00", &black);
1378     XAllocColor(x_display, DefaultColormap(x_display, screen), &black);
1379     XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:ff/ff/ff", &white);
1380     XAllocColor(x_display, DefaultColormap(x_display, screen), &white);
1381     black_pixel = BlackPixel(x_display, screen);
1382     white_pixel = WhitePixel(x_display, screen);
1383    
1384     // Mac screen depth follows X depth (for now)
1385 gbeauche 1.13 int default_mode = APPLE_8_BIT;
1386     switch (DefaultDepth(x_display, screen)) {
1387     case 1:
1388     default_mode = APPLE_1_BIT;
1389     break;
1390     case 8:
1391     default_mode = APPLE_8_BIT;
1392     break;
1393     case 15: case 16:
1394     default_mode = APPLE_16_BIT;
1395     break;
1396     case 24: case 32:
1397     default_mode = APPLE_32_BIT;
1398     break;
1399 cebix 1.1 }
1400    
1401 gbeauche 1.37 // Get screen mode from preferences
1402     const char *mode_str = PrefsFindString("screen");
1403     int default_width = 640, default_height = 480;
1404     if (mode_str) {
1405     display_type = DIS_INVALID;
1406     if (sscanf(mode_str, "win/%d/%d", &default_width, &default_height) == 2)
1407     display_type = DIS_WINDOW;
1408     #ifdef ENABLE_XF86_DGA
1409     else if (has_dga && sscanf(mode_str, "dga/%d/%d", &default_width, &default_height) == 2)
1410     display_type = DIS_SCREEN;
1411     #endif
1412     if (display_type == DIS_INVALID) {
1413     D(bug("Invalid screen mode specified, defaulting to old modes selection\n"));
1414     mode_str = NULL;
1415     }
1416     else {
1417     if (default_width <= 0)
1418     default_width = DisplayWidth(x_display, screen);
1419     else if (default_width > DisplayWidth(x_display, screen))
1420     default_width = DisplayWidth(x_display, screen);
1421     if (default_height <= 0)
1422     default_height = DisplayHeight(x_display, screen);
1423     else if (default_height > DisplayHeight(x_display, screen))
1424     default_height = DisplayHeight(x_display, screen);
1425     }
1426     }
1427    
1428 cebix 1.1 // Construct video mode table
1429     uint32 window_modes = PrefsFindInt32("windowmodes");
1430     uint32 screen_modes = PrefsFindInt32("screenmodes");
1431     if (!has_dga)
1432     screen_modes = 0;
1433 gbeauche 1.37 if (mode_str)
1434     window_modes = screen_modes = 0;
1435     else if (window_modes == 0 && screen_modes == 0)
1436 cebix 1.1 window_modes |= 3; // Allow at least 640x480 and 800x600 window modes
1437    
1438     VideoInfo *p = VModes;
1439 gbeauche 1.37 if (mode_str) {
1440     if (display_type == DIS_WINDOW) {
1441     for (unsigned int d = APPLE_1_BIT; d <= APPLE_32_BIT; d++) {
1442     if (find_visual_for_depth(d)) {
1443     if (default_width > 640 && default_height > 480)
1444     add_mode(p, 3, 1, d, APPLE_W_640x480, DIS_WINDOW);
1445     if (default_width > 800 && default_height > 600)
1446     add_mode(p, 3, 2, d, APPLE_W_800x600, DIS_WINDOW);
1447     add_custom_mode(p, display_type, default_width, default_height, d, APPLE_CUSTOM);
1448     }
1449     }
1450     } else
1451     add_custom_mode(p, display_type, default_width, default_height, default_mode, APPLE_CUSTOM);
1452     } else if (window_modes) {
1453     for (unsigned int d = APPLE_1_BIT; d <= APPLE_32_BIT; d++)
1454     if (find_visual_for_depth(d))
1455     add_window_modes(p, window_modes, d);
1456     } else if (has_vidmode) {
1457 cebix 1.1 if (has_mode(640, 480))
1458 gbeauche 1.13 add_mode(p, screen_modes, 1, default_mode, APPLE_640x480, DIS_SCREEN);
1459 cebix 1.1 if (has_mode(800, 600))
1460 gbeauche 1.13 add_mode(p, screen_modes, 2, default_mode, APPLE_800x600, DIS_SCREEN);
1461 cebix 1.1 if (has_mode(1024, 768))
1462 gbeauche 1.13 add_mode(p, screen_modes, 4, default_mode, APPLE_1024x768, DIS_SCREEN);
1463 gbeauche 1.15 if (has_mode(1152, 768))
1464     add_mode(p, screen_modes, 64, default_mode, APPLE_1152x768, DIS_SCREEN);
1465 cebix 1.1 if (has_mode(1152, 900))
1466 gbeauche 1.13 add_mode(p, screen_modes, 8, default_mode, APPLE_1152x900, DIS_SCREEN);
1467 cebix 1.1 if (has_mode(1280, 1024))
1468 gbeauche 1.13 add_mode(p, screen_modes, 16, default_mode, APPLE_1280x1024, DIS_SCREEN);
1469 cebix 1.1 if (has_mode(1600, 1200))
1470 gbeauche 1.13 add_mode(p, screen_modes, 32, default_mode, APPLE_1600x1200, DIS_SCREEN);
1471 cebix 1.1 } else if (screen_modes) {
1472     int xsize = DisplayWidth(x_display, screen);
1473     int ysize = DisplayHeight(x_display, screen);
1474 gbeauche 1.15 int apple_id = find_apple_resolution(xsize, ysize);
1475 cebix 1.1 p->viType = DIS_SCREEN;
1476     p->viRowBytes = 0;
1477     p->viXsize = xsize;
1478     p->viYsize = ysize;
1479 gbeauche 1.13 p->viAppleMode = default_mode;
1480 cebix 1.1 p->viAppleID = apple_id;
1481     p++;
1482     }
1483     p->viType = DIS_INVALID; // End marker
1484     p->viRowBytes = 0;
1485     p->viXsize = p->viYsize = 0;
1486     p->viAppleMode = 0;
1487     p->viAppleID = 0;
1488    
1489 gbeauche 1.13 // Find default mode (window 640x480)
1490     cur_mode = -1;
1491 gbeauche 1.15 if (has_dga && screen_modes) {
1492     int screen_width = DisplayWidth(x_display, screen);
1493     int screen_height = DisplayHeight(x_display, screen);
1494     int apple_id = find_apple_resolution(screen_width, screen_height);
1495     if (apple_id != -1)
1496     cur_mode = find_mode(default_mode, apple_id, DIS_SCREEN);
1497 gbeauche 1.37 } else if (has_dga && mode_str)
1498     cur_mode = find_mode(default_mode, APPLE_CUSTOM, DIS_SCREEN);
1499    
1500 gbeauche 1.25 if (cur_mode == -1) {
1501     // pick up first windowed mode available
1502     for (VideoInfo *p = VModes; p->viType != DIS_INVALID; p++) {
1503     if (p->viType == DIS_WINDOW && p->viAppleMode == default_mode) {
1504     cur_mode = p - VModes;
1505     break;
1506     }
1507     }
1508     }
1509 gbeauche 1.13 assert(cur_mode != -1);
1510    
1511     #if DEBUG
1512     D(bug("Available video modes:\n"));
1513     for (p = VModes; p->viType != DIS_INVALID; p++) {
1514     int bits = depth_of_video_mode(p->viAppleMode);
1515     D(bug(" %dx%d (ID %02x), %d colors\n", p->viXsize, p->viYsize, p->viAppleID, 1 << bits));
1516     }
1517     #endif
1518    
1519 cebix 1.1 // Open window/screen
1520     if (!open_display())
1521     return false;
1522    
1523     #if 0
1524     // Ignore errors from now on
1525     XSetErrorHandler(ignore_errors);
1526     #endif
1527    
1528 gbeauche 1.38 // Lock down frame buffer
1529     XSync(x_display, false);
1530     LOCK_FRAME_BUFFER;
1531    
1532 cebix 1.1 // Start periodic thread
1533     XSync(x_display, false);
1534 gbeauche 1.15 Set_pthread_attr(&redraw_thread_attr, 0);
1535 gbeauche 1.28 redraw_thread_cancel = false;
1536 gbeauche 1.15 redraw_thread_active = (pthread_create(&redraw_thread, &redraw_thread_attr, redraw_func, NULL) == 0);
1537 cebix 1.1 D(bug("Redraw thread installed (%ld)\n", redraw_thread));
1538     return true;
1539     }
1540    
1541    
1542     /*
1543     * Deinitialization
1544     */
1545    
1546     void VideoExit(void)
1547     {
1548     // Stop redraw thread
1549     if (redraw_thread_active) {
1550 gbeauche 1.28 redraw_thread_cancel = true;
1551 cebix 1.1 pthread_cancel(redraw_thread);
1552     pthread_join(redraw_thread, NULL);
1553     redraw_thread_active = false;
1554     }
1555    
1556 gbeauche 1.38 // Unlock frame buffer
1557     UNLOCK_FRAME_BUFFER;
1558     XSync(x_display, false);
1559     D(bug(" frame buffer unlocked\n"));
1560    
1561 gbeauche 1.3 #ifdef ENABLE_VOSF
1562     if (use_vosf) {
1563     // Deinitialize VOSF
1564     video_vosf_exit();
1565     }
1566     #endif
1567    
1568 cebix 1.1 // Close window and server connection
1569     if (x_display != NULL) {
1570     XSync(x_display, false);
1571     close_display();
1572     XFlush(x_display);
1573     XSync(x_display, false);
1574     }
1575 gbeauche 1.38
1576     #ifdef ENABLE_FBDEV_DGA
1577     // Close framebuffer device
1578     if (fb_dev_fd >= 0) {
1579     close(fb_dev_fd);
1580     fb_dev_fd = -1;
1581     }
1582     #endif
1583 cebix 1.1 }
1584    
1585    
1586     /*
1587     * Suspend/resume emulator
1588     */
1589    
1590     static void suspend_emul(void)
1591     {
1592     if (display_type == DIS_SCREEN) {
1593     // Release ctrl key
1594     ADBKeyUp(0x36);
1595     ctrl_down = false;
1596    
1597 gbeauche 1.38 // Lock frame buffer (this will stop the MacOS thread)
1598     LOCK_FRAME_BUFFER;
1599 cebix 1.1
1600     // Save frame buffer
1601     fb_save = malloc(VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1602     if (fb_save)
1603 gbeauche 1.33 Mac2Host_memcpy(fb_save, screen_base, VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1604 cebix 1.1
1605     // Close full screen display
1606 gbeauche 1.38 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
1607 cebix 1.1 #ifdef ENABLE_XF86_DGA
1608 gbeauche 1.38 if (!is_fbdev_dga_mode)
1609     XF86DGADirectVideo(x_display, screen, 0);
1610     #endif
1611 cebix 1.1 XUngrabPointer(x_display, CurrentTime);
1612     XUngrabKeyboard(x_display, CurrentTime);
1613     #endif
1614 gbeauche 1.38 restore_mouse_accel();
1615     XUnmapWindow(x_display, the_win);
1616     wait_unmapped(the_win);
1617 cebix 1.1 XSync(x_display, false);
1618    
1619     // Open "suspend" window
1620     XSetWindowAttributes wattr;
1621     wattr.event_mask = KeyPressMask;
1622 gbeauche 1.38 wattr.background_pixel = (vis == DefaultVisual(x_display, screen) ? black_pixel : 0);
1623 cebix 1.1 wattr.backing_store = Always;
1624 gbeauche 1.38 wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
1625    
1626 cebix 1.1 suspend_win = XCreateWindow(x_display, rootwin, 0, 0, 512, 1, 0, xdepth,
1627 gbeauche 1.38 InputOutput, vis, CWEventMask | CWBackPixel | CWBackingStore | CWColormap, &wattr);
1628     set_window_name(suspend_win, STR_SUSPEND_WINDOW_TITLE);
1629     set_window_focus(suspend_win);
1630     XMapWindow(x_display, suspend_win);
1631     emul_suspended = true;
1632 cebix 1.1 }
1633     }
1634    
1635     static void resume_emul(void)
1636     {
1637     // Close "suspend" window
1638     XDestroyWindow(x_display, suspend_win);
1639     XSync(x_display, false);
1640    
1641     // Reopen full screen display
1642 gbeauche 1.38 XMapRaised(x_display, the_win);
1643     wait_mapped(the_win);
1644     XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
1645     Window w = is_fbdev_dga_mode ? the_win : rootwin;
1646     XGrabKeyboard(x_display, w, True, GrabModeAsync, GrabModeAsync, CurrentTime);
1647     XGrabPointer(x_display, w, True, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
1648     disable_mouse_accel();
1649 gbeauche 1.12 #ifdef ENABLE_XF86_DGA
1650 gbeauche 1.38 if (!is_fbdev_dga_mode) {
1651     XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
1652     XF86DGASetViewPort(x_display, screen, 0, 0);
1653     }
1654 gbeauche 1.12 #endif
1655 cebix 1.1 XSync(x_display, false);
1656    
1657 gbeauche 1.3 // the_buffer already contains the data to restore. i.e. since a temporary
1658     // frame buffer is used when VOSF is actually used, fb_save is therefore
1659     // not necessary.
1660     #ifdef ENABLE_VOSF
1661     if (use_vosf) {
1662     LOCK_VOSF;
1663     PFLAG_SET_ALL;
1664     UNLOCK_VOSF;
1665     memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
1666     }
1667     #endif
1668    
1669 cebix 1.1 // Restore frame buffer
1670     if (fb_save) {
1671 gbeauche 1.3 #ifdef ENABLE_VOSF
1672     // Don't copy fb_save to the temporary frame buffer in VOSF mode
1673     if (!use_vosf)
1674     #endif
1675 gbeauche 1.33 Host2Mac_memcpy(screen_base, fb_save, VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1676 cebix 1.1 free(fb_save);
1677     fb_save = NULL;
1678     }
1679     if (depth == 8)
1680     palette_changed = true;
1681    
1682 gbeauche 1.38 // Unlock frame buffer (and continue MacOS thread)
1683     UNLOCK_FRAME_BUFFER;
1684 cebix 1.1 emul_suspended = false;
1685     }
1686    
1687    
1688     /*
1689     * Close screen in full-screen mode
1690     */
1691    
1692     void VideoQuitFullScreen(void)
1693     {
1694     D(bug("VideoQuitFullScreen()\n"));
1695     if (display_type == DIS_SCREEN) {
1696     quit_full_screen = true;
1697     while (!quit_full_screen_ack) ;
1698     }
1699     }
1700    
1701    
1702     /*
1703     * X11 event handling
1704     */
1705    
1706     // Translate key event to Mac keycode
1707     static int kc_decode(KeySym ks)
1708     {
1709     switch (ks) {
1710     case XK_A: case XK_a: return 0x00;
1711     case XK_B: case XK_b: return 0x0b;
1712     case XK_C: case XK_c: return 0x08;
1713     case XK_D: case XK_d: return 0x02;
1714     case XK_E: case XK_e: return 0x0e;
1715     case XK_F: case XK_f: return 0x03;
1716     case XK_G: case XK_g: return 0x05;
1717     case XK_H: case XK_h: return 0x04;
1718     case XK_I: case XK_i: return 0x22;
1719     case XK_J: case XK_j: return 0x26;
1720     case XK_K: case XK_k: return 0x28;
1721     case XK_L: case XK_l: return 0x25;
1722     case XK_M: case XK_m: return 0x2e;
1723     case XK_N: case XK_n: return 0x2d;
1724     case XK_O: case XK_o: return 0x1f;
1725     case XK_P: case XK_p: return 0x23;
1726     case XK_Q: case XK_q: return 0x0c;
1727     case XK_R: case XK_r: return 0x0f;
1728     case XK_S: case XK_s: return 0x01;
1729     case XK_T: case XK_t: return 0x11;
1730     case XK_U: case XK_u: return 0x20;
1731     case XK_V: case XK_v: return 0x09;
1732     case XK_W: case XK_w: return 0x0d;
1733     case XK_X: case XK_x: return 0x07;
1734     case XK_Y: case XK_y: return 0x10;
1735     case XK_Z: case XK_z: return 0x06;
1736    
1737     case XK_1: case XK_exclam: return 0x12;
1738     case XK_2: case XK_at: return 0x13;
1739     case XK_3: case XK_numbersign: return 0x14;
1740     case XK_4: case XK_dollar: return 0x15;
1741     case XK_5: case XK_percent: return 0x17;
1742     case XK_6: return 0x16;
1743     case XK_7: return 0x1a;
1744     case XK_8: return 0x1c;
1745     case XK_9: return 0x19;
1746     case XK_0: return 0x1d;
1747    
1748     case XK_grave: case XK_asciitilde: return 0x0a;
1749     case XK_minus: case XK_underscore: return 0x1b;
1750     case XK_equal: case XK_plus: return 0x18;
1751     case XK_bracketleft: case XK_braceleft: return 0x21;
1752     case XK_bracketright: case XK_braceright: return 0x1e;
1753     case XK_backslash: case XK_bar: return 0x2a;
1754     case XK_semicolon: case XK_colon: return 0x29;
1755     case XK_apostrophe: case XK_quotedbl: return 0x27;
1756     case XK_comma: case XK_less: return 0x2b;
1757     case XK_period: case XK_greater: return 0x2f;
1758     case XK_slash: case XK_question: return 0x2c;
1759    
1760     case XK_Tab: if (ctrl_down) {suspend_emul(); return -1;} else return 0x30;
1761     case XK_Return: return 0x24;
1762     case XK_space: return 0x31;
1763     case XK_BackSpace: return 0x33;
1764    
1765     case XK_Delete: return 0x75;
1766     case XK_Insert: return 0x72;
1767     case XK_Home: case XK_Help: return 0x73;
1768     case XK_End: return 0x77;
1769     #ifdef __hpux
1770     case XK_Prior: return 0x74;
1771     case XK_Next: return 0x79;
1772     #else
1773     case XK_Page_Up: return 0x74;
1774     case XK_Page_Down: return 0x79;
1775     #endif
1776    
1777     case XK_Control_L: return 0x36;
1778     case XK_Control_R: return 0x36;
1779     case XK_Shift_L: return 0x38;
1780     case XK_Shift_R: return 0x38;
1781     case XK_Alt_L: return 0x37;
1782     case XK_Alt_R: return 0x37;
1783     case XK_Meta_L: return 0x3a;
1784     case XK_Meta_R: return 0x3a;
1785     case XK_Menu: return 0x32;
1786     case XK_Caps_Lock: return 0x39;
1787     case XK_Num_Lock: return 0x47;
1788    
1789     case XK_Up: return 0x3e;
1790     case XK_Down: return 0x3d;
1791     case XK_Left: return 0x3b;
1792     case XK_Right: return 0x3c;
1793    
1794     case XK_Escape: if (ctrl_down) {quit_full_screen = true; emerg_quit = true; return -1;} else return 0x35;
1795    
1796     case XK_F1: if (ctrl_down) {SysMountFirstFloppy(); return -1;} else return 0x7a;
1797     case XK_F2: return 0x78;
1798     case XK_F3: return 0x63;
1799     case XK_F4: return 0x76;
1800     case XK_F5: return 0x60;
1801     case XK_F6: return 0x61;
1802     case XK_F7: return 0x62;
1803     case XK_F8: return 0x64;
1804     case XK_F9: return 0x65;
1805     case XK_F10: return 0x6d;
1806     case XK_F11: return 0x67;
1807     case XK_F12: return 0x6f;
1808    
1809     case XK_Print: return 0x69;
1810     case XK_Scroll_Lock: return 0x6b;
1811     case XK_Pause: return 0x71;
1812    
1813     #if defined(XK_KP_Prior) && defined(XK_KP_Left) && defined(XK_KP_Insert) && defined (XK_KP_End)
1814     case XK_KP_0: case XK_KP_Insert: return 0x52;
1815     case XK_KP_1: case XK_KP_End: return 0x53;
1816     case XK_KP_2: case XK_KP_Down: return 0x54;
1817     case XK_KP_3: case XK_KP_Next: return 0x55;
1818     case XK_KP_4: case XK_KP_Left: return 0x56;
1819     case XK_KP_5: case XK_KP_Begin: return 0x57;
1820     case XK_KP_6: case XK_KP_Right: return 0x58;
1821     case XK_KP_7: case XK_KP_Home: return 0x59;
1822     case XK_KP_8: case XK_KP_Up: return 0x5b;
1823     case XK_KP_9: case XK_KP_Prior: return 0x5c;
1824     case XK_KP_Decimal: case XK_KP_Delete: return 0x41;
1825     #else
1826     case XK_KP_0: return 0x52;
1827     case XK_KP_1: return 0x53;
1828     case XK_KP_2: return 0x54;
1829     case XK_KP_3: return 0x55;
1830     case XK_KP_4: return 0x56;
1831     case XK_KP_5: return 0x57;
1832     case XK_KP_6: return 0x58;
1833     case XK_KP_7: return 0x59;
1834     case XK_KP_8: return 0x5b;
1835     case XK_KP_9: return 0x5c;
1836     case XK_KP_Decimal: return 0x41;
1837     #endif
1838     case XK_KP_Add: return 0x45;
1839     case XK_KP_Subtract: return 0x4e;
1840     case XK_KP_Multiply: return 0x43;
1841     case XK_KP_Divide: return 0x4b;
1842     case XK_KP_Enter: return 0x4c;
1843     case XK_KP_Equal: return 0x51;
1844     }
1845     return -1;
1846     }
1847    
1848 gbeauche 1.27 static int event2keycode(XKeyEvent &ev, bool key_down)
1849 cebix 1.1 {
1850     KeySym ks;
1851     int i = 0;
1852    
1853     do {
1854 gbeauche 1.6 ks = XLookupKeysym(&ev, i++);
1855 gbeauche 1.27 int as = kc_decode(ks);
1856     if (as >= 0)
1857     return as;
1858     if (as == -2)
1859 cebix 1.1 return as;
1860     } while (ks != NoSymbol);
1861    
1862     return -1;
1863     }
1864    
1865     static void handle_events(void)
1866     {
1867     // Handle events
1868     for (;;) {
1869     XEvent event;
1870    
1871 gbeauche 1.10 XDisplayLock();
1872 gbeauche 1.9 if (!XCheckMaskEvent(x_display, eventmask, &event)) {
1873     // Handle clipboard events
1874     if (XCheckTypedEvent(x_display, SelectionRequest, &event))
1875     ClipboardSelectionRequest(&event.xselectionrequest);
1876     else if (XCheckTypedEvent(x_display, SelectionClear, &event))
1877     ClipboardSelectionClear(&event.xselectionclear);
1878 gbeauche 1.14
1879     // Window "close" widget clicked
1880     else if (XCheckTypedEvent(x_display, ClientMessage, &event)) {
1881     if (event.xclient.format == 32 && event.xclient.data.l[0] == WM_DELETE_WINDOW) {
1882     ADBKeyDown(0x7f); // Power key
1883     ADBKeyUp(0x7f);
1884     }
1885     }
1886 gbeauche 1.10
1887     XDisplayUnlock();
1888 cebix 1.1 break;
1889 gbeauche 1.9 }
1890 gbeauche 1.10 XDisplayUnlock();
1891 cebix 1.1
1892     switch (event.type) {
1893     // Mouse button
1894     case ButtonPress: {
1895     unsigned int button = ((XButtonEvent *)&event)->button;
1896     if (button < 4)
1897     ADBMouseDown(button - 1);
1898 gbeauche 1.8 else if (button < 6) { // Wheel mouse
1899     if (mouse_wheel_mode == 0) {
1900     int key = (button == 5) ? 0x79 : 0x74; // Page up/down
1901     ADBKeyDown(key);
1902     ADBKeyUp(key);
1903     } else {
1904     int key = (button == 5) ? 0x3d : 0x3e; // Cursor up/down
1905     for(int i=0; i<mouse_wheel_lines; i++) {
1906     ADBKeyDown(key);
1907     ADBKeyUp(key);
1908     }
1909     }
1910     }
1911 cebix 1.1 break;
1912     }
1913     case ButtonRelease: {
1914     unsigned int button = ((XButtonEvent *)&event)->button;
1915     if (button < 4)
1916     ADBMouseUp(button - 1);
1917     break;
1918     }
1919    
1920 gbeauche 1.15 // Mouse entered window
1921 cebix 1.1 case EnterNotify:
1922 gbeauche 1.15 if (event.xcrossing.mode != NotifyGrab && event.xcrossing.mode != NotifyUngrab)
1923     ADBMouseMoved(event.xmotion.x, event.xmotion.y);
1924 cebix 1.1 break;
1925 gbeauche 1.15
1926     // Mouse moved
1927 cebix 1.1 case MotionNotify:
1928 gbeauche 1.15 ADBMouseMoved(event.xmotion.x, event.xmotion.y);
1929 cebix 1.1 break;
1930    
1931     // Keyboard
1932     case KeyPress: {
1933 gbeauche 1.27 int code = -1;
1934     if (use_keycodes) {
1935     if (event2keycode(event.xkey, true) != -2) // This is called to process the hotkeys
1936     code = keycode_table[event.xkey.keycode & 0xff];
1937     } else
1938     code = event2keycode(event.xkey, true);
1939     if (code >= 0) {
1940 cebix 1.1 if (!emul_suspended) {
1941 gbeauche 1.27 if (code == 0x39) { // Caps Lock pressed
1942     if (caps_on) {
1943     ADBKeyUp(code);
1944     caps_on = false;
1945     } else {
1946     ADBKeyDown(code);
1947     caps_on = true;
1948     }
1949     } else
1950     ADBKeyDown(code);
1951 cebix 1.1 if (code == 0x36)
1952     ctrl_down = true;
1953     } else {
1954     if (code == 0x31)
1955     resume_emul(); // Space wakes us up
1956     }
1957     }
1958     break;
1959     }
1960     case KeyRelease: {
1961 gbeauche 1.27 int code = -1;
1962     if (use_keycodes) {
1963     if (event2keycode(event.xkey, false) != -2) // This is called to process the hotkeys
1964     code = keycode_table[event.xkey.keycode & 0xff];
1965     } else
1966     code = event2keycode(event.xkey, false);
1967     if (code >= 0 && code != 0x39) { // Don't propagate Caps Lock releases
1968 cebix 1.1 ADBKeyUp(code);
1969     if (code == 0x36)
1970     ctrl_down = false;
1971     }
1972     break;
1973     }
1974    
1975     // Hidden parts exposed, force complete refresh
1976     case Expose:
1977 gbeauche 1.3 #ifdef ENABLE_VOSF
1978     if (use_vosf) { // VOSF refresh
1979     LOCK_VOSF;
1980     PFLAG_SET_ALL;
1981     UNLOCK_VOSF;
1982     }
1983     #endif
1984 cebix 1.1 memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
1985     break;
1986     }
1987     }
1988     }
1989    
1990    
1991     /*
1992     * Execute video VBL routine
1993     */
1994    
1995     void VideoVBL(void)
1996     {
1997     if (emerg_quit)
1998     QuitEmulator();
1999    
2000 gbeauche 1.38 // Temporarily give up frame buffer lock (this is the point where
2001     // we are suspended when the user presses Ctrl-Tab)
2002     UNLOCK_FRAME_BUFFER;
2003     LOCK_FRAME_BUFFER;
2004    
2005 cebix 1.1 // Execute video VBL
2006     if (private_data != NULL && private_data->interruptsEnabled)
2007     VSLDoInterruptService(private_data->vslServiceID);
2008     }
2009    
2010    
2011     /*
2012     * Change video mode
2013     */
2014    
2015     int16 video_mode_change(VidLocals *csSave, uint32 ParamPtr)
2016     {
2017     /* return if no mode change */
2018     if ((csSave->saveData == ReadMacInt32(ParamPtr + csData)) &&
2019     (csSave->saveMode == ReadMacInt16(ParamPtr + csMode))) return noErr;
2020    
2021     /* first find video mode in table */
2022     for (int i=0; VModes[i].viType != DIS_INVALID; i++) {
2023     if ((ReadMacInt16(ParamPtr + csMode) == VModes[i].viAppleMode) &&
2024     (ReadMacInt32(ParamPtr + csData) == VModes[i].viAppleID)) {
2025     csSave->saveMode = ReadMacInt16(ParamPtr + csMode);
2026     csSave->saveData = ReadMacInt32(ParamPtr + csData);
2027     csSave->savePage = ReadMacInt16(ParamPtr + csPage);
2028    
2029     // Disable interrupts and pause redraw thread
2030     DisableInterrupt();
2031     thread_stop_ack = false;
2032     thread_stop_req = true;
2033     while (!thread_stop_ack) ;
2034    
2035     /* close old display */
2036     close_display();
2037    
2038     /* open new display */
2039     cur_mode = i;
2040     bool ok = open_display();
2041    
2042     /* opening the screen failed? Then bail out */
2043     if (!ok) {
2044     ErrorAlert(GetString(STR_FULL_SCREEN_ERR));
2045     QuitEmulator();
2046     }
2047    
2048     WriteMacInt32(ParamPtr + csBaseAddr, screen_base);
2049     csSave->saveBaseAddr=screen_base;
2050     csSave->saveData=VModes[cur_mode].viAppleID;/* First mode ... */
2051     csSave->saveMode=VModes[cur_mode].viAppleMode;
2052    
2053     // Enable interrupts and resume redraw thread
2054     thread_stop_req = false;
2055     EnableInterrupt();
2056     return noErr;
2057     }
2058     }
2059     return paramErr;
2060     }
2061    
2062    
2063     /*
2064     * Set color palette
2065     */
2066    
2067     void video_set_palette(void)
2068     {
2069 gbeauche 1.13 LOCK_PALETTE;
2070    
2071     // Convert colors to XColor array
2072     int mode = get_current_mode();
2073     int num_in = palette_size(mode);
2074     int num_out = 256;
2075     bool stretch = false;
2076     if (IsDirectMode(mode)) {
2077     // If X is in 565 mode we have to stretch the gamma table from 32 to 64 entries
2078     num_out = vis->map_entries;
2079     stretch = true;
2080     }
2081     XColor *p = x_palette;
2082     for (int i=0; i<num_out; i++) {
2083     int c = (stretch ? (i * num_in) / num_out : i);
2084     p->red = mac_pal[c].red * 0x0101;
2085     p->green = mac_pal[c].green * 0x0101;
2086     p->blue = mac_pal[c].blue * 0x0101;
2087     p++;
2088     }
2089    
2090     #ifdef ENABLE_VOSF
2091     // Recalculate pixel color expansion map
2092     if (!IsDirectMode(mode) && xdepth > 8) {
2093     for (int i=0; i<256; i++) {
2094     int c = i & (num_in-1); // If there are less than 256 colors, we repeat the first entries (this makes color expansion easier)
2095     ExpandMap[i] = map_rgb(mac_pal[c].red, mac_pal[c].green, mac_pal[c].blue);
2096     }
2097    
2098     // We have to redraw everything because the interpretation of pixel values changed
2099     LOCK_VOSF;
2100     PFLAG_SET_ALL;
2101     UNLOCK_VOSF;
2102     memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
2103     }
2104     #endif
2105    
2106     // Tell redraw thread to change palette
2107 cebix 1.1 palette_changed = true;
2108 gbeauche 1.13
2109     UNLOCK_PALETTE;
2110 cebix 1.1 }
2111    
2112    
2113     /*
2114 gbeauche 1.21 * Can we set the MacOS cursor image into the window?
2115     */
2116    
2117     bool video_can_change_cursor(void)
2118     {
2119 gbeauche 1.22 return hw_mac_cursor_accl && (display_type != DIS_SCREEN);
2120 gbeauche 1.21 }
2121    
2122    
2123     /*
2124 cebix 1.1 * Set cursor image for window
2125     */
2126    
2127     void video_set_cursor(void)
2128     {
2129     cursor_changed = true;
2130     }
2131    
2132    
2133     /*
2134     * Thread for window refresh, event handling and other periodic actions
2135     */
2136    
2137     static void update_display(void)
2138     {
2139     // Incremental update code
2140     int wide = 0, high = 0, x1, x2, y1, y2, i, j;
2141     int bytes_per_row = VModes[cur_mode].viRowBytes;
2142     int bytes_per_pixel = VModes[cur_mode].viRowBytes / VModes[cur_mode].viXsize;
2143     uint8 *p, *p2;
2144    
2145     // Check for first line from top and first line from bottom that have changed
2146     y1 = 0;
2147     for (j=0; j<VModes[cur_mode].viYsize; j++) {
2148     if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
2149     y1 = j;
2150     break;
2151     }
2152     }
2153     y2 = y1 - 1;
2154     for (j=VModes[cur_mode].viYsize-1; j>=y1; j--) {
2155     if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
2156     y2 = j;
2157     break;
2158     }
2159     }
2160     high = y2 - y1 + 1;
2161    
2162     // Check for first column from left and first column from right that have changed
2163     if (high) {
2164     if (depth == 1) {
2165     x1 = VModes[cur_mode].viXsize;
2166     for (j=y1; j<=y2; j++) {
2167     p = &the_buffer[j * bytes_per_row];
2168     p2 = &the_buffer_copy[j * bytes_per_row];
2169     for (i=0; i<(x1>>3); i++) {
2170     if (*p != *p2) {
2171     x1 = i << 3;
2172     break;
2173     }
2174     p++;
2175     p2++;
2176     }
2177     }
2178     x2 = x1;
2179     for (j=y1; j<=y2; j++) {
2180     p = &the_buffer[j * bytes_per_row];
2181     p2 = &the_buffer_copy[j * bytes_per_row];
2182     p += bytes_per_row;
2183     p2 += bytes_per_row;
2184     for (i=(VModes[cur_mode].viXsize>>3); i>(x2>>3); i--) {
2185     p--;
2186     p2--;
2187     if (*p != *p2) {
2188     x2 = i << 3;
2189     break;
2190     }
2191     }
2192     }
2193     wide = x2 - x1;
2194    
2195     // Update copy of the_buffer
2196     if (high && wide) {
2197     for (j=y1; j<=y2; j++) {
2198     i = j * bytes_per_row + (x1 >> 3);
2199     memcpy(&the_buffer_copy[i], &the_buffer[i], wide >> 3);
2200     }
2201     }
2202    
2203     } else {
2204     x1 = VModes[cur_mode].viXsize;
2205     for (j=y1; j<=y2; j++) {
2206     p = &the_buffer[j * bytes_per_row];
2207     p2 = &the_buffer_copy[j * bytes_per_row];
2208     for (i=0; i<x1; i++) {
2209     if (memcmp(p, p2, bytes_per_pixel)) {
2210     x1 = i;
2211     break;
2212     }
2213     p += bytes_per_pixel;
2214     p2 += bytes_per_pixel;
2215     }
2216     }
2217     x2 = x1;
2218     for (j=y1; j<=y2; j++) {
2219     p = &the_buffer[j * bytes_per_row];
2220     p2 = &the_buffer_copy[j * bytes_per_row];
2221     p += bytes_per_row;
2222     p2 += bytes_per_row;
2223     for (i=VModes[cur_mode].viXsize; i>x2; i--) {
2224     p -= bytes_per_pixel;
2225     p2 -= bytes_per_pixel;
2226     if (memcmp(p, p2, bytes_per_pixel)) {
2227     x2 = i;
2228     break;
2229     }
2230     }
2231     }
2232     wide = x2 - x1;
2233    
2234     // Update copy of the_buffer
2235     if (high && wide) {
2236     for (j=y1; j<=y2; j++) {
2237     i = j * bytes_per_row + x1 * bytes_per_pixel;
2238     memcpy(&the_buffer_copy[i], &the_buffer[i], bytes_per_pixel * wide);
2239     }
2240     }
2241     }
2242     }
2243    
2244     // Refresh display
2245     if (high && wide) {
2246 gbeauche 1.10 XDisplayLock();
2247 cebix 1.1 if (have_shm)
2248     XShmPutImage(x_display, the_win, the_gc, img, x1, y1, x1, y1, wide, high, 0);
2249     else
2250     XPutImage(x_display, the_win, the_gc, img, x1, y1, x1, y1, wide, high);
2251 gbeauche 1.10 XDisplayUnlock();
2252 cebix 1.1 }
2253     }
2254    
2255 gbeauche 1.10 const int VIDEO_REFRESH_HZ = 60;
2256     const int VIDEO_REFRESH_DELAY = 1000000 / VIDEO_REFRESH_HZ;
2257    
2258 gbeauche 1.13 static void handle_palette_changes(void)
2259     {
2260     LOCK_PALETTE;
2261    
2262     if (palette_changed && !emul_suspended) {
2263     palette_changed = false;
2264    
2265     int mode = get_current_mode();
2266     if (color_class == PseudoColor || color_class == DirectColor) {
2267     int num = vis->map_entries;
2268     bool set_clut = true;
2269     if (!IsDirectMode(mode) && color_class == DirectColor) {
2270     if (display_type == DIS_WINDOW)
2271     set_clut = false; // Indexed mode on true color screen, don't set CLUT
2272     }
2273    
2274     if (set_clut) {
2275     XDisplayLock();
2276     XStoreColors(x_display, cmap[0], x_palette, num);
2277     XStoreColors(x_display, cmap[1], x_palette, num);
2278     XSync(x_display, false);
2279     XDisplayUnlock();
2280     }
2281     }
2282    
2283     #ifdef ENABLE_XF86_DGA
2284 gbeauche 1.38 if (display_type == DIS_SCREEN && !is_fbdev_dga_mode) {
2285 gbeauche 1.13 current_dga_cmap ^= 1;
2286     if (!IsDirectMode(mode) && cmap[current_dga_cmap])
2287     XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
2288     }
2289     #endif
2290     }
2291    
2292     UNLOCK_PALETTE;
2293     }
2294    
2295 cebix 1.1 static void *redraw_func(void *arg)
2296     {
2297 gbeauche 1.10 int fd = ConnectionNumber(x_display);
2298    
2299     uint64 start = GetTicks_usec();
2300     int64 ticks = 0;
2301     uint64 next = GetTicks_usec() + VIDEO_REFRESH_DELAY;
2302 cebix 1.1
2303 gbeauche 1.28 while (!redraw_thread_cancel) {
2304 cebix 1.1
2305     // Pause if requested (during video mode switches)
2306     while (thread_stop_req)
2307     thread_stop_ack = true;
2308    
2309 gbeauche 1.10 int64 delay = next - GetTicks_usec();
2310     if (delay < -VIDEO_REFRESH_DELAY) {
2311    
2312     // We are lagging far behind, so we reset the delay mechanism
2313     next = GetTicks_usec();
2314 cebix 1.1
2315 gbeauche 1.10 } else if (delay <= 0) {
2316    
2317     // Delay expired, refresh display
2318     next += VIDEO_REFRESH_DELAY;
2319     ticks++;
2320    
2321     // Handle X11 events
2322     handle_events();
2323    
2324     // Quit DGA mode if requested
2325     if (quit_full_screen) {
2326     quit_full_screen = false;
2327     if (display_type == DIS_SCREEN) {
2328     XDisplayLock();
2329 gbeauche 1.38 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
2330 cebix 1.1 #ifdef ENABLE_XF86_DGA
2331 gbeauche 1.38 if (is_fbdev_dga_mode)
2332     XF86DGADirectVideo(x_display, screen, 0);
2333     #endif
2334 gbeauche 1.10 XUngrabPointer(x_display, CurrentTime);
2335     XUngrabKeyboard(x_display, CurrentTime);
2336 gbeauche 1.15 XUnmapWindow(x_display, the_win);
2337     wait_unmapped(the_win);
2338     XDestroyWindow(x_display, the_win);
2339 gbeauche 1.10 #endif
2340     XSync(x_display, false);
2341     XDisplayUnlock();
2342     quit_full_screen_ack = true;
2343     return NULL;
2344     }
2345 cebix 1.1 }
2346    
2347 gbeauche 1.10 // Refresh display and set cursor image in window mode
2348     static int tick_counter = 0;
2349     if (display_type == DIS_WINDOW) {
2350     tick_counter++;
2351     if (tick_counter >= frame_skip) {
2352     tick_counter = 0;
2353 cebix 1.1
2354 gbeauche 1.10 // Update display
2355 gbeauche 1.3 #ifdef ENABLE_VOSF
2356 gbeauche 1.10 if (use_vosf) {
2357     XDisplayLock();
2358     if (mainBuffer.dirty) {
2359     LOCK_VOSF;
2360     update_display_window_vosf();
2361     UNLOCK_VOSF;
2362     XSync(x_display, false); // Let the server catch up
2363     }
2364     XDisplayUnlock();
2365 gbeauche 1.3 }
2366 gbeauche 1.10 else
2367 gbeauche 1.3 #endif
2368 gbeauche 1.10 update_display();
2369 cebix 1.1
2370 gbeauche 1.10 // Set new cursor image if it was changed
2371 gbeauche 1.22 if (hw_mac_cursor_accl && cursor_changed) {
2372 gbeauche 1.10 cursor_changed = false;
2373 gbeauche 1.31 uint8 *x_data = (uint8 *)cursor_image->data;
2374     uint8 *x_mask = (uint8 *)cursor_mask_image->data;
2375     for (int i = 0; i < 32; i++) {
2376     x_mask[i] = MacCursor[4 + i] | MacCursor[36 + i];
2377     x_data[i] = MacCursor[4 + i];
2378     }
2379 gbeauche 1.10 XDisplayLock();
2380     XFreeCursor(x_display, mac_cursor);
2381     XPutImage(x_display, cursor_map, cursor_gc, cursor_image, 0, 0, 0, 0, 16, 16);
2382     XPutImage(x_display, cursor_mask_map, cursor_mask_gc, cursor_mask_image, 0, 0, 0, 0, 16, 16);
2383     mac_cursor = XCreatePixmapCursor(x_display, cursor_map, cursor_mask_map, &black, &white, MacCursor[2], MacCursor[3]);
2384     XDefineCursor(x_display, the_win, mac_cursor);
2385     XDisplayUnlock();
2386     }
2387 cebix 1.1 }
2388     }
2389 gbeauche 1.3 #ifdef ENABLE_VOSF
2390 gbeauche 1.10 else if (use_vosf) {
2391     // Update display (VOSF variant)
2392     if (++tick_counter >= frame_skip) {
2393     tick_counter = 0;
2394     if (mainBuffer.dirty) {
2395     LOCK_VOSF;
2396     update_display_dga_vosf();
2397     UNLOCK_VOSF;
2398     }
2399 gbeauche 1.3 }
2400     }
2401     #endif
2402 cebix 1.1
2403 gbeauche 1.10 // Set new palette if it was changed
2404 gbeauche 1.13 handle_palette_changes();
2405 gbeauche 1.10
2406     } else {
2407    
2408     // No display refresh pending, check for X events
2409     fd_set readfds;
2410     FD_ZERO(&readfds);
2411     FD_SET(fd, &readfds);
2412     struct timeval timeout;
2413     timeout.tv_sec = 0;
2414     timeout.tv_usec = delay;
2415     if (select(fd+1, &readfds, NULL, NULL, &timeout) > 0)
2416     handle_events();
2417 cebix 1.1 }
2418     }
2419     return NULL;
2420     }