4

我正在为此绞尽脑汁。我一直在尝试复制 Apple 提供的初始 metal 项目,但根本不使用 interface builder。我能够创建一个窗口,但它是空白的,没有渲染,我不知道为什么。

主文件

#import <Cocoa/Cocoa.h>
#import "AppDelegate.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        NSApplication* app = [NSApplication sharedApplication];
        AppDelegate* appDelegate = [[AppDelegate alloc] init];

        [app setDelegate:appDelegate];

        [app run];
    }

    return EXIT_SUCCESS;
}

AppDelegate.h

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate> {
    NSWindow *window;
}

@end

AppDelegate.m

#import <Metal/Metal.h>

#import "AppDelegate.h"

#import "GameViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

- (id)init {
    if (self = [super init]) {
        NSScreen* mainScreen = [NSScreen mainScreen];

        NSRect frame = NSMakeRect(0, 0, mainScreen.frame.size.width / 2, mainScreen.frame.size.height / 2);

        NSUInteger styleMask =
            NSWindowStyleMaskTitled |
            NSWindowStyleMaskResizable |
            NSWindowStyleMaskClosable |
            NSWindowStyleMaskMiniaturizable;

        NSBackingStoreType backing = NSBackingStoreBuffered;


        window = [[NSWindow alloc] initWithContentRect:frame styleMask:styleMask backing:backing defer:YES];
        [window center];


        GameViewController* gvc = [[GameViewController alloc] init];

        MTKView* metalView = [[MTKView alloc] initWithFrame:frame device:MTLCreateSystemDefaultDevice()];

        [metalView setClearColor:MTLClearColorMake(0, 0, 0, 1)];
        [metalView setColorPixelFormat:MTLPixelFormatBGRA8Unorm];
        [metalView setDepthStencilPixelFormat:MTLPixelFormatDepth32Float];
        [metalView setDelegate:gvc];

        [gvc setView:metalView];

        [window setContentView:metalView];
        //[window setContentViewController: gvc];

    }
    return self;
}

- (void)applicationWillFinishLaunching:(NSNotification *)notification {
    [window makeKeyAndOrderFront:self];
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    // Insert code here to initialize your application
}

- (void)applicationWillTerminate:(NSNotification *)aNotification {
    // Insert code here to tear down your application
}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
    return YES;
}

@end

其他文件;GameViewController.h, GameViewController.m, Shaders.metal, SharedStructures.h; 与创建使用 Metal 和 Objective-c 的游戏项目时 XCode 8.2.1 (8C1002) 自动生成的相同。

您会注意到该行[window setContentViewController: gvc];已被注释掉。当取消注释时,我在渲染函数EXEC_BAD_ACCESS的第一行得到一个GameViewController.mdispatch_semaphore_wait(_inflight_semaphore, DISPATCH_TIME_FOREVER);

显然,我错过了一些东西,但我整天都在谷歌上搜索,我似乎无法弄清楚。任何帮助深表感谢。

4

1 回答 1

5

问题是,当没有从 NIB 加载NSViewController诸如 之类的时GameViewController,它不会调用该-viewDidLoad方法。该GameViewController方法在该方法中发挥了重要作用。

您可以将视图的创建移动到 in 的覆盖-loadViewGameViewController。创建视图并将其分配给self.view. 你不需要设置它的委托。现有的GameViewController代码已经这样做了。应该将设置视图的属性移到-_setupView现有代码已经执行此类操作的位置。

不要在-[AppDelegate init]. 显然,您也不能在那里设置视图控制器的视图。只需将视图控制器设置为窗口的内容视图控制器(取消注释该行),其余部分将自动处理。当窗口请求内容视图控制器的view属性时,它将调用您的覆盖-loadView以及现有-viewDidLoad的等。

于 2016-12-25T01:55:29.477 回答