2016-10-02 21:26:12 +00:00
|
|
|
#include <AVFoundation/AVFoundation.h>
|
2016-03-30 20:07:55 +00:00
|
|
|
#include <CoreAudio/CoreAudio.h>
|
2017-10-12 21:02:02 +00:00
|
|
|
#include <Core/gb.h>
|
2016-06-10 12:28:50 +00:00
|
|
|
#include "GBAudioClient.h"
|
2016-04-08 10:54:34 +00:00
|
|
|
#include "Document.h"
|
|
|
|
#include "AppDelegate.h"
|
2016-08-12 19:49:17 +00:00
|
|
|
#include "HexFiend/HexFiend.h"
|
|
|
|
#include "GBMemoryByteArray.h"
|
2017-02-24 16:15:31 +00:00
|
|
|
#include "GBWarningPopover.h"
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-08-19 11:54:54 +00:00
|
|
|
/* Todo: The general Objective-C coding style conflicts with SameBoy's. This file needs a cleanup. */
|
2016-10-26 21:14:02 +00:00
|
|
|
/* Todo: Split into category files! This is so messy!!! */
|
2016-08-19 11:54:54 +00:00
|
|
|
|
2018-01-13 11:16:33 +00:00
|
|
|
enum model {
|
|
|
|
MODEL_NONE,
|
|
|
|
MODEL_DMG,
|
|
|
|
MODEL_CGB,
|
|
|
|
MODEL_AGB,
|
|
|
|
};
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
@interface Document ()
|
|
|
|
{
|
|
|
|
/* NSTextViews freeze the entire app if they're modified too often and too quickly.
|
|
|
|
We use this bool to tune down the write speed. Let me know if there's a more
|
|
|
|
reasonable alternative to this. */
|
|
|
|
unsigned long pendingLogLines;
|
|
|
|
bool tooMuchLogs;
|
2016-07-03 18:32:58 +00:00
|
|
|
bool fullScreen;
|
2016-07-17 21:39:43 +00:00
|
|
|
bool in_sync_input;
|
2016-08-12 19:49:17 +00:00
|
|
|
HFController *hex_controller;
|
2016-07-03 18:32:58 +00:00
|
|
|
|
2016-03-30 20:31:34 +00:00
|
|
|
NSString *lastConsoleInput;
|
2016-08-19 11:54:54 +00:00
|
|
|
HFLineCountingRepresenter *lineRep;
|
2016-10-02 21:26:12 +00:00
|
|
|
|
|
|
|
CVImageBufferRef cameraImage;
|
|
|
|
AVCaptureSession *cameraSession;
|
|
|
|
AVCaptureConnection *cameraConnection;
|
|
|
|
AVCaptureStillImageOutput *cameraOutput;
|
2016-10-26 21:14:02 +00:00
|
|
|
|
|
|
|
GB_oam_info_t oamInfo[40];
|
|
|
|
uint16_t oamCount;
|
|
|
|
uint8_t oamHeight;
|
|
|
|
bool oamUpdating;
|
2017-01-13 20:26:44 +00:00
|
|
|
|
|
|
|
NSMutableData *currentPrinterImageData;
|
|
|
|
enum {GBAccessoryNone, GBAccessoryPrinter} accessory;
|
2017-02-24 16:15:31 +00:00
|
|
|
|
|
|
|
bool rom_warning_issued;
|
|
|
|
|
|
|
|
NSMutableString *capturedOutput;
|
2017-05-26 17:16:19 +00:00
|
|
|
bool logToSideView;
|
|
|
|
bool shouldClearSideView;
|
2018-01-13 11:16:33 +00:00
|
|
|
enum model current_model;
|
2018-02-10 12:42:14 +00:00
|
|
|
|
|
|
|
bool rewind;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-10 12:28:50 +00:00
|
|
|
@property GBAudioClient *audioClient;
|
2016-03-30 20:07:55 +00:00
|
|
|
- (void) vblank;
|
2016-06-18 17:29:11 +00:00
|
|
|
- (void) log: (const char *) log withAttributes: (GB_log_attributes) attributes;
|
2017-04-19 20:26:39 +00:00
|
|
|
- (char *) getDebuggerInput;
|
|
|
|
- (char *) getAsyncDebuggerInput;
|
2016-10-02 21:26:12 +00:00
|
|
|
- (void) cameraRequestUpdate;
|
|
|
|
- (uint8_t) cameraGetPixelAtX:(uint8_t)x andY:(uint8_t)y;
|
2017-01-13 20:26:44 +00:00
|
|
|
- (void) printImage:(uint32_t *)image height:(unsigned) height
|
|
|
|
topMargin:(unsigned) topMargin bottomMargin: (unsigned) bottomMargin
|
|
|
|
exposure:(unsigned) exposure;
|
2016-03-30 20:07:55 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
static void vblank(GB_gameboy_t *gb)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
[self vblank];
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static void consoleLog(GB_gameboy_t *gb, const char *string, GB_log_attributes attributes)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
[self log:string withAttributes: attributes];
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *consoleInput(GB_gameboy_t *gb)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2017-04-19 20:26:39 +00:00
|
|
|
return [self getDebuggerInput];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-07-17 21:39:43 +00:00
|
|
|
static char *asyncConsoleInput(GB_gameboy_t *gb)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2017-04-19 20:26:39 +00:00
|
|
|
char *ret = [self getAsyncDebuggerInput];
|
|
|
|
return ret;
|
2016-07-17 21:39:43 +00:00
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint32_t rgbEncode(GB_gameboy_t *gb, uint8_t r, uint8_t g, uint8_t b)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-01-13 20:26:44 +00:00
|
|
|
return (r << 0) | (g << 8) | (b << 16) | 0xFF000000;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-10-02 21:26:12 +00:00
|
|
|
static void cameraRequestUpdate(GB_gameboy_t *gb)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2016-10-02 21:26:12 +00:00
|
|
|
[self cameraRequestUpdate];
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t cameraGetPixel(GB_gameboy_t *gb, uint8_t x, uint8_t y)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2016-10-02 21:26:12 +00:00
|
|
|
return [self cameraGetPixelAtX:x andY:y];
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:26:44 +00:00
|
|
|
static void printImage(GB_gameboy_t *gb, uint32_t *image, uint8_t height,
|
|
|
|
uint8_t top_margin, uint8_t bottom_margin, uint8_t exposure)
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
Document *self = (__bridge Document *)GB_get_user_data(gb);
|
2017-01-13 20:26:44 +00:00
|
|
|
[self printImage:image height:height topMargin:top_margin bottomMargin:bottom_margin exposure:exposure];
|
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
@implementation Document
|
|
|
|
{
|
|
|
|
GB_gameboy_t gb;
|
|
|
|
volatile bool running;
|
|
|
|
volatile bool stopping;
|
|
|
|
NSConditionLock *has_debugger_input;
|
|
|
|
NSMutableArray *debugger_input_queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)init {
|
|
|
|
self = [super init];
|
|
|
|
if (self) {
|
|
|
|
has_debugger_input = [[NSConditionLock alloc] initWithCondition:0];
|
|
|
|
debugger_input_queue = [[NSMutableArray alloc] init];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) initDMG
|
|
|
|
{
|
2018-01-13 11:16:33 +00:00
|
|
|
current_model = MODEL_DMG;
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_init(&gb);
|
2016-10-02 21:26:12 +00:00
|
|
|
[self initCommon];
|
2017-02-24 13:14:00 +00:00
|
|
|
GB_load_boot_rom(&gb, [[[NSBundle mainBundle] pathForResource:@"dmg_boot" ofType:@"bin"] UTF8String]);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) initCGB
|
|
|
|
{
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_init_cgb(&gb);
|
2016-10-02 21:26:12 +00:00
|
|
|
[self initCommon];
|
2018-01-13 11:16:33 +00:00
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"EmulateAGB"]) {
|
|
|
|
current_model = MODEL_AGB;
|
|
|
|
GB_load_boot_rom(&gb, [[[NSBundle mainBundle] pathForResource:@"agb_boot" ofType:@"bin"] UTF8String]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
current_model = MODEL_CGB;
|
|
|
|
GB_load_boot_rom(&gb, [[[NSBundle mainBundle] pathForResource:@"cgb_boot" ofType:@"bin"] UTF8String]);
|
|
|
|
}
|
2016-10-02 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) initCommon
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_set_user_data(&gb, (__bridge void *)(self));
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_set_vblank_callback(&gb, (GB_vblank_callback_t) vblank);
|
|
|
|
GB_set_log_callback(&gb, (GB_log_callback_t) consoleLog);
|
|
|
|
GB_set_input_callback(&gb, (GB_input_callback_t) consoleInput);
|
2016-07-17 21:39:43 +00:00
|
|
|
GB_set_async_input_callback(&gb, (GB_input_callback_t) asyncConsoleInput);
|
2017-10-12 14:22:22 +00:00
|
|
|
GB_set_color_correction_mode(&gb, (GB_color_correction_mode_t) [[NSUserDefaults standardUserDefaults] integerForKey:@"GBColorCorrection"]);
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_set_rgb_encode_callback(&gb, rgbEncode);
|
2016-10-02 21:26:12 +00:00
|
|
|
GB_set_camera_get_pixel_callback(&gb, cameraGetPixel);
|
|
|
|
GB_set_camera_update_request_callback(&gb, cameraRequestUpdate);
|
2017-08-15 18:59:53 +00:00
|
|
|
GB_set_highpass_filter_mode(&gb, (GB_highpass_mode_t) [[NSUserDefaults standardUserDefaults] integerForKey:@"GBHighpassFilter"]);
|
2018-02-10 12:42:14 +00:00
|
|
|
GB_set_rewind_length(&gb, [[NSUserDefaults standardUserDefaults] integerForKey:@"GBRewindLength"]);
|
2017-04-17 17:16:17 +00:00
|
|
|
[self loadROM];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) vblank
|
|
|
|
{
|
|
|
|
[self.view flip];
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_set_pixels_output(&gb, self.view.pixels);
|
2017-09-27 19:09:26 +00:00
|
|
|
if (self.vramWindow.isVisible) {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2018-03-02 17:42:02 +00:00
|
|
|
self.view.mouseHidingEnabled = (self.mainWindow.styleMask & NSFullScreenWindowMask) != 0;
|
2017-09-27 19:09:26 +00:00
|
|
|
[self reloadVRAMData: nil];
|
|
|
|
});
|
|
|
|
}
|
2018-02-10 12:42:14 +00:00
|
|
|
if (self.view.isRewinding) {
|
|
|
|
rewind = true;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) run
|
|
|
|
{
|
|
|
|
running = true;
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_set_pixels_output(&gb, self.view.pixels);
|
2016-03-30 20:07:55 +00:00
|
|
|
self.view.gb = &gb;
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_set_sample_rate(&gb, 96000);
|
2016-06-10 12:28:50 +00:00
|
|
|
self.audioClient = [[GBAudioClient alloc] initWithRendererBlock:^(UInt32 sampleRate, UInt32 nFrames, GB_sample_t *buffer) {
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_apu_copy_buffer(&gb, buffer, nFrames);
|
2016-03-30 20:07:55 +00:00
|
|
|
} andSampleRate:96000];
|
2016-08-21 18:58:33 +00:00
|
|
|
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"Mute"]) {
|
|
|
|
[self.audioClient start];
|
|
|
|
}
|
2016-08-12 19:49:17 +00:00
|
|
|
NSTimer *hex_timer = [NSTimer timerWithTimeInterval:0.25 target:self selector:@selector(reloadMemoryView) userInfo:nil repeats:YES];
|
|
|
|
[[NSRunLoop mainRunLoop] addTimer:hex_timer forMode:NSDefaultRunLoopMode];
|
2016-03-30 20:07:55 +00:00
|
|
|
while (running) {
|
2018-02-10 12:42:14 +00:00
|
|
|
if (rewind) {
|
|
|
|
rewind = false;
|
|
|
|
GB_rewind_pop(&gb);
|
|
|
|
if (!GB_rewind_pop(&gb)) {
|
|
|
|
rewind = self.view.isRewinding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GB_run(&gb);
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2016-08-12 19:49:17 +00:00
|
|
|
[hex_timer invalidate];
|
2016-03-30 20:07:55 +00:00
|
|
|
[self.audioClient stop];
|
2016-07-20 20:26:54 +00:00
|
|
|
self.audioClient = nil;
|
2016-07-05 20:34:33 +00:00
|
|
|
self.view.mouseHidingEnabled = NO;
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_save_battery(&gb, [[[self.fileName stringByDeletingPathExtension] stringByAppendingPathExtension:@"sav"] UTF8String]);
|
2016-03-30 20:07:55 +00:00
|
|
|
stopping = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) start
|
|
|
|
{
|
|
|
|
if (running) return;
|
2018-03-02 17:42:02 +00:00
|
|
|
self.view.mouseHidingEnabled = (self.mainWindow.styleMask & NSFullScreenWindowMask) != 0;
|
2016-06-18 14:20:40 +00:00
|
|
|
[[[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil] start];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) stop
|
|
|
|
{
|
|
|
|
if (!running) return;
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_debugger_set_disabled(&gb, true);
|
|
|
|
if (GB_debugger_is_stopped(&gb)) {
|
2017-04-19 20:26:39 +00:00
|
|
|
[self interruptDebugInputRead];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
stopping = true;
|
|
|
|
running = false;
|
|
|
|
while (stopping);
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_debugger_set_disabled(&gb, false);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)reset:(id)sender
|
|
|
|
{
|
|
|
|
[self stop];
|
2016-09-06 21:44:00 +00:00
|
|
|
|
2018-01-13 11:16:33 +00:00
|
|
|
if ([sender tag] == MODEL_NONE) {
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_reset(&gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-01-13 11:16:33 +00:00
|
|
|
current_model = (enum model)[sender tag];
|
|
|
|
GB_switch_model_and_reset(&gb, current_model != MODEL_DMG);
|
|
|
|
static NSString * const boot_names[] = {@"dmg_boot", @"cgb_boot", @"agb_boot"};
|
|
|
|
GB_load_boot_rom(&gb, [[[NSBundle mainBundle] pathForResource:boot_names[current_model - 1] ofType:@"bin"] UTF8String]);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2016-09-06 21:44:00 +00:00
|
|
|
|
2016-04-08 10:10:01 +00:00
|
|
|
if ([sender tag] != 0) {
|
|
|
|
/* User explictly selected a model, save the preference */
|
2018-01-13 11:16:33 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:current_model == MODEL_DMG forKey:@"EmulateDMG"];
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:current_model== MODEL_AGB forKey:@"EmulateAGB"];
|
2016-04-08 10:10:01 +00:00
|
|
|
}
|
2017-04-17 17:16:17 +00:00
|
|
|
|
|
|
|
/* Reload the ROM, SAV and SYM files */
|
|
|
|
[self loadROM];
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
[self start];
|
2016-08-19 11:54:54 +00:00
|
|
|
|
|
|
|
if (hex_controller) {
|
|
|
|
/* Verify bank sanity, especially when switching models. */
|
|
|
|
[(GBMemoryByteArray *)(hex_controller.byteArray) setSelectedBank:0];
|
|
|
|
[self hexUpdateBank:self.memoryBankInput];
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)togglePause:(id)sender
|
|
|
|
{
|
|
|
|
if (running) {
|
|
|
|
[self stop];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
[self start];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
2017-01-14 17:45:07 +00:00
|
|
|
[cameraSession stopRunning];
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_free(&gb);
|
2016-10-02 21:26:12 +00:00
|
|
|
if (cameraImage) {
|
|
|
|
CVBufferRelease(cameraImage);
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowControllerDidLoadNib:(NSWindowController *)aController {
|
|
|
|
[super windowControllerDidLoadNib:aController];
|
2017-01-24 21:10:50 +00:00
|
|
|
|
|
|
|
/* Close Open Panels, if any */
|
|
|
|
for (NSWindow *window in [[NSApplication sharedApplication] windows]) {
|
|
|
|
if ([window isKindOfClass:[NSOpenPanel class]]) {
|
|
|
|
[(NSOpenPanel *)window cancel:self];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 17:16:19 +00:00
|
|
|
NSMutableParagraphStyle *paragraph_style = [[NSMutableParagraphStyle alloc] init];
|
|
|
|
[paragraph_style setLineSpacing:2];
|
|
|
|
|
|
|
|
self.debuggerSideViewInput.font = [NSFont userFixedPitchFontOfSize:12];
|
|
|
|
self.debuggerSideViewInput.textColor = [NSColor whiteColor];
|
|
|
|
self.debuggerSideViewInput.defaultParagraphStyle = paragraph_style;
|
|
|
|
[self.debuggerSideViewInput setString:@"registers\nbacktrace\n"];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(updateSideView)
|
|
|
|
name:NSTextDidChangeNotification
|
|
|
|
object:self.debuggerSideViewInput];
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
self.consoleOutput.textContainerInset = NSMakeSize(4, 4);
|
|
|
|
[self.view becomeFirstResponder];
|
2016-04-08 10:10:01 +00:00
|
|
|
self.view.shouldBlendFrameWithPrevious = ![[NSUserDefaults standardUserDefaults] boolForKey:@"DisableFrameBlending"];
|
2016-06-18 14:43:39 +00:00
|
|
|
CGRect window_frame = self.mainWindow.frame;
|
|
|
|
window_frame.size.width = MAX([[NSUserDefaults standardUserDefaults] integerForKey:@"LastWindowWidth"],
|
|
|
|
window_frame.size.width);
|
|
|
|
window_frame.size.height = MAX([[NSUserDefaults standardUserDefaults] integerForKey:@"LastWindowHeight"],
|
|
|
|
window_frame.size.height);
|
|
|
|
[self.mainWindow setFrame:window_frame display:YES];
|
2016-10-26 21:14:02 +00:00
|
|
|
self.vramStatusLabel.cell.backgroundStyle = NSBackgroundStyleRaised;
|
2017-01-13 20:26:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
[self.feedSaveButton removeFromSuperview];
|
|
|
|
/* contentView.superview.subviews.lastObject is the titlebar view */
|
|
|
|
NSView *titleView = self.printerFeedWindow.contentView.superview.subviews.lastObject;
|
|
|
|
[titleView addSubview: self.feedSaveButton];
|
|
|
|
self.feedSaveButton.frame = (NSRect){{268, 2}, {48, 17}};
|
|
|
|
|
2017-08-15 18:59:53 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(updateHighpassFilter)
|
|
|
|
name:@"GBHighpassFilterChanged"
|
|
|
|
object:nil];
|
|
|
|
|
2017-10-12 14:22:22 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(updateColorCorrectionMode)
|
|
|
|
name:@"GBColorCorrectionChanged"
|
|
|
|
object:nil];
|
|
|
|
|
2018-02-10 12:42:14 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(updateRewindLength)
|
|
|
|
name:@"GBRewindLengthChanged"
|
|
|
|
object:nil];
|
|
|
|
|
2017-02-24 13:14:00 +00:00
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"EmulateDMG"]) {
|
|
|
|
[self initDMG];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
[self initCGB];
|
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
[self start];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-12 19:49:17 +00:00
|
|
|
- (void) initMemoryView
|
|
|
|
{
|
|
|
|
hex_controller = [[HFController alloc] init];
|
|
|
|
[hex_controller setBytesPerColumn:1];
|
|
|
|
[hex_controller setFont:[NSFont userFixedPitchFontOfSize:12]];
|
|
|
|
[hex_controller setEditMode:HFOverwriteMode];
|
|
|
|
|
|
|
|
[hex_controller setByteArray:[[GBMemoryByteArray alloc] initWithDocument:self]];
|
|
|
|
|
|
|
|
/* Here we're going to make three representers - one for the hex, one for the ASCII, and one for the scrollbar. To lay these all out properly, we'll use a fourth HFLayoutRepresenter. */
|
|
|
|
HFLayoutRepresenter *layoutRep = [[HFLayoutRepresenter alloc] init];
|
|
|
|
HFHexTextRepresenter *hexRep = [[HFHexTextRepresenter alloc] init];
|
|
|
|
HFStringEncodingTextRepresenter *asciiRep = [[HFStringEncodingTextRepresenter alloc] init];
|
|
|
|
HFVerticalScrollerRepresenter *scrollRep = [[HFVerticalScrollerRepresenter alloc] init];
|
2016-08-19 11:54:54 +00:00
|
|
|
lineRep = [[HFLineCountingRepresenter alloc] init];
|
2016-08-12 19:49:17 +00:00
|
|
|
HFStatusBarRepresenter *statusRep = [[HFStatusBarRepresenter alloc] init];
|
|
|
|
|
|
|
|
lineRep.lineNumberFormat = HFLineNumberFormatHexadecimal;
|
|
|
|
|
|
|
|
/* Add all our reps to the controller. */
|
|
|
|
[hex_controller addRepresenter:layoutRep];
|
|
|
|
[hex_controller addRepresenter:hexRep];
|
|
|
|
[hex_controller addRepresenter:asciiRep];
|
|
|
|
[hex_controller addRepresenter:scrollRep];
|
|
|
|
[hex_controller addRepresenter:lineRep];
|
|
|
|
[hex_controller addRepresenter:statusRep];
|
|
|
|
|
|
|
|
/* Tell the layout rep which reps it should lay out. */
|
|
|
|
[layoutRep addRepresenter:hexRep];
|
|
|
|
[layoutRep addRepresenter:scrollRep];
|
|
|
|
[layoutRep addRepresenter:asciiRep];
|
|
|
|
[layoutRep addRepresenter:lineRep];
|
|
|
|
[layoutRep addRepresenter:statusRep];
|
|
|
|
|
|
|
|
|
|
|
|
[(NSView *)[hexRep view] setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
|
|
|
|
|
|
|
|
/* Grab the layout rep's view and stick it into our container. */
|
|
|
|
NSView *layoutView = [layoutRep view];
|
|
|
|
NSRect layoutViewFrame = self.memoryView.frame;
|
|
|
|
[layoutView setFrame:layoutViewFrame];
|
|
|
|
[layoutView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable | NSViewMaxYMargin];
|
|
|
|
[self.memoryView addSubview:layoutView];
|
2016-08-19 11:54:54 +00:00
|
|
|
|
|
|
|
self.memoryBankItem.enabled = false;
|
2016-08-12 19:49:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
+ (BOOL)autosavesInPlace {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *)windowNibName {
|
|
|
|
// Override returning the nib file name of the document
|
|
|
|
// If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
|
|
|
|
return @"Document";
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)readFromFile:(NSString *)fileName ofType:(NSString *)type
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2017-02-24 13:14:00 +00:00
|
|
|
- (void) loadROM
|
|
|
|
{
|
2017-04-17 17:16:17 +00:00
|
|
|
NSString *rom_warnings = [self captureOutputForBlock:^{
|
|
|
|
GB_load_rom(&gb, [self.fileName UTF8String]);
|
|
|
|
GB_load_battery(&gb, [[[self.fileName stringByDeletingPathExtension] stringByAppendingPathExtension:@"sav"] UTF8String]);
|
|
|
|
GB_debugger_load_symbol_file(&gb, [[[NSBundle mainBundle] pathForResource:@"registers" ofType:@"sym"] UTF8String]);
|
|
|
|
GB_debugger_load_symbol_file(&gb, [[[self.fileName stringByDeletingPathExtension] stringByAppendingPathExtension:@"sym"] UTF8String]);
|
|
|
|
}];
|
|
|
|
if (rom_warnings && !rom_warning_issued) {
|
|
|
|
rom_warning_issued = true;
|
|
|
|
[GBWarningPopover popoverWithContents:rom_warnings onWindow:self.mainWindow];
|
|
|
|
}
|
2017-02-24 13:14:00 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
- (void)close
|
|
|
|
{
|
2016-06-18 14:43:39 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setInteger:self.mainWindow.frame.size.width forKey:@"LastWindowWidth"];
|
|
|
|
[[NSUserDefaults standardUserDefaults] setInteger:self.mainWindow.frame.size.height forKey:@"LastWindowHeight"];
|
2016-03-30 20:07:55 +00:00
|
|
|
[self stop];
|
|
|
|
[self.consoleWindow close];
|
|
|
|
[super close];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) interrupt:(id)sender
|
|
|
|
{
|
|
|
|
[self log:"^C\n"];
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_debugger_break(&gb);
|
2016-07-02 17:58:06 +00:00
|
|
|
if (!running) {
|
|
|
|
[self start];
|
|
|
|
}
|
2017-05-27 14:16:20 +00:00
|
|
|
[self.consoleWindow makeKeyAndOrderFront:nil];
|
2016-03-30 20:07:55 +00:00
|
|
|
[self.consoleInput becomeFirstResponder];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)mute:(id)sender
|
|
|
|
{
|
|
|
|
if (self.audioClient.isPlaying) {
|
|
|
|
[self.audioClient stop];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
[self.audioClient start];
|
|
|
|
}
|
2016-08-21 18:58:33 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:!self.audioClient.isPlaying forKey:@"Mute"];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)toggleBlend:(id)sender
|
|
|
|
{
|
|
|
|
self.view.shouldBlendFrameWithPrevious ^= YES;
|
2016-04-08 10:10:01 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:!self.view.shouldBlendFrameWithPrevious forKey:@"DisableFrameBlending"];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)validateUserInterfaceItem:(id<NSValidatedUserInterfaceItem>)anItem
|
|
|
|
{
|
|
|
|
if([anItem action] == @selector(mute:)) {
|
|
|
|
[(NSMenuItem*)anItem setState:!self.audioClient.isPlaying];
|
|
|
|
}
|
2016-04-08 10:54:34 +00:00
|
|
|
else if ([anItem action] == @selector(togglePause:)) {
|
2017-04-17 17:16:17 +00:00
|
|
|
[(NSMenuItem*)anItem setState:(!running) || (GB_debugger_is_stopped(&gb))];
|
|
|
|
return !GB_debugger_is_stopped(&gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2018-01-13 11:16:33 +00:00
|
|
|
else if ([anItem action] == @selector(reset:) && anItem.tag != MODEL_NONE) {
|
|
|
|
[(NSMenuItem*)anItem setState:anItem.tag == current_model];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2016-04-08 10:54:34 +00:00
|
|
|
else if ([anItem action] == @selector(toggleBlend:)) {
|
2016-03-30 20:07:55 +00:00
|
|
|
[(NSMenuItem*)anItem setState:self.view.shouldBlendFrameWithPrevious];
|
|
|
|
}
|
2016-04-08 10:54:34 +00:00
|
|
|
else if ([anItem action] == @selector(interrupt:)) {
|
|
|
|
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"DeveloperMode"]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 20:26:44 +00:00
|
|
|
else if ([anItem action] == @selector(disconnectAllAccessories:)) {
|
|
|
|
[(NSMenuItem*)anItem setState:accessory == GBAccessoryNone];
|
|
|
|
}
|
|
|
|
else if ([anItem action] == @selector(connectPrinter:)) {
|
|
|
|
[(NSMenuItem*)anItem setState:accessory == GBAccessoryPrinter];
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
return [super validateUserInterfaceItem:anItem];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-03 18:32:58 +00:00
|
|
|
- (void) windowWillEnterFullScreen:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
fullScreen = true;
|
2016-08-20 21:38:26 +00:00
|
|
|
self.view.mouseHidingEnabled = running;
|
2016-07-03 18:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) windowWillExitFullScreen:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
fullScreen = false;
|
2016-08-20 21:38:26 +00:00
|
|
|
self.view.mouseHidingEnabled = NO;
|
2016-07-03 18:32:58 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
- (NSRect)windowWillUseStandardFrame:(NSWindow *)window defaultFrame:(NSRect)newFrame
|
|
|
|
{
|
2016-07-03 18:32:58 +00:00
|
|
|
if (fullScreen) {
|
|
|
|
return newFrame;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
NSRect rect = window.contentView.frame;
|
|
|
|
|
|
|
|
int titlebarSize = window.contentView.superview.frame.size.height - rect.size.height;
|
|
|
|
int step = 160 / [[window screen] backingScaleFactor];
|
|
|
|
|
|
|
|
rect.size.width = floor(rect.size.width / step) * step + step;
|
|
|
|
rect.size.height = rect.size.width / 10 * 9 + titlebarSize;
|
|
|
|
|
|
|
|
if (rect.size.width > newFrame.size.width) {
|
|
|
|
rect.size.width = 160;
|
|
|
|
rect.size.height = 144 + titlebarSize;
|
|
|
|
}
|
|
|
|
else if (rect.size.height > newFrame.size.height) {
|
|
|
|
rect.size.width = 160;
|
|
|
|
rect.size.height = 144 + titlebarSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
rect.origin = window.frame.origin;
|
|
|
|
rect.origin.y -= rect.size.height - window.frame.size.height;
|
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
- (void) log: (const char *) string withAttributes: (GB_log_attributes) attributes
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-02-24 16:15:31 +00:00
|
|
|
NSString *nsstring = @(string); // For ref-counting
|
|
|
|
if (capturedOutput) {
|
|
|
|
[capturedOutput appendString:nsstring];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-26 17:16:19 +00:00
|
|
|
NSTextView *textView = logToSideView? self.debuggerSideView : self.consoleOutput;
|
|
|
|
|
|
|
|
if (!logToSideView && pendingLogLines > 128) {
|
2016-03-30 20:07:55 +00:00
|
|
|
/* The ROM causes so many errors in such a short time, and we can't handle it. */
|
|
|
|
tooMuchLogs = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pendingLogLines++;
|
2016-07-05 20:34:33 +00:00
|
|
|
|
|
|
|
/* Make sure mouse is not hidden while debugging */
|
|
|
|
self.view.mouseHidingEnabled = NO;
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2017-05-26 17:16:19 +00:00
|
|
|
if (shouldClearSideView) {
|
|
|
|
shouldClearSideView = false;
|
|
|
|
[self.debuggerSideView setString:@""];
|
|
|
|
}
|
2016-08-12 19:49:17 +00:00
|
|
|
[hex_controller reloadData];
|
2016-10-26 21:14:02 +00:00
|
|
|
[self reloadVRAMData: nil];
|
2016-08-12 19:49:17 +00:00
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
NSFont *font = [NSFont userFixedPitchFontOfSize:12];
|
|
|
|
NSUnderlineStyle underline = NSUnderlineStyleNone;
|
|
|
|
if (attributes & GB_LOG_BOLD) {
|
|
|
|
font = [[NSFontManager sharedFontManager] convertFont:font toHaveTrait:NSBoldFontMask];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attributes & GB_LOG_UNDERLINE_MASK) {
|
|
|
|
underline = (attributes & GB_LOG_UNDERLINE_MASK) == GB_LOG_DASHED_UNDERLINE? NSUnderlinePatternDot | NSUnderlineStyleSingle : NSUnderlineStyleSingle;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSMutableParagraphStyle *paragraph_style = [[NSMutableParagraphStyle alloc] init];
|
|
|
|
[paragraph_style setLineSpacing:2];
|
|
|
|
NSAttributedString *attributed =
|
|
|
|
[[NSAttributedString alloc] initWithString:nsstring
|
|
|
|
attributes:@{NSFontAttributeName: font,
|
|
|
|
NSForegroundColorAttributeName: [NSColor whiteColor],
|
|
|
|
NSUnderlineStyleAttributeName: @(underline),
|
|
|
|
NSParagraphStyleAttributeName: paragraph_style}];
|
2017-05-26 17:16:19 +00:00
|
|
|
[textView.textStorage appendAttributedString:attributed];
|
2016-03-30 20:07:55 +00:00
|
|
|
if (pendingLogLines == 1) {
|
|
|
|
if (tooMuchLogs) {
|
|
|
|
tooMuchLogs = false;
|
|
|
|
[self log:"[...]\n"];
|
|
|
|
}
|
2017-05-26 17:16:19 +00:00
|
|
|
[textView scrollToEndOfDocument:nil];
|
2016-04-08 10:54:34 +00:00
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DeveloperMode"]) {
|
|
|
|
[self.consoleWindow orderBack:nil];
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
pendingLogLines--;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)showConsoleWindow:(id)sender
|
|
|
|
{
|
|
|
|
[self.consoleWindow orderBack:nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)consoleInput:(NSTextField *)sender {
|
|
|
|
NSString *line = [sender stringValue];
|
2016-04-07 22:53:21 +00:00
|
|
|
if ([line isEqualToString:@""] && lastConsoleInput) {
|
2016-03-30 20:31:34 +00:00
|
|
|
line = lastConsoleInput;
|
|
|
|
}
|
|
|
|
else if (line) {
|
|
|
|
lastConsoleInput = line;
|
|
|
|
}
|
|
|
|
else {
|
2016-03-30 20:07:55 +00:00
|
|
|
line = @"";
|
|
|
|
}
|
2016-07-17 21:39:43 +00:00
|
|
|
|
|
|
|
if (!in_sync_input) {
|
|
|
|
[self log:">"];
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
[self log:[line UTF8String]];
|
|
|
|
[self log:"\n"];
|
|
|
|
[has_debugger_input lock];
|
|
|
|
[debugger_input_queue addObject:line];
|
|
|
|
[has_debugger_input unlockWithCondition:1];
|
|
|
|
|
|
|
|
[sender setStringValue:@""];
|
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
- (void) interruptDebugInputRead
|
|
|
|
{
|
|
|
|
[has_debugger_input lock];
|
|
|
|
[debugger_input_queue addObject:[NSNull null]];
|
|
|
|
[has_debugger_input unlockWithCondition:1];
|
|
|
|
}
|
|
|
|
|
2017-05-26 17:16:19 +00:00
|
|
|
- (void) updateSideView
|
|
|
|
{
|
|
|
|
if (!GB_debugger_is_stopped(&gb)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shouldClearSideView = true;
|
|
|
|
logToSideView = true;
|
|
|
|
for (NSString *line in [self.debuggerSideViewInput.string componentsSeparatedByString:@"\n"]) {
|
|
|
|
NSString *stripped = [line stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
|
|
|
|
if ([stripped length]) {
|
|
|
|
char *dupped = strdup([stripped UTF8String]);
|
|
|
|
GB_attributed_log(&gb, GB_LOG_BOLD, "%s:\n", dupped);
|
|
|
|
GB_debugger_execute_command(&gb, dupped);
|
|
|
|
GB_log(&gb, "\n");
|
|
|
|
free(dupped);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logToSideView = false;
|
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
- (char *) getDebuggerInput
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-05-26 17:16:19 +00:00
|
|
|
[self updateSideView];
|
2016-03-30 20:07:55 +00:00
|
|
|
[self log:">"];
|
2016-07-17 21:39:43 +00:00
|
|
|
in_sync_input = true;
|
2016-03-30 20:07:55 +00:00
|
|
|
[has_debugger_input lockWhenCondition:1];
|
|
|
|
NSString *input = [debugger_input_queue firstObject];
|
|
|
|
[debugger_input_queue removeObjectAtIndex:0];
|
|
|
|
[has_debugger_input unlockWithCondition:[debugger_input_queue count] != 0];
|
2016-07-17 21:39:43 +00:00
|
|
|
in_sync_input = false;
|
2017-05-26 17:16:19 +00:00
|
|
|
shouldClearSideView = true;
|
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(NSEC_PER_SEC / 10)), dispatch_get_main_queue(), ^{
|
|
|
|
if (shouldClearSideView) {
|
|
|
|
shouldClearSideView = false;
|
|
|
|
[self.debuggerSideView setString:@""];
|
|
|
|
}
|
|
|
|
});
|
2017-04-19 20:26:39 +00:00
|
|
|
if ((id) input == [NSNull null]) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return strdup([input UTF8String]);
|
2016-07-17 21:39:43 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
- (char *) getAsyncDebuggerInput
|
2016-07-17 21:39:43 +00:00
|
|
|
{
|
|
|
|
[has_debugger_input lock];
|
|
|
|
NSString *input = [debugger_input_queue firstObject];
|
|
|
|
if (input) {
|
|
|
|
[debugger_input_queue removeObjectAtIndex:0];
|
|
|
|
}
|
|
|
|
[has_debugger_input unlockWithCondition:[debugger_input_queue count] != 0];
|
2017-04-19 20:26:39 +00:00
|
|
|
return input? strdup([input UTF8String]): NULL;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)saveState:(id)sender
|
|
|
|
{
|
2017-02-24 16:15:31 +00:00
|
|
|
bool __block success = false;
|
|
|
|
[self performAtomicBlock:^{
|
|
|
|
success = GB_save_state(&gb, [[[self.fileName stringByDeletingPathExtension] stringByAppendingPathExtension:[NSString stringWithFormat:@"s%ld", (long)[sender tag] ]] UTF8String]) == 0;
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
[GBWarningPopover popoverWithContents:@"Failed to write save state." onWindow:self.mainWindow];
|
|
|
|
NSBeep();
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)loadState:(id)sender
|
|
|
|
{
|
2017-02-24 16:15:31 +00:00
|
|
|
bool __block success = false;
|
|
|
|
NSString *error =
|
|
|
|
[self captureOutputForBlock:^{
|
|
|
|
success = GB_load_state(&gb, [[[self.fileName stringByDeletingPathExtension] stringByAppendingPathExtension:[NSString stringWithFormat:@"s%ld", (long)[sender tag] ]] UTF8String]) == 0;
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
if (error) {
|
|
|
|
[GBWarningPopover popoverWithContents:error onWindow:self.mainWindow];
|
|
|
|
}
|
|
|
|
NSBeep();
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)clearConsole:(id)sender
|
|
|
|
{
|
|
|
|
[self.consoleOutput setString:@""];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)log:(const char *)log
|
|
|
|
{
|
|
|
|
[self log:log withAttributes:0];
|
|
|
|
}
|
|
|
|
|
2016-08-12 19:49:17 +00:00
|
|
|
- (uint8_t) readMemory:(uint16_t)addr
|
|
|
|
{
|
2017-02-24 13:14:00 +00:00
|
|
|
while (!GB_is_inited(&gb));
|
2016-08-12 19:49:17 +00:00
|
|
|
return GB_read_memory(&gb, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) writeMemory:(uint16_t)addr value:(uint8_t)value
|
|
|
|
{
|
2017-02-24 13:14:00 +00:00
|
|
|
while (!GB_is_inited(&gb));
|
2016-08-12 19:49:17 +00:00
|
|
|
GB_write_memory(&gb, addr, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) performAtomicBlock: (void (^)())block
|
|
|
|
{
|
2017-02-24 13:14:00 +00:00
|
|
|
while (!GB_is_inited(&gb));
|
2017-04-17 17:16:17 +00:00
|
|
|
bool was_running = running && !GB_debugger_is_stopped(&gb);
|
2016-08-12 19:49:17 +00:00
|
|
|
if (was_running) {
|
|
|
|
[self stop];
|
|
|
|
}
|
|
|
|
block();
|
|
|
|
if (was_running) {
|
|
|
|
[self start];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 16:15:31 +00:00
|
|
|
- (NSString *) captureOutputForBlock: (void (^)())block
|
|
|
|
{
|
|
|
|
capturedOutput = [[NSMutableString alloc] init];
|
|
|
|
[self performAtomicBlock:block];
|
|
|
|
NSString *ret = [capturedOutput stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]];
|
|
|
|
capturedOutput = nil;
|
|
|
|
return [ret length]? ret : nil;
|
|
|
|
}
|
|
|
|
|
2016-10-26 21:14:02 +00:00
|
|
|
+ (NSImage *) imageFromData:(NSData *)data width:(NSUInteger) width height:(NSUInteger) height scale:(double) scale
|
|
|
|
{
|
|
|
|
CGDataProviderRef provider = CGDataProviderCreateWithCFData((CFDataRef) data);
|
|
|
|
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
|
|
|
|
CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
|
|
|
|
CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
|
|
|
|
|
|
|
|
CGImageRef iref = CGImageCreate(width,
|
|
|
|
height,
|
|
|
|
8,
|
|
|
|
32,
|
|
|
|
4 * width,
|
|
|
|
colorSpaceRef,
|
|
|
|
bitmapInfo,
|
|
|
|
provider,
|
|
|
|
NULL,
|
|
|
|
YES,
|
|
|
|
renderingIntent);
|
2017-09-27 19:09:26 +00:00
|
|
|
CGDataProviderRelease(provider);
|
|
|
|
CGColorSpaceRelease(colorSpaceRef);
|
2016-10-26 21:14:02 +00:00
|
|
|
|
2017-09-27 19:09:26 +00:00
|
|
|
NSImage *ret = [[NSImage alloc] initWithCGImage:iref size:NSMakeSize(width * scale, height * scale)];
|
|
|
|
CGImageRelease(iref);
|
|
|
|
|
|
|
|
return ret;
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
|
|
|
|
2016-08-12 19:49:17 +00:00
|
|
|
- (void) reloadMemoryView
|
|
|
|
{
|
|
|
|
if (self.memoryWindow.isVisible) {
|
|
|
|
[hex_controller reloadData];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-26 21:14:02 +00:00
|
|
|
- (IBAction) reloadVRAMData: (id) sender
|
|
|
|
{
|
|
|
|
if (self.vramWindow.isVisible) {
|
|
|
|
switch ([self.vramTabView.tabViewItems indexOfObject:self.vramTabView.selectedTabViewItem]) {
|
|
|
|
case 0:
|
|
|
|
/* Tileset */
|
|
|
|
{
|
|
|
|
GB_palette_type_t palette_type = GB_PALETTE_NONE;
|
|
|
|
NSUInteger palette_menu_index = self.tilesetPaletteButton.indexOfSelectedItem;
|
|
|
|
if (palette_menu_index) {
|
|
|
|
palette_type = palette_menu_index > 8? GB_PALETTE_OAM : GB_PALETTE_BACKGROUND;
|
|
|
|
}
|
|
|
|
size_t bufferLength = 256 * 192 * 4;
|
|
|
|
NSMutableData *data = [NSMutableData dataWithCapacity:bufferLength];
|
|
|
|
data.length = bufferLength;
|
|
|
|
GB_draw_tileset(&gb, (uint32_t *)data.mutableBytes, palette_type, (palette_menu_index - 1) & 7);
|
|
|
|
|
|
|
|
self.tilesetImageView.image = [Document imageFromData:data width:256 height:192 scale:1.0];
|
|
|
|
self.tilesetImageView.layer.magnificationFilter = kCAFilterNearest;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
/* Tilemap */
|
|
|
|
{
|
|
|
|
GB_palette_type_t palette_type = GB_PALETTE_NONE;
|
|
|
|
NSUInteger palette_menu_index = self.tilemapPaletteButton.indexOfSelectedItem;
|
|
|
|
if (palette_menu_index > 1) {
|
|
|
|
palette_type = palette_menu_index > 9? GB_PALETTE_OAM : GB_PALETTE_BACKGROUND;
|
|
|
|
}
|
|
|
|
else if (palette_menu_index == 1) {
|
|
|
|
palette_type = GB_PALETTE_AUTO;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t bufferLength = 256 * 256 * 4;
|
|
|
|
NSMutableData *data = [NSMutableData dataWithCapacity:bufferLength];
|
|
|
|
data.length = bufferLength;
|
|
|
|
GB_draw_tilemap(&gb, (uint32_t *)data.mutableBytes, palette_type, (palette_menu_index - 2) & 7,
|
|
|
|
(GB_map_type_t) self.tilemapMapButton.indexOfSelectedItem,
|
|
|
|
(GB_tileset_type_t) self.TilemapSetButton.indexOfSelectedItem);
|
|
|
|
|
|
|
|
self.tilemapImageView.image = [Document imageFromData:data width:256 height:256 scale:1.0];
|
|
|
|
self.tilemapImageView.layer.magnificationFilter = kCAFilterNearest;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
/* OAM */
|
|
|
|
{
|
2017-04-19 20:26:39 +00:00
|
|
|
oamCount = GB_get_oam_info(&gb, oamInfo, &oamHeight);
|
2016-10-26 21:14:02 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
if (!oamUpdating) {
|
|
|
|
oamUpdating = true;
|
|
|
|
[self.spritesTableView reloadData];
|
|
|
|
oamUpdating = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
/* Palettes */
|
|
|
|
{
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
[self.paletteTableView reloadData];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 19:49:17 +00:00
|
|
|
- (IBAction) showMemory:(id)sender
|
|
|
|
{
|
|
|
|
if (!hex_controller) {
|
|
|
|
[self initMemoryView];
|
|
|
|
}
|
|
|
|
[self.memoryWindow makeKeyAndOrderFront:sender];
|
|
|
|
}
|
|
|
|
|
2016-08-19 11:54:54 +00:00
|
|
|
- (IBAction)hexGoTo:(id)sender
|
|
|
|
{
|
2017-02-24 16:15:31 +00:00
|
|
|
NSString *error = [self captureOutputForBlock:^{
|
2016-08-19 11:54:54 +00:00
|
|
|
uint16_t addr;
|
|
|
|
if (GB_debugger_evaluate(&gb, [[sender stringValue] UTF8String], &addr, NULL)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
addr -= lineRep.valueOffset;
|
|
|
|
if (addr >= hex_controller.byteArray.length) {
|
2017-02-24 16:15:31 +00:00
|
|
|
GB_log(&gb, "Value $%04x is out of range.\n", addr);
|
2016-08-19 11:54:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
[hex_controller setSelectedContentsRanges:@[[HFRangeWrapper withRange:HFRangeMake(addr, 0)]]];
|
|
|
|
[hex_controller _ensureVisibilityOfLocation:addr];
|
|
|
|
[self.memoryWindow makeFirstResponder:self.memoryView.subviews[0].subviews[0]];
|
|
|
|
}];
|
2017-02-24 16:15:31 +00:00
|
|
|
if (error) {
|
|
|
|
NSBeep();
|
|
|
|
[GBWarningPopover popoverWithContents:error onView:sender];
|
|
|
|
}
|
2016-08-19 11:54:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)hexUpdateBank:(NSControl *)sender
|
|
|
|
{
|
2017-02-24 16:15:31 +00:00
|
|
|
NSString *error = [self captureOutputForBlock:^{
|
2016-08-19 11:54:54 +00:00
|
|
|
uint16_t addr, bank;
|
|
|
|
if (GB_debugger_evaluate(&gb, [[sender stringValue] UTF8String], &addr, &bank)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bank == (uint16_t) -1) {
|
|
|
|
bank = addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t n_banks = 1;
|
|
|
|
switch ([(GBMemoryByteArray *)(hex_controller.byteArray) mode]) {
|
2017-04-19 20:26:39 +00:00
|
|
|
case GBMemoryROM: {
|
|
|
|
size_t rom_size;
|
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_ROM, &rom_size, NULL);
|
|
|
|
n_banks = rom_size / 0x4000;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
2017-04-19 20:26:39 +00:00
|
|
|
}
|
2016-08-19 11:54:54 +00:00
|
|
|
case GBMemoryVRAM:
|
2017-04-19 20:26:39 +00:00
|
|
|
n_banks = GB_is_cgb(&gb) ? 2 : 1;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
2017-04-19 20:26:39 +00:00
|
|
|
case GBMemoryExternalRAM: {
|
|
|
|
size_t ram_size;
|
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_CART_RAM, &ram_size, NULL);
|
|
|
|
n_banks = (ram_size + 0x1FFF) / 0x2000;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
2017-04-19 20:26:39 +00:00
|
|
|
}
|
2016-08-19 11:54:54 +00:00
|
|
|
case GBMemoryRAM:
|
2017-04-19 20:26:39 +00:00
|
|
|
n_banks = GB_is_cgb(&gb) ? 8 : 1;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
|
|
|
case GBMemoryEntireSpace:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bank %= n_banks;
|
|
|
|
|
|
|
|
[sender setStringValue:[NSString stringWithFormat:@"$%x", bank]];
|
|
|
|
[(GBMemoryByteArray *)(hex_controller.byteArray) setSelectedBank:bank];
|
|
|
|
[hex_controller reloadData];
|
|
|
|
}];
|
2017-02-24 16:15:31 +00:00
|
|
|
|
|
|
|
if (error) {
|
|
|
|
NSBeep();
|
|
|
|
[GBWarningPopover popoverWithContents:error onView:sender];
|
|
|
|
}
|
2016-08-19 11:54:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)hexUpdateSpace:(NSPopUpButtonCell *)sender
|
|
|
|
{
|
|
|
|
self.memoryBankItem.enabled = [sender indexOfSelectedItem] != GBMemoryEntireSpace;
|
|
|
|
GBMemoryByteArray *byteArray = (GBMemoryByteArray *)(hex_controller.byteArray);
|
|
|
|
[byteArray setMode:(GB_memory_mode_t)[sender indexOfSelectedItem]];
|
2017-04-19 20:26:39 +00:00
|
|
|
uint16_t bank;
|
2016-08-19 11:54:54 +00:00
|
|
|
switch ((GB_memory_mode_t)[sender indexOfSelectedItem]) {
|
|
|
|
case GBMemoryEntireSpace:
|
|
|
|
case GBMemoryROM:
|
|
|
|
lineRep.valueOffset = 0;
|
2017-04-19 20:26:39 +00:00
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_ROM, NULL, &bank);
|
|
|
|
byteArray.selectedBank = bank;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
|
|
|
case GBMemoryVRAM:
|
|
|
|
lineRep.valueOffset = 0x8000;
|
2017-04-19 20:26:39 +00:00
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_VRAM, NULL, &bank);
|
|
|
|
byteArray.selectedBank = bank;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
|
|
|
case GBMemoryExternalRAM:
|
|
|
|
lineRep.valueOffset = 0xA000;
|
2017-04-19 20:26:39 +00:00
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_CART_RAM, NULL, &bank);
|
|
|
|
byteArray.selectedBank = bank;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
|
|
|
case GBMemoryRAM:
|
|
|
|
lineRep.valueOffset = 0xC000;
|
2017-04-19 20:26:39 +00:00
|
|
|
GB_get_direct_access(&gb, GB_DIRECT_ACCESS_RAM, NULL, &bank);
|
|
|
|
byteArray.selectedBank = bank;
|
2016-08-19 11:54:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
[self.memoryBankInput setStringValue:[NSString stringWithFormat:@"$%x", byteArray.selectedBank]];
|
|
|
|
[hex_controller reloadData];
|
|
|
|
[self.memoryView setNeedsDisplay:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (GB_gameboy_t *) gameboy
|
|
|
|
{
|
|
|
|
return &gb;
|
|
|
|
}
|
|
|
|
|
2016-10-01 21:10:31 +00:00
|
|
|
+ (BOOL)canConcurrentlyReadDocumentsOfType:(NSString *)typeName
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2016-10-02 21:26:12 +00:00
|
|
|
- (void)cameraRequestUpdate
|
|
|
|
{
|
|
|
|
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
@try {
|
|
|
|
if (!cameraSession) {
|
|
|
|
NSError *error;
|
|
|
|
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType: AVMediaTypeVideo];
|
|
|
|
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice: device error: &error];
|
|
|
|
CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions([[[device formats] firstObject] formatDescription]);
|
|
|
|
|
|
|
|
if (!input) {
|
|
|
|
GB_camera_updated(&gb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraOutput = [[AVCaptureStillImageOutput alloc] init];
|
|
|
|
/* Greyscale is not widely supported, so we use YUV, whose first element is the brightness. */
|
|
|
|
[cameraOutput setOutputSettings: @{(id)kCVPixelBufferPixelFormatTypeKey: @(kYUVSPixelFormat),
|
|
|
|
(id)kCVPixelBufferWidthKey: @(MAX(128, 112 * dimensions.width / dimensions.height)),
|
|
|
|
(id)kCVPixelBufferHeightKey: @(MAX(112, 128 * dimensions.height / dimensions.width)),}];
|
|
|
|
|
|
|
|
|
|
|
|
cameraSession = [AVCaptureSession new];
|
|
|
|
cameraSession.sessionPreset = AVCaptureSessionPresetPhoto;
|
|
|
|
|
|
|
|
[cameraSession addInput: input];
|
|
|
|
[cameraSession addOutput: cameraOutput];
|
|
|
|
[cameraSession startRunning];
|
|
|
|
cameraConnection = [cameraOutput connectionWithMediaType: AVMediaTypeVideo];
|
|
|
|
}
|
|
|
|
|
|
|
|
[cameraOutput captureStillImageAsynchronouslyFromConnection: cameraConnection completionHandler: ^(CMSampleBufferRef sampleBuffer, NSError *error) {
|
|
|
|
if (error) {
|
|
|
|
GB_camera_updated(&gb);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (cameraImage) {
|
|
|
|
CVBufferRelease(cameraImage);
|
|
|
|
cameraImage = NULL;
|
|
|
|
}
|
|
|
|
cameraImage = CVBufferRetain(CMSampleBufferGetImageBuffer(sampleBuffer));
|
|
|
|
/* We only need the actual buffer, no need to ever unlock it. */
|
|
|
|
CVPixelBufferLockBaseAddress(cameraImage, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GB_camera_updated(&gb);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
@catch (NSException *exception) {
|
|
|
|
/* I have not tested camera support on many devices, so we catch exceptions just in case. */
|
|
|
|
GB_camera_updated(&gb);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (uint8_t)cameraGetPixelAtX:(uint8_t)x andY:(uint8_t) y
|
|
|
|
{
|
|
|
|
if (!cameraImage) {
|
2016-10-03 20:05:47 +00:00
|
|
|
return 0;
|
2016-10-02 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t *baseAddress = (uint8_t *)CVPixelBufferGetBaseAddress(cameraImage);
|
|
|
|
size_t bytesPerRow = CVPixelBufferGetBytesPerRow(cameraImage);
|
|
|
|
uint8_t offsetX = (CVPixelBufferGetWidth(cameraImage) - 128) / 2;
|
|
|
|
uint8_t offsetY = (CVPixelBufferGetHeight(cameraImage) - 112) / 2;
|
|
|
|
uint8_t ret = baseAddress[(x + offsetX) * 2 + (y + offsetY) * bytesPerRow];
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2016-10-26 21:14:02 +00:00
|
|
|
|
|
|
|
- (IBAction)toggleTilesetGrid:(NSButton *)sender
|
|
|
|
{
|
|
|
|
if (sender.state) {
|
|
|
|
self.tilesetImageView.horizontalGrids = @[
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.25] size:8],
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.5] size:128],
|
|
|
|
|
|
|
|
];
|
|
|
|
self.tilesetImageView.verticalGrids = @[
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.25] size:8],
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.5] size:64],
|
|
|
|
];
|
|
|
|
self.tilemapImageView.horizontalGrids = @[
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.25] size:8],
|
|
|
|
];
|
|
|
|
self.tilemapImageView.verticalGrids = @[
|
|
|
|
[[GBImageViewGridConfiguration alloc] initWithColor:[NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0.25] size:8],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.tilesetImageView.horizontalGrids = nil;
|
|
|
|
self.tilesetImageView.verticalGrids = nil;
|
|
|
|
self.tilemapImageView.horizontalGrids = nil;
|
|
|
|
self.tilemapImageView.verticalGrids = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)vramTabChanged:(NSSegmentedControl *)sender
|
|
|
|
{
|
|
|
|
[self.vramTabView selectTabViewItemAtIndex:[sender selectedSegment]];
|
|
|
|
[self reloadVRAMData:sender];
|
|
|
|
[self.vramTabView.selectedTabViewItem.view addSubview:self.gridButton];
|
|
|
|
self.gridButton.hidden = [sender selectedSegment] >= 2;
|
|
|
|
|
|
|
|
NSUInteger height_diff = self.vramWindow.frame.size.height - self.vramWindow.contentView.frame.size.height;
|
|
|
|
CGRect window_rect = self.vramWindow.frame;
|
|
|
|
window_rect.origin.y += window_rect.size.height;
|
|
|
|
switch ([sender selectedSegment]) {
|
|
|
|
case 0:
|
|
|
|
window_rect.size.height = 384 + height_diff + 48;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
window_rect.size.height = 512 + height_diff + 48;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
window_rect.size.height = 20 * 16 + height_diff + 24;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
window_rect.origin.y -= window_rect.size.height;
|
|
|
|
[self.vramWindow setFrame:window_rect display:YES animate:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mouseDidLeaveImageView:(GBImageView *)view
|
|
|
|
{
|
|
|
|
self.vramStatusLabel.stringValue = @"";
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)imageView:(GBImageView *)view mouseMovedToX:(NSUInteger)x Y:(NSUInteger)y
|
|
|
|
{
|
|
|
|
if (view == self.tilesetImageView) {
|
|
|
|
uint8_t bank = x >= 128? 1 : 0;
|
|
|
|
x &= 127;
|
|
|
|
uint16_t tile = x / 8 + y / 8 * 16;
|
|
|
|
self.vramStatusLabel.stringValue = [NSString stringWithFormat:@"Tile number $%02x at %d:$%04x", tile & 0xFF, bank, 0x8000 + tile * 0x10];
|
|
|
|
}
|
|
|
|
else if (view == self.tilemapImageView) {
|
|
|
|
uint16_t map_offset = x / 8 + y / 8 * 32;
|
|
|
|
uint16_t map_base = 0x1800;
|
|
|
|
GB_map_type_t map_type = (GB_map_type_t) self.tilemapMapButton.indexOfSelectedItem;
|
|
|
|
GB_tileset_type_t tileset_type = (GB_tileset_type_t) self.TilemapSetButton.indexOfSelectedItem;
|
2017-04-19 20:26:39 +00:00
|
|
|
uint8_t lcdc = ((uint8_t *)GB_get_direct_access(&gb, GB_DIRECT_ACCESS_IO, NULL, NULL))[GB_IO_LCDC];
|
|
|
|
uint8_t *vram = GB_get_direct_access(&gb, GB_DIRECT_ACCESS_VRAM, NULL, NULL);
|
2016-10-26 21:14:02 +00:00
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
if (map_type == GB_MAP_9C00 || (map_type == GB_MAP_AUTO && lcdc & 0x08)) {
|
2016-10-26 21:14:02 +00:00
|
|
|
map_base = 0x1c00;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tileset_type == GB_TILESET_AUTO) {
|
2017-04-19 20:26:39 +00:00
|
|
|
tileset_type = (lcdc & 0x10)? GB_TILESET_8800 : GB_TILESET_8000;
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
uint8_t tile = vram[map_base + map_offset];
|
2016-10-26 21:14:02 +00:00
|
|
|
uint16_t tile_address = 0;
|
|
|
|
if (tileset_type == GB_TILESET_8000) {
|
|
|
|
tile_address = 0x8000 + tile * 0x10;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tile_address = 0x9000 + (int8_t)tile * 0x10;
|
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
if (GB_is_cgb(&gb)) {
|
|
|
|
uint8_t attributes = vram[map_base + map_offset + 0x2000];
|
2016-10-26 21:14:02 +00:00
|
|
|
self.vramStatusLabel.stringValue = [NSString stringWithFormat:@"Tile number $%02x (%d:$%04x) at map address $%04x (Attributes: %c%c%c%d%d)",
|
|
|
|
tile,
|
|
|
|
attributes & 0x8? 1 : 0,
|
|
|
|
tile_address,
|
|
|
|
0x8000 + map_base + map_offset,
|
|
|
|
(attributes & 0x80) ? 'P' : '-',
|
|
|
|
(attributes & 0x40) ? 'V' : '-',
|
|
|
|
(attributes & 0x20) ? 'H' : '-',
|
|
|
|
attributes & 0x8? 1 : 0,
|
|
|
|
attributes & 0x7
|
|
|
|
];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.vramStatusLabel.stringValue = [NSString stringWithFormat:@"Tile number $%02x ($%04x) at map address $%04x",
|
|
|
|
tile,
|
|
|
|
tile_address,
|
|
|
|
0x8000 + map_base + map_offset
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
|
|
|
|
{
|
|
|
|
if (tableView == self.paletteTableView) {
|
|
|
|
return 16; /* 8 BG palettes, 8 OBJ palettes*/
|
|
|
|
}
|
|
|
|
else if (tableView == self.spritesTableView) {
|
|
|
|
return oamCount;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
|
|
|
|
{
|
|
|
|
NSUInteger columnIndex = [[tableView tableColumns] indexOfObject:tableColumn];
|
|
|
|
if (tableView == self.paletteTableView) {
|
|
|
|
if (columnIndex == 0) {
|
2017-04-19 20:26:39 +00:00
|
|
|
return [NSString stringWithFormat:@"%s %d", row >=8 ? "Object" : "Background", (int)(row & 7)];
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
2017-04-19 20:26:39 +00:00
|
|
|
|
|
|
|
uint8_t *palette_data = GB_get_direct_access(&gb, row >= 8? GB_DIRECT_ACCESS_OBP : GB_DIRECT_ACCESS_BGP, NULL, NULL);
|
2016-10-26 21:14:02 +00:00
|
|
|
|
|
|
|
uint16_t index = columnIndex - 1 + (row & 7) * 4;
|
2017-04-19 20:26:39 +00:00
|
|
|
return @((palette_data[(index << 1) + 1] << 8) | palette_data[(index << 1)]);
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
|
|
|
else if (tableView == self.spritesTableView) {
|
|
|
|
switch (columnIndex) {
|
|
|
|
case 0:
|
2017-12-29 11:42:32 +00:00
|
|
|
return [Document imageFromData:[NSData dataWithBytesNoCopy:oamInfo[row].image
|
|
|
|
length:64 * 4
|
|
|
|
freeWhenDone:NO]
|
|
|
|
width:8
|
|
|
|
height:oamHeight
|
|
|
|
scale:16.0/oamHeight];
|
2016-10-26 21:14:02 +00:00
|
|
|
case 1:
|
|
|
|
return @((int)oamInfo[row].x - 8);
|
|
|
|
case 2:
|
|
|
|
return @((int)oamInfo[row].y - 16);
|
|
|
|
case 3:
|
|
|
|
return [NSString stringWithFormat:@"$%02x", oamInfo[row].tile];
|
|
|
|
case 4:
|
|
|
|
return [NSString stringWithFormat:@"$%04x", 0x8000 + oamInfo[row].tile * 0x10];
|
|
|
|
case 5:
|
|
|
|
return [NSString stringWithFormat:@"$%04x", oamInfo[row].oam_addr];
|
|
|
|
case 6:
|
2017-04-19 20:26:39 +00:00
|
|
|
if (GB_is_cgb(&gb)) {
|
2016-10-26 21:14:02 +00:00
|
|
|
return [NSString stringWithFormat:@"%c%c%c%d%d",
|
|
|
|
oamInfo[row].flags & 0x80? 'P' : '-',
|
|
|
|
oamInfo[row].flags & 0x40? 'Y' : '-',
|
|
|
|
oamInfo[row].flags & 0x20? 'X' : '-',
|
|
|
|
oamInfo[row].flags & 0x08? 1 : 0,
|
|
|
|
oamInfo[row].flags & 0x07];
|
|
|
|
}
|
|
|
|
return [NSString stringWithFormat:@"%c%c%c%d",
|
|
|
|
oamInfo[row].flags & 0x80? 'P' : '-',
|
|
|
|
oamInfo[row].flags & 0x40? 'Y' : '-',
|
|
|
|
oamInfo[row].flags & 0x20? 'X' : '-',
|
|
|
|
oamInfo[row].flags & 0x10? 1 : 0];
|
|
|
|
case 7:
|
|
|
|
return oamInfo[row].obscured_by_line_limit? @"Dropped: Too many sprites in line": @"";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(NSInteger)row
|
|
|
|
{
|
|
|
|
return tableView == self.spritesTableView;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)tableView:(NSTableView *)tableView shouldEditTableColumn:(nullable NSTableColumn *)tableColumn row:(NSInteger)row
|
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)showVRAMViewer:(id)sender
|
|
|
|
{
|
|
|
|
[self.vramWindow makeKeyAndOrderFront:sender];
|
2017-05-27 09:52:31 +00:00
|
|
|
[self reloadVRAMData: nil];
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
2017-01-13 20:26:44 +00:00
|
|
|
|
|
|
|
- (void) printImage:(uint32_t *)imageBytes height:(unsigned) height
|
|
|
|
topMargin:(unsigned) topMargin bottomMargin: (unsigned) bottomMargin
|
|
|
|
exposure:(unsigned) exposure
|
|
|
|
{
|
|
|
|
uint32_t paddedImage[160 * (topMargin + height + bottomMargin)];
|
|
|
|
memset(paddedImage, 0xFF, sizeof(paddedImage));
|
|
|
|
memcpy(paddedImage + (160 * topMargin), imageBytes, 160 * height * sizeof(imageBytes[0]));
|
|
|
|
if (!self.printerFeedWindow.isVisible) {
|
|
|
|
currentPrinterImageData = [[NSMutableData alloc] init];
|
|
|
|
}
|
|
|
|
[currentPrinterImageData appendBytes:paddedImage length:sizeof(paddedImage)];
|
|
|
|
self.feedImageView.image = [Document imageFromData:currentPrinterImageData
|
|
|
|
width:160
|
|
|
|
height:currentPrinterImageData.length / 160 / sizeof(imageBytes[0])
|
|
|
|
scale:2.0];
|
|
|
|
/* UI related code must run on main thread. */
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
NSRect frame = self.printerFeedWindow.frame;
|
|
|
|
frame.size = self.feedImageView.image.size;
|
|
|
|
frame.size.height += self.printerFeedWindow.frame.size.height - self.printerFeedWindow.contentView.frame.size.height;
|
|
|
|
[self.printerFeedWindow setMaxSize:frame.size];
|
|
|
|
[self.printerFeedWindow setFrame:frame display:NO animate: self.printerFeedWindow.isVisible];
|
|
|
|
[self.printerFeedWindow orderFront:NULL];
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
- (IBAction)savePrinterFeed:(id)sender
|
|
|
|
{
|
|
|
|
bool shouldResume = running;
|
|
|
|
[self stop];
|
|
|
|
NSSavePanel * savePanel = [NSSavePanel savePanel];
|
|
|
|
[savePanel setAllowedFileTypes:@[@"png"]];
|
|
|
|
[savePanel beginSheetModalForWindow:self.printerFeedWindow completionHandler:^(NSInteger result){
|
|
|
|
if (result == NSFileHandlingPanelOKButton) {
|
|
|
|
[savePanel orderOut:self];
|
|
|
|
CGImageRef cgRef = [self.feedImageView.image CGImageForProposedRect:NULL
|
|
|
|
context:nil
|
|
|
|
hints:nil];
|
|
|
|
NSBitmapImageRep *imageRep = [[NSBitmapImageRep alloc] initWithCGImage:cgRef];
|
|
|
|
[imageRep setSize:(NSSize){160, self.feedImageView.image.size.height / 2}];
|
|
|
|
NSData *data = [imageRep representationUsingType:NSPNGFileType properties:@{}];
|
|
|
|
[data writeToURL:savePanel.URL atomically:NO];
|
|
|
|
[self.printerFeedWindow setIsVisible:NO];
|
|
|
|
}
|
|
|
|
if (shouldResume) {
|
|
|
|
[self start];
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)disconnectAllAccessories:(id)sender
|
|
|
|
{
|
|
|
|
[self performAtomicBlock:^{
|
|
|
|
accessory = GBAccessoryNone;
|
|
|
|
GB_disconnect_serial(&gb);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)connectPrinter:(id)sender
|
|
|
|
{
|
|
|
|
[self performAtomicBlock:^{
|
|
|
|
accessory = GBAccessoryPrinter;
|
|
|
|
GB_connect_printer(&gb, printImage);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2017-08-15 18:59:53 +00:00
|
|
|
- (void) updateHighpassFilter
|
|
|
|
{
|
|
|
|
if (GB_is_inited(&gb)) {
|
|
|
|
GB_set_highpass_filter_mode(&gb, (GB_highpass_mode_t) [[NSUserDefaults standardUserDefaults] integerForKey:@"GBHighpassFilter"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-12 14:22:22 +00:00
|
|
|
- (void) updateColorCorrectionMode
|
|
|
|
{
|
|
|
|
if (GB_is_inited(&gb)) {
|
|
|
|
GB_set_color_correction_mode(&gb, (GB_color_correction_mode_t) [[NSUserDefaults standardUserDefaults] integerForKey:@"GBColorCorrection"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-10 12:42:14 +00:00
|
|
|
- (void) updateRewindLength
|
|
|
|
{
|
|
|
|
if (GB_is_inited(&gb)) {
|
|
|
|
GB_set_rewind_length(&gb, [[NSUserDefaults standardUserDefaults] integerForKey:@"GBRewindLength"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-20 12:37:15 +00:00
|
|
|
@end
|