ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/video_x.cpp
Revision: 1.42
Committed: 2005-05-12T11:20:00Z (19 years, 4 months ago) by gbeauche
Branch: MAIN
Changes since 1.41: +138 -53 lines
Log Message:
- Sync with latest B2 video_vosf.h updates.
- Enable VidMode extension with FBDev DGA graphics.
- Factor out FBDev/XF86 DGA code.
- Fix pointer grab in fbdev DGA mode, thus fixing scrolling screens in
  lower VidModes.
- Only select VidModes that match the requested resolutions, exactly.
- Fix VideoQuitFullScreen() in non FBDev mode.

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 gbeauche 1.42 the_buffer_size = page_extend((aligned_height + 2) * img->bytes_per_line);
581 gbeauche 1.3 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.42 // Open FBDev DGA display
637     static bool open_fbdev_dga(int width, int height)
638 gbeauche 1.38 {
639     #ifdef ENABLE_FBDEV_DGA
640 gbeauche 1.42 #ifdef ENABLE_XF86_VIDMODE
641     // Switch to best mode
642     if (has_vidmode) {
643     int best = -1;
644     for (int i = 0; i < num_x_video_modes; i++) {
645     if (x_video_modes[i]->hdisplay == width && x_video_modes[i]->vdisplay == height) {
646     best = i;
647     break;
648     }
649     };
650     assert(best != -1);
651     XF86VidModeSwitchToMode(x_display, screen, x_video_modes[best]);
652     XF86VidModeSetViewPort(x_display, screen, 0, 0);
653     D(bug("[fbdev] VideoMode %d: %d x %d @ %d\n", best,
654     x_video_modes[best]->hdisplay, x_video_modes[best]->vdisplay,
655     1000 * x_video_modes[best]->dotclock / (x_video_modes[best]->htotal * x_video_modes[best]->vtotal)));
656     }
657     #endif
658    
659 gbeauche 1.38 if (ioctl(fb_dev_fd, FBIOGET_FSCREENINFO, &fb_finfo) != 0) {
660     D(bug("[fbdev] Can't get FSCREENINFO: %s\n", strerror(errno)));
661     return false;
662     }
663     D(bug("[fbdev] Device ID: %s\n", fb_finfo.id));
664     D(bug("[fbdev] smem_start: %p [%d bytes]\n", fb_finfo.smem_start, fb_finfo.smem_len));
665 gbeauche 1.40
666 gbeauche 1.38 int fb_type = fb_finfo.type;
667     const char *fb_type_str = NULL;
668     switch (fb_type) {
669     case FB_TYPE_PACKED_PIXELS: fb_type_str = "Packed Pixels"; break;
670     case FB_TYPE_PLANES: fb_type_str = "Non interleaved planes"; break;
671     case FB_TYPE_INTERLEAVED_PLANES: fb_type_str = "Interleaved planes"; break;
672     case FB_TYPE_TEXT: fb_type_str = "Text/attributes"; break;
673     case FB_TYPE_VGA_PLANES: fb_type_str = "EGA/VGA planes"; break;
674     default: fb_type_str = "<unknown>"; break;
675     }
676     D(bug("[fbdev] type: %s\n", fb_type_str));
677 gbeauche 1.40
678     if (fb_type != FB_TYPE_PACKED_PIXELS) {
679     D(bug("[fbdev] type '%s' not supported\n", fb_type_str));
680     return false;
681     }
682    
683 gbeauche 1.38 int fb_visual = fb_finfo.visual;
684     const char *fb_visual_str;
685     switch (fb_visual) {
686     case FB_VISUAL_MONO01: fb_visual_str = "Monochrome 1=Black 0=White"; break;
687     case FB_VISUAL_MONO10: fb_visual_str = "Monochrome 1=While 0=Black"; break;
688     case FB_VISUAL_TRUECOLOR: fb_visual_str = "True color"; break;
689     case FB_VISUAL_PSEUDOCOLOR: fb_visual_str = "Pseudo color (like atari)"; break;
690     case FB_VISUAL_DIRECTCOLOR: fb_visual_str = "Direct color"; break;
691     case FB_VISUAL_STATIC_PSEUDOCOLOR: fb_visual_str = "Pseudo color readonly"; break;
692     default: fb_visual_str = "<unknown>"; break;
693     }
694     D(bug("[fbdev] visual: %s\n", fb_visual_str));
695    
696 gbeauche 1.40 if (fb_visual != FB_VISUAL_TRUECOLOR) {
697     D(bug("[fbdev] visual '%s' not supported\n", fb_visual_str));
698 gbeauche 1.38 return false;
699     }
700    
701     // Map frame buffer
702     the_buffer = (uint8 *)mmap(NULL, fb_finfo.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fb_dev_fd, 0);
703     if (the_buffer == MAP_FAILED) {
704     D(bug("[fbdev] Can't mmap /dev/fb0: %s\n", strerror(errno)));
705     return false;
706     }
707    
708     // Set absolute mouse mode
709     ADBSetRelMouseMode(false);
710    
711     // Create window
712     XSetWindowAttributes wattr;
713     wattr.event_mask = eventmask = dga_eventmask;
714     wattr.override_redirect = True;
715     the_win = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
716 gbeauche 1.40 InputOutput, DefaultVisual(x_display, screen),
717     CWEventMask | CWOverrideRedirect, &wattr);
718 gbeauche 1.38
719     // Show window
720     XMapRaised(x_display, the_win);
721     wait_mapped(the_win);
722    
723     // Grab mouse and keyboard
724     XGrabKeyboard(x_display, the_win, True,
725     GrabModeAsync, GrabModeAsync, CurrentTime);
726     XGrabPointer(x_display, the_win, True,
727     PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
728 gbeauche 1.42 GrabModeAsync, GrabModeAsync, the_win, None, CurrentTime);
729 gbeauche 1.38 disable_mouse_accel();
730    
731     // Create no_cursor
732     mac_cursor = XCreatePixmapCursor(x_display,
733     XCreatePixmap(x_display, the_win, 1, 1, 1),
734     XCreatePixmap(x_display, the_win, 1, 1, 1),
735     &black, &white, 0, 0);
736     XDefineCursor(x_display, the_win, mac_cursor);
737    
738     // Init blitting routines
739 gbeauche 1.42 int bytes_per_row = TrivialBytesPerRow((width + 7) & ~7, DepthModeForPixelDepth(depth));
740 gbeauche 1.38 #if ENABLE_VOSF
741 gbeauche 1.40 // Extract current screen color masks (we are in True Color mode)
742     VisualFormat visualFormat;
743     visualFormat.depth = xdepth = DefaultDepth(x_display, screen);
744     XMatchVisualInfo(x_display, screen, xdepth, TrueColor, &visualInfo);
745     assert(visualFormat.depth == visualInfo.depth);
746     visualFormat.Rmask = visualInfo.red_mask;
747     visualFormat.Gmask = visualInfo.green_mask;
748     visualFormat.Bmask = visualInfo.blue_mask;
749     D(bug("[fbdev] %d bpp, (%08x,%08x,%08x)\n",
750     visualFormat.depth,
751     visualFormat.Rmask, visualFormat.Gmask, visualFormat.Bmask));
752     D(bug("[fbdev] Mac depth %d bpp\n", depth));
753    
754     // Screen_blitter_init() returns TRUE if VOSF is mandatory
755     // i.e. the framebuffer update function is not Blit_Copy_Raw
756 gbeauche 1.38 #ifdef WORDS_BIGENDIAN
757 gbeauche 1.40 const bool native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
758 gbeauche 1.38 #else
759 gbeauche 1.40 const bool native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
760 gbeauche 1.38 #endif
761 gbeauche 1.40 Screen_blitter_init(visualFormat, native_byte_order, depth);
762 gbeauche 1.38
763 gbeauche 1.40 // Allocate memory for frame buffer (SIZE is extended to page-boundary)
764 gbeauche 1.41 use_vosf = true;
765 gbeauche 1.40 the_host_buffer = the_buffer;
766 gbeauche 1.42 the_buffer_size = page_extend((height + 2) * bytes_per_row);
767 gbeauche 1.40 the_buffer_copy = (uint8 *)malloc(the_buffer_size);
768     the_buffer = (uint8 *)vm_acquire(the_buffer_size);
769     D(bug("the_buffer = %p, the_buffer_copy = %p, the_host_buffer = %p\n", the_buffer, the_buffer_copy, the_host_buffer));
770 gbeauche 1.38 #endif
771    
772     // Set frame buffer base
773     D(bug("the_buffer = %p, use_vosf = %d\n", the_buffer, use_vosf));
774     screen_base = Host2MacAddr(the_buffer);
775 gbeauche 1.42 VModes[cur_mode].viRowBytes = bytes_per_row;
776 gbeauche 1.38 return true;
777     #else
778     ErrorAlert("SheepShaver has been compiled with DGA support disabled.");
779     return false;
780     #endif
781     }
782    
783 gbeauche 1.42 // Open XF86 DGA display (!! should use X11 VidMode extensions to set mode)
784     static bool open_xf86_dga(int width, int height)
785 cebix 1.1 {
786 gbeauche 1.38 if (is_fbdev_dga_mode)
787     return false;
788    
789 cebix 1.1 #ifdef ENABLE_XF86_DGA
790     // Set relative mouse mode
791     ADBSetRelMouseMode(true);
792    
793 gbeauche 1.15 // Create window
794     XSetWindowAttributes wattr;
795     wattr.event_mask = eventmask = dga_eventmask;
796     wattr.override_redirect = True;
797     wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
798     the_win = XCreateWindow(x_display, rootwin, 0, 0, width, height, 0, xdepth,
799     InputOutput, vis, CWEventMask | CWOverrideRedirect |
800     (color_class == DirectColor ? CWColormap : 0), &wattr);
801    
802     // Show window
803     XMapRaised(x_display, the_win);
804     wait_mapped(the_win);
805    
806 cebix 1.1 #ifdef ENABLE_XF86_VIDMODE
807     // Switch to best mode
808     if (has_vidmode) {
809     int best = 0;
810     for (int i=1; i<num_x_video_modes; i++) {
811     if (x_video_modes[i]->hdisplay >= width && x_video_modes[i]->vdisplay >= height &&
812     x_video_modes[i]->hdisplay <= x_video_modes[best]->hdisplay && x_video_modes[i]->vdisplay <= x_video_modes[best]->vdisplay) {
813     best = i;
814     }
815     }
816     XF86VidModeSwitchToMode(x_display, screen, x_video_modes[best]);
817     XF86VidModeSetViewPort(x_display, screen, 0, 0);
818     }
819     #endif
820    
821     // Establish direct screen connection
822 gbeauche 1.15 XMoveResizeWindow(x_display, the_win, 0, 0, width, height);
823     XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
824 cebix 1.1 XGrabKeyboard(x_display, rootwin, True, GrabModeAsync, GrabModeAsync, CurrentTime);
825     XGrabPointer(x_display, rootwin, True, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
826 gbeauche 1.15
827     int v_width, v_bank, v_size;
828     XF86DGAGetVideo(x_display, screen, (char **)&the_buffer, &v_width, &v_bank, &v_size);
829 cebix 1.1 XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
830     XF86DGASetViewPort(x_display, screen, 0, 0);
831     XF86DGASetVidPage(x_display, screen, 0);
832    
833     // Set colormap
834 gbeauche 1.15 if (!IsDirectMode(get_current_mode())) {
835     XSetWindowColormap(x_display, the_win, cmap[current_dga_cmap = 0]);
836 cebix 1.1 XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
837 gbeauche 1.15 }
838     XSync(x_display, false);
839 cebix 1.1
840 gbeauche 1.15 // Init blitting routines
841     int bytes_per_row = TrivialBytesPerRow((v_width + 7) & ~7, DepthModeForPixelDepth(depth));
842 gbeauche 1.3 #if ENABLE_VOSF
843     bool native_byte_order;
844     #ifdef WORDS_BIGENDIAN
845     native_byte_order = (XImageByteOrder(x_display) == MSBFirst);
846     #else
847     native_byte_order = (XImageByteOrder(x_display) == LSBFirst);
848     #endif
849     #if REAL_ADDRESSING || DIRECT_ADDRESSING
850     // Screen_blitter_init() returns TRUE if VOSF is mandatory
851     // i.e. the framebuffer update function is not Blit_Copy_Raw
852 gbeauche 1.30 use_vosf = Screen_blitter_init(visualFormat, native_byte_order, depth);
853 gbeauche 1.3
854     if (use_vosf) {
855     // Allocate memory for frame buffer (SIZE is extended to page-boundary)
856     the_host_buffer = the_buffer;
857 gbeauche 1.42 the_buffer_size = page_extend((height + 2) * bytes_per_row);
858 gbeauche 1.3 the_buffer_copy = (uint8 *)malloc(the_buffer_size);
859     the_buffer = (uint8 *)vm_acquire(the_buffer_size);
860 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));
861 gbeauche 1.3 }
862     #else
863     use_vosf = false;
864     #endif
865     #endif
866 gbeauche 1.15
867     // Set frame buffer base
868     D(bug("the_buffer = %p, use_vosf = %d\n", the_buffer, use_vosf));
869 gbeauche 1.33 screen_base = Host2MacAddr(the_buffer);
870 cebix 1.1 VModes[cur_mode].viRowBytes = bytes_per_row;
871     return true;
872     #else
873     ErrorAlert("SheepShaver has been compiled with DGA support disabled.");
874     return false;
875     #endif
876     }
877    
878 gbeauche 1.42 // Open DGA display
879     static bool open_dga(int width, int height)
880     {
881     bool display_open;
882    
883     display_open = open_xf86_dga(width, height);
884     #ifdef ENABLE_FBDEV_DGA
885     // Try to fallback to FBDev DGA mode
886     if (!display_open) {
887     is_fbdev_dga_mode = true;
888     display_open = open_fbdev_dga(width, height);
889     }
890     #endif
891    
892     // Common DGA display initialization
893     if (display_open) {
894    
895     // Fake image to get display bounds in the refresh function
896     if ((img = (XImage *)malloc(sizeof(*img))) == NULL)
897     return false;
898     img->width = DisplayWidth(x_display, screen);
899     img->height = DisplayHeight(x_display, screen);
900     img->depth = is_fbdev_dga_mode ? xdepth : depth;
901     img->bytes_per_line = TrivialBytesPerRow(img->width, DepthModeForPixelDepth(img->depth));
902     }
903    
904     return display_open;
905     }
906    
907 cebix 1.1 static bool open_display(void)
908     {
909 gbeauche 1.13 D(bug("open_display()\n"));
910     const VideoInfo &mode = VModes[cur_mode];
911    
912 gbeauche 1.38 // Get original mouse acceleration
913     XGetPointerControl(x_display, &orig_accel_numer, &orig_accel_denom, &orig_threshold);
914    
915 gbeauche 1.13 // Find best available X visual
916     if (!find_visual_for_depth(mode.viAppleMode)) {
917     ErrorAlert(GetString(STR_NO_XVISUAL_ERR));
918     return false;
919     }
920    
921 gbeauche 1.30 // Build up visualFormat structure
922 gbeauche 1.40 visualFormat.fullscreen = (display_type == DIS_SCREEN);
923 gbeauche 1.30 visualFormat.depth = visualInfo.depth;
924     visualFormat.Rmask = visualInfo.red_mask;
925     visualFormat.Gmask = visualInfo.green_mask;
926     visualFormat.Bmask = visualInfo.blue_mask;
927    
928 gbeauche 1.13 // Create color maps
929     if (color_class == PseudoColor || color_class == DirectColor) {
930     cmap[0] = XCreateColormap(x_display, rootwin, vis, AllocAll);
931     cmap[1] = XCreateColormap(x_display, rootwin, vis, AllocAll);
932     } else {
933     cmap[0] = XCreateColormap(x_display, rootwin, vis, AllocNone);
934     cmap[1] = XCreateColormap(x_display, rootwin, vis, AllocNone);
935     }
936    
937     // Find pixel format of direct modes
938     if (color_class == DirectColor || color_class == TrueColor) {
939     rshift = gshift = bshift = 0;
940     rloss = gloss = bloss = 8;
941     uint32 mask;
942     for (mask=vis->red_mask; !(mask&1); mask>>=1)
943     ++rshift;
944     for (; mask&1; mask>>=1)
945     --rloss;
946     for (mask=vis->green_mask; !(mask&1); mask>>=1)
947     ++gshift;
948     for (; mask&1; mask>>=1)
949     --gloss;
950     for (mask=vis->blue_mask; !(mask&1); mask>>=1)
951     ++bshift;
952     for (; mask&1; mask>>=1)
953     --bloss;
954     }
955    
956     // Preset palette pixel values for CLUT or gamma table
957     if (color_class == DirectColor) {
958     int num = vis->map_entries;
959     for (int i=0; i<num; i++) {
960     int c = (i * 256) / num;
961     x_palette[i].pixel = map_rgb(c, c, c);
962     x_palette[i].flags = DoRed | DoGreen | DoBlue;
963     }
964     } else if (color_class == PseudoColor) {
965     for (int i=0; i<256; i++) {
966     x_palette[i].pixel = i;
967     x_palette[i].flags = DoRed | DoGreen | DoBlue;
968     }
969     }
970    
971     // Load gray ramp to color map
972     int num = (color_class == DirectColor ? vis->map_entries : 256);
973     for (int i=0; i<num; i++) {
974     int c = (i * 256) / num;
975     x_palette[i].red = c * 0x0101;
976     x_palette[i].green = c * 0x0101;
977     x_palette[i].blue = c * 0x0101;
978     }
979     if (color_class == PseudoColor || color_class == DirectColor) {
980     XStoreColors(x_display, cmap[0], x_palette, num);
981     XStoreColors(x_display, cmap[1], x_palette, num);
982 cebix 1.1 }
983 gbeauche 1.3
984 gbeauche 1.13 #ifdef ENABLE_VOSF
985     // Load gray ramp to 8->16/32 expand map
986     if (!IsDirectMode(get_current_mode()) && xdepth > 8)
987     for (int i=0; i<256; i++)
988     ExpandMap[i] = map_rgb(i, i, i);
989     #endif
990    
991     // Create display of requested type
992     display_type = mode.viType;
993     depth = depth_of_video_mode(mode.viAppleMode);
994    
995 gbeauche 1.42 bool display_open;
996     switch (display_type) {
997     case DIS_SCREEN:
998 gbeauche 1.3 display_open = open_dga(VModes[cur_mode].viXsize, VModes[cur_mode].viYsize);
999 gbeauche 1.42 break;
1000     case DIS_WINDOW:
1001     display_open = open_window(VModes[cur_mode].viXsize, VModes[cur_mode].viYsize);
1002     break;
1003     default:
1004     display_open = false;
1005     break;
1006 gbeauche 1.38 }
1007 gbeauche 1.3
1008     #ifdef ENABLE_VOSF
1009     if (use_vosf) {
1010     // Initialize the VOSF system
1011 gbeauche 1.41 LOCK_VOSF;
1012 gbeauche 1.3 if (!video_vosf_init()) {
1013     ErrorAlert(GetString(STR_VOSF_INIT_ERR));
1014 gbeauche 1.41 UNLOCK_VOSF;
1015 gbeauche 1.3 return false;
1016     }
1017 gbeauche 1.41 UNLOCK_VOSF;
1018 gbeauche 1.3 }
1019     #endif
1020 gbeauche 1.41
1021     // Zero screen buffers, viRowBytes is initialized at this stage
1022     memset(the_buffer, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
1023     memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
1024 gbeauche 1.3 return display_open;
1025 cebix 1.1 }
1026    
1027    
1028     /*
1029     * Close display
1030     */
1031    
1032     // Close window
1033     static void close_window(void)
1034     {
1035 gbeauche 1.3 if (have_shm) {
1036     XShmDetach(x_display, &shminfo);
1037     #ifdef ENABLE_VOSF
1038     the_host_buffer = NULL; // don't free() in driver_base dtor
1039     #else
1040     the_buffer_copy = NULL; // don't free() in driver_base dtor
1041     #endif
1042     }
1043     if (img) {
1044     if (!have_shm)
1045     img->data = NULL;
1046     XDestroyImage(img);
1047     }
1048     if (have_shm) {
1049     shmdt(shminfo.shmaddr);
1050     shmctl(shminfo.shmid, IPC_RMID, 0);
1051     }
1052     if (the_gc)
1053     XFreeGC(x_display, the_gc);
1054    
1055 gbeauche 1.13 XFlush(x_display);
1056     XSync(x_display, false);
1057 cebix 1.1 }
1058    
1059 gbeauche 1.38 // Close FBDev mode
1060 gbeauche 1.42 static void close_fbdev_dga(void)
1061 gbeauche 1.38 {
1062     #ifdef ENABLE_FBDEV_DGA
1063     uint8 *fb_base;
1064 gbeauche 1.42 if (!use_vosf)
1065 gbeauche 1.38 fb_base = the_buffer;
1066     #ifdef ENABLE_VOSF
1067 gbeauche 1.42 else
1068 gbeauche 1.38 fb_base = the_host_buffer;
1069     #endif
1070     munmap(fb_base, fb_finfo.smem_len);
1071     #endif
1072     }
1073    
1074 gbeauche 1.42 // Close XF86 DGA mode
1075     static void close_xf86_dga(void)
1076     {
1077     #ifdef ENABLE_XF86_DGA
1078     XF86DGADirectVideo(x_display, screen, 0);
1079     #endif
1080     }
1081    
1082 cebix 1.1 // Close DGA mode
1083     static void close_dga(void)
1084     {
1085 gbeauche 1.38 if (is_fbdev_dga_mode)
1086 gbeauche 1.42 close_fbdev_dga();
1087     else
1088     close_xf86_dga();
1089 gbeauche 1.38
1090 cebix 1.1 XUngrabPointer(x_display, CurrentTime);
1091     XUngrabKeyboard(x_display, CurrentTime);
1092    
1093     #ifdef ENABLE_XF86_VIDMODE
1094     if (has_vidmode)
1095     XF86VidModeSwitchToMode(x_display, screen, x_video_modes[0]);
1096     #endif
1097 gbeauche 1.3
1098 gbeauche 1.42 // Release fake image (it's not a normal XImage!)
1099     free(img);
1100     img = NULL;
1101    
1102 gbeauche 1.3 if (!use_vosf) {
1103     // don't free() the screen buffer in driver_base dtor
1104     the_buffer = NULL;
1105     }
1106     #ifdef ENABLE_VOSF
1107     else {
1108     // don't free() the screen buffer in driver_base dtor
1109     the_host_buffer = NULL;
1110     }
1111     #endif
1112 cebix 1.1 }
1113    
1114     static void close_display(void)
1115     {
1116 gbeauche 1.42 if (display_type == DIS_SCREEN)
1117     close_dga();
1118 cebix 1.1 else if (display_type == DIS_WINDOW)
1119     close_window();
1120 gbeauche 1.3
1121 gbeauche 1.15 // Close window
1122     if (the_win) {
1123     XUnmapWindow(x_display, the_win);
1124     wait_unmapped(the_win);
1125     XDestroyWindow(x_display, the_win);
1126     }
1127    
1128 gbeauche 1.13 // Free colormaps
1129     if (cmap[0]) {
1130     XFreeColormap(x_display, cmap[0]);
1131     cmap[0] = 0;
1132     }
1133     if (cmap[1]) {
1134     XFreeColormap(x_display, cmap[1]);
1135     cmap[1] = 0;
1136     }
1137    
1138 gbeauche 1.3 #ifdef ENABLE_VOSF
1139     if (use_vosf) {
1140     // Deinitialize VOSF
1141     video_vosf_exit();
1142     }
1143     #endif
1144    
1145     // Free frame buffer(s)
1146     if (!use_vosf) {
1147     if (the_buffer_copy) {
1148     free(the_buffer_copy);
1149     the_buffer_copy = NULL;
1150     }
1151     }
1152     #ifdef ENABLE_VOSF
1153     else {
1154     // the_buffer shall always be mapped through vm_acquire() so that we can vm_protect() it at will
1155     if (the_buffer != VM_MAP_FAILED) {
1156     D(bug(" releasing the_buffer at %p (%d bytes)\n", the_buffer, the_buffer_size));
1157     vm_release(the_buffer, the_buffer_size);
1158     the_buffer = NULL;
1159     }
1160     if (the_host_buffer) {
1161     D(bug(" freeing the_host_buffer at %p\n", the_host_buffer));
1162     free(the_host_buffer);
1163     the_host_buffer = NULL;
1164     }
1165     if (the_buffer_copy) {
1166     D(bug(" freeing the_buffer_copy at %p\n", the_buffer_copy));
1167     free(the_buffer_copy);
1168     the_buffer_copy = NULL;
1169     }
1170     }
1171     #endif
1172 gbeauche 1.38
1173     // Restore mouse acceleration
1174     restore_mouse_accel();
1175 cebix 1.1 }
1176    
1177    
1178     /*
1179     * Initialization
1180     */
1181    
1182 gbeauche 1.6 // Init keycode translation table
1183     static void keycode_init(void)
1184     {
1185     bool use_kc = PrefsFindBool("keycodes");
1186     if (use_kc) {
1187    
1188     // Get keycode file path from preferences
1189     const char *kc_path = PrefsFindString("keycodefile");
1190    
1191     // Open keycode table
1192     FILE *f = fopen(kc_path ? kc_path : KEYCODE_FILE_NAME, "r");
1193     if (f == NULL) {
1194     char str[256];
1195     sprintf(str, GetString(STR_KEYCODE_FILE_WARN), kc_path ? kc_path : KEYCODE_FILE_NAME, strerror(errno));
1196     WarningAlert(str);
1197     return;
1198     }
1199    
1200     // Default translation table
1201     for (int i=0; i<256; i++)
1202     keycode_table[i] = -1;
1203    
1204     // Search for server vendor string, then read keycodes
1205     const char *vendor = ServerVendor(x_display);
1206 gbeauche 1.29 // Force use of MacX mappings on MacOS X with Apple's X server
1207     int dummy;
1208     if (XQueryExtension(x_display, "Apple-DRI", &dummy, &dummy, &dummy))
1209     vendor = "MacX";
1210 gbeauche 1.6 bool vendor_found = false;
1211     char line[256];
1212     while (fgets(line, 255, f)) {
1213     // Read line
1214     int len = strlen(line);
1215     if (len == 0)
1216     continue;
1217     line[len-1] = 0;
1218    
1219     // Comments begin with "#" or ";"
1220     if (line[0] == '#' || line[0] == ';' || line[0] == 0)
1221     continue;
1222    
1223     if (vendor_found) {
1224     // Read keycode
1225     int x_code, mac_code;
1226     if (sscanf(line, "%d %d", &x_code, &mac_code) == 2)
1227     keycode_table[x_code & 0xff] = mac_code;
1228     else
1229     break;
1230     } else {
1231     // Search for vendor string
1232     if (strstr(vendor, line) == vendor)
1233     vendor_found = true;
1234     }
1235     }
1236    
1237     // Keycode file completely read
1238     fclose(f);
1239     use_keycodes = vendor_found;
1240    
1241     // Vendor not found? Then display warning
1242     if (!vendor_found) {
1243     char str[256];
1244     sprintf(str, GetString(STR_KEYCODE_VENDOR_WARN), vendor, kc_path ? kc_path : KEYCODE_FILE_NAME);
1245     WarningAlert(str);
1246     return;
1247     }
1248     }
1249     }
1250    
1251 gbeauche 1.15 // Find Apple mode matching best specified dimensions
1252     static int find_apple_resolution(int xsize, int ysize)
1253     {
1254     int apple_id;
1255     if (xsize < 800)
1256     apple_id = APPLE_640x480;
1257     else if (xsize < 1024)
1258     apple_id = APPLE_800x600;
1259     else if (xsize < 1152)
1260     apple_id = APPLE_1024x768;
1261     else if (xsize < 1280) {
1262     if (ysize < 900)
1263     apple_id = APPLE_1152x768;
1264     else
1265     apple_id = APPLE_1152x900;
1266     }
1267     else if (xsize < 1600)
1268     apple_id = APPLE_1280x1024;
1269     else
1270     apple_id = APPLE_1600x1200;
1271     return apple_id;
1272     }
1273    
1274     // Find mode in list of supported modes
1275     static int find_mode(int apple_mode, int apple_id, int type)
1276     {
1277     for (VideoInfo *p = VModes; p->viType != DIS_INVALID; p++) {
1278     if (p->viType == type && p->viAppleID == apple_id && p->viAppleMode == apple_mode)
1279     return p - VModes;
1280     }
1281     return -1;
1282     }
1283    
1284 gbeauche 1.36 // Add custom video mode
1285     static void add_custom_mode(VideoInfo *&p, int type, uint32 x, uint32 y, int apple_mode, int apple_id)
1286     {
1287     p->viType = type;
1288     p->viXsize = x;
1289     p->viYsize = y;
1290     p->viRowBytes = TrivialBytesPerRow(p->viXsize, apple_mode);
1291     p->viAppleMode = apple_mode;
1292     p->viAppleID = apple_id;
1293     p++;
1294     }
1295    
1296 gbeauche 1.13 // Add mode to list of supported modes
1297     static void add_mode(VideoInfo *&p, uint32 allow, uint32 test, int apple_mode, int apple_id, int type)
1298 cebix 1.1 {
1299     if (allow & test) {
1300 gbeauche 1.36 uint32 x = 0, y = 0;
1301 cebix 1.1 switch (apple_id) {
1302     case APPLE_W_640x480:
1303     case APPLE_640x480:
1304 gbeauche 1.36 x = 640;
1305     y = 480;
1306 cebix 1.1 break;
1307     case APPLE_W_800x600:
1308     case APPLE_800x600:
1309 gbeauche 1.36 x = 800;
1310     y = 600;
1311 cebix 1.1 break;
1312     case APPLE_1024x768:
1313 gbeauche 1.36 x = 1024;
1314     y = 768;
1315 cebix 1.1 break;
1316 gbeauche 1.15 case APPLE_1152x768:
1317 gbeauche 1.36 x = 1152;
1318     y = 768;
1319 gbeauche 1.15 break;
1320 cebix 1.1 case APPLE_1152x900:
1321 gbeauche 1.36 x = 1152;
1322     y = 900;
1323 cebix 1.1 break;
1324     case APPLE_1280x1024:
1325 gbeauche 1.36 x = 1280;
1326     y = 1024;
1327 cebix 1.1 break;
1328     case APPLE_1600x1200:
1329 gbeauche 1.36 x = 1600;
1330     y = 1200;
1331 cebix 1.1 break;
1332     }
1333 gbeauche 1.36 add_custom_mode(p, type, x, y, apple_mode, apple_id);
1334 cebix 1.1 }
1335     }
1336    
1337 gbeauche 1.13 // Add standard list of windowed modes for given color depth
1338     static void add_window_modes(VideoInfo *&p, int window_modes, int mode)
1339     {
1340     add_mode(p, window_modes, 1, mode, APPLE_W_640x480, DIS_WINDOW);
1341     add_mode(p, window_modes, 2, mode, APPLE_W_800x600, DIS_WINDOW);
1342     }
1343    
1344 cebix 1.1 static bool has_mode(int x, int y)
1345     {
1346     #ifdef ENABLE_XF86_VIDMODE
1347 gbeauche 1.42 if (has_vidmode) {
1348     for (int i=0; i<num_x_video_modes; i++)
1349     if (x_video_modes[i]->hdisplay == x && x_video_modes[i]->vdisplay == y)
1350     return true;
1351     return false;
1352     }
1353     #endif
1354 cebix 1.1 return DisplayWidth(x_display, screen) >= x && DisplayHeight(x_display, screen) >= y;
1355     }
1356    
1357     bool VideoInit(void)
1358     {
1359 gbeauche 1.3 #ifdef ENABLE_VOSF
1360     // Zero the mainBuffer structure
1361     mainBuffer.dirtyPages = NULL;
1362     mainBuffer.pageInfo = NULL;
1363     #endif
1364    
1365 gbeauche 1.4 // Check if X server runs on local machine
1366     local_X11 = (strncmp(XDisplayName(x_display_name), ":", 1) == 0)
1367     || (strncmp(XDisplayName(x_display_name), "unix:", 5) == 0);
1368    
1369 gbeauche 1.6 // Init keycode translation
1370     keycode_init();
1371    
1372 gbeauche 1.8 // Read frame skip prefs
1373     frame_skip = PrefsFindInt32("frameskip");
1374     if (frame_skip == 0)
1375     frame_skip = 1;
1376    
1377     // Read mouse wheel prefs
1378     mouse_wheel_mode = PrefsFindInt32("mousewheelmode");
1379     mouse_wheel_lines = PrefsFindInt32("mousewheellines");
1380    
1381 cebix 1.1 // Init variables
1382     private_data = NULL;
1383     video_activated = true;
1384    
1385     // Find screen and root window
1386     screen = XDefaultScreen(x_display);
1387     rootwin = XRootWindow(x_display, screen);
1388    
1389 gbeauche 1.13 // Get sorted list of available depths
1390     avail_depths = XListDepths(x_display, screen, &num_depths);
1391     if (avail_depths == NULL) {
1392     ErrorAlert(GetString(STR_UNSUPP_DEPTH_ERR));
1393     return false;
1394     }
1395     sort(avail_depths, avail_depths + num_depths);
1396    
1397 cebix 1.1 // Get screen depth
1398     xdepth = DefaultDepth(x_display, screen);
1399    
1400     #ifdef ENABLE_XF86_DGA
1401     // DGA available?
1402     int event_base, error_base;
1403 gbeauche 1.38 is_fbdev_dga_mode = false;
1404 gbeauche 1.4 if (local_X11 && XF86DGAQueryExtension(x_display, &event_base, &error_base)) {
1405 cebix 1.1 int dga_flags = 0;
1406     XF86DGAQueryDirectVideo(x_display, screen, &dga_flags);
1407     has_dga = dga_flags & XF86DGADirectPresent;
1408 gbeauche 1.38 #if defined(__linux__)
1409     // Check r/w permission on /dev/mem for DGA mode to work
1410     if (has_dga && access("/dev/mem", R_OK | W_OK) != 0)
1411     has_dga = false;
1412     #endif
1413 cebix 1.1 } else
1414     has_dga = false;
1415     #endif
1416    
1417     #ifdef ENABLE_XF86_VIDMODE
1418     // VidMode available?
1419     int vm_event_base, vm_error_base;
1420     has_vidmode = XF86VidModeQueryExtension(x_display, &vm_event_base, &vm_error_base);
1421 gbeauche 1.42 if (has_vidmode) {
1422     int vm_major_version, vm_minor_version;
1423     XF86VidModeQueryVersion(x_display, &vm_major_version, &vm_minor_version);
1424     D(bug("VidMode extension %d.%d available\n", vm_major_version, vm_minor_version));
1425 cebix 1.1 XF86VidModeGetAllModeLines(x_display, screen, &num_x_video_modes, &x_video_modes);
1426 gbeauche 1.42 }
1427 cebix 1.1 #endif
1428    
1429 gbeauche 1.38 #ifdef ENABLE_FBDEV_DGA
1430     // FBDev available?
1431 gbeauche 1.39 bool has_fbdev_dga = false;
1432     if (local_X11) {
1433 gbeauche 1.38 if ((fb_dev_fd = open("/dev/fb0", O_RDWR)) > 0) {
1434     if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo) != 0)
1435     close(fb_dev_fd);
1436     else {
1437 gbeauche 1.39 has_fbdev_dga = true;
1438     if (!has_dga) {
1439     // Fallback to FBDev DGA mode if XF86 DGA is not possible
1440     has_dga = true;
1441     is_fbdev_dga_mode = true;
1442     }
1443 gbeauche 1.38 fb_orig_vinfo = fb_vinfo;
1444     D(bug("Frame buffer device initial resolution: %dx%dx%d\n", fb_vinfo.xres, fb_vinfo.yres, fb_vinfo.bits_per_pixel));
1445     }
1446     }
1447     }
1448     #endif
1449    
1450 cebix 1.1 // Find black and white colors
1451     XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:00/00/00", &black);
1452     XAllocColor(x_display, DefaultColormap(x_display, screen), &black);
1453     XParseColor(x_display, DefaultColormap(x_display, screen), "rgb:ff/ff/ff", &white);
1454     XAllocColor(x_display, DefaultColormap(x_display, screen), &white);
1455     black_pixel = BlackPixel(x_display, screen);
1456     white_pixel = WhitePixel(x_display, screen);
1457    
1458     // Mac screen depth follows X depth (for now)
1459 gbeauche 1.13 int default_mode = APPLE_8_BIT;
1460     switch (DefaultDepth(x_display, screen)) {
1461     case 1:
1462     default_mode = APPLE_1_BIT;
1463     break;
1464     case 8:
1465     default_mode = APPLE_8_BIT;
1466     break;
1467     case 15: case 16:
1468     default_mode = APPLE_16_BIT;
1469     break;
1470     case 24: case 32:
1471     default_mode = APPLE_32_BIT;
1472     break;
1473 cebix 1.1 }
1474    
1475 gbeauche 1.37 // Get screen mode from preferences
1476     const char *mode_str = PrefsFindString("screen");
1477     int default_width = 640, default_height = 480;
1478     if (mode_str) {
1479     display_type = DIS_INVALID;
1480     if (sscanf(mode_str, "win/%d/%d", &default_width, &default_height) == 2)
1481     display_type = DIS_WINDOW;
1482     #ifdef ENABLE_XF86_DGA
1483     else if (has_dga && sscanf(mode_str, "dga/%d/%d", &default_width, &default_height) == 2)
1484     display_type = DIS_SCREEN;
1485     #endif
1486 gbeauche 1.39 #ifdef ENABLE_FBDEV_DGA
1487     else if (has_fbdev_dga && sscanf(mode_str, "fbdev/%d/%d", &default_width, &default_height) == 2) {
1488     is_fbdev_dga_mode = true;
1489     display_type = DIS_SCREEN;
1490     }
1491     #endif
1492 gbeauche 1.37 if (display_type == DIS_INVALID) {
1493     D(bug("Invalid screen mode specified, defaulting to old modes selection\n"));
1494     mode_str = NULL;
1495     }
1496     else {
1497     if (default_width <= 0)
1498     default_width = DisplayWidth(x_display, screen);
1499     else if (default_width > DisplayWidth(x_display, screen))
1500     default_width = DisplayWidth(x_display, screen);
1501     if (default_height <= 0)
1502     default_height = DisplayHeight(x_display, screen);
1503     else if (default_height > DisplayHeight(x_display, screen))
1504     default_height = DisplayHeight(x_display, screen);
1505     }
1506     }
1507    
1508 cebix 1.1 // Construct video mode table
1509     uint32 window_modes = PrefsFindInt32("windowmodes");
1510     uint32 screen_modes = PrefsFindInt32("screenmodes");
1511     if (!has_dga)
1512     screen_modes = 0;
1513 gbeauche 1.37 if (mode_str)
1514     window_modes = screen_modes = 0;
1515     else if (window_modes == 0 && screen_modes == 0)
1516 cebix 1.1 window_modes |= 3; // Allow at least 640x480 and 800x600 window modes
1517    
1518     VideoInfo *p = VModes;
1519 gbeauche 1.37 if (mode_str) {
1520     if (display_type == DIS_WINDOW) {
1521     for (unsigned int d = APPLE_1_BIT; d <= APPLE_32_BIT; d++) {
1522     if (find_visual_for_depth(d)) {
1523     if (default_width > 640 && default_height > 480)
1524     add_mode(p, 3, 1, d, APPLE_W_640x480, DIS_WINDOW);
1525     if (default_width > 800 && default_height > 600)
1526     add_mode(p, 3, 2, d, APPLE_W_800x600, DIS_WINDOW);
1527     add_custom_mode(p, display_type, default_width, default_height, d, APPLE_CUSTOM);
1528     }
1529     }
1530 gbeauche 1.40 #ifdef ENABLE_VOSF
1531     } else if (display_type == DIS_SCREEN && is_fbdev_dga_mode) {
1532     for (unsigned int d = APPLE_1_BIT; d <= default_mode; d++)
1533     if (find_visual_for_depth(d))
1534     add_custom_mode(p, display_type, default_width, default_height, d, APPLE_CUSTOM);
1535     #endif
1536 gbeauche 1.37 } else
1537     add_custom_mode(p, display_type, default_width, default_height, default_mode, APPLE_CUSTOM);
1538 gbeauche 1.42
1539     // Add extra VidMode capable modes
1540     if (display_type == DIS_SCREEN) {
1541     struct {
1542     int w;
1543     int h;
1544     int apple_id;
1545     }
1546     video_modes[] = {
1547     { 640, 480, APPLE_640x480 },
1548     { 800, 600, APPLE_800x600 },
1549     { 1024, 768, APPLE_1024x768 },
1550     { 1152, 768, APPLE_1152x768 },
1551     { 1152, 900, APPLE_1152x900 },
1552     { 1280, 1024, APPLE_1280x1024 },
1553     { 1600, 1200, APPLE_1600x1200 },
1554     { 0, }
1555     };
1556    
1557     for (int i = 0; video_modes[i].w != 0; i++) {
1558     const int w = video_modes[i].w;
1559     const int h = video_modes[i].h;
1560     if (w >= default_width || h >= default_height)
1561     continue;
1562     if (has_mode(w, h)) {
1563     #ifdef ENABLE_VOSF
1564     if (is_fbdev_dga_mode) {
1565     for (unsigned int d = APPLE_1_BIT; d <= default_mode; d++)
1566     if (find_visual_for_depth(d))
1567     add_custom_mode(p, display_type, w, h, d, video_modes[i].apple_id);
1568     } else
1569     #endif
1570     add_custom_mode(p, display_type, w, h, default_mode, video_modes[i].apple_id);
1571     }
1572     }
1573     }
1574 gbeauche 1.37 } else if (window_modes) {
1575     for (unsigned int d = APPLE_1_BIT; d <= APPLE_32_BIT; d++)
1576     if (find_visual_for_depth(d))
1577     add_window_modes(p, window_modes, d);
1578     } else if (has_vidmode) {
1579 cebix 1.1 if (has_mode(640, 480))
1580 gbeauche 1.13 add_mode(p, screen_modes, 1, default_mode, APPLE_640x480, DIS_SCREEN);
1581 cebix 1.1 if (has_mode(800, 600))
1582 gbeauche 1.13 add_mode(p, screen_modes, 2, default_mode, APPLE_800x600, DIS_SCREEN);
1583 cebix 1.1 if (has_mode(1024, 768))
1584 gbeauche 1.13 add_mode(p, screen_modes, 4, default_mode, APPLE_1024x768, DIS_SCREEN);
1585 gbeauche 1.15 if (has_mode(1152, 768))
1586     add_mode(p, screen_modes, 64, default_mode, APPLE_1152x768, DIS_SCREEN);
1587 cebix 1.1 if (has_mode(1152, 900))
1588 gbeauche 1.13 add_mode(p, screen_modes, 8, default_mode, APPLE_1152x900, DIS_SCREEN);
1589 cebix 1.1 if (has_mode(1280, 1024))
1590 gbeauche 1.13 add_mode(p, screen_modes, 16, default_mode, APPLE_1280x1024, DIS_SCREEN);
1591 cebix 1.1 if (has_mode(1600, 1200))
1592 gbeauche 1.13 add_mode(p, screen_modes, 32, default_mode, APPLE_1600x1200, DIS_SCREEN);
1593 cebix 1.1 } else if (screen_modes) {
1594     int xsize = DisplayWidth(x_display, screen);
1595     int ysize = DisplayHeight(x_display, screen);
1596 gbeauche 1.15 int apple_id = find_apple_resolution(xsize, ysize);
1597 cebix 1.1 p->viType = DIS_SCREEN;
1598     p->viRowBytes = 0;
1599     p->viXsize = xsize;
1600     p->viYsize = ysize;
1601 gbeauche 1.13 p->viAppleMode = default_mode;
1602 cebix 1.1 p->viAppleID = apple_id;
1603     p++;
1604     }
1605     p->viType = DIS_INVALID; // End marker
1606     p->viRowBytes = 0;
1607     p->viXsize = p->viYsize = 0;
1608     p->viAppleMode = 0;
1609     p->viAppleID = 0;
1610    
1611 gbeauche 1.13 // Find default mode (window 640x480)
1612     cur_mode = -1;
1613 gbeauche 1.15 if (has_dga && screen_modes) {
1614     int screen_width = DisplayWidth(x_display, screen);
1615     int screen_height = DisplayHeight(x_display, screen);
1616     int apple_id = find_apple_resolution(screen_width, screen_height);
1617     if (apple_id != -1)
1618     cur_mode = find_mode(default_mode, apple_id, DIS_SCREEN);
1619 gbeauche 1.37 } else if (has_dga && mode_str)
1620     cur_mode = find_mode(default_mode, APPLE_CUSTOM, DIS_SCREEN);
1621    
1622 gbeauche 1.25 if (cur_mode == -1) {
1623     // pick up first windowed mode available
1624     for (VideoInfo *p = VModes; p->viType != DIS_INVALID; p++) {
1625     if (p->viType == DIS_WINDOW && p->viAppleMode == default_mode) {
1626     cur_mode = p - VModes;
1627     break;
1628     }
1629     }
1630     }
1631 gbeauche 1.13 assert(cur_mode != -1);
1632    
1633     #if DEBUG
1634     D(bug("Available video modes:\n"));
1635     for (p = VModes; p->viType != DIS_INVALID; p++) {
1636     int bits = depth_of_video_mode(p->viAppleMode);
1637     D(bug(" %dx%d (ID %02x), %d colors\n", p->viXsize, p->viYsize, p->viAppleID, 1 << bits));
1638     }
1639     #endif
1640    
1641 cebix 1.1 // Open window/screen
1642     if (!open_display())
1643     return false;
1644    
1645     #if 0
1646     // Ignore errors from now on
1647     XSetErrorHandler(ignore_errors);
1648     #endif
1649    
1650 gbeauche 1.38 // Lock down frame buffer
1651     XSync(x_display, false);
1652     LOCK_FRAME_BUFFER;
1653    
1654 cebix 1.1 // Start periodic thread
1655     XSync(x_display, false);
1656 gbeauche 1.15 Set_pthread_attr(&redraw_thread_attr, 0);
1657 gbeauche 1.28 redraw_thread_cancel = false;
1658 gbeauche 1.15 redraw_thread_active = (pthread_create(&redraw_thread, &redraw_thread_attr, redraw_func, NULL) == 0);
1659 cebix 1.1 D(bug("Redraw thread installed (%ld)\n", redraw_thread));
1660     return true;
1661     }
1662    
1663    
1664     /*
1665     * Deinitialization
1666     */
1667    
1668     void VideoExit(void)
1669     {
1670     // Stop redraw thread
1671     if (redraw_thread_active) {
1672 gbeauche 1.28 redraw_thread_cancel = true;
1673 cebix 1.1 pthread_cancel(redraw_thread);
1674     pthread_join(redraw_thread, NULL);
1675     redraw_thread_active = false;
1676     }
1677    
1678 gbeauche 1.38 // Unlock frame buffer
1679     UNLOCK_FRAME_BUFFER;
1680     XSync(x_display, false);
1681     D(bug(" frame buffer unlocked\n"));
1682    
1683 gbeauche 1.3 #ifdef ENABLE_VOSF
1684     if (use_vosf) {
1685     // Deinitialize VOSF
1686     video_vosf_exit();
1687     }
1688     #endif
1689    
1690 cebix 1.1 // Close window and server connection
1691     if (x_display != NULL) {
1692     XSync(x_display, false);
1693     close_display();
1694     XFlush(x_display);
1695     XSync(x_display, false);
1696     }
1697 gbeauche 1.38
1698     #ifdef ENABLE_FBDEV_DGA
1699     // Close framebuffer device
1700     if (fb_dev_fd >= 0) {
1701     close(fb_dev_fd);
1702     fb_dev_fd = -1;
1703     }
1704     #endif
1705 cebix 1.1 }
1706    
1707    
1708     /*
1709     * Suspend/resume emulator
1710     */
1711    
1712     static void suspend_emul(void)
1713     {
1714     if (display_type == DIS_SCREEN) {
1715     // Release ctrl key
1716     ADBKeyUp(0x36);
1717     ctrl_down = false;
1718    
1719 gbeauche 1.38 // Lock frame buffer (this will stop the MacOS thread)
1720     LOCK_FRAME_BUFFER;
1721 cebix 1.1
1722     // Save frame buffer
1723     fb_save = malloc(VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1724     if (fb_save)
1725 gbeauche 1.33 Mac2Host_memcpy(fb_save, screen_base, VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1726 cebix 1.1
1727     // Close full screen display
1728 gbeauche 1.38 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
1729 cebix 1.1 #ifdef ENABLE_XF86_DGA
1730 gbeauche 1.38 if (!is_fbdev_dga_mode)
1731     XF86DGADirectVideo(x_display, screen, 0);
1732     #endif
1733 cebix 1.1 XUngrabPointer(x_display, CurrentTime);
1734     XUngrabKeyboard(x_display, CurrentTime);
1735     #endif
1736 gbeauche 1.38 restore_mouse_accel();
1737     XUnmapWindow(x_display, the_win);
1738     wait_unmapped(the_win);
1739 cebix 1.1 XSync(x_display, false);
1740    
1741     // Open "suspend" window
1742     XSetWindowAttributes wattr;
1743     wattr.event_mask = KeyPressMask;
1744 gbeauche 1.38 wattr.background_pixel = (vis == DefaultVisual(x_display, screen) ? black_pixel : 0);
1745 cebix 1.1 wattr.backing_store = Always;
1746 gbeauche 1.38 wattr.colormap = (depth == 1 ? DefaultColormap(x_display, screen) : cmap[0]);
1747    
1748 cebix 1.1 suspend_win = XCreateWindow(x_display, rootwin, 0, 0, 512, 1, 0, xdepth,
1749 gbeauche 1.38 InputOutput, vis, CWEventMask | CWBackPixel | CWBackingStore | CWColormap, &wattr);
1750     set_window_name(suspend_win, STR_SUSPEND_WINDOW_TITLE);
1751     set_window_focus(suspend_win);
1752     XMapWindow(x_display, suspend_win);
1753     emul_suspended = true;
1754 cebix 1.1 }
1755     }
1756    
1757     static void resume_emul(void)
1758     {
1759     // Close "suspend" window
1760     XDestroyWindow(x_display, suspend_win);
1761     XSync(x_display, false);
1762    
1763     // Reopen full screen display
1764 gbeauche 1.38 XMapRaised(x_display, the_win);
1765     wait_mapped(the_win);
1766     XWarpPointer(x_display, None, rootwin, 0, 0, 0, 0, 0, 0);
1767     Window w = is_fbdev_dga_mode ? the_win : rootwin;
1768     XGrabKeyboard(x_display, w, True, GrabModeAsync, GrabModeAsync, CurrentTime);
1769 gbeauche 1.42 XGrabPointer(x_display, w, True, PointerMotionMask | ButtonPressMask | ButtonReleaseMask, GrabModeAsync, GrabModeAsync, is_fbdev_dga_mode ? w : None, None, CurrentTime);
1770 gbeauche 1.38 disable_mouse_accel();
1771 gbeauche 1.12 #ifdef ENABLE_XF86_DGA
1772 gbeauche 1.38 if (!is_fbdev_dga_mode) {
1773     XF86DGADirectVideo(x_display, screen, XF86DGADirectGraphics | XF86DGADirectKeyb | XF86DGADirectMouse);
1774     XF86DGASetViewPort(x_display, screen, 0, 0);
1775     }
1776 gbeauche 1.12 #endif
1777 cebix 1.1 XSync(x_display, false);
1778    
1779 gbeauche 1.3 // the_buffer already contains the data to restore. i.e. since a temporary
1780     // frame buffer is used when VOSF is actually used, fb_save is therefore
1781     // not necessary.
1782     #ifdef ENABLE_VOSF
1783     if (use_vosf) {
1784     LOCK_VOSF;
1785     PFLAG_SET_ALL;
1786 gbeauche 1.41 memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
1787 gbeauche 1.3 UNLOCK_VOSF;
1788     }
1789     #endif
1790    
1791 cebix 1.1 // Restore frame buffer
1792     if (fb_save) {
1793 gbeauche 1.3 #ifdef ENABLE_VOSF
1794     // Don't copy fb_save to the temporary frame buffer in VOSF mode
1795     if (!use_vosf)
1796     #endif
1797 gbeauche 1.33 Host2Mac_memcpy(screen_base, fb_save, VModes[cur_mode].viYsize * VModes[cur_mode].viRowBytes);
1798 cebix 1.1 free(fb_save);
1799     fb_save = NULL;
1800     }
1801    
1802 gbeauche 1.38 // Unlock frame buffer (and continue MacOS thread)
1803     UNLOCK_FRAME_BUFFER;
1804 cebix 1.1 emul_suspended = false;
1805     }
1806    
1807    
1808     /*
1809     * Close screen in full-screen mode
1810     */
1811    
1812     void VideoQuitFullScreen(void)
1813     {
1814     D(bug("VideoQuitFullScreen()\n"));
1815     if (display_type == DIS_SCREEN) {
1816     quit_full_screen = true;
1817     while (!quit_full_screen_ack) ;
1818     }
1819     }
1820    
1821    
1822     /*
1823     * X11 event handling
1824     */
1825    
1826     // Translate key event to Mac keycode
1827     static int kc_decode(KeySym ks)
1828     {
1829     switch (ks) {
1830     case XK_A: case XK_a: return 0x00;
1831     case XK_B: case XK_b: return 0x0b;
1832     case XK_C: case XK_c: return 0x08;
1833     case XK_D: case XK_d: return 0x02;
1834     case XK_E: case XK_e: return 0x0e;
1835     case XK_F: case XK_f: return 0x03;
1836     case XK_G: case XK_g: return 0x05;
1837     case XK_H: case XK_h: return 0x04;
1838     case XK_I: case XK_i: return 0x22;
1839     case XK_J: case XK_j: return 0x26;
1840     case XK_K: case XK_k: return 0x28;
1841     case XK_L: case XK_l: return 0x25;
1842     case XK_M: case XK_m: return 0x2e;
1843     case XK_N: case XK_n: return 0x2d;
1844     case XK_O: case XK_o: return 0x1f;
1845     case XK_P: case XK_p: return 0x23;
1846     case XK_Q: case XK_q: return 0x0c;
1847     case XK_R: case XK_r: return 0x0f;
1848     case XK_S: case XK_s: return 0x01;
1849     case XK_T: case XK_t: return 0x11;
1850     case XK_U: case XK_u: return 0x20;
1851     case XK_V: case XK_v: return 0x09;
1852     case XK_W: case XK_w: return 0x0d;
1853     case XK_X: case XK_x: return 0x07;
1854     case XK_Y: case XK_y: return 0x10;
1855     case XK_Z: case XK_z: return 0x06;
1856    
1857     case XK_1: case XK_exclam: return 0x12;
1858     case XK_2: case XK_at: return 0x13;
1859     case XK_3: case XK_numbersign: return 0x14;
1860     case XK_4: case XK_dollar: return 0x15;
1861     case XK_5: case XK_percent: return 0x17;
1862     case XK_6: return 0x16;
1863     case XK_7: return 0x1a;
1864     case XK_8: return 0x1c;
1865     case XK_9: return 0x19;
1866     case XK_0: return 0x1d;
1867    
1868     case XK_grave: case XK_asciitilde: return 0x0a;
1869     case XK_minus: case XK_underscore: return 0x1b;
1870     case XK_equal: case XK_plus: return 0x18;
1871     case XK_bracketleft: case XK_braceleft: return 0x21;
1872     case XK_bracketright: case XK_braceright: return 0x1e;
1873     case XK_backslash: case XK_bar: return 0x2a;
1874     case XK_semicolon: case XK_colon: return 0x29;
1875     case XK_apostrophe: case XK_quotedbl: return 0x27;
1876     case XK_comma: case XK_less: return 0x2b;
1877     case XK_period: case XK_greater: return 0x2f;
1878     case XK_slash: case XK_question: return 0x2c;
1879    
1880     case XK_Tab: if (ctrl_down) {suspend_emul(); return -1;} else return 0x30;
1881     case XK_Return: return 0x24;
1882     case XK_space: return 0x31;
1883     case XK_BackSpace: return 0x33;
1884    
1885     case XK_Delete: return 0x75;
1886     case XK_Insert: return 0x72;
1887     case XK_Home: case XK_Help: return 0x73;
1888     case XK_End: return 0x77;
1889     #ifdef __hpux
1890     case XK_Prior: return 0x74;
1891     case XK_Next: return 0x79;
1892     #else
1893     case XK_Page_Up: return 0x74;
1894     case XK_Page_Down: return 0x79;
1895     #endif
1896    
1897     case XK_Control_L: return 0x36;
1898     case XK_Control_R: return 0x36;
1899     case XK_Shift_L: return 0x38;
1900     case XK_Shift_R: return 0x38;
1901     case XK_Alt_L: return 0x37;
1902     case XK_Alt_R: return 0x37;
1903     case XK_Meta_L: return 0x3a;
1904     case XK_Meta_R: return 0x3a;
1905     case XK_Menu: return 0x32;
1906     case XK_Caps_Lock: return 0x39;
1907     case XK_Num_Lock: return 0x47;
1908    
1909     case XK_Up: return 0x3e;
1910     case XK_Down: return 0x3d;
1911     case XK_Left: return 0x3b;
1912     case XK_Right: return 0x3c;
1913    
1914     case XK_Escape: if (ctrl_down) {quit_full_screen = true; emerg_quit = true; return -1;} else return 0x35;
1915    
1916     case XK_F1: if (ctrl_down) {SysMountFirstFloppy(); return -1;} else return 0x7a;
1917     case XK_F2: return 0x78;
1918     case XK_F3: return 0x63;
1919     case XK_F4: return 0x76;
1920     case XK_F5: return 0x60;
1921     case XK_F6: return 0x61;
1922     case XK_F7: return 0x62;
1923     case XK_F8: return 0x64;
1924     case XK_F9: return 0x65;
1925     case XK_F10: return 0x6d;
1926     case XK_F11: return 0x67;
1927     case XK_F12: return 0x6f;
1928    
1929     case XK_Print: return 0x69;
1930     case XK_Scroll_Lock: return 0x6b;
1931     case XK_Pause: return 0x71;
1932    
1933     #if defined(XK_KP_Prior) && defined(XK_KP_Left) && defined(XK_KP_Insert) && defined (XK_KP_End)
1934     case XK_KP_0: case XK_KP_Insert: return 0x52;
1935     case XK_KP_1: case XK_KP_End: return 0x53;
1936     case XK_KP_2: case XK_KP_Down: return 0x54;
1937     case XK_KP_3: case XK_KP_Next: return 0x55;
1938     case XK_KP_4: case XK_KP_Left: return 0x56;
1939     case XK_KP_5: case XK_KP_Begin: return 0x57;
1940     case XK_KP_6: case XK_KP_Right: return 0x58;
1941     case XK_KP_7: case XK_KP_Home: return 0x59;
1942     case XK_KP_8: case XK_KP_Up: return 0x5b;
1943     case XK_KP_9: case XK_KP_Prior: return 0x5c;
1944     case XK_KP_Decimal: case XK_KP_Delete: return 0x41;
1945     #else
1946     case XK_KP_0: return 0x52;
1947     case XK_KP_1: return 0x53;
1948     case XK_KP_2: return 0x54;
1949     case XK_KP_3: return 0x55;
1950     case XK_KP_4: return 0x56;
1951     case XK_KP_5: return 0x57;
1952     case XK_KP_6: return 0x58;
1953     case XK_KP_7: return 0x59;
1954     case XK_KP_8: return 0x5b;
1955     case XK_KP_9: return 0x5c;
1956     case XK_KP_Decimal: return 0x41;
1957     #endif
1958     case XK_KP_Add: return 0x45;
1959     case XK_KP_Subtract: return 0x4e;
1960     case XK_KP_Multiply: return 0x43;
1961     case XK_KP_Divide: return 0x4b;
1962     case XK_KP_Enter: return 0x4c;
1963     case XK_KP_Equal: return 0x51;
1964     }
1965     return -1;
1966     }
1967    
1968 gbeauche 1.27 static int event2keycode(XKeyEvent &ev, bool key_down)
1969 cebix 1.1 {
1970     KeySym ks;
1971     int i = 0;
1972    
1973     do {
1974 gbeauche 1.6 ks = XLookupKeysym(&ev, i++);
1975 gbeauche 1.27 int as = kc_decode(ks);
1976     if (as >= 0)
1977     return as;
1978     if (as == -2)
1979 cebix 1.1 return as;
1980     } while (ks != NoSymbol);
1981    
1982     return -1;
1983     }
1984    
1985     static void handle_events(void)
1986     {
1987     // Handle events
1988     for (;;) {
1989     XEvent event;
1990    
1991 gbeauche 1.10 XDisplayLock();
1992 gbeauche 1.9 if (!XCheckMaskEvent(x_display, eventmask, &event)) {
1993     // Handle clipboard events
1994     if (XCheckTypedEvent(x_display, SelectionRequest, &event))
1995     ClipboardSelectionRequest(&event.xselectionrequest);
1996     else if (XCheckTypedEvent(x_display, SelectionClear, &event))
1997     ClipboardSelectionClear(&event.xselectionclear);
1998 gbeauche 1.14
1999     // Window "close" widget clicked
2000     else if (XCheckTypedEvent(x_display, ClientMessage, &event)) {
2001     if (event.xclient.format == 32 && event.xclient.data.l[0] == WM_DELETE_WINDOW) {
2002     ADBKeyDown(0x7f); // Power key
2003     ADBKeyUp(0x7f);
2004     }
2005     }
2006 gbeauche 1.10
2007     XDisplayUnlock();
2008 cebix 1.1 break;
2009 gbeauche 1.9 }
2010 gbeauche 1.10 XDisplayUnlock();
2011 cebix 1.1
2012     switch (event.type) {
2013     // Mouse button
2014     case ButtonPress: {
2015     unsigned int button = ((XButtonEvent *)&event)->button;
2016     if (button < 4)
2017     ADBMouseDown(button - 1);
2018 gbeauche 1.8 else if (button < 6) { // Wheel mouse
2019     if (mouse_wheel_mode == 0) {
2020     int key = (button == 5) ? 0x79 : 0x74; // Page up/down
2021     ADBKeyDown(key);
2022     ADBKeyUp(key);
2023     } else {
2024     int key = (button == 5) ? 0x3d : 0x3e; // Cursor up/down
2025     for(int i=0; i<mouse_wheel_lines; i++) {
2026     ADBKeyDown(key);
2027     ADBKeyUp(key);
2028     }
2029     }
2030     }
2031 cebix 1.1 break;
2032     }
2033     case ButtonRelease: {
2034     unsigned int button = ((XButtonEvent *)&event)->button;
2035     if (button < 4)
2036     ADBMouseUp(button - 1);
2037     break;
2038     }
2039    
2040 gbeauche 1.15 // Mouse entered window
2041 cebix 1.1 case EnterNotify:
2042 gbeauche 1.15 if (event.xcrossing.mode != NotifyGrab && event.xcrossing.mode != NotifyUngrab)
2043     ADBMouseMoved(event.xmotion.x, event.xmotion.y);
2044 cebix 1.1 break;
2045 gbeauche 1.15
2046     // Mouse moved
2047 cebix 1.1 case MotionNotify:
2048 gbeauche 1.15 ADBMouseMoved(event.xmotion.x, event.xmotion.y);
2049 cebix 1.1 break;
2050    
2051     // Keyboard
2052     case KeyPress: {
2053 gbeauche 1.27 int code = -1;
2054     if (use_keycodes) {
2055     if (event2keycode(event.xkey, true) != -2) // This is called to process the hotkeys
2056     code = keycode_table[event.xkey.keycode & 0xff];
2057     } else
2058     code = event2keycode(event.xkey, true);
2059     if (code >= 0) {
2060 cebix 1.1 if (!emul_suspended) {
2061 gbeauche 1.27 if (code == 0x39) { // Caps Lock pressed
2062     if (caps_on) {
2063     ADBKeyUp(code);
2064     caps_on = false;
2065     } else {
2066     ADBKeyDown(code);
2067     caps_on = true;
2068     }
2069     } else
2070     ADBKeyDown(code);
2071 cebix 1.1 if (code == 0x36)
2072     ctrl_down = true;
2073     } else {
2074     if (code == 0x31)
2075     resume_emul(); // Space wakes us up
2076     }
2077     }
2078     break;
2079     }
2080     case KeyRelease: {
2081 gbeauche 1.27 int code = -1;
2082     if (use_keycodes) {
2083     if (event2keycode(event.xkey, false) != -2) // This is called to process the hotkeys
2084     code = keycode_table[event.xkey.keycode & 0xff];
2085     } else
2086     code = event2keycode(event.xkey, false);
2087     if (code >= 0 && code != 0x39) { // Don't propagate Caps Lock releases
2088 cebix 1.1 ADBKeyUp(code);
2089     if (code == 0x36)
2090     ctrl_down = false;
2091     }
2092     break;
2093     }
2094    
2095     // Hidden parts exposed, force complete refresh
2096     case Expose:
2097 gbeauche 1.3 #ifdef ENABLE_VOSF
2098     if (use_vosf) { // VOSF refresh
2099     LOCK_VOSF;
2100     PFLAG_SET_ALL;
2101 gbeauche 1.41 memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
2102 gbeauche 1.3 UNLOCK_VOSF;
2103     }
2104 gbeauche 1.41 else
2105 gbeauche 1.3 #endif
2106 gbeauche 1.41 memset(the_buffer_copy, 0, VModes[cur_mode].viRowBytes * VModes[cur_mode].viYsize);
2107 cebix 1.1 break;
2108     }
2109     }
2110     }
2111    
2112    
2113     /*
2114     * Execute video VBL routine
2115     */
2116    
2117     void VideoVBL(void)
2118     {
2119     if (emerg_quit)
2120     QuitEmulator();
2121    
2122 gbeauche 1.38 // Temporarily give up frame buffer lock (this is the point where
2123     // we are suspended when the user presses Ctrl-Tab)
2124     UNLOCK_FRAME_BUFFER;
2125     LOCK_FRAME_BUFFER;
2126    
2127 cebix 1.1 // Execute video VBL
2128     if (private_data != NULL && private_data->interruptsEnabled)
2129     VSLDoInterruptService(private_data->vslServiceID);
2130     }
2131    
2132    
2133     /*
2134     * Change video mode
2135     */
2136    
2137     int16 video_mode_change(VidLocals *csSave, uint32 ParamPtr)
2138     {
2139     /* return if no mode change */
2140     if ((csSave->saveData == ReadMacInt32(ParamPtr + csData)) &&
2141     (csSave->saveMode == ReadMacInt16(ParamPtr + csMode))) return noErr;
2142    
2143     /* first find video mode in table */
2144     for (int i=0; VModes[i].viType != DIS_INVALID; i++) {
2145     if ((ReadMacInt16(ParamPtr + csMode) == VModes[i].viAppleMode) &&
2146     (ReadMacInt32(ParamPtr + csData) == VModes[i].viAppleID)) {
2147     csSave->saveMode = ReadMacInt16(ParamPtr + csMode);
2148     csSave->saveData = ReadMacInt32(ParamPtr + csData);
2149     csSave->savePage = ReadMacInt16(ParamPtr + csPage);
2150    
2151     // Disable interrupts and pause redraw thread
2152     DisableInterrupt();
2153     thread_stop_ack = false;
2154     thread_stop_req = true;
2155     while (!thread_stop_ack) ;
2156    
2157     /* close old display */
2158     close_display();
2159    
2160     /* open new display */
2161     cur_mode = i;
2162     bool ok = open_display();
2163    
2164     /* opening the screen failed? Then bail out */
2165     if (!ok) {
2166     ErrorAlert(GetString(STR_FULL_SCREEN_ERR));
2167     QuitEmulator();
2168     }
2169    
2170     WriteMacInt32(ParamPtr + csBaseAddr, screen_base);
2171     csSave->saveBaseAddr=screen_base;
2172     csSave->saveData=VModes[cur_mode].viAppleID;/* First mode ... */
2173     csSave->saveMode=VModes[cur_mode].viAppleMode;
2174    
2175     // Enable interrupts and resume redraw thread
2176     thread_stop_req = false;
2177     EnableInterrupt();
2178     return noErr;
2179     }
2180     }
2181     return paramErr;
2182     }
2183    
2184    
2185     /*
2186     * Set color palette
2187     */
2188    
2189     void video_set_palette(void)
2190     {
2191 gbeauche 1.13 LOCK_PALETTE;
2192    
2193     // Convert colors to XColor array
2194     int mode = get_current_mode();
2195     int num_in = palette_size(mode);
2196     int num_out = 256;
2197     bool stretch = false;
2198     if (IsDirectMode(mode)) {
2199     // If X is in 565 mode we have to stretch the gamma table from 32 to 64 entries
2200     num_out = vis->map_entries;
2201     stretch = true;
2202     }
2203     XColor *p = x_palette;
2204     for (int i=0; i<num_out; i++) {
2205     int c = (stretch ? (i * num_in) / num_out : i);
2206     p->red = mac_pal[c].red * 0x0101;
2207     p->green = mac_pal[c].green * 0x0101;
2208     p->blue = mac_pal[c].blue * 0x0101;
2209     p++;
2210     }
2211    
2212     #ifdef ENABLE_VOSF
2213     // Recalculate pixel color expansion map
2214     if (!IsDirectMode(mode) && xdepth > 8) {
2215     for (int i=0; i<256; i++) {
2216     int c = i & (num_in-1); // If there are less than 256 colors, we repeat the first entries (this makes color expansion easier)
2217     ExpandMap[i] = map_rgb(mac_pal[c].red, mac_pal[c].green, mac_pal[c].blue);
2218     }
2219    
2220     // We have to redraw everything because the interpretation of pixel values changed
2221     LOCK_VOSF;
2222     PFLAG_SET_ALL;
2223 gbeauche 1.41 if (display_type == DIS_SCREEN)
2224     PFLAG_SET_VERY_DIRTY;
2225 gbeauche 1.13 UNLOCK_VOSF;
2226     }
2227     #endif
2228    
2229     // Tell redraw thread to change palette
2230 cebix 1.1 palette_changed = true;
2231 gbeauche 1.13
2232     UNLOCK_PALETTE;
2233 cebix 1.1 }
2234    
2235    
2236     /*
2237 gbeauche 1.21 * Can we set the MacOS cursor image into the window?
2238     */
2239    
2240     bool video_can_change_cursor(void)
2241     {
2242 gbeauche 1.22 return hw_mac_cursor_accl && (display_type != DIS_SCREEN);
2243 gbeauche 1.21 }
2244    
2245    
2246     /*
2247 cebix 1.1 * Set cursor image for window
2248     */
2249    
2250     void video_set_cursor(void)
2251     {
2252     cursor_changed = true;
2253     }
2254    
2255    
2256     /*
2257     * Thread for window refresh, event handling and other periodic actions
2258     */
2259    
2260     static void update_display(void)
2261     {
2262     // Incremental update code
2263     int wide = 0, high = 0, x1, x2, y1, y2, i, j;
2264     int bytes_per_row = VModes[cur_mode].viRowBytes;
2265     int bytes_per_pixel = VModes[cur_mode].viRowBytes / VModes[cur_mode].viXsize;
2266     uint8 *p, *p2;
2267    
2268     // Check for first line from top and first line from bottom that have changed
2269     y1 = 0;
2270     for (j=0; j<VModes[cur_mode].viYsize; j++) {
2271     if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
2272     y1 = j;
2273     break;
2274     }
2275     }
2276     y2 = y1 - 1;
2277     for (j=VModes[cur_mode].viYsize-1; j>=y1; j--) {
2278     if (memcmp(&the_buffer[j * bytes_per_row], &the_buffer_copy[j * bytes_per_row], bytes_per_row)) {
2279     y2 = j;
2280     break;
2281     }
2282     }
2283     high = y2 - y1 + 1;
2284    
2285     // Check for first column from left and first column from right that have changed
2286     if (high) {
2287     if (depth == 1) {
2288     x1 = VModes[cur_mode].viXsize;
2289     for (j=y1; j<=y2; j++) {
2290     p = &the_buffer[j * bytes_per_row];
2291     p2 = &the_buffer_copy[j * bytes_per_row];
2292     for (i=0; i<(x1>>3); i++) {
2293     if (*p != *p2) {
2294     x1 = i << 3;
2295     break;
2296     }
2297     p++;
2298     p2++;
2299     }
2300     }
2301     x2 = x1;
2302     for (j=y1; j<=y2; j++) {
2303     p = &the_buffer[j * bytes_per_row];
2304     p2 = &the_buffer_copy[j * bytes_per_row];
2305     p += bytes_per_row;
2306     p2 += bytes_per_row;
2307     for (i=(VModes[cur_mode].viXsize>>3); i>(x2>>3); i--) {
2308     p--;
2309     p2--;
2310     if (*p != *p2) {
2311     x2 = i << 3;
2312     break;
2313     }
2314     }
2315     }
2316     wide = x2 - x1;
2317    
2318     // Update copy of the_buffer
2319     if (high && wide) {
2320     for (j=y1; j<=y2; j++) {
2321     i = j * bytes_per_row + (x1 >> 3);
2322     memcpy(&the_buffer_copy[i], &the_buffer[i], wide >> 3);
2323     }
2324     }
2325    
2326     } else {
2327     x1 = VModes[cur_mode].viXsize;
2328     for (j=y1; j<=y2; j++) {
2329     p = &the_buffer[j * bytes_per_row];
2330     p2 = &the_buffer_copy[j * bytes_per_row];
2331     for (i=0; i<x1; i++) {
2332     if (memcmp(p, p2, bytes_per_pixel)) {
2333     x1 = i;
2334     break;
2335     }
2336     p += bytes_per_pixel;
2337     p2 += bytes_per_pixel;
2338     }
2339     }
2340     x2 = x1;
2341     for (j=y1; j<=y2; j++) {
2342     p = &the_buffer[j * bytes_per_row];
2343     p2 = &the_buffer_copy[j * bytes_per_row];
2344     p += bytes_per_row;
2345     p2 += bytes_per_row;
2346     for (i=VModes[cur_mode].viXsize; i>x2; i--) {
2347     p -= bytes_per_pixel;
2348     p2 -= bytes_per_pixel;
2349     if (memcmp(p, p2, bytes_per_pixel)) {
2350     x2 = i;
2351     break;
2352     }
2353     }
2354     }
2355     wide = x2 - x1;
2356    
2357     // Update copy of the_buffer
2358     if (high && wide) {
2359     for (j=y1; j<=y2; j++) {
2360     i = j * bytes_per_row + x1 * bytes_per_pixel;
2361     memcpy(&the_buffer_copy[i], &the_buffer[i], bytes_per_pixel * wide);
2362     }
2363     }
2364     }
2365     }
2366    
2367     // Refresh display
2368     if (high && wide) {
2369 gbeauche 1.10 XDisplayLock();
2370 cebix 1.1 if (have_shm)
2371     XShmPutImage(x_display, the_win, the_gc, img, x1, y1, x1, y1, wide, high, 0);
2372     else
2373     XPutImage(x_display, the_win, the_gc, img, x1, y1, x1, y1, wide, high);
2374 gbeauche 1.10 XDisplayUnlock();
2375 cebix 1.1 }
2376     }
2377    
2378 gbeauche 1.10 const int VIDEO_REFRESH_HZ = 60;
2379     const int VIDEO_REFRESH_DELAY = 1000000 / VIDEO_REFRESH_HZ;
2380    
2381 gbeauche 1.13 static void handle_palette_changes(void)
2382     {
2383     LOCK_PALETTE;
2384    
2385     if (palette_changed && !emul_suspended) {
2386     palette_changed = false;
2387    
2388     int mode = get_current_mode();
2389     if (color_class == PseudoColor || color_class == DirectColor) {
2390     int num = vis->map_entries;
2391     bool set_clut = true;
2392     if (!IsDirectMode(mode) && color_class == DirectColor) {
2393     if (display_type == DIS_WINDOW)
2394     set_clut = false; // Indexed mode on true color screen, don't set CLUT
2395     }
2396    
2397     if (set_clut) {
2398     XDisplayLock();
2399     XStoreColors(x_display, cmap[0], x_palette, num);
2400     XStoreColors(x_display, cmap[1], x_palette, num);
2401     XSync(x_display, false);
2402     XDisplayUnlock();
2403     }
2404     }
2405    
2406     #ifdef ENABLE_XF86_DGA
2407 gbeauche 1.38 if (display_type == DIS_SCREEN && !is_fbdev_dga_mode) {
2408 gbeauche 1.13 current_dga_cmap ^= 1;
2409     if (!IsDirectMode(mode) && cmap[current_dga_cmap])
2410     XF86DGAInstallColormap(x_display, screen, cmap[current_dga_cmap]);
2411     }
2412     #endif
2413     }
2414    
2415     UNLOCK_PALETTE;
2416     }
2417    
2418 cebix 1.1 static void *redraw_func(void *arg)
2419     {
2420 gbeauche 1.10 int fd = ConnectionNumber(x_display);
2421    
2422     uint64 start = GetTicks_usec();
2423     int64 ticks = 0;
2424     uint64 next = GetTicks_usec() + VIDEO_REFRESH_DELAY;
2425 cebix 1.1
2426 gbeauche 1.28 while (!redraw_thread_cancel) {
2427 cebix 1.1
2428     // Pause if requested (during video mode switches)
2429     while (thread_stop_req)
2430     thread_stop_ack = true;
2431    
2432 gbeauche 1.10 int64 delay = next - GetTicks_usec();
2433     if (delay < -VIDEO_REFRESH_DELAY) {
2434    
2435     // We are lagging far behind, so we reset the delay mechanism
2436     next = GetTicks_usec();
2437 cebix 1.1
2438 gbeauche 1.10 } else if (delay <= 0) {
2439    
2440     // Delay expired, refresh display
2441     next += VIDEO_REFRESH_DELAY;
2442     ticks++;
2443    
2444     // Handle X11 events
2445     handle_events();
2446    
2447     // Quit DGA mode if requested
2448     if (quit_full_screen) {
2449     quit_full_screen = false;
2450     if (display_type == DIS_SCREEN) {
2451     XDisplayLock();
2452 gbeauche 1.38 #if defined(ENABLE_XF86_DGA) || defined(ENABLE_FBDEV_DGA)
2453 cebix 1.1 #ifdef ENABLE_XF86_DGA
2454 gbeauche 1.42 if (!is_fbdev_dga_mode)
2455 gbeauche 1.38 XF86DGADirectVideo(x_display, screen, 0);
2456     #endif
2457 gbeauche 1.10 XUngrabPointer(x_display, CurrentTime);
2458     XUngrabKeyboard(x_display, CurrentTime);
2459 gbeauche 1.15 XUnmapWindow(x_display, the_win);
2460     wait_unmapped(the_win);
2461     XDestroyWindow(x_display, the_win);
2462 gbeauche 1.10 #endif
2463     XSync(x_display, false);
2464     XDisplayUnlock();
2465     quit_full_screen_ack = true;
2466     return NULL;
2467     }
2468 cebix 1.1 }
2469    
2470 gbeauche 1.10 // Refresh display and set cursor image in window mode
2471     static int tick_counter = 0;
2472     if (display_type == DIS_WINDOW) {
2473     tick_counter++;
2474     if (tick_counter >= frame_skip) {
2475     tick_counter = 0;
2476 cebix 1.1
2477 gbeauche 1.10 // Update display
2478 gbeauche 1.3 #ifdef ENABLE_VOSF
2479 gbeauche 1.10 if (use_vosf) {
2480     XDisplayLock();
2481     if (mainBuffer.dirty) {
2482     LOCK_VOSF;
2483     update_display_window_vosf();
2484     UNLOCK_VOSF;
2485     XSync(x_display, false); // Let the server catch up
2486     }
2487     XDisplayUnlock();
2488 gbeauche 1.3 }
2489 gbeauche 1.10 else
2490 gbeauche 1.3 #endif
2491 gbeauche 1.10 update_display();
2492 cebix 1.1
2493 gbeauche 1.10 // Set new cursor image if it was changed
2494 gbeauche 1.22 if (hw_mac_cursor_accl && cursor_changed) {
2495 gbeauche 1.10 cursor_changed = false;
2496 gbeauche 1.31 uint8 *x_data = (uint8 *)cursor_image->data;
2497     uint8 *x_mask = (uint8 *)cursor_mask_image->data;
2498     for (int i = 0; i < 32; i++) {
2499     x_mask[i] = MacCursor[4 + i] | MacCursor[36 + i];
2500     x_data[i] = MacCursor[4 + i];
2501     }
2502 gbeauche 1.10 XDisplayLock();
2503     XFreeCursor(x_display, mac_cursor);
2504     XPutImage(x_display, cursor_map, cursor_gc, cursor_image, 0, 0, 0, 0, 16, 16);
2505     XPutImage(x_display, cursor_mask_map, cursor_mask_gc, cursor_mask_image, 0, 0, 0, 0, 16, 16);
2506     mac_cursor = XCreatePixmapCursor(x_display, cursor_map, cursor_mask_map, &black, &white, MacCursor[2], MacCursor[3]);
2507     XDefineCursor(x_display, the_win, mac_cursor);
2508     XDisplayUnlock();
2509     }
2510 cebix 1.1 }
2511     }
2512 gbeauche 1.3 #ifdef ENABLE_VOSF
2513 gbeauche 1.10 else if (use_vosf) {
2514     // Update display (VOSF variant)
2515     if (++tick_counter >= frame_skip) {
2516     tick_counter = 0;
2517     if (mainBuffer.dirty) {
2518     LOCK_VOSF;
2519     update_display_dga_vosf();
2520     UNLOCK_VOSF;
2521     }
2522 gbeauche 1.3 }
2523     }
2524     #endif
2525 cebix 1.1
2526 gbeauche 1.10 // Set new palette if it was changed
2527 gbeauche 1.13 handle_palette_changes();
2528 gbeauche 1.10
2529     } else {
2530    
2531     // No display refresh pending, check for X events
2532     fd_set readfds;
2533     FD_ZERO(&readfds);
2534     FD_SET(fd, &readfds);
2535     struct timeval timeout;
2536     timeout.tv_sec = 0;
2537     timeout.tv_usec = delay;
2538     if (select(fd+1, &readfds, NULL, NULL, &timeout) > 0)
2539     handle_events();
2540 cebix 1.1 }
2541     }
2542     return NULL;
2543     }