# HG changeset patch # User tron # Date 2006-02-18 17:27:06 # Node ID 1a9924f5f1c1d47b074d12cf588e311626c09e8c # Parent f879939e7d4bc0376a6e2c386b6a2f114ffd91c0 (svn r3616) Style sweep diff --git a/video/cocoa_v.m b/video/cocoa_v.m --- a/video/cocoa_v.m +++ b/video/cocoa_v.m @@ -1,10 +1,10 @@ /* $Id$ */ -/****************************************************************************************** - * Cocoa video driver * - * Known things left to do: * - * Nothing at the moment. * - ******************************************************************************************/ +/****************************************************************************** + * Cocoa video driver * + * Known things left to do: * + * Nothing at the moment. * + ******************************************************************************/ #ifdef WITH_COCOA @@ -14,15 +14,14 @@ #import /* Portions of CPS.h */ -typedef struct CPSProcessSerNum -{ - UInt32 lo; - UInt32 hi; +typedef struct CPSProcessSerNum { + UInt32 lo; + UInt32 hi; } CPSProcessSerNum; -extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); -extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); -extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); +extern OSErr CPSGetCurrentProcess(CPSProcessSerNum* psn); +extern OSErr CPSEnableForegroundOperation(CPSProcessSerNum* psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess(CPSProcessSerNum* psn); /* From Menus.h (according to Xcode Developer Documentation) */ extern void ShowMenuBar(void); @@ -86,10 +85,9 @@ extern void HideMenuBar(void); @end -/* - Structure for rez switch gamma fades - We can hide the monitor flicker by setting the gamma tables to 0 -*/ +/* Structure for rez switch gamma fades + * We can hide the monitor flicker by setting the gamma tables to 0 + */ #define QZ_GAMMA_TABLE_SIZE 256 typedef struct { @@ -98,15 +96,13 @@ typedef struct { CGGammaValue blue[QZ_GAMMA_TABLE_SIZE]; } OTTD_QuartzGammaTable; -/* - Add methods to get at private members of NSScreen. - Since there is a bug in Apple's screen switching code - that does not update this variable when switching - to fullscreen, we'll set it manually (but only for the - main screen). -*/ +/* Add methods to get at private members of NSScreen. + * Since there is a bug in Apple's screen switching code that does not update + * this variable when switching to fullscreen, we'll set it manually (but only + * for the main screen). + */ @interface NSScreen (NSScreenAccess) - - (void) setFrame:(NSRect)frame; + - (void) setFrame:(NSRect)frame; @end @implementation NSScreen (NSScreenAccess) @@ -118,11 +114,11 @@ typedef struct { static void QZ_Draw(void); -static void QZ_UnsetVideoMode (void); +static void QZ_UnsetVideoMode(void); static void QZ_UpdatePalette(uint start, uint count); -static void QZ_WarpCursor (int x, int y); -void QZ_ShowMouse (void); -void QZ_HideMouse (void); +static void QZ_WarpCursor(int x, int y); +static void QZ_ShowMouse(void); +static void QZ_HideMouse(void); static void CocoaVideoFullScreen(bool full_screen); @@ -179,9 +175,9 @@ static bool _cocoa_video_dialog = false; -/****************************************************************************************** - * Game loop and accessories * - ******************************************************************************************/ +/****************************************************************************** + * Game loop and accessories * + ******************************************************************************/ static uint32 GetTick(void) { @@ -210,8 +206,9 @@ static void QZ_AskQuit(void) } else if (_patches.autosave_on_exit) { DoExitSave(); _exit_game = true; - } else + } else { AskExitGame(); + } } @@ -224,103 +221,103 @@ typedef struct VkMapping { #define AS(x, z) {x, z} static const VkMapping _vk_mapping[] = { - AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1' - AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode + AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1' + AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode // Pageup stuff + up/down //AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN), <==== Does this include HOME/END? - AS(QZ_PAGEUP, WKC_PAGEUP), - AS(QZ_PAGEDOWN, WKC_PAGEDOWN), + AS(QZ_PAGEUP, WKC_PAGEUP), + AS(QZ_PAGEDOWN, WKC_PAGEDOWN), - AS(QZ_UP, WKC_UP), - AS(QZ_DOWN, WKC_DOWN), - AS(QZ_LEFT, WKC_LEFT), - AS(QZ_RIGHT, WKC_RIGHT), + AS(QZ_UP, WKC_UP), + AS(QZ_DOWN, WKC_DOWN), + AS(QZ_LEFT, WKC_LEFT), + AS(QZ_RIGHT, WKC_RIGHT), - AS(QZ_HOME, WKC_HOME), - AS(QZ_END, WKC_END), + AS(QZ_HOME, WKC_HOME), + AS(QZ_END, WKC_END), - AS(QZ_INSERT, WKC_INSERT), - AS(QZ_DELETE, WKC_DELETE), + AS(QZ_INSERT, WKC_INSERT), + AS(QZ_DELETE, WKC_DELETE), // Letters. QZ_[a-z] is not in numerical order so we can't use AM(...) - AS(QZ_a, 'A'), - AS(QZ_b, 'B'), - AS(QZ_c, 'C'), - AS(QZ_d, 'D'), - AS(QZ_e, 'E'), - AS(QZ_f, 'F'), - AS(QZ_g, 'G'), - AS(QZ_h, 'H'), - AS(QZ_i, 'I'), - AS(QZ_j, 'J'), - AS(QZ_k, 'K'), - AS(QZ_l, 'L'), - AS(QZ_m, 'M'), - AS(QZ_n, 'N'), - AS(QZ_o, 'O'), - AS(QZ_p, 'P'), - AS(QZ_q, 'Q'), - AS(QZ_r, 'R'), - AS(QZ_s, 'S'), - AS(QZ_t, 'T'), - AS(QZ_u, 'U'), - AS(QZ_v, 'V'), - AS(QZ_w, 'W'), - AS(QZ_x, 'X'), - AS(QZ_y, 'Y'), - AS(QZ_z, 'Z'), + AS(QZ_a, 'A'), + AS(QZ_b, 'B'), + AS(QZ_c, 'C'), + AS(QZ_d, 'D'), + AS(QZ_e, 'E'), + AS(QZ_f, 'F'), + AS(QZ_g, 'G'), + AS(QZ_h, 'H'), + AS(QZ_i, 'I'), + AS(QZ_j, 'J'), + AS(QZ_k, 'K'), + AS(QZ_l, 'L'), + AS(QZ_m, 'M'), + AS(QZ_n, 'N'), + AS(QZ_o, 'O'), + AS(QZ_p, 'P'), + AS(QZ_q, 'Q'), + AS(QZ_r, 'R'), + AS(QZ_s, 'S'), + AS(QZ_t, 'T'), + AS(QZ_u, 'U'), + AS(QZ_v, 'V'), + AS(QZ_w, 'W'), + AS(QZ_x, 'X'), + AS(QZ_y, 'Y'), + AS(QZ_z, 'Z'), // Same thing for digits - AS(QZ_0, '0'), - AS(QZ_1, '1'), - AS(QZ_2, '2'), - AS(QZ_3, '3'), - AS(QZ_4, '4'), - AS(QZ_5, '5'), - AS(QZ_6, '6'), - AS(QZ_7, '7'), - AS(QZ_8, '8'), - AS(QZ_9, '9'), + AS(QZ_0, '0'), + AS(QZ_1, '1'), + AS(QZ_2, '2'), + AS(QZ_3, '3'), + AS(QZ_4, '4'), + AS(QZ_5, '5'), + AS(QZ_6, '6'), + AS(QZ_7, '7'), + AS(QZ_8, '8'), + AS(QZ_9, '9'), - AS(QZ_ESCAPE, WKC_ESC), - AS(QZ_PAUSE, WKC_PAUSE), - AS(QZ_BACKSPACE, WKC_BACKSPACE), + AS(QZ_ESCAPE, WKC_ESC), + AS(QZ_PAUSE, WKC_PAUSE), + AS(QZ_BACKSPACE, WKC_BACKSPACE), - AS(QZ_SPACE, WKC_SPACE), - AS(QZ_RETURN, WKC_RETURN), - AS(QZ_TAB, WKC_TAB), + AS(QZ_SPACE, WKC_SPACE), + AS(QZ_RETURN, WKC_RETURN), + AS(QZ_TAB, WKC_TAB), // Function keys - AS(QZ_F1, WKC_F1), - AS(QZ_F2, WKC_F2), - AS(QZ_F3, WKC_F3), - AS(QZ_F4, WKC_F4), - AS(QZ_F5, WKC_F5), - AS(QZ_F6, WKC_F6), - AS(QZ_F7, WKC_F7), - AS(QZ_F8, WKC_F8), - AS(QZ_F9, WKC_F9), - AS(QZ_F10, WKC_F10), - AS(QZ_F11, WKC_F11), - AS(QZ_F12, WKC_F12), + AS(QZ_F1, WKC_F1), + AS(QZ_F2, WKC_F2), + AS(QZ_F3, WKC_F3), + AS(QZ_F4, WKC_F4), + AS(QZ_F5, WKC_F5), + AS(QZ_F6, WKC_F6), + AS(QZ_F7, WKC_F7), + AS(QZ_F8, WKC_F8), + AS(QZ_F9, WKC_F9), + AS(QZ_F10, WKC_F10), + AS(QZ_F11, WKC_F11), + AS(QZ_F12, WKC_F12), // Numeric part. - AS(QZ_KP0, WKC_NUM_0), - AS(QZ_KP1, WKC_NUM_1), - AS(QZ_KP2, WKC_NUM_2), - AS(QZ_KP3, WKC_NUM_3), - AS(QZ_KP4, WKC_NUM_4), - AS(QZ_KP5, WKC_NUM_5), - AS(QZ_KP6, WKC_NUM_6), - AS(QZ_KP7, WKC_NUM_7), - AS(QZ_KP8, WKC_NUM_8), - AS(QZ_KP9, WKC_NUM_9), - AS(QZ_KP_DIVIDE, WKC_NUM_DIV), - AS(QZ_KP_MULTIPLY, WKC_NUM_MUL), - AS(QZ_KP_MINUS, WKC_NUM_MINUS), - AS(QZ_KP_PLUS, WKC_NUM_PLUS), - AS(QZ_KP_ENTER, WKC_NUM_ENTER), - AS(QZ_KP_PERIOD, WKC_NUM_DECIMAL) + AS(QZ_KP0, WKC_NUM_0), + AS(QZ_KP1, WKC_NUM_1), + AS(QZ_KP2, WKC_NUM_2), + AS(QZ_KP3, WKC_NUM_3), + AS(QZ_KP4, WKC_NUM_4), + AS(QZ_KP5, WKC_NUM_5), + AS(QZ_KP6, WKC_NUM_6), + AS(QZ_KP7, WKC_NUM_7), + AS(QZ_KP8, WKC_NUM_8), + AS(QZ_KP9, WKC_NUM_9), + AS(QZ_KP_DIVIDE, WKC_NUM_DIV), + AS(QZ_KP_MULTIPLY, WKC_NUM_MUL), + AS(QZ_KP_MINUS, WKC_NUM_MINUS), + AS(QZ_KP_PLUS, WKC_NUM_PLUS), + AS(QZ_KP_ENTER, WKC_NUM_ENTER), + AS(QZ_KP_PERIOD, WKC_NUM_DECIMAL) }; @@ -330,51 +327,42 @@ static uint32 QZ_MapKey(unsigned short s uint32 key = 0; for (map = _vk_mapping; map != endof(_vk_mapping); ++map) { - if(sym == map->vk_from) { + if (sym == map->vk_from) { key = map->map_to; break; } } - if(_cocoa_video_data.current_mods & NSShiftKeyMask) - key|= WKC_SHIFT; - if(_cocoa_video_data.current_mods & NSControlKeyMask) - key|= WKC_CTRL; - if(_cocoa_video_data.current_mods & NSAlternateKeyMask) - key|= WKC_ALT; - if(_cocoa_video_data.current_mods & NSCommandKeyMask) - key|= WKC_META; + if (_cocoa_video_data.current_mods & NSShiftKeyMask) key |= WKC_SHIFT; + if (_cocoa_video_data.current_mods & NSControlKeyMask) key |= WKC_CTRL; + if (_cocoa_video_data.current_mods & NSAlternateKeyMask) key |= WKC_ALT; + if (_cocoa_video_data.current_mods & NSCommandKeyMask) key |= WKC_META; return key << 16; } static void QZ_KeyEvent(unsigned short keycode, unsigned short unicode, BOOL down) { - switch(keycode) - { - case QZ_UP: - SB(_dirkeys, 1, 1, down); - break; - case QZ_DOWN: - SB(_dirkeys, 3, 1, down); - break; - case QZ_LEFT: - SB(_dirkeys, 0, 1, down); - break; - case QZ_RIGHT: - SB(_dirkeys, 2, 1, down); - break; - case QZ_TAB: - _cocoa_video_data.tab_is_down = down; - break; + switch (keycode) { + case QZ_UP: SB(_dirkeys, 1, 1, down); break; + case QZ_DOWN: SB(_dirkeys, 3, 1, down); break; + case QZ_LEFT: SB(_dirkeys, 0, 1, down); break; + case QZ_RIGHT: SB(_dirkeys, 2, 1, down); break; + + case QZ_TAB: _cocoa_video_data.tab_is_down = down; break; + case QZ_RETURN: case QZ_f: - if(down && ((_cocoa_video_data.current_mods & NSControlKeyMask) || (_cocoa_video_data.current_mods & NSCommandKeyMask))) + if (down && ( + (_cocoa_video_data.current_mods & NSControlKeyMask) || + (_cocoa_video_data.current_mods & NSCommandKeyMask) + )) { CocoaVideoFullScreen(!_fullscreen); - + } + break; } - if(down) { + if (down) { _pressed_key = QZ_MapKey(keycode) | unicode; DEBUG(driver, 2)("cocoa_v: QZ_KeyEvent: %x (%x), down, mapping: %x", keycode, unicode, _pressed_key); } else { @@ -382,15 +370,14 @@ static void QZ_KeyEvent(unsigned short k } } -static void QZ_DoUnsidedModifiers (unsigned int newMods) { - +static void QZ_DoUnsidedModifiers(unsigned int newMods) +{ const int mapping[] = { QZ_CAPSLOCK, QZ_LSHIFT, QZ_LCTRL, QZ_LALT, QZ_LMETA }; int i; int bit; - if (_cocoa_video_data.current_mods == newMods) - return; + if (_cocoa_video_data.current_mods == newMods) return; /* Iterate through the bits, testing each against the current modifiers */ for (i = 0, bit = NSAlphaShiftKeyMask; bit <= NSCommandKeyMask; bit <<= 1, ++i) { @@ -399,17 +386,14 @@ static void QZ_DoUnsidedModifiers (unsig currentMask = _cocoa_video_data.current_mods & bit; newMask = newMods & bit; - if ( currentMask && currentMask != newMask ) { /* modifier up event */ + if (currentMask && currentMask != newMask) { /* modifier up event */ /* If this was Caps Lock, we need some additional voodoo to make SDL happy (is this needed in ottd?) */ - if (bit == NSAlphaShiftKeyMask) - QZ_KeyEvent(mapping[i], 0, YES); + if (bit == NSAlphaShiftKeyMask) QZ_KeyEvent(mapping[i], 0, YES); QZ_KeyEvent(mapping[i], 0, NO); - } - else if ( newMask && currentMask != newMask ) { /* modifier down event */ + } else if (newMask && currentMask != newMask) { /* modifier down event */ QZ_KeyEvent(mapping[i], 0, YES); /* If this was Caps Lock, we need some additional voodoo to make SDL happy (is this needed in ottd?) */ - if (bit == NSAlphaShiftKeyMask) - QZ_KeyEvent(mapping[i], 0, NO); + if (bit == NSAlphaShiftKeyMask) QZ_KeyEvent(mapping[i], 0, NO); } } @@ -418,11 +402,10 @@ static void QZ_DoUnsidedModifiers (unsig static void QZ_MouseMovedEvent(int x, int y) { - int dx, dy; + if (_cursor.fix_at) { + int dx = x - _cursor.pos.x; + int dy = y - _cursor.pos.y; - if (_cursor.fix_at) { - dx = x - _cursor.pos.x; - dy = y - _cursor.pos.y; if (dx != 0 || dy != 0) { _cursor.delta.x += dx; _cursor.delta.y += dy; @@ -438,19 +421,20 @@ static void QZ_MouseMovedEvent(int x, in } } -void QZ_MouseButtonEvent( int button, BOOL down ) +void QZ_MouseButtonEvent(int button, BOOL down) { - switch(button) { + switch (button) { case 0: - if(down) { + if (down) { _left_button_down = true; } else { _left_button_down = false; _left_button_clicked = false; } break; + case 1: - if(down) { + if (down) { _right_button_down = true; _right_button_clicked = true; } else { @@ -465,7 +449,7 @@ static inline NSPoint QZ_GetMouseLocatio { NSPoint pt; - if(_cocoa_video_data.fullscreen) { + if (_cocoa_video_data.fullscreen) { pt = [ NSEvent mouseLocation ]; pt.y = _cocoa_video_data.height - pt.y; } else { @@ -478,10 +462,11 @@ static inline NSPoint QZ_GetMouseLocatio static bool QZ_MouseIsInsideView(NSPoint *pt) { - if(_cocoa_video_data.fullscreen) + if (_cocoa_video_data.fullscreen) { return pt->x >= 0 && pt->y >= 0 && pt->x < _cocoa_video_data.width && pt->y < _cocoa_video_data.height; - else + } else { return [ _cocoa_video_data.qdview mouse:*pt inRect:[ _cocoa_video_data.qdview bounds ] ]; + } } @@ -505,9 +490,8 @@ static bool QZ_PollEvent(void) _cocoa_video_data.tEvent+= et - et0; #endif - if(event == nil) - return false; - if(!_cocoa_video_data.active) { + if (event == nil) return false; + if (!_cocoa_video_data.active) { QZ_ShowMouse(); [NSApp sendEvent:event]; return true; @@ -521,116 +505,126 @@ static bool QZ_PollEvent(void) case NSRightMouseDragged: case NSLeftMouseDragged: pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt) && !_cocoa_video_data.emulating_right_button) { + if (!QZ_MouseIsInsideView(&pt) && + !_cocoa_video_data.emulating_right_button) { QZ_ShowMouse(); [NSApp sendEvent:event]; break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); break; case NSLeftMouseDown: - if(!([ event modifierFlags ] & NSCommandKeyMask) || !QZ_MouseIsInsideView(&pt)) + if (!([ event modifierFlags ] & NSCommandKeyMask) || + !QZ_MouseIsInsideView(&pt)) { [NSApp sendEvent:event]; + } pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { + if (!QZ_MouseIsInsideView(&pt)) { QZ_ShowMouse(); break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); /* Right mouse button emulation */ - if([ event modifierFlags ] & NSCommandKeyMask) { + if ([ event modifierFlags ] & NSCommandKeyMask) { _cocoa_video_data.emulating_right_button = true; QZ_MouseButtonEvent(1, YES); - } else + } else { QZ_MouseButtonEvent(0, YES); + } break; + case NSLeftMouseUp: [NSApp sendEvent:event]; pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { + if (!QZ_MouseIsInsideView(&pt)) { QZ_ShowMouse(); break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); /* Right mouse button emulation */ - if(_cocoa_video_data.emulating_right_button) { + if (_cocoa_video_data.emulating_right_button) { _cocoa_video_data.emulating_right_button = false; QZ_MouseButtonEvent(1, NO); - } else + } else { QZ_MouseButtonEvent(0, NO); + } break; case NSRightMouseDown: pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { + if (!QZ_MouseIsInsideView(&pt)) { QZ_ShowMouse(); [NSApp sendEvent:event]; break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); QZ_MouseButtonEvent(1, YES); break; + case NSRightMouseUp: pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { + if (!QZ_MouseIsInsideView(&pt)) { + QZ_ShowMouse(); + [NSApp sendEvent:event]; + break; + } + + QZ_HideMouse(); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); + QZ_MouseButtonEvent(1, NO); + break; + +#if 0 + /* This is not needed since openttd currently only use two buttons */ + case NSOtherMouseDown: + pt = QZ_GetMouseLocation(event); + if (!QZ_MouseIsInsideView(&pt)) { QZ_ShowMouse(); [NSApp sendEvent:event]; break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); - QZ_MouseButtonEvent(1, NO); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); + QZ_MouseButtonEvent([ event buttonNumber ], YES); break; - /* This is not needed since openttd currently only use two buttons */ - /* - case NSOtherMouseDown: + case NSOtherMouseUp: pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { + if (!QZ_MouseIsInsideView(&pt)) { QZ_ShowMouse(); [NSApp sendEvent:event]; break; } QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); - QZ_MouseButtonEvent([ event buttonNumber ], YES); - break; - case NSOtherMouseUp: - pt = QZ_GetMouseLocation(event); - if(!QZ_MouseIsInsideView(&pt)) { - QZ_ShowMouse(); - [NSApp sendEvent:event]; - break; - } - - QZ_HideMouse(); - QZ_MouseMovedEvent((int) pt.x, (int) pt.y); + QZ_MouseMovedEvent((int)pt.x, (int)pt.y); QZ_MouseButtonEvent([ event buttonNumber ], NO); break; - */ +#endif + case NSKeyDown: /* Quit, hide and minimize */ - switch([event keyCode]) { + switch ([event keyCode]) { case QZ_q: case QZ_h: case QZ_m: - if([ event modifierFlags ] & NSCommandKeyMask) + if ([ event modifierFlags ] & NSCommandKeyMask) { [NSApp sendEvent:event]; + } break; } @@ -640,12 +634,13 @@ static bool QZ_PollEvent(void) case NSKeyUp: /* Quit, hide and minimize */ - switch([event keyCode]) { + switch ([event keyCode]) { case QZ_q: case QZ_h: case QZ_m: - if([ event modifierFlags ] & NSCommandKeyMask) + if ([ event modifierFlags ] & NSCommandKeyMask) { [NSApp sendEvent:event]; + } break; } @@ -654,10 +649,11 @@ static bool QZ_PollEvent(void) break; case NSScrollWheel: - if ( [ event deltaX ] > 0.0 || [ event deltaY ] > 0.0 ) /* Scroll up */ + if ([ event deltaX ] > 0.0 || [ event deltaY ] > 0.0) { /* Scroll up */ _cursor.wheel--; - else /* Scroll down */ + } else { /* Scroll down */ _cursor.wheel++; + } break; default: @@ -693,8 +689,7 @@ static void QZ_GameLoop(void) QZ_Draw(); CSleep(1); - for(i = 0; i < 2; i++) - GameLoop(); + for (i = 0; i < 2; i++) GameLoop(); _screen.dst_ptr = _cocoa_video_data.pixels; UpdateWindows(); @@ -702,16 +697,15 @@ static void QZ_GameLoop(void) QZ_Draw(); CSleep(1); - while(1) { + for (;;) { InteractiveRandom(); // randomness while (QZ_PollEvent()) {} - if (_exit_game) - break; + if (_exit_game) break; #if defined(_DEBUG) - if(_cocoa_video_data.current_mods & NSShiftKeyMask) + if (_cocoa_video_data.current_mods & NSShiftKeyMask) #else if (_cocoa_video_data.tab_is_down) #endif @@ -749,7 +743,7 @@ static void QZ_GameLoop(void) #endif CSleep(1); #ifdef _DEBUG - st+= GetTick() - st0; + st += GetTick() - st0; #endif _screen.dst_ptr = _cocoa_video_data.pixels; DrawTextMessage(); @@ -762,39 +756,32 @@ static void QZ_GameLoop(void) et = GetTick(); DEBUG(driver, 1)("cocoa_v: nextEventMatchingMask took %i ms total", _cocoa_video_data.tEvent); - DEBUG(driver, 1)("cocoa_v: game loop took %i ms total (%i ms without sleep)", et - et0, (et - et0) - st); - DEBUG(driver, 1)("cocoa_v: (nextEventMatchingMask total)/(game loop total) is %f%%", (double) _cocoa_video_data.tEvent / (double) (et - et0) * 100); - DEBUG(driver, 1)("cocoa_v: (nextEventMatchingMask total)/(game loop without sleep total) is %f%%", (double) _cocoa_video_data.tEvent / (double) ((et - et0) - st) * 100); + DEBUG(driver, 1)("cocoa_v: game loop took %i ms total (%i ms without sleep)", et - et0, et - et0 - st); + DEBUG(driver, 1)("cocoa_v: (nextEventMatchingMask total)/(game loop total) is %f%%", (double)_cocoa_video_data.tEvent / (double)(et - et0) * 100); + DEBUG(driver, 1)("cocoa_v: (nextEventMatchingMask total)/(game loop without sleep total) is %f%%", (double)_cocoa_video_data.tEvent / (double)(et - et0 - st) * 100); #endif } - - - - - - - +/****************************************************************************** + * Windowed mode * + ******************************************************************************/ -/****************************************************************************************** - * Windowed mode * - ******************************************************************************************/ - -/* - This function makes the *game region* of the window 100% opaque. - The genie effect uses the alpha component. Otherwise, - it doesn't seem to matter what value it has. -*/ -static void QZ_SetPortAlphaOpaque (void) { +/* This function makes the *game region* of the window 100% opaque. + * The genie effect uses the alpha component. Otherwise, + * it doesn't seem to matter what value it has. + */ +static void QZ_SetPortAlphaOpaque(void) +{ if (_cocoa_video_data.device_bpp == 32) { - uint32 *pixels = (uint32*) _cocoa_video_data.realpixels; - uint32 rowPixels = _cocoa_video_data.pitch / 4; - uint32 i, j; + uint32* pixels = (uint32*)_cocoa_video_data.realpixels; + uint32 rowPixels = _cocoa_video_data.pitch / 4; + uint32 i; + uint32 j; for (i = 0; i < _cocoa_video_data.height; i++) for (j = 0; j < _cocoa_video_data.width; j++) { - pixels[ (i * rowPixels) + j ] |= 0xFF000000; + pixels[i * rowPixels + j] |= 0xFF000000; } } } @@ -818,15 +805,13 @@ static void QZ_SetPortAlphaOpaque (void) - (void)display { - /* - This method fires just before the window deminaturizes from the Dock. + /* This method fires just before the window deminaturizes from the Dock. + * We'll save the current visible surface, let the window manager redraw any + * UI elements, and restore the surface. This way, no expose event + * is required, and the deminiaturize works perfectly. + */ - We'll save the current visible surface, let the window manager redraw any - UI elements, and restore the surface. This way, no expose event - is required, and the deminiaturize works perfectly. - */ - - QZ_SetPortAlphaOpaque (); + QZ_SetPortAlphaOpaque(); /* save current visible surface */ [ self cacheImageInRect:[ _cocoa_video_data.qdview frame ] ]; @@ -849,38 +834,34 @@ static void QZ_SetPortAlphaOpaque (void) [ super setFrame:frameRect display:flag ]; /* Don't do anything if the window is currently beign created */ - if(_cocoa_video_data.issetting) - return; + if (_cocoa_video_data.issetting) return; - if(_cocoa_video_data.window == nil) - return; + if (_cocoa_video_data.window == nil) return; newViewFrame = [ _cocoa_video_data.qdview frame ]; /* Update the pixels and pitch */ thePort = [ _cocoa_video_data.qdview qdPort ]; - LockPortBits ( thePort ); - - _cocoa_video_data.realpixels = GetPixBaseAddr ( GetPortPixMap ( thePort ) ); - _cocoa_video_data.pitch = GetPixRowBytes ( GetPortPixMap ( thePort ) ); + LockPortBits(thePort); - /* - _cocoa_video_data.realpixels now points to the window's pixels - We want it to point to the *view's* pixels - */ + _cocoa_video_data.realpixels = GetPixBaseAddr(GetPortPixMap(thePort)); + _cocoa_video_data.pitch = GetPixRowBytes(GetPortPixMap(thePort)); + + /* _cocoa_video_data.realpixels now points to the window's pixels + * We want it to point to the *view's* pixels + */ { int vOffset = [ _cocoa_video_data.window frame ].size.height - newViewFrame.size.height - newViewFrame.origin.y; int hOffset = newViewFrame.origin.x; - _cocoa_video_data.realpixels = (uint8 *) _cocoa_video_data.realpixels + (vOffset * _cocoa_video_data.pitch) + hOffset * (_cocoa_video_data.device_bpp/8); + _cocoa_video_data.realpixels = (uint8*)_cocoa_video_data.realpixels + (vOffset * _cocoa_video_data.pitch) + hOffset * (_cocoa_video_data.device_bpp / 8); } - UnlockPortBits ( thePort ); + UnlockPortBits(thePort); /* Allocate new buffer */ - if(_cocoa_video_data.pixels != NULL) - free(_cocoa_video_data.pixels); - _cocoa_video_data.pixels = (uint8 *) malloc(newViewFrame.size.width * newViewFrame.size.height); + free(_cocoa_video_data.pixels); + _cocoa_video_data.pixels = (uint8*)malloc(newViewFrame.size.width * newViewFrame.size.height); assert(_cocoa_video_data.pixels != NULL); @@ -948,25 +929,25 @@ static void QZ_SetPortAlphaOpaque (void) return NO; } -- (void)windowDidBecomeKey:(NSNotification *)aNotification +- (void)windowDidBecomeKey:(NSNotification*)aNotification { _cocoa_video_data.active = true; // DEBUG(driver, 1)("cocoa_v: windowDidBecomeKey"); } -- (void)windowDidResignKey:(NSNotification *)aNotification +- (void)windowDidResignKey:(NSNotification*)aNotification { _cocoa_video_data.active = false; // DEBUG(driver, 1)("cocoa_v: windowDidResignKey"); } -- (void)windowDidBecomeMain:(NSNotification *)aNotification +- (void)windowDidBecomeMain:(NSNotification*)aNotification { _cocoa_video_data.active = true; // DEBUG(driver, 1)("cocoa_v: windowDidBecomeMain"); } -- (void)windowDidResignMain:(NSNotification *)aNotification +- (void)windowDidResignMain:(NSNotification*)aNotification { _cocoa_video_data.active = false; // DEBUG(driver, 1)("cocoa_v: windowDidResignMain"); @@ -978,26 +959,23 @@ static void QZ_SetPortAlphaOpaque (void) static void QZ_UpdateWindowPalette(uint start, uint count) { uint i; - uint32 clr32; - uint16 clr16; - switch(_cocoa_video_data.device_bpp) - { + switch (_cocoa_video_data.device_bpp) { case 32: for (i = start; i < start + count; i++) { - clr32 = 0xff000000; - clr32|= ((uint32) _cur_palette[i].r) << 16; - clr32|= ((uint32) _cur_palette[i].g) << 8; - clr32|= (uint32) _cur_palette[i].b; + uint32 clr32 = 0xff000000; + clr32 |= (uint32)_cur_palette[i].r << 16; + clr32 |= (uint32)_cur_palette[i].g << 8; + clr32 |= (uint32)_cur_palette[i].b; _cocoa_video_data.palette32[i] = clr32; } break; case 16: for (i = start; i < start + count; i++) { - clr16 = 0x0000; - clr16|= ((uint16) ((_cur_palette[i].r >> 3) & 0x1f)) << 10; - clr16|= ((uint16) ((_cur_palette[i].g >> 3) & 0x1f)) << 5; - clr16|= (uint16) ((_cur_palette[i].b >> 3) & 0x1f); + uint16 clr16 = 0x0000; + clr16 |= (uint16)((_cur_palette[i].r >> 3) & 0x1f) << 10; + clr16 |= (uint16)((_cur_palette[i].g >> 3) & 0x1f) << 5; + clr16 |= (uint16)((_cur_palette[i].b >> 3) & 0x1f); _cocoa_video_data.palette16[i] = clr16; } break; @@ -1008,14 +986,13 @@ static void QZ_UpdateWindowPalette(uint static inline void QZ_WindowBlitIndexedPixelsToView32(int left, int top, int right, int bottom) { - uint32 *trg; - uint8 *src; int x, y; - for(y = top; y < bottom; y++) { - trg = ((uint32 *) _cocoa_video_data.realpixels) + y * _cocoa_video_data.pitch / 4 + left; - src = _cocoa_video_data.pixels + y * _cocoa_video_data.width + left; - for(x = left; x < right; x++, trg++, src++) { + for (y = top; y < bottom; y++) { + const uint8* src = _cocoa_video_data.pixels + y * _cocoa_video_data.width + left; + uint32* trg = (uint32*)_cocoa_video_data.realpixels + y * _cocoa_video_data.pitch / 4 + left; + + for (x = left; x < right; x++, trg++, src++) { *trg = _cocoa_video_data.palette32[*src]; } } @@ -1023,14 +1000,13 @@ static inline void QZ_WindowBlitIndexedP static inline void QZ_WindowBlitIndexedPixelsToView16(int left, int top, int right, int bottom) { - uint16 *trg; - uint8 *src; int x, y; - for(y = top; y < bottom; y++) { - trg = ((uint16 *) _cocoa_video_data.realpixels) + y * _cocoa_video_data.pitch / 2 + left; - src = _cocoa_video_data.pixels + y * _cocoa_video_data.width + left; - for(x = left; x < right; x++, trg++, src++) { + for (y = top; y < bottom; y++) { + const uint8* src = _cocoa_video_data.pixels + y * _cocoa_video_data.width + left; + uint16* trg = (uint16*)_cocoa_video_data.realpixels + y * _cocoa_video_data.pitch / 2 + left; + + for (x = left; x < right; x++, trg++, src++) { *trg = _cocoa_video_data.palette16[*src]; } } @@ -1038,73 +1014,65 @@ static inline void QZ_WindowBlitIndexedP static inline void QZ_WindowBlitIndexedPixelsToView(int left, int top, int right, int bottom) { - switch(_cocoa_video_data.device_bpp) - { - case 32: - QZ_WindowBlitIndexedPixelsToView32(left, top, right, bottom); - break; - case 16: - QZ_WindowBlitIndexedPixelsToView16(left, top, right, bottom); - break; + switch (_cocoa_video_data.device_bpp) { + case 32: QZ_WindowBlitIndexedPixelsToView32(left, top, right, bottom); break; + case 16: QZ_WindowBlitIndexedPixelsToView16(left, top, right, bottom); break; } } -static bool _resize_icon[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, - 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, - 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, - 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, - 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, - 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, - 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, - 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, +static bool _resize_icon[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, + 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, + 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, + 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, + 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, + 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, + 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0 }; -static void QZ_DrawResizeIcon(void) { - int xoff, yoff, x, y; - uint16 *trg16; - uint32 *trg32; - - xoff = _cocoa_video_data.width - 16; - yoff = _cocoa_video_data.height - 16; - - for(y = 0; y < 16; y++) { - trg16 = ((uint16 *) _cocoa_video_data.realpixels) + (yoff + y) * _cocoa_video_data.pitch / 2 + xoff; - trg32 = ((uint32 *) _cocoa_video_data.realpixels) + (yoff + y) * _cocoa_video_data.pitch / 4 + xoff; +static void QZ_DrawResizeIcon(void) +{ + int xoff = _cocoa_video_data.width - 16; + int yoff = _cocoa_video_data.height - 16; + int x; + int y; - for(x = 0; x < 16; x++, trg16++, trg32++) { - if(!_resize_icon[y * 16 + x]) - continue; + for (y = 0; y < 16; y++) { + uint16* trg16 = (uint16*)_cocoa_video_data.realpixels + (yoff + y) * _cocoa_video_data.pitch / 2 + xoff; + uint32* trg32 = (uint32*)_cocoa_video_data.realpixels + (yoff + y) * _cocoa_video_data.pitch / 4 + xoff; - switch(_cocoa_video_data.device_bpp) - { - case 32: - *trg32 = 0xff000000; - break; - case 16: - *trg16 = 0x0000; - break; + for (x = 0; x < 16; x++, trg16++, trg32++) { + if (!_resize_icon[y * 16 + x]) continue; + + switch (_cocoa_video_data.device_bpp) { + case 32: *trg32 = 0xff000000; break; + case 16: *trg16 = 0x0000; break; } } } } -static void QZ_DrawWindow (void) { +static void QZ_DrawWindow(void) +{ int i; RgnHandle dirty, temp; /* Check if we need to do anything */ - if(_cocoa_video_data.num_dirty_rects == 0 || [ _cocoa_video_data.window isMiniaturized ]) + if (_cocoa_video_data.num_dirty_rects == 0 || + [ _cocoa_video_data.window isMiniaturized ]) { return; + } - if(_cocoa_video_data.num_dirty_rects >= MAX_DIRTY_RECTS) { + if (_cocoa_video_data.num_dirty_rects >= MAX_DIRTY_RECTS) { _cocoa_video_data.num_dirty_rects = 1; _cocoa_video_data.dirty_rects[0].left = 0; _cocoa_video_data.dirty_rects[0].top = 0; @@ -1112,29 +1080,36 @@ static void QZ_DrawWindow (void) { _cocoa_video_data.dirty_rects[0].bottom = _cocoa_video_data.height; } - dirty = NewRgn (); - temp = NewRgn (); + dirty = NewRgn(); + temp = NewRgn(); - SetEmptyRgn (dirty); + SetEmptyRgn(dirty); /* Build the region of dirty rectangles */ for (i = 0; i < _cocoa_video_data.num_dirty_rects; i++) { - QZ_WindowBlitIndexedPixelsToView(_cocoa_video_data.dirty_rects[i].left, - _cocoa_video_data.dirty_rects[i].top, - _cocoa_video_data.dirty_rects[i].right, - _cocoa_video_data.dirty_rects[i].bottom); + QZ_WindowBlitIndexedPixelsToView( + _cocoa_video_data.dirty_rects[i].left, + _cocoa_video_data.dirty_rects[i].top, + _cocoa_video_data.dirty_rects[i].right, + _cocoa_video_data.dirty_rects[i].bottom + ); - MacSetRectRgn (temp, _cocoa_video_data.dirty_rects[i].left, _cocoa_video_data.dirty_rects[i].top, - _cocoa_video_data.dirty_rects[i].right, _cocoa_video_data.dirty_rects[i].bottom); - MacUnionRgn (dirty, temp, dirty); + MacSetRectRgn( + temp, + _cocoa_video_data.dirty_rects[i].left, + _cocoa_video_data.dirty_rects[i].top, + _cocoa_video_data.dirty_rects[i].right, + _cocoa_video_data.dirty_rects[i].bottom + ); + MacUnionRgn(dirty, temp, dirty); } QZ_DrawResizeIcon(); /* Flush the dirty region */ - QDFlushPortBuffer ( [ _cocoa_video_data.qdview qdPort ], dirty ); - DisposeRgn (dirty); - DisposeRgn (temp); + QDFlushPortBuffer([ _cocoa_video_data.qdview qdPort ], dirty); + DisposeRgn(dirty); + DisposeRgn(temp); _cocoa_video_data.num_dirty_rects = 0; } @@ -1142,37 +1117,36 @@ static void QZ_DrawWindow (void) { extern const char _openttd_revision[]; -static const char *QZ_SetVideoWindowed (uint width, uint height) { +static const char* QZ_SetVideoWindowed(uint width, uint height) +{ char caption[50]; NSString *nsscaption; unsigned int style; NSRect contentRect; BOOL isCustom = NO; - if(width > _cocoa_video_data.device_width) + if (width > _cocoa_video_data.device_width) width = _cocoa_video_data.device_width; - if(height > _cocoa_video_data.device_height) + if (height > _cocoa_video_data.device_height) height = _cocoa_video_data.device_height; _cocoa_video_data.width = width; _cocoa_video_data.height = height; - contentRect = NSMakeRect (0, 0, width, height); + contentRect = NSMakeRect(0, 0, width, height); - /* - Check if we should completely destroy the previous mode - - If it is fullscreen - */ - if (_cocoa_video_data.isset && _cocoa_video_data.fullscreen ) - QZ_UnsetVideoMode (); + /* Check if we should completely destroy the previous mode + * - If it is fullscreen + */ + if (_cocoa_video_data.isset && _cocoa_video_data.fullscreen) + QZ_UnsetVideoMode(); /* Check if we should recreate the window */ if (_cocoa_video_data.window == nil) { - /* Set the window style */ style = NSTitledWindowMask; - style|= (NSMiniaturizableWindowMask | NSClosableWindowMask); - style|= NSResizableWindowMask; + style |= (NSMiniaturizableWindowMask | NSClosableWindowMask); + style |= NSResizableWindowMask; /* Manually create a window, avoids having a nib file resource */ _cocoa_video_data.window = [ [ OTTD_QuartzWindow alloc ] @@ -1194,10 +1168,8 @@ static const char *QZ_SetVideoWindowed ( [ _cocoa_video_data.window setViewsNeedDisplay:NO ]; [ _cocoa_video_data.window setDelegate: [ [ [ OTTD_QuartzWindowDelegate alloc ] init ] autorelease ] ]; - } - /* We already have a window, just change its size */ - else { - + } else { + /* We already have a window, just change its size */ if (!isCustom) { [ _cocoa_video_data.window setContentSize:contentRect.size ]; [ _cocoa_video_data.qdview setFrameSize:contentRect.size ]; @@ -1208,7 +1180,6 @@ static const char *QZ_SetVideoWindowed ( /* Only recreate the view if it doesn't already exist */ if (_cocoa_video_data.qdview == nil) { - _cocoa_video_data.qdview = [ [ NSQuickDrawView alloc ] initWithFrame:contentRect ]; [ _cocoa_video_data.qdview setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable ]; [ [ _cocoa_video_data.window contentView ] addSubview:_cocoa_video_data.qdview ]; @@ -1216,28 +1187,24 @@ static const char *QZ_SetVideoWindowed ( [ _cocoa_video_data.window makeKeyAndOrderFront:nil ]; } - LockPortBits ( [ _cocoa_video_data.qdview qdPort ] ); - _cocoa_video_data.realpixels = GetPixBaseAddr ( GetPortPixMap ( [ _cocoa_video_data.qdview qdPort ] ) ); - _cocoa_video_data.pitch = GetPixRowBytes ( GetPortPixMap ( [ _cocoa_video_data.qdview qdPort ] ) ); - UnlockPortBits ( [ _cocoa_video_data.qdview qdPort ] ); + LockPortBits([ _cocoa_video_data.qdview qdPort ]); + _cocoa_video_data.realpixels = GetPixBaseAddr(GetPortPixMap([ _cocoa_video_data.qdview qdPort ])); + _cocoa_video_data.pitch = GetPixRowBytes(GetPortPixMap([ _cocoa_video_data.qdview qdPort ])); + UnlockPortBits([ _cocoa_video_data.qdview qdPort ]); - /* - _cocoa_video_data.realpixels now points to the window's pixels - We want it to point to the *view's* pixels + /* _cocoa_video_data.realpixels now points to the window's pixels + * We want it to point to the *view's* pixels */ { int vOffset = [ _cocoa_video_data.window frame ].size.height - [ _cocoa_video_data.qdview frame ].size.height - [ _cocoa_video_data.qdview frame ].origin.y; - int hOffset = [ _cocoa_video_data.qdview frame ].origin.x; - _cocoa_video_data.realpixels = (uint8 *) _cocoa_video_data.realpixels + (vOffset * _cocoa_video_data.pitch) + hOffset * (_cocoa_video_data.device_bpp / 8); + _cocoa_video_data.realpixels = (uint8*)_cocoa_video_data.realpixels + (vOffset * _cocoa_video_data.pitch) + hOffset * (_cocoa_video_data.device_bpp / 8); } - if(_cocoa_video_data.pixels != NULL) - free(_cocoa_video_data.pixels); - _cocoa_video_data.pixels = (uint8 *) malloc(width * height); - if(_cocoa_video_data.pixels == NULL) - return "Failed to allocate 8-bit buffer"; + free(_cocoa_video_data.pixels); + _cocoa_video_data.pixels = (uint8*)malloc(width * height); + if (_cocoa_video_data.pixels == NULL) return "Failed to allocate 8-bit buffer"; _cocoa_video_data.fullscreen = false; @@ -1245,44 +1212,34 @@ static const char *QZ_SetVideoWindowed ( } - - - - - - - - - - +/****************************************************************************** + * Fullscreen mode * + ******************************************************************************/ -/****************************************************************************************** - * Fullscreen mode * - ******************************************************************************************/ - - -/* - Gamma functions to try to hide the flash from a rez switch - Fade the display from normal to black - Save gamma tables for fade back to normal -*/ -static uint32 QZ_FadeGammaOut (OTTD_QuartzGammaTable *table) { - - CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE], - greenTable[QZ_GAMMA_TABLE_SIZE], - blueTable[QZ_GAMMA_TABLE_SIZE]; - +/* Gamma functions to try to hide the flash from a rez switch + * Fade the display from normal to black + * Save gamma tables for fade back to normal + */ +static uint32 QZ_FadeGammaOut(const OTTD_QuartzGammaTable* table) +{ + CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE]; + CGGammaValue greenTable[QZ_GAMMA_TABLE_SIZE]; + CGGammaValue blueTable[QZ_GAMMA_TABLE_SIZE]; float percent; int j; unsigned int actual; - if ( (CGGetDisplayTransferByTable(_cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, table->red, table->green, table->blue, &actual) != CGDisplayNoErr) || actual != QZ_GAMMA_TABLE_SIZE) { + if (CGGetDisplayTransferByTable( + _cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, + table->red, table->green, table->blue, &actual + ) != CGDisplayNoErr || + actual != QZ_GAMMA_TABLE_SIZE) { return 1; } - memcpy (redTable, table->red, sizeof(redTable)); - memcpy (greenTable, table->green, sizeof(greenTable)); - memcpy (blueTable, table->blue, sizeof(greenTable)); + memcpy(redTable, table->red, sizeof(redTable)); + memcpy(greenTable, table->green, sizeof(greenTable)); + memcpy(blueTable, table->blue, sizeof(greenTable)); for (percent = 1.0; percent >= 0.0; percent -= 0.01) { for (j = 0; j < QZ_GAMMA_TABLE_SIZE; j++) { @@ -1291,33 +1248,34 @@ static uint32 QZ_FadeGammaOut (OTTD_Quar blueTable[j] = blueTable[j] * percent; } - if (CGSetDisplayTransferByTable(_cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, redTable, greenTable, blueTable) != CGDisplayNoErr) { - CGDisplayRestoreColorSyncSettings(); - return 1; + if (CGSetDisplayTransferByTable( + _cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, + redTable, greenTable, blueTable + ) != CGDisplayNoErr) { + CGDisplayRestoreColorSyncSettings(); + return 1; } - CSleep (10); + CSleep(10); } return 0; } -/* - Fade the display from black to normal - Restore previously saved gamma values -*/ -static uint32 QZ_FadeGammaIn (OTTD_QuartzGammaTable *table) { - - CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE], - greenTable[QZ_GAMMA_TABLE_SIZE], - blueTable[QZ_GAMMA_TABLE_SIZE]; - +/* Fade the display from black to normal + * Restore previously saved gamma values + */ +static uint32 QZ_FadeGammaIn(const OTTD_QuartzGammaTable* table) +{ + CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE]; + CGGammaValue greenTable[QZ_GAMMA_TABLE_SIZE]; + CGGammaValue blueTable[QZ_GAMMA_TABLE_SIZE]; float percent; int j; - memset (redTable, 0, sizeof(redTable)); - memset (greenTable, 0, sizeof(greenTable)); - memset (blueTable, 0, sizeof(greenTable)); + memset(redTable, 0, sizeof(redTable)); + memset(greenTable, 0, sizeof(greenTable)); + memset(blueTable, 0, sizeof(greenTable)); for (percent = 0.0; percent <= 1.0; percent += 0.01) { for (j = 0; j < QZ_GAMMA_TABLE_SIZE; j++) { @@ -1326,7 +1284,10 @@ static uint32 QZ_FadeGammaIn (OTTD_Quart blueTable[j] = table->blue[j] * percent; } - if (CGSetDisplayTransferByTable(_cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, redTable, greenTable, blueTable) != CGDisplayNoErr) { + if (CGSetDisplayTransferByTable( + _cocoa_video_data.display_id, QZ_GAMMA_TABLE_SIZE, + redTable, greenTable, blueTable + ) != CGDisplayNoErr) { CGDisplayRestoreColorSyncSettings(); return 1; } @@ -1337,8 +1298,9 @@ static uint32 QZ_FadeGammaIn (OTTD_Quart return 0; } -static const char *QZ_SetVideoFullScreen (int width, int height) { - const char *errstr = "QZ_SetVideoFullScreen error"; +static const char* QZ_SetVideoFullScreen(int width, int height) +{ + const char* errstr = "QZ_SetVideoFullScreen error"; int exact_match; CFNumberRef number; int bpp; @@ -1349,79 +1311,76 @@ static const char *QZ_SetVideoFullScreen NSPoint pt; /* Destroy any previous mode */ - if (_cocoa_video_data.isset) - QZ_UnsetVideoMode (); + if (_cocoa_video_data.isset) QZ_UnsetVideoMode(); /* See if requested mode exists */ _cocoa_video_data.mode = CGDisplayBestModeForParameters(_cocoa_video_data.display_id, 8, width, height, &exact_match); /* If the mode wasn't an exact match, check if it has the right bpp, and update width and height */ - if ( ! exact_match ) { + if (!exact_match) { number = CFDictionaryGetValue (_cocoa_video_data.mode, kCGDisplayBitsPerPixel); - CFNumberGetValue (number, kCFNumberSInt32Type, &bpp); - if(bpp != 8) { + CFNumberGetValue(number, kCFNumberSInt32Type, &bpp); + if (bpp != 8) { errstr = "Failed to find display resolution"; goto ERR_NO_MATCH; } - number = CFDictionaryGetValue (_cocoa_video_data.mode, kCGDisplayWidth); - CFNumberGetValue (number, kCFNumberSInt32Type, &width); + number = CFDictionaryGetValue(_cocoa_video_data.mode, kCGDisplayWidth); + CFNumberGetValue(number, kCFNumberSInt32Type, &width); - number = CFDictionaryGetValue (_cocoa_video_data.mode, kCGDisplayHeight); - CFNumberGetValue (number, kCFNumberSInt32Type, &height); + number = CFDictionaryGetValue(_cocoa_video_data.mode, kCGDisplayHeight); + CFNumberGetValue(number, kCFNumberSInt32Type, &height); } /* Fade display to zero gamma */ - gamma_error = QZ_FadeGammaOut (&gamma_table); + gamma_error = QZ_FadeGammaOut(&gamma_table); /* Put up the blanking window (a window above all other windows) */ - error = CGDisplayCapture (_cocoa_video_data.display_id); + error = CGDisplayCapture(_cocoa_video_data.display_id); - if ( CGDisplayNoErr != error ) { + if (CGDisplayNoErr != error) { errstr = "Failed capturing display"; goto ERR_NO_CAPTURE; } /* Do the physical switch */ - if (CGDisplaySwitchToMode (_cocoa_video_data.display_id, _cocoa_video_data.mode) != CGDisplayNoErr) { + if (CGDisplaySwitchToMode(_cocoa_video_data.display_id, _cocoa_video_data.mode) != CGDisplayNoErr) { errstr = "Failed switching display resolution"; goto ERR_NO_SWITCH; } - _cocoa_video_data.realpixels = (uint8 *) CGDisplayBaseAddress (_cocoa_video_data.display_id); - _cocoa_video_data.pitch = CGDisplayBytesPerRow (_cocoa_video_data.display_id); + _cocoa_video_data.realpixels = (uint8*)CGDisplayBaseAddress(_cocoa_video_data.display_id); + _cocoa_video_data.pitch = CGDisplayBytesPerRow(_cocoa_video_data.display_id); - _cocoa_video_data.width = CGDisplayPixelsWide (_cocoa_video_data.display_id); - _cocoa_video_data.height = CGDisplayPixelsHigh (_cocoa_video_data.display_id); + _cocoa_video_data.width = CGDisplayPixelsWide(_cocoa_video_data.display_id); + _cocoa_video_data.height = CGDisplayPixelsHigh(_cocoa_video_data.display_id); _cocoa_video_data.fullscreen = true; /* Setup double-buffer emulation */ - _cocoa_video_data.pixels = (uint8 *) malloc(width * height); - if(_cocoa_video_data.pixels == NULL) { + _cocoa_video_data.pixels = (uint8*)malloc(width * height); + if (_cocoa_video_data.pixels == NULL) { errstr = "Failed to allocate memory for double buffering"; goto ERR_DOUBLEBUF; } - if (!CGDisplayCanSetPalette (_cocoa_video_data.display_id) ) { + if (!CGDisplayCanSetPalette(_cocoa_video_data.display_id)) { errstr = "Not an indexed display mode."; goto ERR_NOT_INDEXED; } /* If we don't hide menu bar, it will get events and interrupt the program */ - HideMenuBar (); + HideMenuBar(); /* Fade the display to original gamma */ - if (! gamma_error ) - QZ_FadeGammaIn (&gamma_table); + if (!gamma_error) QZ_FadeGammaIn(&gamma_table); - /* - There is a bug in Cocoa where NSScreen doesn't synchronize - with CGDirectDisplay, so the main screen's frame is wrong. - As a result, coordinate translation produces incorrect results. - We can hack around this bug by setting the screen rect - ourselves. This hack should be removed if/when the bug is fixed. - */ - screen_rect = NSMakeRect(0,0,width,height); + /* There is a bug in Cocoa where NSScreen doesn't synchronize + * with CGDirectDisplay, so the main screen's frame is wrong. + * As a result, coordinate translation produces incorrect results. + * We can hack around this bug by setting the screen rect ourselves. + * This hack should be removed if/when the bug is fixed. + */ + screen_rect = NSMakeRect(0, 0, width, height); [ [ NSScreen mainScreen ] setFrame:screen_rect ]; /* we're fullscreen, so flag all input states... */ @@ -1429,9 +1388,8 @@ static const char *QZ_SetVideoFullScreen pt = [ NSEvent mouseLocation ]; - pt.y = CGDisplayPixelsHigh (_cocoa_video_data.display_id) - pt.y; - if(QZ_MouseIsInsideView(&pt)) - QZ_HideMouse(); + pt.y = CGDisplayPixelsHigh(_cocoa_video_data.display_id) - pt.y; + if (QZ_MouseIsInsideView(&pt)) QZ_HideMouse(); return NULL; @@ -1440,20 +1398,18 @@ ERR_NOT_INDEXED: free(_cocoa_video_data.pixels); _cocoa_video_data.pixels = NULL; ERR_DOUBLEBUF: - CGDisplaySwitchToMode (_cocoa_video_data.display_id, _cocoa_video_data.save_mode); + CGDisplaySwitchToMode(_cocoa_video_data.display_id, _cocoa_video_data.save_mode); ERR_NO_SWITCH: - CGReleaseAllDisplays (); + CGReleaseAllDisplays(); ERR_NO_CAPTURE: - if (!gamma_error) { - QZ_FadeGammaIn (&gamma_table); - } + if (!gamma_error) QZ_FadeGammaIn(&gamma_table); ERR_NO_MATCH: return errstr; } -static void QZ_UpdateFullscreenPalette (uint first_color, uint num_colors) { - +static void QZ_UpdateFullscreenPalette(uint first_color, uint num_colors) +{ CGTableCount index; CGDeviceColor color; @@ -1463,10 +1419,10 @@ static void QZ_UpdateFullscreenPalette ( color.blue = _cur_palette[index].b / 255.0; color.green = _cur_palette[index].g / 255.0; - CGPaletteSetColorAtIndex (_cocoa_video_data.palette, color, index); + CGPaletteSetColorAtIndex(_cocoa_video_data.palette, color, index); } - CGDisplaySetPalette (_cocoa_video_data.display_id, _cocoa_video_data.palette); + CGDisplaySetPalette(_cocoa_video_data.display_id, _cocoa_video_data.palette); } /* Wait for the VBL to occur (estimated since we don't have a hardware interrupt) */ @@ -1480,50 +1436,47 @@ static void QZ_WaitForVerticalBlank(void double adjustment; CFNumberRef refreshRateCFNumber; - refreshRateCFNumber = CFDictionaryGetValue (_cocoa_video_data.mode, kCGDisplayRefreshRate); - if (refreshRateCFNumber == NULL) + refreshRateCFNumber = CFDictionaryGetValue(_cocoa_video_data.mode, kCGDisplayRefreshRate); + if (refreshRateCFNumber == NULL) return; + + if (CFNumberGetValue(refreshRateCFNumber, kCFNumberDoubleType, &refreshRate) == 0) return; - if (CFNumberGetValue (refreshRateCFNumber, kCFNumberDoubleType, &refreshRate) == 0) - return; - - if ( refreshRate == 0 ) - return; + if (refreshRate == 0) return; linesPerSecond = refreshRate * _cocoa_video_data.height; target = _cocoa_video_data.height; /* Figure out the first delay so we start off about right */ - position = CGDisplayBeamPosition (_cocoa_video_data.display_id); - if (position > target) - position = 0; + position = CGDisplayBeamPosition(_cocoa_video_data.display_id); + if (position > target) position = 0; adjustment = (target - position) / linesPerSecond; - CSleep((uint32) (adjustment * 1000)); + CSleep((uint32)(adjustment * 1000)); } static void QZ_DrawScreen(void) { uint y; - uint8 *src, *dst; QZ_WaitForVerticalBlank(); - for(y = 0; y < _cocoa_video_data.height; y++) { - src = _cocoa_video_data.pixels + y * _cocoa_video_data.width; - dst = ((uint8 *) _cocoa_video_data.realpixels) + y * _cocoa_video_data.pitch; + for (y = 0; y < _cocoa_video_data.height; y++) { + const uint8* src = _cocoa_video_data.pixels + y * _cocoa_video_data.width; + uint8* dst = (uint8*)_cocoa_video_data.realpixels + y * _cocoa_video_data.pitch; memcpy(dst, src, _cocoa_video_data.width); } } -static int QZ_ListFullscreenModes (OTTDPoint *mode_list, int max_modes) { +static int QZ_ListFullscreenModes(OTTDPoint* mode_list, int max_modes) +{ CFIndex num_modes; CFIndex i; int list_size = 0; - num_modes = CFArrayGetCount (_cocoa_video_data.mode_list); + num_modes = CFArrayGetCount(_cocoa_video_data.mode_list); /* Build list of modes with the requested bpp */ for (i = 0; i < num_modes && list_size < max_modes; i++) { @@ -1534,20 +1487,19 @@ static int QZ_ListFullscreenModes (OTTDP bool hasMode; uint16 width, height; - onemode = CFArrayGetValueAtIndex (_cocoa_video_data.mode_list, i); - number = CFDictionaryGetValue (onemode, kCGDisplayBitsPerPixel); + onemode = CFArrayGetValueAtIndex(_cocoa_video_data.mode_list, i); + number = CFDictionaryGetValue(onemode, kCGDisplayBitsPerPixel); CFNumberGetValue (number, kCFNumberSInt32Type, &bpp); - if (bpp != 8) - continue; + if (bpp != 8) continue; - number = CFDictionaryGetValue (onemode, kCGDisplayWidth); - CFNumberGetValue (number, kCFNumberSInt32Type, &intvalue); - width = (uint16) intvalue; + number = CFDictionaryGetValue(onemode, kCGDisplayWidth); + CFNumberGetValue(number, kCFNumberSInt32Type, &intvalue); + width = (uint16)intvalue; - number = CFDictionaryGetValue (onemode, kCGDisplayHeight); - CFNumberGetValue (number, kCFNumberSInt32Type, &intvalue); - height = (uint16) intvalue; + number = CFDictionaryGetValue(onemode, kCGDisplayHeight); + CFNumberGetValue(number, kCFNumberSInt32Type, &intvalue); + height = (uint16)intvalue; /* Check if mode is already in the list */ { @@ -1561,8 +1513,7 @@ static int QZ_ListFullscreenModes (OTTDP } } - if ( hasMode ) - continue; + if (hasMode) continue; /* Add mode to the list */ mode_list[list_size].x = width; @@ -1575,15 +1526,18 @@ static int QZ_ListFullscreenModes (OTTDP int i, j; for (i = 0; i < list_size; i++) { for (j = 0; j < list_size-1; j++) { - if(mode_list[j].x > mode_list[j + 1].x || (mode_list[j].x == mode_list[j + 1].x && mode_list[j].y > mode_list[j + 1].y)) { + if (mode_list[j].x > mode_list[j + 1].x || ( + mode_list[j].x == mode_list[j + 1].x && + mode_list[j].y > mode_list[j + 1].y + )) { uint tmpw = mode_list[j].x; uint tmph = mode_list[j].y; - mode_list[j].x = mode_list[j+1].x; - mode_list[j].y = mode_list[j+1].y; + mode_list[j].x = mode_list[j + 1].x; + mode_list[j].y = mode_list[j + 1].y; - mode_list[j+1].x = tmpw; - mode_list[j+1].y = tmph; + mode_list[j + 1].x = tmpw; + mode_list[j + 1].y = tmph; } } } @@ -1593,26 +1547,13 @@ static int QZ_ListFullscreenModes (OTTDP } - - - - - - - - - - - - - -/****************************************************************************************** - * Windowed and fullscreen common code * - ******************************************************************************************/ +/****************************************************************************** + * Windowed and fullscreen common code * + ******************************************************************************/ static void QZ_UpdatePalette(uint start, uint count) { - if(_cocoa_video_data.fullscreen) { + if (_cocoa_video_data.fullscreen) { QZ_UpdateFullscreenPalette(start, count); } else { QZ_UpdateWindowPalette(start, count); @@ -1626,7 +1567,7 @@ static void QZ_InitPalette(void) static void QZ_Draw(void) { - if(_cocoa_video_data.fullscreen) { + if (_cocoa_video_data.fullscreen) { QZ_DrawScreen(); } else { QZ_DrawWindow(); @@ -1654,7 +1595,7 @@ static void QZ_UpdateVideoModes(void) OTTDPoint modes[32]; const OTTDPoint *current_modes; - if(_cocoa_video_data.fullscreen) { + if (_cocoa_video_data.fullscreen) { count = QZ_ListFullscreenModes(modes, 32); current_modes = modes; } else { @@ -1662,9 +1603,11 @@ static void QZ_UpdateVideoModes(void) current_modes = _default_resolutions; } - for(i = 0, j = 0; j < lengthof(_resolutions) && i < count; i++) { - if (_cocoa_video_data.fullscreen || ((uint) current_modes[i].x <= _cocoa_video_data.device_width && - (uint) current_modes[i].y <= _cocoa_video_data.device_height)) { + for (i = 0, j = 0; j < lengthof(_resolutions) && i < count; i++) { + if (_cocoa_video_data.fullscreen || ( + (uint)current_modes[i].x <= _cocoa_video_data.device_width && + (uint)current_modes[i].y <= _cocoa_video_data.device_height) + ) { _resolutions[j][0] = current_modes[i].x; _resolutions[j][1] = current_modes[i].y; j++; @@ -1674,33 +1617,29 @@ static void QZ_UpdateVideoModes(void) _num_resolutions = j; } -static void QZ_UnsetVideoMode (void) { - /* Release fullscreen resources */ - if ( _cocoa_video_data.fullscreen ) { - +static void QZ_UnsetVideoMode(void) +{ + if (_cocoa_video_data.fullscreen) { + /* Release fullscreen resources */ OTTD_QuartzGammaTable gamma_table; int gamma_error; NSRect screen_rect; - gamma_error = QZ_FadeGammaOut (&gamma_table); + gamma_error = QZ_FadeGammaOut(&gamma_table); /* Restore original screen resolution/bpp */ - CGDisplaySwitchToMode (_cocoa_video_data.display_id, _cocoa_video_data.save_mode); - CGReleaseAllDisplays (); - ShowMenuBar (); - /* - Reset the main screen's rectangle - See comment in QZ_SetVideoFullscreen for why we do this - */ + CGDisplaySwitchToMode(_cocoa_video_data.display_id, _cocoa_video_data.save_mode); + CGReleaseAllDisplays(); + ShowMenuBar(); + /* Reset the main screen's rectangle + * See comment in QZ_SetVideoFullscreen for why we do this + */ screen_rect = NSMakeRect(0,0,_cocoa_video_data.device_width,_cocoa_video_data.device_height); [ [ NSScreen mainScreen ] setFrame:screen_rect ]; - if (! gamma_error) - QZ_FadeGammaIn (&gamma_table); - } - /* Release window mode resources */ - else { - + if (!gamma_error) QZ_FadeGammaIn(&gamma_table); + } else { + /* Release window mode resources */ [ _cocoa_video_data.window close ]; _cocoa_video_data.window = nil; _cocoa_video_data.qdview = nil; @@ -1716,25 +1655,20 @@ static void QZ_UnsetVideoMode (void) { } -static const char *QZ_SetVideoMode (uint width, uint height, bool fullscreen) { +static const char* QZ_SetVideoMode(uint width, uint height, bool fullscreen) +{ const char *ret; - /* Setup full screen video */ - if ( fullscreen ) { - _cocoa_video_data.issetting = true; - ret = QZ_SetVideoFullScreen (width, height); - _cocoa_video_data.issetting = false; - if (ret != NULL) - return ret; + _cocoa_video_data.issetting = true; + if (fullscreen) { + /* Setup full screen video */ + ret = QZ_SetVideoFullScreen(width, height); + } else { + /* Setup windowed video */ + ret = QZ_SetVideoWindowed(width, height); } - /* Setup windowed video */ - else { - _cocoa_video_data.issetting = true; - ret = QZ_SetVideoWindowed (width, height); - _cocoa_video_data.issetting = false; - if (ret != NULL) - return ret; - } + _cocoa_video_data.issetting = false; + if (ret != NULL) return ret; /* Signal successful completion (used internally) */ _cocoa_video_data.isset = true; @@ -1752,7 +1686,7 @@ static const char *QZ_SetVideoMode (uint return NULL; } -static const char *QZ_SetVideoModeAndRestoreOnFailure (uint width, uint height, bool fullscreen) +static const char* QZ_SetVideoModeAndRestoreOnFailure(uint width, uint height, bool fullscreen) { bool wasset = _cocoa_video_data.isset; uint32 oldwidth = _cocoa_video_data.width; @@ -1761,45 +1695,51 @@ static const char *QZ_SetVideoModeAndRes const char *ret; ret = QZ_SetVideoMode(width, height, fullscreen); - if(ret != NULL && wasset) - QZ_SetVideoMode(oldwidth, oldheight, oldfullscreen); + if (ret != NULL && wasset) QZ_SetVideoMode(oldwidth, oldheight, oldfullscreen); return ret; } -static void QZ_VideoInit (void) { - +static void QZ_VideoInit(void) +{ memset(&_cocoa_video_data, 0, sizeof(_cocoa_video_data)); /* Initialize the video settings; this data persists between mode switches */ _cocoa_video_data.display_id = kCGDirectMainDisplay; - _cocoa_video_data.save_mode = CGDisplayCurrentMode (_cocoa_video_data.display_id); - _cocoa_video_data.mode_list = CGDisplayAvailableModes (_cocoa_video_data.display_id); - _cocoa_video_data.palette = CGPaletteCreateDefaultColorPalette (); + _cocoa_video_data.save_mode = CGDisplayCurrentMode(_cocoa_video_data.display_id); + _cocoa_video_data.mode_list = CGDisplayAvailableModes(_cocoa_video_data.display_id); + _cocoa_video_data.palette = CGPaletteCreateDefaultColorPalette(); /* Gather some information that is useful to know about the display */ /* Maybe this should be moved to QZ_SetVideoMode, in case this is changed after startup */ - CFNumberGetValue (CFDictionaryGetValue (_cocoa_video_data.save_mode, kCGDisplayBitsPerPixel), - kCFNumberSInt32Type, &_cocoa_video_data.device_bpp); + CFNumberGetValue( + CFDictionaryGetValue(_cocoa_video_data.save_mode, kCGDisplayBitsPerPixel), + kCFNumberSInt32Type, &_cocoa_video_data.device_bpp + ); - CFNumberGetValue (CFDictionaryGetValue (_cocoa_video_data.save_mode, kCGDisplayWidth), - kCFNumberSInt32Type, &_cocoa_video_data.device_width); + CFNumberGetValue( + CFDictionaryGetValue(_cocoa_video_data.save_mode, kCGDisplayWidth), + kCFNumberSInt32Type, &_cocoa_video_data.device_width + ); - CFNumberGetValue (CFDictionaryGetValue (_cocoa_video_data.save_mode, kCGDisplayHeight), - kCFNumberSInt32Type, &_cocoa_video_data.device_height); + CFNumberGetValue( + CFDictionaryGetValue(_cocoa_video_data.save_mode, kCGDisplayHeight), + kCFNumberSInt32Type, &_cocoa_video_data.device_height + ); _cocoa_video_data.cursor_visible = true; /* register for sleep notifications so wake from sleep generates SDL_VIDEOEXPOSE */ -// QZ_RegisterForSleepNotifications (); +// QZ_RegisterForSleepNotifications(); } /* Convert local coordinate to window server (CoreGraphics) coordinate */ -static CGPoint QZ_PrivateLocalToCG (NSPoint *p) { +static CGPoint QZ_PrivateLocalToCG(NSPoint* p) +{ CGPoint cgp; - if ( ! _cocoa_video_data.fullscreen ) { + if (!_cocoa_video_data.fullscreen) { *p = [ _cocoa_video_data.qdview convertPoint:*p toView: nil ]; *p = [ _cocoa_video_data.window convertBaseToScreen:*p ]; p->y = _cocoa_video_data.device_height - p->y; @@ -1811,34 +1751,36 @@ static CGPoint QZ_PrivateLocalToCG (NSPo return cgp; } -static void QZ_WarpCursor (int x, int y) { +static void QZ_WarpCursor(int x, int y) +{ NSPoint p; CGPoint cgp; /* Only allow warping when in foreground */ - if ( ! [ NSApp isActive ] ) - return; + if (![ NSApp isActive ]) return; - p = NSMakePoint (x, y); - cgp = QZ_PrivateLocalToCG (&p); + p = NSMakePoint(x, y); + cgp = QZ_PrivateLocalToCG(&p); /* this is the magic call that fixes cursor "freezing" after warp */ - CGSetLocalEventsSuppressionInterval (0.0); + CGSetLocalEventsSuppressionInterval(0.0); /* Do the actual warp */ - CGWarpMouseCursorPosition (cgp); + CGWarpMouseCursorPosition(cgp); /* Generate the mouse moved event */ -// SDL_PrivateMouseMotion (0, 0, x, y); +// SDL_PrivateMouseMotion(0, 0, x, y); } -void QZ_ShowMouse (void) { +static void QZ_ShowMouse(void) +{ if (!_cocoa_video_data.cursor_visible) { [ NSCursor unhide ]; _cocoa_video_data.cursor_visible = true; } } -void QZ_HideMouse (void) { +static void QZ_HideMouse(void) +{ if (_cocoa_video_data.cursor_visible) { #ifndef _DEBUG [ NSCursor hide ]; @@ -1848,30 +1790,14 @@ void QZ_HideMouse (void) { } - - - - - - - - - - - - - - -/****************************************************************************************** - * OS X application creation * - ******************************************************************************************/ - - +/****************************************************************************** + * OS X application creation * + ******************************************************************************/ /* The main class of the application, the application's delegate */ @implementation OTTDMain /* Called when the internal event loop has just started running */ -- (void) applicationDidFinishLaunching: (NSNotification *) note +- (void) applicationDidFinishLaunching: (NSNotification*) note { /* Hand off to main application code */ QZ_GameLoop(); @@ -1881,7 +1807,7 @@ void QZ_HideMouse (void) { } /* Display the in game quit confirmation dialog */ -- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *) sender +- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication*) sender { // DEBUG(driver, 1)("cocoa_v: applicationShouldTerminate"); @@ -1911,7 +1837,7 @@ static void setApplicationMenu(void) title = [@"Hide " stringByAppendingString:appName]; [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; - menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + menuItem = (NSMenuItem*)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; @@ -1938,9 +1864,9 @@ static void setApplicationMenu(void) /* Create a window menu */ static void setupWindowMenu(void) { - NSMenu *windowMenu; - NSMenuItem *windowMenuItem; - NSMenuItem *menuItem; + NSMenu* windowMenu; + NSMenuItem* windowMenuItem; + NSMenuItem* menuItem; windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; @@ -1970,10 +1896,11 @@ static void setupApplication(void) [NSApplication sharedApplication]; /* Tell the dock about us */ - if (!CPSGetCurrentProcess(&PSN)) - if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) - if (!CPSSetFrontProcess(&PSN)) - [NSApplication sharedApplication]; + if (!CPSGetCurrentProcess(&PSN) && + !CPSEnableForegroundOperation(&PSN, 0x03, 0x3C, 0x2C, 0x1103) && + !CPSSetFrontProcess(&PSN)) { + [NSApplication sharedApplication]; + } /* Set up the menubar */ [NSApp setMainMenu:[[NSMenu alloc] init]]; @@ -1986,33 +1913,17 @@ static void setupApplication(void) } - - - - - - - - - - - - - - -/****************************************************************************************** - * Video driver interface * - ******************************************************************************************/ +/****************************************************************************** + * Video driver interface * + ******************************************************************************/ static void CocoaVideoStop(void) { DEBUG(driver, 1)("cocoa_v: CocoaVideoStop"); - if(!_cocoa_video_started) - return; + if (!_cocoa_video_started) return; - if(_cocoa_video_data.isset) - QZ_UnsetVideoMode(); + if (_cocoa_video_data.isset) QZ_UnsetVideoMode(); [_ottd_main release]; @@ -2025,8 +1936,7 @@ static const char *CocoaVideoStart(const DEBUG(driver, 1)("cocoa_v: CocoaVideoStart"); - if(_cocoa_video_started) - return "Already started"; + if (_cocoa_video_started) return "Already started"; _cocoa_video_started = true; memset(&_cocoa_video_data, 0, sizeof(_cocoa_video_data)); @@ -2034,14 +1944,12 @@ static const char *CocoaVideoStart(const setupApplication(); /* Don't create a window or enter fullscreen if we're just going to show a dialog. */ - if(_cocoa_video_dialog) - return NULL; + if (_cocoa_video_dialog) return NULL; QZ_VideoInit(); ret = QZ_SetVideoMode(_cur_resolution[0], _cur_resolution[1], _fullscreen); - if(ret != NULL) - CocoaVideoStop(); + if (ret != NULL) CocoaVideoStop(); return ret; } @@ -2070,8 +1978,8 @@ static bool CocoaVideoChangeRes(int w, i const char *ret; DEBUG(driver, 1)("cocoa_v: CocoaVideoChangeRes"); - ret = QZ_SetVideoModeAndRestoreOnFailure((uint) w, (uint) h, _cocoa_video_data.fullscreen); - if(ret != NULL) { + ret = QZ_SetVideoModeAndRestoreOnFailure((uint)w, (uint)h, _cocoa_video_data.fullscreen); + if (ret != NULL) { DEBUG(driver, 1)("cocoa_v: failed with message: %s", ret); } @@ -2085,7 +1993,7 @@ static void CocoaVideoFullScreen(bool fu DEBUG(driver, 1)("cocoa_v: CocoaVideoFullScreen"); ret = QZ_SetVideoModeAndRestoreOnFailure(_cocoa_video_data.width, _cocoa_video_data.height, full_screen); - if(ret != NULL) { + if (ret != NULL) { DEBUG(driver, 1)("cocoa_v: failed with message: %s", ret); } @@ -2102,26 +2010,22 @@ const HalVideoDriver _cocoa_video_driver }; - - /* This is needed since sometimes assert is called before the videodriver is initialized */ -void CocoaDialog ( const char *title, const char *message, const char *buttonLabel ) +void CocoaDialog(const char* title, const char* message, const char* buttonLabel) { bool wasstarted; _cocoa_video_dialog = true; wasstarted = _cocoa_video_started; - if(!_cocoa_video_started && CocoaVideoStart(NULL) != NULL) { + if (!_cocoa_video_started && CocoaVideoStart(NULL) != NULL) { fprintf(stderr, "%s: %s\n", title, message); return; } - NSRunAlertPanel([NSString stringWithCString: title], [NSString stringWithCString: message], [NSString stringWithCString: buttonLabel], nil, nil); - if(!wasstarted) - CocoaVideoStop(); + if (!wasstarted) CocoaVideoStop(); _cocoa_video_dialog = false; } @@ -2134,8 +2038,8 @@ void cocoaSetWorkingDirectory(void) int chdir_ret; CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); - if (CFURLGetFileSystemRepresentation(url2, true, (unsigned char *) parentdir, MAXPATHLEN)) { - chdir_ret = chdir (parentdir); /* chdir to the binary app's parent */ + if (CFURLGetFileSystemRepresentation(url2, true, (unsigned char*)parentdir, MAXPATHLEN)) { + chdir_ret = chdir(parentdir); /* chdir to the binary app's parent */ assert(chdir_ret == 0); } CFRelease(url);