| |
|
|
| |
| |
| |
| |
| |
|
|
| #import <Foundation/Foundation.h> |
|
|
| #if TARGET_OS_OSX |
| #import <Cocoa/Cocoa.h> |
| #else |
| #import <UIKit/UIKit.h> |
| #endif |
|
|
| #import <Metal/Metal.h> |
| #import <MetalKit/MetalKit.h> |
|
|
| #include "imgui.h" |
| #include "imgui_impl_metal.h" |
| #if TARGET_OS_OSX |
| #include "imgui_impl_osx.h" |
| @interface AppViewController : NSViewController<NSWindowDelegate> |
| @end |
| #else |
| @interface AppViewController : UIViewController |
| @end |
| #endif |
|
|
| @interface AppViewController () <MTKViewDelegate> |
| @property (nonatomic, readonly) MTKView *mtkView; |
| @property (nonatomic, strong) id <MTLDevice> device; |
| @property (nonatomic, strong) id <MTLCommandQueue> commandQueue; |
| @end |
|
|
| |
| |
| |
|
|
| @implementation AppViewController |
|
|
| -(instancetype)initWithNibName:(nullable NSString *)nibNameOrNil bundle:(nullable NSBundle *)nibBundleOrNil |
| { |
| self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; |
|
|
| _device = MTLCreateSystemDefaultDevice(); |
| _commandQueue = [_device newCommandQueue]; |
|
|
| if (!self.device) |
| { |
| NSLog(@"Metal is not supported"); |
| abort(); |
| } |
|
|
| |
| |
| IMGUI_CHECKVERSION(); |
| ImGui::CreateContext(); |
| ImGuiIO& io = ImGui::GetIO(); (void)io; |
| io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; |
| io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; |
|
|
| |
| ImGui::StyleColorsDark(); |
| |
|
|
| |
| ImGui_ImplMetal_Init(_device); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| return self; |
| } |
|
|
| -(MTKView *)mtkView |
| { |
| return (MTKView *)self.view; |
| } |
|
|
| -(void)loadView |
| { |
| self.view = [[MTKView alloc] initWithFrame:CGRectMake(0, 0, 1200, 720)]; |
| } |
|
|
| -(void)viewDidLoad |
| { |
| [super viewDidLoad]; |
|
|
| self.mtkView.device = self.device; |
| self.mtkView.delegate = self; |
|
|
| #if TARGET_OS_OSX |
| ImGui_ImplOSX_Init(self.view); |
| [NSApp activateIgnoringOtherApps:YES]; |
| #endif |
| } |
|
|
| -(void)drawInMTKView:(MTKView*)view |
| { |
| ImGuiIO& io = ImGui::GetIO(); |
| io.DisplaySize.x = view.bounds.size.width; |
| io.DisplaySize.y = view.bounds.size.height; |
|
|
| #if TARGET_OS_OSX |
| CGFloat framebufferScale = view.window.screen.backingScaleFactor ?: NSScreen.mainScreen.backingScaleFactor; |
| #else |
| CGFloat framebufferScale = view.window.screen.scale ?: UIScreen.mainScreen.scale; |
| #endif |
| io.DisplayFramebufferScale = ImVec2(framebufferScale, framebufferScale); |
|
|
| id<MTLCommandBuffer> commandBuffer = [self.commandQueue commandBuffer]; |
|
|
| MTLRenderPassDescriptor* renderPassDescriptor = view.currentRenderPassDescriptor; |
| if (renderPassDescriptor == nil) |
| { |
| [commandBuffer commit]; |
| return; |
| } |
|
|
| |
| ImGui_ImplMetal_NewFrame(renderPassDescriptor); |
| #if TARGET_OS_OSX |
| ImGui_ImplOSX_NewFrame(view); |
| #endif |
| ImGui::NewFrame(); |
|
|
| |
| static bool show_demo_window = true; |
| static bool show_another_window = false; |
| static ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); |
|
|
| |
| if (show_demo_window) |
| ImGui::ShowDemoWindow(&show_demo_window); |
|
|
| |
| { |
| static float f = 0.0f; |
| static int counter = 0; |
|
|
| ImGui::Begin("Hello, world!"); |
|
|
| ImGui::Text("This is some useful text."); |
| ImGui::Checkbox("Demo Window", &show_demo_window); |
| ImGui::Checkbox("Another Window", &show_another_window); |
|
|
| ImGui::SliderFloat("float", &f, 0.0f, 1.0f); |
| ImGui::ColorEdit3("clear color", (float*)&clear_color); |
|
|
| if (ImGui::Button("Button")) |
| counter++; |
| ImGui::SameLine(); |
| ImGui::Text("counter = %d", counter); |
|
|
| ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); |
| ImGui::End(); |
| } |
|
|
| |
| if (show_another_window) |
| { |
| ImGui::Begin("Another Window", &show_another_window); |
| ImGui::Text("Hello from another window!"); |
| if (ImGui::Button("Close Me")) |
| show_another_window = false; |
| ImGui::End(); |
| } |
|
|
| |
| ImGui::Render(); |
| ImDrawData* draw_data = ImGui::GetDrawData(); |
|
|
| renderPassDescriptor.colorAttachments[0].clearColor = MTLClearColorMake(clear_color.x * clear_color.w, clear_color.y * clear_color.w, clear_color.z * clear_color.w, clear_color.w); |
| id <MTLRenderCommandEncoder> renderEncoder = [commandBuffer renderCommandEncoderWithDescriptor:renderPassDescriptor]; |
| [renderEncoder pushDebugGroup:@"Dear ImGui rendering"]; |
| ImGui_ImplMetal_RenderDrawData(draw_data, commandBuffer, renderEncoder); |
| [renderEncoder popDebugGroup]; |
| [renderEncoder endEncoding]; |
|
|
| |
| [commandBuffer presentDrawable:view.currentDrawable]; |
| [commandBuffer commit]; |
| } |
|
|
| -(void)mtkView:(MTKView*)view drawableSizeWillChange:(CGSize)size |
| { |
| } |
|
|
| |
| |
| |
|
|
| #if TARGET_OS_OSX |
|
|
| - (void)viewWillAppear |
| { |
| [super viewWillAppear]; |
| self.view.window.delegate = self; |
| } |
|
|
| - (void)windowWillClose:(NSNotification *)notification |
| { |
| ImGui_ImplMetal_Shutdown(); |
| ImGui_ImplOSX_Shutdown(); |
| ImGui::DestroyContext(); |
| } |
|
|
| #else |
|
|
| |
| |
| |
| |
| |
| -(void)updateIOWithTouchEvent:(UIEvent *)event |
| { |
| UITouch *anyTouch = event.allTouches.anyObject; |
| CGPoint touchLocation = [anyTouch locationInView:self.view]; |
| ImGuiIO &io = ImGui::GetIO(); |
| io.AddMouseSourceEvent(ImGuiMouseSource_TouchScreen); |
| io.AddMousePosEvent(touchLocation.x, touchLocation.y); |
|
|
| BOOL hasActiveTouch = NO; |
| for (UITouch *touch in event.allTouches) |
| { |
| if (touch.phase != UITouchPhaseEnded && touch.phase != UITouchPhaseCancelled) |
| { |
| hasActiveTouch = YES; |
| break; |
| } |
| } |
| io.AddMouseButtonEvent(0, hasActiveTouch); |
| } |
|
|
| -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self updateIOWithTouchEvent:event]; } |
| -(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self updateIOWithTouchEvent:event]; } |
| -(void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self updateIOWithTouchEvent:event]; } |
| -(void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self updateIOWithTouchEvent:event]; } |
|
|
| #endif |
|
|
| @end |
|
|
| |
| |
| |
|
|
| #if TARGET_OS_OSX |
|
|
| @interface AppDelegate : NSObject <NSApplicationDelegate> |
| @property (nonatomic, strong) NSWindow *window; |
| @end |
|
|
| @implementation AppDelegate |
|
|
| -(BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender |
| { |
| return YES; |
| } |
|
|
| -(instancetype)init |
| { |
| if (self = [super init]) |
| { |
| NSViewController *rootViewController = [[AppViewController alloc] initWithNibName:nil bundle:nil]; |
| self.window = [[NSWindow alloc] initWithContentRect:NSZeroRect |
| styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable | NSWindowStyleMaskMiniaturizable |
| backing:NSBackingStoreBuffered |
| defer:NO]; |
| self.window.contentViewController = rootViewController; |
| [self.window center]; |
| [self.window makeKeyAndOrderFront:self]; |
| } |
| return self; |
| } |
|
|
| @end |
|
|
| #else |
|
|
| @interface AppDelegate : UIResponder <UIApplicationDelegate> |
| @property (strong, nonatomic) UIWindow *window; |
| @end |
|
|
| @implementation AppDelegate |
|
|
| -(BOOL)application:(UIApplication *)application |
| didFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey,id> *)launchOptions |
| { |
| UIViewController *rootViewController = [[AppViewController alloc] init]; |
| self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds]; |
| self.window.rootViewController = rootViewController; |
| [self.window makeKeyAndVisible]; |
| return YES; |
| } |
|
|
| @end |
|
|
| #endif |
|
|
| |
| |
| |
|
|
| #if TARGET_OS_OSX |
|
|
| int main(int argc, const char * argv[]) |
| { |
| return NSApplicationMain(argc, argv); |
| } |
|
|
| #else |
|
|
| int main(int argc, char * argv[]) |
| { |
| @autoreleasepool |
| { |
| return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); |
| } |
| } |
|
|
| #endif |
|
|