2013-07-21 17:44:53 -04:00
|
|
|
/*
|
2014-02-11 01:18:39 -05:00
|
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
2013-07-21 17:44:53 -04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2013-08-15 00:08:46 -04:00
|
|
|
#include "entry_p.h"
|
2013-07-21 17:44:53 -04:00
|
|
|
|
2013-08-15 00:08:46 -04:00
|
|
|
#if ENTRY_CONFIG_USE_NATIVE && BX_PLATFORM_IOS
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <QuartzCore/CAEAGLLayer.h>
|
|
|
|
|
2013-08-08 02:11:20 -04:00
|
|
|
#include <bgfxplatform.h>
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
#include <bx/uint32_t.h>
|
|
|
|
#include <bx/thread.h>
|
|
|
|
|
|
|
|
namespace entry
|
|
|
|
{
|
|
|
|
struct MainThreadEntry
|
|
|
|
{
|
|
|
|
int m_argc;
|
|
|
|
char** m_argv;
|
|
|
|
|
|
|
|
static int32_t threadFunc(void* _userData);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Context
|
|
|
|
{
|
2014-04-05 08:49:37 -04:00
|
|
|
Context(uint32_t _width, uint32_t _height)
|
2013-07-21 17:44:53 -04:00
|
|
|
{
|
|
|
|
const char* argv[1] = { "ios" };
|
|
|
|
m_mte.m_argc = 1;
|
|
|
|
m_mte.m_argv = const_cast<char**>(argv);
|
|
|
|
|
2014-04-05 08:49:37 -04:00
|
|
|
m_eventQueue.postSizeEvent(_width, _height);
|
2013-07-21 17:44:53 -04:00
|
|
|
|
2014-01-19 17:58:05 -05:00
|
|
|
// Prevent render thread creation.
|
|
|
|
bgfx::renderFrame();
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
m_thread.init(MainThreadEntry::threadFunc, &m_mte);
|
|
|
|
}
|
|
|
|
|
|
|
|
~Context()
|
|
|
|
{
|
|
|
|
m_thread.shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
MainThreadEntry m_mte;
|
|
|
|
bx::Thread m_thread;
|
|
|
|
|
|
|
|
EventQueue m_eventQueue;
|
|
|
|
};
|
|
|
|
|
|
|
|
static Context* s_ctx;
|
|
|
|
|
|
|
|
int32_t MainThreadEntry::threadFunc(void* _userData)
|
|
|
|
{
|
2014-07-07 01:14:20 -04:00
|
|
|
CFBundleRef mainBundle = CFBundleGetMainBundle();
|
|
|
|
CFURLRef resourcesURL = CFBundleCopyResourcesDirectoryURL(mainBundle);
|
|
|
|
char path[PATH_MAX];
|
|
|
|
if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX) )
|
|
|
|
{
|
|
|
|
chdir(path);
|
|
|
|
}
|
|
|
|
CFRelease(resourcesURL);
|
2014-04-05 08:49:37 -04:00
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
MainThreadEntry* self = (MainThreadEntry*)_userData;
|
2013-08-08 01:50:01 -04:00
|
|
|
int32_t result = main(self->m_argc, self->m_argv);
|
2013-07-21 17:44:53 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Event* poll()
|
|
|
|
{
|
|
|
|
return s_ctx->m_eventQueue.poll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void release(const Event* _event)
|
|
|
|
{
|
|
|
|
s_ctx->m_eventQueue.release(_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setWindowSize(uint32_t _width, uint32_t _height)
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(_width, _height);
|
2014-08-05 15:57:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool setWindowTitle(const char* _title)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_title);
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void toggleWindowFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void setMouseLock(bool _lock)
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(_lock);
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace entry
|
|
|
|
|
|
|
|
using namespace entry;
|
|
|
|
|
2013-07-21 23:56:12 -04:00
|
|
|
@interface View : UIView
|
2013-07-21 17:44:53 -04:00
|
|
|
{
|
|
|
|
CADisplayLink* m_displayLink;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2013-07-21 23:56:12 -04:00
|
|
|
@implementation View
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
+ (Class)layerClass
|
|
|
|
{
|
|
|
|
return [CAEAGLLayer class];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)initWithFrame:(CGRect)rect
|
|
|
|
{
|
|
|
|
self = [super initWithFrame:rect];
|
|
|
|
|
|
|
|
if (nil == self)
|
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
CAEAGLLayer* layer = (CAEAGLLayer*)self.layer;
|
2013-07-21 18:38:44 -04:00
|
|
|
bgfx::iosSetEaglLayer(layer);
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)start
|
|
|
|
{
|
|
|
|
if (nil == m_displayLink)
|
|
|
|
{
|
|
|
|
m_displayLink = [self.window.screen displayLinkWithTarget:self selector:@selector(renderFrame)];
|
2013-12-07 13:19:54 -05:00
|
|
|
//[m_displayLink setFrameInterval:1];
|
|
|
|
//[m_displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
|
2013-12-20 19:41:53 -05:00
|
|
|
// [m_displayLink addToRunLoop:[NSRunLoop currentRunLoop]];
|
|
|
|
[m_displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)stop
|
|
|
|
{
|
|
|
|
if (nil != m_displayLink)
|
|
|
|
{
|
|
|
|
[m_displayLink invalidate];
|
|
|
|
m_displayLink = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)renderFrame
|
|
|
|
{
|
|
|
|
bgfx::renderFrame();
|
|
|
|
}
|
|
|
|
|
2014-04-05 08:49:37 -04:00
|
|
|
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
UITouch *touch = [[event allTouches] anyObject];
|
|
|
|
CGPoint touchLocation = [touch locationInView:self];
|
|
|
|
|
|
|
|
s_ctx->m_eventQueue.postMouseEvent(touchLocation.x, touchLocation.y);
|
|
|
|
s_ctx->m_eventQueue.postMouseEvent(touchLocation.x, touchLocation.y, MouseButton::Left, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
UITouch *touch = [[event allTouches] anyObject];
|
|
|
|
CGPoint touchLocation = [touch locationInView:self];
|
|
|
|
s_ctx->m_eventQueue.postMouseEvent(touchLocation.x, touchLocation.y, MouseButton::Left, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
UITouch *touch = [[event allTouches] anyObject];
|
|
|
|
CGPoint touchLocation = [touch locationInView:self];
|
|
|
|
s_ctx->m_eventQueue.postMouseEvent(touchLocation.x, touchLocation.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
UITouch *touch = [[event allTouches] anyObject];
|
|
|
|
CGPoint touchLocation = [touch locationInView:self];
|
|
|
|
s_ctx->m_eventQueue.postMouseEvent(touchLocation.x, touchLocation.y, MouseButton::Left, false);
|
|
|
|
}
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface AppDelegate : UIResponder<UIApplicationDelegate>
|
|
|
|
{
|
|
|
|
UIWindow* m_window;
|
2013-07-21 23:56:12 -04:00
|
|
|
View* m_view;
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, retain) UIWindow* m_window;
|
2013-07-21 23:56:12 -04:00
|
|
|
@property (nonatomic, retain) View* m_view;
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
|
|
@synthesize m_window;
|
|
|
|
@synthesize m_view;
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application, launchOptions);
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
CGRect rect = [ [UIScreen mainScreen] bounds];
|
|
|
|
m_window = [ [UIWindow alloc] initWithFrame: rect];
|
2013-07-21 23:56:12 -04:00
|
|
|
m_view = [ [View alloc] initWithFrame: rect];
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
[m_window addSubview: m_view];
|
|
|
|
[m_window makeKeyAndVisible];
|
2014-04-05 08:49:37 -04:00
|
|
|
|
|
|
|
//float scaleFactor = [[UIScreen mainScreen] scale]; // should use this, but ui is too small on ipad retina
|
|
|
|
float scaleFactor = 1.0f;
|
|
|
|
[m_view setContentScaleFactor: scaleFactor ];
|
2013-07-21 17:44:53 -04:00
|
|
|
|
2014-04-05 08:49:37 -04:00
|
|
|
s_ctx = new Context((uint32_t)(scaleFactor*rect.size.width), (uint32_t)(scaleFactor*rect.size.height));
|
2013-07-21 17:44:53 -04:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillResignActive:(UIApplication *)application
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application);
|
2013-07-21 17:44:53 -04:00
|
|
|
[m_view stop];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application);
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillEnterForeground:(UIApplication *)application
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application);
|
2013-07-21 17:44:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidBecomeActive:(UIApplication *)application
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application);
|
2013-07-21 17:44:53 -04:00
|
|
|
[m_view start];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillTerminate:(UIApplication *)application
|
|
|
|
{
|
2013-12-07 13:19:54 -05:00
|
|
|
BX_UNUSED(application);
|
2013-07-21 17:44:53 -04:00
|
|
|
[m_view stop];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[m_window release];
|
|
|
|
[m_view release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
int main(int _argc, char* _argv[])
|
|
|
|
{
|
|
|
|
NSAutoreleasePool* pool = [ [NSAutoreleasePool alloc] init];
|
|
|
|
int exitCode = UIApplicationMain(_argc, _argv, @"UIApplication", NSStringFromClass([AppDelegate class]) );
|
|
|
|
[pool release];
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BX_PLATFORM_IOS
|