more dummy regs & clean-up for twl4030
[qemu] / cocoa.m
1 /*
2  * QEMU Cocoa CG display driver
3  *
4  * Copyright (c) 2008 Mike Kronenberg
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24
25 #import <Cocoa/Cocoa.h>
26
27 #include "qemu-common.h"
28 #include "console.h"
29 #include "sysemu.h"
30
31
32 //#define DEBUG
33
34 #ifdef DEBUG
35 #define COCOA_DEBUG(...)  { (void) fprintf (stdout, __VA_ARGS__); }
36 #else
37 #define COCOA_DEBUG(...)  ((void) 0)
38 #endif
39
40 #define cgrect(nsrect) (*(CGRect *)&(nsrect))
41 #define COCOA_MOUSE_EVENT \
42         if (isTabletEnabled) { \
43             kbd_mouse_event((int)(p.x * 0x7FFF / (screen.width - 1)), (int)((screen.height - p.y) * 0x7FFF / (screen.height - 1)), 0, buttons); \
44         } else if (isMouseGrabed) { \
45             kbd_mouse_event((int)[event deltaX], (int)[event deltaY], 0, buttons); \
46         } else { \
47             [NSApp sendEvent:event]; \
48         }
49
50 typedef struct {
51     int width;
52     int height;
53     int bitsPerComponent;
54     int bitsPerPixel;
55 } QEMUScreen;
56
57 int qemu_main(int argc, char **argv); // main defined in qemu/vl.c
58 NSWindow *normalWindow;
59 id cocoaView;
60 static DisplayChangeListener *dcl;
61
62 int gArgc;
63 char **gArgv;
64
65 // keymap conversion
66 int keymap[] =
67 {
68 //  SdlI    macI    macH    SdlH    104xtH  104xtC  sdl
69     30, //  0       0x00    0x1e            A       QZ_a
70     31, //  1       0x01    0x1f            S       QZ_s
71     32, //  2       0x02    0x20            D       QZ_d
72     33, //  3       0x03    0x21            F       QZ_f
73     35, //  4       0x04    0x23            H       QZ_h
74     34, //  5       0x05    0x22            G       QZ_g
75     44, //  6       0x06    0x2c            Z       QZ_z
76     45, //  7       0x07    0x2d            X       QZ_x
77     46, //  8       0x08    0x2e            C       QZ_c
78     47, //  9       0x09    0x2f            V       QZ_v
79     0,  //  10      0x0A    Undefined
80     48, //  11      0x0B    0x30            B       QZ_b
81     16, //  12      0x0C    0x10            Q       QZ_q
82     17, //  13      0x0D    0x11            W       QZ_w
83     18, //  14      0x0E    0x12            E       QZ_e
84     19, //  15      0x0F    0x13            R       QZ_r
85     21, //  16      0x10    0x15            Y       QZ_y
86     20, //  17      0x11    0x14            T       QZ_t
87     2,  //  18      0x12    0x02            1       QZ_1
88     3,  //  19      0x13    0x03            2       QZ_2
89     4,  //  20      0x14    0x04            3       QZ_3
90     5,  //  21      0x15    0x05            4       QZ_4
91     7,  //  22      0x16    0x07            6       QZ_6
92     6,  //  23      0x17    0x06            5       QZ_5
93     13, //  24      0x18    0x0d            =       QZ_EQUALS
94     10, //  25      0x19    0x0a            9       QZ_9
95     8,  //  26      0x1A    0x08            7       QZ_7
96     12, //  27      0x1B    0x0c            -       QZ_MINUS
97     9,  //  28      0x1C    0x09            8       QZ_8
98     11, //  29      0x1D    0x0b            0       QZ_0
99     27, //  30      0x1E    0x1b            ]       QZ_RIGHTBRACKET
100     24, //  31      0x1F    0x18            O       QZ_o
101     22, //  32      0x20    0x16            U       QZ_u
102     26, //  33      0x21    0x1a            [       QZ_LEFTBRACKET
103     23, //  34      0x22    0x17            I       QZ_i
104     25, //  35      0x23    0x19            P       QZ_p
105     28, //  36      0x24    0x1c            ENTER   QZ_RETURN
106     38, //  37      0x25    0x26            L       QZ_l
107     36, //  38      0x26    0x24            J       QZ_j
108     40, //  39      0x27    0x28            '       QZ_QUOTE
109     37, //  40      0x28    0x25            K       QZ_k
110     39, //  41      0x29    0x27            ;       QZ_SEMICOLON
111     43, //  42      0x2A    0x2b            \       QZ_BACKSLASH
112     51, //  43      0x2B    0x33            ,       QZ_COMMA
113     53, //  44      0x2C    0x35            /       QZ_SLASH
114     49, //  45      0x2D    0x31            N       QZ_n
115     50, //  46      0x2E    0x32            M       QZ_m
116     52, //  47      0x2F    0x34            .       QZ_PERIOD
117     15, //  48      0x30    0x0f            TAB     QZ_TAB
118     57, //  49      0x31    0x39            SPACE   QZ_SPACE
119     41, //  50      0x32    0x29            `       QZ_BACKQUOTE
120     14, //  51      0x33    0x0e            BKSP    QZ_BACKSPACE
121     0,  //  52      0x34    Undefined
122     1,  //  53      0x35    0x01            ESC     QZ_ESCAPE
123     0,  //  54      0x36                            QZ_RMETA
124     0,  //  55      0x37                            QZ_LMETA
125     42, //  56      0x38    0x2a            L SHFT  QZ_LSHIFT
126     58, //  57      0x39    0x3a            CAPS    QZ_CAPSLOCK
127     56, //  58      0x3A    0x38            L ALT   QZ_LALT
128     29, //  59      0x3B    0x1d            L CTRL  QZ_LCTRL
129     54, //  60      0x3C    0x36            R SHFT  QZ_RSHIFT
130     184,//  61      0x3D    0xb8    E0,38   R ALT   QZ_RALT
131     157,//  62      0x3E    0x9d    E0,1D   R CTRL  QZ_RCTRL
132     0,  //  63      0x3F    Undefined
133     0,  //  64      0x40    Undefined
134     0,  //  65      0x41    Undefined
135     0,  //  66      0x42    Undefined
136     55, //  67      0x43    0x37            KP *    QZ_KP_MULTIPLY
137     0,  //  68      0x44    Undefined
138     78, //  69      0x45    0x4e            KP +    QZ_KP_PLUS
139     0,  //  70      0x46    Undefined
140     69, //  71      0x47    0x45            NUM     QZ_NUMLOCK
141     0,  //  72      0x48    Undefined
142     0,  //  73      0x49    Undefined
143     0,  //  74      0x4A    Undefined
144     181,//  75      0x4B    0xb5    E0,35   KP /    QZ_KP_DIVIDE
145     152,//  76      0x4C    0x9c    E0,1C   KP EN   QZ_KP_ENTER
146     0,  //  77      0x4D    undefined
147     74, //  78      0x4E    0x4a            KP -    QZ_KP_MINUS
148     0,  //  79      0x4F    Undefined
149     0,  //  80      0x50    Undefined
150     0,  //  81      0x51                            QZ_KP_EQUALS
151     82, //  82      0x52    0x52            KP 0    QZ_KP0
152     79, //  83      0x53    0x4f            KP 1    QZ_KP1
153     80, //  84      0x54    0x50            KP 2    QZ_KP2
154     81, //  85      0x55    0x51            KP 3    QZ_KP3
155     75, //  86      0x56    0x4b            KP 4    QZ_KP4
156     76, //  87      0x57    0x4c            KP 5    QZ_KP5
157     77, //  88      0x58    0x4d            KP 6    QZ_KP6
158     71, //  89      0x59    0x47            KP 7    QZ_KP7
159     0,  //  90      0x5A    Undefined
160     72, //  91      0x5B    0x48            KP 8    QZ_KP8
161     73, //  92      0x5C    0x49            KP 9    QZ_KP9
162     0,  //  93      0x5D    Undefined
163     0,  //  94      0x5E    Undefined
164     0,  //  95      0x5F    Undefined
165     63, //  96      0x60    0x3f            F5      QZ_F5
166     64, //  97      0x61    0x40            F6      QZ_F6
167     65, //  98      0x62    0x41            F7      QZ_F7
168     61, //  99      0x63    0x3d            F3      QZ_F3
169     66, //  100     0x64    0x42            F8      QZ_F8
170     67, //  101     0x65    0x43            F9      QZ_F9
171     0,  //  102     0x66    Undefined
172     87, //  103     0x67    0x57            F11     QZ_F11
173     0,  //  104     0x68    Undefined
174     183,//  105     0x69    0xb7                    QZ_PRINT
175     0,  //  106     0x6A    Undefined
176     70, //  107     0x6B    0x46            SCROLL  QZ_SCROLLOCK
177     0,  //  108     0x6C    Undefined
178     68, //  109     0x6D    0x44            F10     QZ_F10
179     0,  //  110     0x6E    Undefined
180     88, //  111     0x6F    0x58            F12     QZ_F12
181     0,  //  112     0x70    Undefined
182     110,//  113     0x71    0x0                     QZ_PAUSE
183     210,//  114     0x72    0xd2    E0,52   INSERT  QZ_INSERT
184     199,//  115     0x73    0xc7    E0,47   HOME    QZ_HOME
185     201,//  116     0x74    0xc9    E0,49   PG UP   QZ_PAGEUP
186     211,//  117     0x75    0xd3    E0,53   DELETE  QZ_DELETE
187     62, //  118     0x76    0x3e            F4      QZ_F4
188     207,//  119     0x77    0xcf    E0,4f   END     QZ_END
189     60, //  120     0x78    0x3c            F2      QZ_F2
190     209,//  121     0x79    0xd1    E0,51   PG DN   QZ_PAGEDOWN
191     59, //  122     0x7A    0x3b            F1      QZ_F1
192     203,//  123     0x7B    0xcb    e0,4B   L ARROW QZ_LEFT
193     205,//  124     0x7C    0xcd    e0,4D   R ARROW QZ_RIGHT
194     208,//  125     0x7D    0xd0    E0,50   D ARROW QZ_DOWN
195     200,//  126     0x7E    0xc8    E0,48   U ARROW QZ_UP
196 /* completed according to http://www.libsdl.org/cgi/cvsweb.cgi/SDL12/src/video/quartz/SDL_QuartzKeys.h?rev=1.6&content-type=text/x-cvsweb-markup */
197
198 /* Aditional 104 Key XP-Keyboard Scancodes from http://www.computer-engineering.org/ps2keyboard/scancodes1.html */
199 /*
200     219 //          0xdb            e0,5b   L GUI
201     220 //          0xdc            e0,5c   R GUI
202     221 //          0xdd            e0,5d   APPS
203         //              E0,2A,E0,37         PRNT SCRN
204         //              E1,1D,45,E1,9D,C5   PAUSE
205     83  //          0x53    0x53            KP .
206 // ACPI Scan Codes
207     222 //          0xde            E0, 5E  Power
208     223 //          0xdf            E0, 5F  Sleep
209     227 //          0xe3            E0, 63  Wake
210 // Windows Multimedia Scan Codes
211     153 //          0x99            E0, 19  Next Track
212     144 //          0x90            E0, 10  Previous Track
213     164 //          0xa4            E0, 24  Stop
214     162 //          0xa2            E0, 22  Play/Pause
215     160 //          0xa0            E0, 20  Mute
216     176 //          0xb0            E0, 30  Volume Up
217     174 //          0xae            E0, 2E  Volume Down
218     237 //          0xed            E0, 6D  Media Select
219     236 //          0xec            E0, 6C  E-Mail
220     161 //          0xa1            E0, 21  Calculator
221     235 //          0xeb            E0, 6B  My Computer
222     229 //          0xe5            E0, 65  WWW Search
223     178 //          0xb2            E0, 32  WWW Home
224     234 //          0xea            E0, 6A  WWW Back
225     233 //          0xe9            E0, 69  WWW Forward
226     232 //          0xe8            E0, 68  WWW Stop
227     231 //          0xe7            E0, 67  WWW Refresh
228     230 //          0xe6            E0, 66  WWW Favorites
229 */
230 };
231
232 static int cocoa_keycode_to_qemu(int keycode)
233 {
234     if((sizeof(keymap)/sizeof(int)) <= keycode)
235     {
236         printf("(cocoa) warning unknow keycode 0x%x\n", keycode);
237         return 0;
238     }
239     return keymap[keycode];
240 }
241
242
243
244 /*
245  ------------------------------------------------------
246     QemuCocoaView
247  ------------------------------------------------------
248 */
249 @interface QemuCocoaView : NSView
250 {
251     QEMUScreen screen;
252     NSWindow *fullScreenWindow;
253     float cx,cy,cw,ch,cdx,cdy;
254     CGDataProviderRef dataProviderRef;
255     int modifiers_state[256];
256     BOOL isMouseGrabed;
257     BOOL isFullscreen;
258     BOOL isAbsoluteEnabled;
259     BOOL isTabletEnabled;
260 }
261 - (void) resizeContentToWidth:(int)w height:(int)h displayState:(DisplayState *)ds;
262 - (void) grabMouse;
263 - (void) ungrabMouse;
264 - (void) toggleFullScreen:(id)sender;
265 - (void) handleEvent:(NSEvent *)event;
266 - (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
267 - (BOOL) isMouseGrabed;
268 - (BOOL) isAbsoluteEnabled;
269 - (float) cdx;
270 - (float) cdy;
271 - (QEMUScreen) gscreen;
272 @end
273
274 @implementation QemuCocoaView
275 - (id)initWithFrame:(NSRect)frameRect
276 {
277     COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
278
279     self = [super initWithFrame:frameRect];
280     if (self) {
281
282         screen.bitsPerComponent = 8;
283         screen.bitsPerPixel = 32;
284         screen.width = frameRect.size.width;
285         screen.height = frameRect.size.height;
286
287     }
288     return self;
289 }
290
291 - (void) dealloc
292 {
293     COCOA_DEBUG("QemuCocoaView: dealloc\n");
294
295     if (dataProviderRef)
296         CGDataProviderRelease(dataProviderRef);
297
298     [super dealloc];
299 }
300
301 - (BOOL) isOpaque
302 {
303     return YES;
304 }
305
306 - (void) drawRect:(NSRect) rect
307 {
308     COCOA_DEBUG("QemuCocoaView: drawRect\n");
309
310     // get CoreGraphic context
311     CGContextRef viewContextRef = [[NSGraphicsContext currentContext] graphicsPort];
312     CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
313     CGContextSetShouldAntialias (viewContextRef, NO);
314
315     // draw screen bitmap directly to Core Graphics context
316     if (dataProviderRef) {
317         CGImageRef imageRef = CGImageCreate(
318             screen.width, //width
319             screen.height, //height
320             screen.bitsPerComponent, //bitsPerComponent
321             screen.bitsPerPixel, //bitsPerPixel
322             (screen.width * (screen.bitsPerComponent/2)), //bytesPerRow
323 #if __LITTLE_ENDIAN__
324             CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4
325             kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
326 #else
327             CGColorSpaceCreateDeviceRGB(), //colorspace for OS X < 10.4 (actually ppc)
328             kCGImageAlphaNoneSkipFirst, //bitmapInfo
329 #endif
330             dataProviderRef, //provider
331             NULL, //decode
332             0, //interpolate
333             kCGRenderingIntentDefault //intent
334         );
335 // test if host support "CGImageCreateWithImageInRect" at compiletime
336 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
337         if (CGImageCreateWithImageInRect == NULL) { // test if "CGImageCreateWithImageInRect" is supported on host at runtime
338 #endif
339             // compatibility drawing code (draws everything) (OS X < 10.4)
340             CGContextDrawImage (viewContextRef, CGRectMake(0, 0, [self bounds].size.width, [self bounds].size.height), imageRef);
341 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
342         } else {
343             // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
344             const NSRect *rectList;
345             NSInteger rectCount;
346             int i;
347             CGImageRef clipImageRef;
348             CGRect clipRect;
349
350             [self getRectsBeingDrawn:&rectList count:&rectCount];
351             for (i = 0; i < rectCount; i++) {
352                 clipRect.origin.x = rectList[i].origin.x / cdx;
353                 clipRect.origin.y = (float)screen.height - (rectList[i].origin.y + rectList[i].size.height) / cdy;
354                 clipRect.size.width = rectList[i].size.width / cdx;
355                 clipRect.size.height = rectList[i].size.height / cdy;
356                 clipImageRef = CGImageCreateWithImageInRect(
357                     imageRef,
358                     clipRect
359                 );
360                 CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
361                 CGImageRelease (clipImageRef);
362             }
363         }
364 #endif
365         CGImageRelease (imageRef);
366     }
367 }
368
369 - (void) setContentDimensions
370 {
371     COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
372
373     if (isFullscreen) {
374         cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
375         cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
376         cw = screen.width * cdx;
377         ch = screen.height * cdy;
378         cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
379         cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
380     } else {
381         cx = 0;
382         cy = 0;
383         cw = screen.width;
384         ch = screen.height;
385         cdx = 1.0;
386         cdy = 1.0;
387     }
388 }
389
390 - (void) resizeContentToWidth:(int)w height:(int)h displayState:(DisplayState *)ds
391 {
392     COCOA_DEBUG("QemuCocoaView: resizeContent\n");
393
394     // update screenBuffer
395     if (dataProviderRef)
396         CGDataProviderRelease(dataProviderRef);
397
398     //sync host window color space with guests
399         screen.bitsPerPixel = ds_get_bits_per_pixel(ds);
400         screen.bitsPerComponent = ds_get_bytes_per_pixel(ds) * 2;
401
402     dataProviderRef = CGDataProviderCreateWithData(NULL, ds_get_data(ds), w * 4 * h, NULL);
403
404     // update windows
405     if (isFullscreen) {
406         [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
407         [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + screen.height, w, h + [normalWindow frame].size.height - screen.height) display:NO animate:NO];
408     } else {
409         if (qemu_name)
410             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
411         [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + screen.height, w, h + [normalWindow frame].size.height - screen.height) display:YES animate:NO];
412     }
413     screen.width = w;
414     screen.height = h;
415         [normalWindow center];
416     [self setContentDimensions];
417     [self setFrame:NSMakeRect(cx, cy, cw, ch)];
418 }
419
420 - (void) toggleFullScreen:(id)sender
421 {
422     COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
423
424     if (isFullscreen) { // switch from fullscreen to desktop
425         isFullscreen = FALSE;
426         [self ungrabMouse];
427         [self setContentDimensions];
428 // test if host support "enterFullScreenMode:withOptions" at compiletime
429 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
430         if ([NSView respondsToSelector:@selector(exitFullScreenModeWithOptions:)]) { // test if "exitFullScreenModeWithOptions" is supported on host at runtime
431             [self exitFullScreenModeWithOptions:nil];
432         } else {
433 #endif
434             [fullScreenWindow close];
435             [normalWindow setContentView: self];
436             [normalWindow makeKeyAndOrderFront: self];
437             [NSMenu setMenuBarVisible:YES];
438 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
439         }
440 #endif
441     } else { // switch from desktop to fullscreen
442         isFullscreen = TRUE;
443         [self grabMouse];
444         [self setContentDimensions];
445 // test if host support "enterFullScreenMode:withOptions" at compiletime
446 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
447         if ([NSView respondsToSelector:@selector(enterFullScreenMode:withOptions:)]) { // test if "enterFullScreenMode:withOptions" is supported on host at runtime
448             [self enterFullScreenMode:[NSScreen mainScreen] withOptions:[NSDictionary dictionaryWithObjectsAndKeys:
449                 [NSNumber numberWithBool:NO], NSFullScreenModeAllScreens,
450                 [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], kCGDisplayModeIsStretched, nil], NSFullScreenModeSetting,
451                  nil]];
452         } else {
453 #endif
454             [NSMenu setMenuBarVisible:NO];
455             fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
456                 styleMask:NSBorderlessWindowMask
457                 backing:NSBackingStoreBuffered
458                 defer:NO];
459             [fullScreenWindow setHasShadow:NO];
460             [fullScreenWindow setContentView:self];
461             [fullScreenWindow makeKeyAndOrderFront:self];
462 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4)
463         }
464 #endif
465     }
466 }
467
468 - (void) handleEvent:(NSEvent *)event
469 {
470     COCOA_DEBUG("QemuCocoaView: handleEvent\n");
471
472     int buttons = 0;
473     int keycode;
474     NSPoint p = [event locationInWindow];
475
476     switch ([event type]) {
477         case NSFlagsChanged:
478             keycode = cocoa_keycode_to_qemu([event keyCode]);
479             if (keycode) {
480                 if (keycode == 58 || keycode == 69) { // emulate caps lock and num lock keydown and keyup
481                     kbd_put_keycode(keycode);
482                     kbd_put_keycode(keycode | 0x80);
483                 } else if (is_graphic_console()) {
484                     if (keycode & 0x80)
485                         kbd_put_keycode(0xe0);
486                     if (modifiers_state[keycode] == 0) { // keydown
487                         kbd_put_keycode(keycode & 0x7f);
488                         modifiers_state[keycode] = 1;
489                     } else { // keyup
490                         kbd_put_keycode(keycode | 0x80);
491                         modifiers_state[keycode] = 0;
492                     }
493                 }
494             }
495
496             // release Mouse grab when pressing ctrl+alt
497             if (!isFullscreen && ([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
498                 [self ungrabMouse];
499             }
500             break;
501         case NSKeyDown:
502
503             // forward command Key Combos
504             if ([event modifierFlags] & NSCommandKeyMask) {
505                 [NSApp sendEvent:event];
506                 return;
507             }
508
509             // default
510             keycode = cocoa_keycode_to_qemu([event keyCode]);
511
512             // handle control + alt Key Combos (ctrl+alt is reserved for QEMU)
513             if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
514                 switch (keycode) {
515
516                     // enable graphic console
517                     case 0x02 ... 0x0a: // '1' to '9' keys
518                         console_select(keycode - 0x02);
519                         break;
520                 }
521
522             // handle keys for graphic console
523             } else if (is_graphic_console()) {
524                 if (keycode & 0x80) //check bit for e0 in front
525                     kbd_put_keycode(0xe0);
526                 kbd_put_keycode(keycode & 0x7f); //remove e0 bit in front
527
528             // handlekeys for Monitor
529             } else {
530                 int keysym = 0;
531                 switch([event keyCode]) {
532                 case 115:
533                     keysym = QEMU_KEY_HOME;
534                     break;
535                 case 117:
536                     keysym = QEMU_KEY_DELETE;
537                     break;
538                 case 119:
539                     keysym = QEMU_KEY_END;
540                     break;
541                 case 123:
542                     keysym = QEMU_KEY_LEFT;
543                     break;
544                 case 124:
545                     keysym = QEMU_KEY_RIGHT;
546                     break;
547                 case 125:
548                     keysym = QEMU_KEY_DOWN;
549                     break;
550                 case 126:
551                     keysym = QEMU_KEY_UP;
552                     break;
553                 default:
554                     {
555                         NSString *ks = [event characters];
556                         if ([ks length] > 0)
557                             keysym = [ks characterAtIndex:0];
558                     }
559                 }
560                 if (keysym)
561                     kbd_put_keysym(keysym);
562             }
563             break;
564         case NSKeyUp:
565             keycode = cocoa_keycode_to_qemu([event keyCode]);
566             if (is_graphic_console()) {
567                 if (keycode & 0x80)
568                     kbd_put_keycode(0xe0);
569                 kbd_put_keycode(keycode | 0x80); //add 128 to signal release of key
570             }
571             break;
572         case NSMouseMoved:
573             if (isAbsoluteEnabled) {
574                 if (p.x < 0 || p.x > screen.width || p.y < 0 || p.y > screen.height || ![[self window] isKeyWindow]) {
575                     if (isTabletEnabled) { // if we leave the window, deactivate the tablet
576                         if (cursor_hide) [NSCursor unhide];
577                         isTabletEnabled = FALSE;
578                     }
579                 } else {
580                     if (!isTabletEnabled) { // if we enter the window, activate the tablet
581                         if (cursor_hide) [NSCursor hide];
582                         isTabletEnabled = TRUE;
583                     }
584                 }
585             }
586             COCOA_MOUSE_EVENT
587             break;
588         case NSLeftMouseDown:
589             if ([event modifierFlags] & NSCommandKeyMask) {
590                 buttons |= MOUSE_EVENT_RBUTTON;
591             } else {
592                 buttons |= MOUSE_EVENT_LBUTTON;
593             }
594             COCOA_MOUSE_EVENT
595             break;
596         case NSRightMouseDown:
597             buttons |= MOUSE_EVENT_RBUTTON;
598             COCOA_MOUSE_EVENT
599             break;
600         case NSOtherMouseDown:
601             buttons |= MOUSE_EVENT_MBUTTON;
602             COCOA_MOUSE_EVENT
603             break;
604         case NSLeftMouseDragged:
605             if ([event modifierFlags] & NSCommandKeyMask) {
606                 buttons |= MOUSE_EVENT_RBUTTON;
607             } else {
608                 buttons |= MOUSE_EVENT_LBUTTON;
609             }
610             COCOA_MOUSE_EVENT
611             break;
612         case NSRightMouseDragged:
613             buttons |= MOUSE_EVENT_RBUTTON;
614             COCOA_MOUSE_EVENT
615             break;
616         case NSOtherMouseDragged:
617             buttons |= MOUSE_EVENT_MBUTTON;
618             COCOA_MOUSE_EVENT
619             break;
620         case NSLeftMouseUp:
621             if (isTabletEnabled) {
622                     COCOA_MOUSE_EVENT
623             } else if (!isMouseGrabed) {
624                 if (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height) {
625                     [self grabMouse];
626                 } else {
627                     [NSApp sendEvent:event];
628                 }
629             } else {
630                 COCOA_MOUSE_EVENT
631             }
632             break;
633         case NSRightMouseUp:
634             COCOA_MOUSE_EVENT
635             break;
636         case NSOtherMouseUp:
637             COCOA_MOUSE_EVENT
638             break;
639         case NSScrollWheel:
640             if (isTabletEnabled || isMouseGrabed) {
641                 kbd_mouse_event(0, 0, -[event deltaY], 0);
642             } else {
643                 [NSApp sendEvent:event];
644             }
645             break;
646         default:
647             [NSApp sendEvent:event];
648     }
649 }
650
651 - (void) grabMouse
652 {
653     COCOA_DEBUG("QemuCocoaView: grabMouse\n");
654
655     if (!isFullscreen) {
656         if (qemu_name)
657             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt to release Mouse)", qemu_name]];
658         else
659             [normalWindow setTitle:@"QEMU - (Press ctrl + alt to release Mouse)"];
660     }
661     if (cursor_hide) [NSCursor hide];
662     CGAssociateMouseAndMouseCursorPosition(FALSE);
663     isMouseGrabed = TRUE; // while isMouseGrabed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
664 }
665
666 - (void) ungrabMouse
667 {
668     COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
669
670     if (!isFullscreen) {
671         if (qemu_name)
672             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
673         else
674             [normalWindow setTitle:@"QEMU"];
675     }
676     if (cursor_hide) [NSCursor unhide];
677     CGAssociateMouseAndMouseCursorPosition(TRUE);
678     isMouseGrabed = FALSE;
679 }
680
681 - (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {isAbsoluteEnabled = tIsAbsoluteEnabled;}
682 - (BOOL) isMouseGrabed {return isMouseGrabed;}
683 - (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
684 - (float) cdx {return cdx;}
685 - (float) cdy {return cdy;}
686 - (QEMUScreen) gscreen {return screen;}
687 @end
688
689
690
691 /*
692  ------------------------------------------------------
693     QemuCocoaAppController
694  ------------------------------------------------------
695 */
696 @interface QemuCocoaAppController : NSObject
697 {
698 }
699 - (void)startEmulationWithArgc:(int)argc argv:(char**)argv;
700 - (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo;
701 - (void)toggleFullScreen:(id)sender;
702 - (void)showQEMUDoc:(id)sender;
703 - (void)showQEMUTec:(id)sender;
704 @end
705
706 @implementation QemuCocoaAppController
707 - (id) init
708 {
709     COCOA_DEBUG("QemuCocoaAppController: init\n");
710
711     self = [super init];
712     if (self) {
713
714         // create a view and add it to the window
715         cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
716         if(!cocoaView) {
717             fprintf(stderr, "(cocoa) can't create a view\n");
718             exit(1);
719         }
720
721         // create a window
722         normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
723             styleMask:NSTitledWindowMask|NSMiniaturizableWindowMask|NSClosableWindowMask
724             backing:NSBackingStoreBuffered defer:NO];
725         if(!normalWindow) {
726             fprintf(stderr, "(cocoa) can't create window\n");
727             exit(1);
728         }
729         [normalWindow setAcceptsMouseMovedEvents:YES];
730         [normalWindow setTitle:[NSString stringWithFormat:@"QEMU"]];
731         [normalWindow setContentView:cocoaView];
732         [normalWindow makeKeyAndOrderFront:self];
733                 [normalWindow center];
734
735     }
736     return self;
737 }
738
739 - (void) dealloc
740 {
741     COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
742
743     if (cocoaView)
744         [cocoaView release];
745     [super dealloc];
746 }
747
748 - (void)applicationDidFinishLaunching: (NSNotification *) note
749 {
750     COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
751
752     // Display an open dialog box if no argument were passed or
753     // if qemu was launched from the finder ( the Finder passes "-psn" )
754     if( gArgc <= 1 || strncmp ((char *)gArgv[1], "-psn", 4) == 0) {
755         NSOpenPanel *op = [[NSOpenPanel alloc] init];
756         [op setPrompt:@"Boot image"];
757         [op setMessage:@"Select the disk image you want to boot.\n\nHit the \"Cancel\" button to quit"];
758         [op beginSheetForDirectory:nil file:nil types:[NSArray arrayWithObjects:@"img",@"iso",@"dmg",@"qcow",@"cow",@"cloop",@"vmdk",nil]
759               modalForWindow:normalWindow modalDelegate:self
760               didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:) contextInfo:NULL];
761     } else {
762         // or Launch Qemu, with the global args
763         [self startEmulationWithArgc:gArgc argv:(char **)gArgv];
764     }
765 }
766
767 - (void)applicationWillTerminate:(NSNotification *)aNotification
768 {
769     COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
770
771     qemu_system_shutdown_request();
772     exit(0);
773 }
774
775 - (void)startEmulationWithArgc:(int)argc argv:(char**)argv
776 {
777     COCOA_DEBUG("QemuCocoaAppController: startEmulationWithArgc\n");
778
779     int status;
780     status = qemu_main(argc, argv);
781     exit(status);
782 }
783
784 - (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
785 {
786     COCOA_DEBUG("QemuCocoaAppController: openPanelDidEnd\n");
787
788     if(returnCode == NSCancelButton) {
789         exit(0);
790     } else if(returnCode == NSOKButton) {
791         const char *bin = "qemu";
792         char *img = (char*)[ [ sheet filename ] cStringUsingEncoding:NSASCIIStringEncoding];
793
794         char **argv = (char**)malloc( sizeof(char*)*3 );
795
796         asprintf(&argv[0], "%s", bin);
797         asprintf(&argv[1], "-hda");
798         asprintf(&argv[2], "%s", img);
799
800         printf("Using argc %d argv %s -hda %s\n", 3, bin, img);
801
802         [self startEmulationWithArgc:3 argv:(char**)argv];
803     }
804 }
805 - (void)toggleFullScreen:(id)sender
806 {
807     COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
808
809     [cocoaView toggleFullScreen:sender];
810 }
811
812 - (void)showQEMUDoc:(id)sender
813 {
814     COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
815
816     [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-doc.html",
817         [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
818 }
819
820 - (void)showQEMUTec:(id)sender
821 {
822     COCOA_DEBUG("QemuCocoaAppController: showQEMUTec\n");
823
824     [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-tech.html",
825         [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
826 }
827 @end
828
829
830
831 // Dock Connection
832 typedef struct CPSProcessSerNum
833 {
834         UInt32                lo;
835         UInt32                hi;
836 } CPSProcessSerNum;
837
838 extern OSErr    CPSGetCurrentProcess( CPSProcessSerNum *psn);
839 extern OSErr    CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5);
840 extern OSErr    CPSSetFrontProcess( CPSProcessSerNum *psn);
841
842 int main (int argc, const char * argv[]) {
843
844     gArgc = argc;
845     gArgv = (char **)argv;
846     CPSProcessSerNum PSN;
847
848     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
849     [NSApplication sharedApplication];
850
851     if (!CPSGetCurrentProcess(&PSN))
852         if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103))
853             if (!CPSSetFrontProcess(&PSN))
854                 [NSApplication sharedApplication];
855
856     // Add menus
857     NSMenu      *menu;
858     NSMenuItem  *menuItem;
859
860     [NSApp setMainMenu:[[NSMenu alloc] init]];
861
862     // Application menu
863     menu = [[NSMenu alloc] initWithTitle:@""];
864     [menu addItemWithTitle:@"About QEMU" action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; // About QEMU
865     [menu addItem:[NSMenuItem separatorItem]]; //Separator
866     [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
867     menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
868     [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)];
869     [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
870     [menu addItem:[NSMenuItem separatorItem]]; //Separator
871     [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
872     menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
873     [menuItem setSubmenu:menu];
874     [[NSApp mainMenu] addItem:menuItem];
875     [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
876
877     // View menu
878     menu = [[NSMenu alloc] initWithTitle:@"View"];
879     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(toggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
880     menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
881     [menuItem setSubmenu:menu];
882     [[NSApp mainMenu] addItem:menuItem];
883
884     // Window menu
885     menu = [[NSMenu alloc] initWithTitle:@"Window"];
886     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
887     menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
888     [menuItem setSubmenu:menu];
889     [[NSApp mainMenu] addItem:menuItem];
890     [NSApp setWindowsMenu:menu];
891
892     // Help menu
893     menu = [[NSMenu alloc] initWithTitle:@"Help"];
894     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
895     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Technology" action:@selector(showQEMUTec:) keyEquivalent:@""] autorelease]]; // QEMU Help
896     menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
897     [menuItem setSubmenu:menu];
898     [[NSApp mainMenu] addItem:menuItem];
899
900     // Create an Application controller
901     QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
902     [NSApp setDelegate:appController];
903
904     // Start the main event loop
905     [NSApp run];
906
907     [appController release];
908     [pool release];
909
910     return 0;
911 }
912
913
914
915 #pragma mark qemu
916 static void cocoa_update(DisplayState *ds, int x, int y, int w, int h)
917 {
918     COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
919
920     NSRect rect;
921     if ([cocoaView cdx] == 1.0) {
922         rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
923     } else {
924         rect = NSMakeRect(
925             x * [cocoaView cdx],
926             ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
927             w * [cocoaView cdx],
928             h * [cocoaView cdy]);
929     }
930     [cocoaView setNeedsDisplayInRect:rect];
931 }
932
933 static void cocoa_resize(DisplayState *ds)
934 {
935     COCOA_DEBUG("qemu_cocoa: cocoa_resize\n");
936
937     [cocoaView resizeContentToWidth:(int)(ds_get_width(ds)) height:(int)(ds_get_height(ds)) displayState:ds];
938 }
939
940 static void cocoa_refresh(DisplayState *ds)
941 {
942     COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
943
944     if (kbd_mouse_is_absolute()) {
945         if (![cocoaView isAbsoluteEnabled]) {
946             if ([cocoaView isMouseGrabed]) {
947                 [cocoaView ungrabMouse];
948             }
949         }
950         [cocoaView setAbsoluteEnabled:YES];
951     }
952
953     NSDate *distantPast;
954     NSEvent *event;
955     distantPast = [NSDate distantPast];
956     do {
957         event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:distantPast
958                         inMode: NSDefaultRunLoopMode dequeue:YES];
959         if (event != nil) {
960             [cocoaView handleEvent:event];
961         }
962     } while(event != nil);
963     vga_hw_update();
964 }
965
966 static void cocoa_cleanup(void)
967 {
968     COCOA_DEBUG("qemu_cocoa: cocoa_cleanup\n");
969         qemu_free(dcl);
970 }
971
972 void cocoa_display_init(DisplayState *ds, int full_screen)
973 {
974     COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
975
976         dcl = qemu_mallocz(sizeof(DisplayChangeListener));
977         
978     // register vga output callbacks
979     dcl->dpy_update = cocoa_update;
980     dcl->dpy_resize = cocoa_resize;
981     dcl->dpy_refresh = cocoa_refresh;
982
983         register_displaychangelistener(ds, dcl);
984
985     // register cleanup function
986     atexit(cocoa_cleanup);
987 }