mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
OSX: Fixed window resize.
This commit is contained in:
parent
6eef8211e3
commit
8dab207b36
2 changed files with 126 additions and 102 deletions
|
@ -14,6 +14,7 @@
|
||||||
#include <bx/uint32_t.h>
|
#include <bx/uint32_t.h>
|
||||||
#include <bx/thread.h>
|
#include <bx/thread.h>
|
||||||
#include <bx/os.h>
|
#include <bx/os.h>
|
||||||
|
#include <bx/handlealloc.h>
|
||||||
|
|
||||||
#define DEFAULT_WIDTH 1280
|
#define DEFAULT_WIDTH 1280
|
||||||
#define DEFAULT_HEIGHT 720
|
#define DEFAULT_HEIGHT 720
|
||||||
|
@ -30,108 +31,20 @@
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation AppDelegate
|
|
||||||
|
|
||||||
+ (AppDelegate *)sharedDelegate
|
|
||||||
{
|
|
||||||
static id delegate = [AppDelegate new];
|
|
||||||
return delegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (id)init
|
|
||||||
{
|
|
||||||
self = [super init];
|
|
||||||
|
|
||||||
if (nil == self)
|
|
||||||
{
|
|
||||||
return nil;
|
|
||||||
}
|
|
||||||
|
|
||||||
self->terminated = false;
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
|
||||||
{
|
|
||||||
BX_UNUSED(sender);
|
|
||||||
self->terminated = true;
|
|
||||||
return NSTerminateCancel;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (bool)applicationHasTerminated
|
|
||||||
{
|
|
||||||
return self->terminated;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
@interface Window : NSObject<NSWindowDelegate>
|
@interface Window : NSObject<NSWindowDelegate>
|
||||||
{
|
{
|
||||||
unsigned int windowCount;
|
uint32_t windowCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (Window *)sharedDelegate;
|
+ (Window*)sharedDelegate;
|
||||||
- (id)init;
|
- (id)init;
|
||||||
- (void)windowCreated:(NSWindow *)window;
|
- (void)windowCreated:(NSWindow*)window;
|
||||||
- (void)windowWillClose:(NSNotification *)notification;
|
- (void)windowWillClose:(NSNotification*)notification;
|
||||||
- (BOOL)windowShouldClose:(NSWindow *)window;
|
- (BOOL)windowShouldClose:(NSWindow*)window;
|
||||||
|
- (void)windowDidResize:(NSNotification*)notification;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation Window
|
|
||||||
|
|
||||||
+ (Window *)sharedDelegate
|
|
||||||
{
|
|
||||||
static id windowDelegate = [Window new];
|
|
||||||
return windowDelegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (id)init
|
|
||||||
{
|
|
||||||
self = [super init];
|
|
||||||
if (nil == self)
|
|
||||||
{
|
|
||||||
return nil;
|
|
||||||
}
|
|
||||||
|
|
||||||
self->windowCount = 0;
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)windowCreated:(NSWindow *)window
|
|
||||||
{
|
|
||||||
assert(window);
|
|
||||||
|
|
||||||
[window setDelegate:self];
|
|
||||||
|
|
||||||
assert(self->windowCount < ~0u);
|
|
||||||
self->windowCount += 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)windowWillClose:(NSNotification *)notification
|
|
||||||
{
|
|
||||||
BX_UNUSED(notification);
|
|
||||||
}
|
|
||||||
|
|
||||||
- (BOOL)windowShouldClose:(NSWindow *)window
|
|
||||||
{
|
|
||||||
assert(window);
|
|
||||||
|
|
||||||
[window setDelegate:nil];
|
|
||||||
|
|
||||||
assert(self->windowCount);
|
|
||||||
self->windowCount -= 1;
|
|
||||||
|
|
||||||
if (self->windowCount == 0)
|
|
||||||
{
|
|
||||||
[NSApp terminate:self];
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
@end
|
|
||||||
|
|
||||||
namespace entry
|
namespace entry
|
||||||
{
|
{
|
||||||
static WindowHandle s_defaultWindow = { 0 }; // TODO: Add support for more windows
|
static WindowHandle s_defaultWindow = { 0 }; // TODO: Add support for more windows
|
||||||
|
@ -205,8 +118,10 @@ namespace entry
|
||||||
|
|
||||||
void getMousePos(int* outX, int* outY)
|
void getMousePos(int* outX, int* outY)
|
||||||
{
|
{
|
||||||
NSRect originalFrame = [m_window frame];
|
WindowHandle handle = { 0 };
|
||||||
NSPoint location = [m_window mouseLocationOutsideOfEventStream];
|
NSWindow* window = m_window[handle.idx];
|
||||||
|
NSRect originalFrame = [window frame];
|
||||||
|
NSPoint location = [window mouseLocationOutsideOfEventStream];
|
||||||
NSRect adjustFrame = [NSWindow contentRectForFrameRect: originalFrame styleMask: NSTitledWindowMask];
|
NSRect adjustFrame = [NSWindow contentRectForFrameRect: originalFrame styleMask: NSTitledWindowMask];
|
||||||
|
|
||||||
int x = location.x;
|
int x = location.x;
|
||||||
|
@ -387,6 +302,16 @@ namespace entry
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void windowDidResize()
|
||||||
|
{
|
||||||
|
WindowHandle handle = { 0 };
|
||||||
|
NSWindow* window = m_window[handle.idx];
|
||||||
|
NSRect rect = [window frame];
|
||||||
|
uint32_t width = uint32_t(rect.size.width);
|
||||||
|
uint32_t height = uint32_t(rect.size.height);
|
||||||
|
m_eventQueue.postSizeEvent(handle, width, height);
|
||||||
|
}
|
||||||
|
|
||||||
int32_t run(int _argc, char** _argv)
|
int32_t run(int _argc, char** _argv)
|
||||||
{
|
{
|
||||||
[NSApplication sharedApplication];
|
[NSApplication sharedApplication];
|
||||||
|
@ -421,9 +346,9 @@ namespace entry
|
||||||
[menubar addItem:appMenuItem];
|
[menubar addItem:appMenuItem];
|
||||||
[NSApp setMainMenu:menubar];
|
[NSApp setMainMenu:menubar];
|
||||||
|
|
||||||
|
m_windowAlloc.alloc();
|
||||||
NSRect rect = NSMakeRect(0, 0, DEFAULT_WIDTH, DEFAULT_HEIGHT);
|
NSRect rect = NSMakeRect(0, 0, DEFAULT_WIDTH, DEFAULT_HEIGHT);
|
||||||
NSWindow* window = [NSWindow alloc];
|
NSWindow* window = [[NSWindow alloc]
|
||||||
[window
|
|
||||||
initWithContentRect:rect
|
initWithContentRect:rect
|
||||||
styleMask:0
|
styleMask:0
|
||||||
|NSTitledWindowMask
|
|NSTitledWindowMask
|
||||||
|
@ -431,7 +356,7 @@ namespace entry
|
||||||
|NSMiniaturizableWindowMask
|
|NSMiniaturizableWindowMask
|
||||||
|NSResizableWindowMask
|
|NSResizableWindowMask
|
||||||
backing:NSBackingStoreBuffered defer:NO
|
backing:NSBackingStoreBuffered defer:NO
|
||||||
];
|
];
|
||||||
NSString* appName = [[NSProcessInfo processInfo] processName];
|
NSString* appName = [[NSProcessInfo processInfo] processName];
|
||||||
[window setTitle:appName];
|
[window setTitle:appName];
|
||||||
[window cascadeTopLeftFromPoint:NSMakePoint(20,20)];
|
[window cascadeTopLeftFromPoint:NSMakePoint(20,20)];
|
||||||
|
@ -440,7 +365,7 @@ namespace entry
|
||||||
[window setBackgroundColor:[NSColor blackColor]];
|
[window setBackgroundColor:[NSColor blackColor]];
|
||||||
[[Window sharedDelegate] windowCreated:window];
|
[[Window sharedDelegate] windowCreated:window];
|
||||||
|
|
||||||
m_window = window;
|
m_window[0] = window;
|
||||||
|
|
||||||
bgfx::osxSetNSWindow(window);
|
bgfx::osxSetNSWindow(window);
|
||||||
|
|
||||||
|
@ -474,8 +399,10 @@ namespace entry
|
||||||
|
|
||||||
EventQueue m_eventQueue;
|
EventQueue m_eventQueue;
|
||||||
|
|
||||||
|
bx::HandleAllocT<ENTRY_CONFIG_MAX_WINDOWS> m_windowAlloc;
|
||||||
|
NSWindow* m_window[ENTRY_CONFIG_MAX_WINDOWS];
|
||||||
|
|
||||||
bool m_exit;
|
bool m_exit;
|
||||||
NSWindow* m_window;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static Context s_ctx;
|
static Context s_ctx;
|
||||||
|
@ -534,6 +461,102 @@ namespace entry
|
||||||
|
|
||||||
} // namespace entry
|
} // namespace entry
|
||||||
|
|
||||||
|
@implementation AppDelegate
|
||||||
|
|
||||||
|
+ (AppDelegate *)sharedDelegate
|
||||||
|
{
|
||||||
|
static id delegate = [AppDelegate new];
|
||||||
|
return delegate;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id)init
|
||||||
|
{
|
||||||
|
self = [super init];
|
||||||
|
|
||||||
|
if (nil == self)
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
self->terminated = false;
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
||||||
|
{
|
||||||
|
BX_UNUSED(sender);
|
||||||
|
self->terminated = true;
|
||||||
|
return NSTerminateCancel;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (bool)applicationHasTerminated
|
||||||
|
{
|
||||||
|
return self->terminated;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation Window
|
||||||
|
|
||||||
|
+ (Window*)sharedDelegate
|
||||||
|
{
|
||||||
|
static id windowDelegate = [Window new];
|
||||||
|
return windowDelegate;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id)init
|
||||||
|
{
|
||||||
|
self = [super init];
|
||||||
|
if (nil == self)
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
self->windowCount = 0;
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)windowCreated:(NSWindow*)window
|
||||||
|
{
|
||||||
|
assert(window);
|
||||||
|
|
||||||
|
[window setDelegate:self];
|
||||||
|
|
||||||
|
assert(self->windowCount < ~0u);
|
||||||
|
self->windowCount += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)windowWillClose:(NSNotification*)notification
|
||||||
|
{
|
||||||
|
BX_UNUSED(notification);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL)windowShouldClose:(NSWindow*)window
|
||||||
|
{
|
||||||
|
assert(window);
|
||||||
|
|
||||||
|
[window setDelegate:nil];
|
||||||
|
|
||||||
|
assert(self->windowCount);
|
||||||
|
self->windowCount -= 1;
|
||||||
|
|
||||||
|
if (self->windowCount == 0)
|
||||||
|
{
|
||||||
|
[NSApp terminate:self];
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)windowDidResize:(NSNotification*)notification
|
||||||
|
{
|
||||||
|
BX_UNUSED(notification);
|
||||||
|
using namespace entry;
|
||||||
|
s_ctx.windowDidResize();
|
||||||
|
}
|
||||||
|
@end
|
||||||
|
|
||||||
int main(int _argc, char** _argv)
|
int main(int _argc, char** _argv)
|
||||||
{
|
{
|
||||||
using namespace entry;
|
using namespace entry;
|
||||||
|
|
|
@ -81,11 +81,12 @@ namespace bgfx
|
||||||
|
|
||||||
void GlContext::resize(uint32_t _width, uint32_t _height, bool _vsync)
|
void GlContext::resize(uint32_t _width, uint32_t _height, bool _vsync)
|
||||||
{
|
{
|
||||||
BX_UNUSED(_width, _height, _vsync);
|
BX_UNUSED(_width, _height);
|
||||||
|
|
||||||
GLint interval = _vsync ? 1 : 0;
|
GLint interval = _vsync ? 1 : 0;
|
||||||
NSOpenGLContext* glContext = (NSOpenGLContext*)m_context;
|
NSOpenGLContext* glContext = (NSOpenGLContext*)m_context;
|
||||||
[glContext setValues:&interval forParameter:NSOpenGLCPSwapInterval];
|
[glContext setValues:&interval forParameter:NSOpenGLCPSwapInterval];
|
||||||
|
[glContext update];
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GlContext::isSwapChainSupported()
|
bool GlContext::isSwapChainSupported()
|
||||||
|
|
Loading…
Reference in a new issue