ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/Emulator.mm
(Generate patch)

Comparing BasiliskII/src/MacOSX/Emulator.mm (file contents):
Revision 1.3 by nigel, 2002-05-30T12:36:17Z vs.
Revision 1.14 by nigel, 2009-10-08T09:20:51Z

# Line 4 | Line 4
4   *
5   *      $Id$
6   *
7 < *  Basilisk II (C) 1997-2002 Christian Bauer
7 > *  Basilisk II (C) 1997-2008 Christian Bauer
8   *
9   *  This program is free software; you can redistribute it and/or modify
10   *  it under the terms of the GNU General Public License as published by
# Line 24 | Line 24
24   #import "Emulator.h"
25   #import "EmulatorView.h"
26  
27 @implementation Emulator
28
27   #import "sysdeps.h"                     // Types used in Basilisk C++ code
28  
29   #import "main_macosx.h"         // Prototypes for QuitEmuNoExit() and InitEmulator()
30   #import "misc_macosx.h"         // Some other prototypes
31   #import "video_macosx.h"        // Some window/view globals
32  
33 < #import <adb.h>
34 < #import <main.h>
35 < #import <prefs.h>
36 < #import <timer.h>
33 > #import "adb.h"
34 > #import "main.h"
35 > #import "prefs.h"
36 > #import "timer.h"
37 >
38 > #undef check                            // memory.h defines a check macro,
39 >                                                        // which may clash with an OS X one on 10.1 or 10.2
40 > #import "cpu_emulation.h"
41  
42 < #undef check()                          // memory.h defines a check macro, which clashes with an OS X one?
43 < #import <cpu_emulation.h>
42 > #define DEBUG 0
43 > #import "debug.h"
44  
45 < #define DEBUG 1
44 < #import <debug.h>
45 > @implementation Emulator
46  
47   // NSWindow method, which is invoked via delegation
48  
# Line 94 | Line 95
95          //[win setHasShadow: NO];               // This causes view & window to now be drawn correctly
96          [win useOptimizedDrawing: YES];                
97  
97 //      [win center];
98          [win makeKeyAndOrderFront:self];
99  
100 //      [self resizeWinToWidth:x Height:y];
101
100          if ( redrawDelay )
101                  [speed setFloatValue: 1.0 / redrawDelay];
102          else
# Line 120 | Line 118
118   - (NSSlider *)          speed           {       return speed;           }
119   - (NSWindow *)          window          {       return win;                     }
120  
123 //#define DEBUG 1
124 //#include <debug.h>
121  
122   // Update some UI elements
123  
# Line 149 | Line 145
145                  [self Resume: self];
146   }
147  
148 + #ifdef NIGEL
149 + - (IBAction) EjectCD: (id)sender;
150 + {
151 +        NSString        *path;
152 +        const char      *cdrom = PrefsFindString("cdrom");
153 +
154 +        if ( cdrom )
155 +        {
156 +        #include <sys/param.h>
157 +        #define KERNEL
158 +        #include <sys/mount.h>
159 +
160 +                struct statfs buf;
161 +                if ( fsstat(path, &buf) < 0 )
162 +                        return;
163 +
164 +                path = [NSString stringWithCString: cdrom];
165 +
166 +                [[NSWorkspace sharedWorkspace] unmountAndEjectDeviceAtPath: path];
167 + //              [path release];
168 +        }
169 + }
170 + #endif
171 +
172   - (IBAction) Interrupt: (id)sender;
173   {
174          WarningSheet (@"Interrupt action not yet supported", win);
# Line 171 | Line 191
191  
192   - (IBAction) Restart: (id)sender
193   {
194 +        if ( ! running )
195 +        {
196 +                running = YES;                                          // Start emulator
197 +                [self runUpdate];
198 +                [self Resume: nil];
199 +        }
200 +
201          if ( running )
202 < //              reset680x0();
202 > #ifdef UAE_CPU_HAS_RESET
203 >                reset680x0();
204 > #else
205          {
206                  uaeCreated = NO;
207                  [redraw suspend];
208                  NSLog (@"%s - uae_cpu reset not yet supported, will try to fake it",
209                                  __PRETTY_FUNCTION__);
210  
211 < //              [screen blacken];
212 <                [screen setNeedsDisplay: YES];
211 >                [screen clear];
212 >                [screen display];
213  
214                  [emul terminate]; QuitEmuNoExit();
215  
216 <                emul = [[NNThread alloc] init];
216 >
217 >                // OK. We have killed & cleaned up. Now, start afresh:
218 >        #include <sys.h>
219 >                int     argc = 0;
220 >                char **argv;
221 >
222 >                PrefsInit(NULL, argc, argv);
223 >                SysInit();
224 >
225 >                emul = [NNThread new];
226                  [emul perform:@selector(emulThread) of:self];
227                  [emul start];
228  
229                  if ( display_type != DISPLAY_SCREEN )
230                          [redraw resume];
193                uaeCreated = YES;
231          }
232 + #endif
233   }
234  
235   - (IBAction) Resume: (id)sender
# Line 314 | Line 352 | uint8 lastXPRAM[XPRAM_SIZE];           // Copy of
352          [NSThread detachNewThreadSelector:(SEL)"" toTarget:nil withObject:nil];
353          //emul   = [[NNThread   alloc] initWithAutoReleasePool];
354   #endif
355 <        emul   = [[NNThread     alloc] init];
356 <        RTC    = [[NNTimer      alloc] init];
357 <        redraw = [[NNTimer  alloc] init];
358 <        tick   = [[NNTimer      alloc] init];
359 <        xPRAM  = [[NNTimer      alloc] init];
355 >        emul   = [NNThread      new];
356 >        RTC    = [NNTimer       new];
357 >        redraw = [[NNTimer      alloc] initWithAutoRelPool];
358 >        tick   = [NNTimer       new];
359 >        xPRAM  = [NNTimer       new];
360  
361          [emul  perform:@selector(emulThread)    of:self];
362          [RTC    repeat:@selector(RTCinterrupt)  of:self
# Line 353 | Line 391 | uint8 lastXPRAM[XPRAM_SIZE];           // Copy of
391          [redraw invalidate]; [redraw release]; redraw = nil;
392          [RTC    invalidate]; [RTC        release]; RTC    = nil;
393          [xPRAM  invalidate]; [xPRAM      release]; xPRAM  = nil;
356        if ( uaeCreated )
357                QuitEmuNoExit();
394   }
395  
396   - (void) emulThread
397   {
398 <        extern uint8            *RAMBaseHost, *ROMBaseHost;
363 <        NSAutoreleasePool       *pool = [[NSAutoreleasePool alloc] init];
398 >        NSAutoreleasePool       *pool = [NSAutoreleasePool new];
399  
400 <        InitEmulator();
400 >        if ( ! InitEmulator() )
401 >        {
402 >                [redraw suspend];               // Stop the barberpole
403  
404 <        if ( RAMBaseHost == NULL || ROMBaseHost == NULL )
405 <                ErrorSheet(@"Cannot start Emulator",
369 <                                   @"Emulator memory not allocated", nil, win);
404 >                ErrorSheet(@"Cannot start Emulator", @"", @"Quit", win);
405 >        }
406          else
407          {
408                  memcpy(lastXPRAM, XPRAM, XPRAM_SIZE);
# Line 376 | Line 412 | uint8 lastXPRAM[XPRAM_SIZE];           // Copy of
412                  while ( screen == nil ) // If we are still loading from Nib?
413                          [NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow: 1.0]];
414  
415 < //              [screen readyToDraw];
380 <                [self   runUpdate];
415 >                [self   runUpdate];             // Set the window close gadget to dimpled
416  
417                  Start680x0();                   // Start 68k and jump to ROM boot routine
418  
419                  puts ("Emulator exited normally");
420          }
421  
387        running = NO;
388        uaeCreated = NO;
389        [self runUpdate];                       // Update button & dimple
422          [pool release];
423 <        [self exitThreads];
423 >        QuitEmulator();
424   }
425  
426   - (void) RTCinterrupt
427   {
428 <        if ( uaeCreated )
429 <                WriteMacInt32 (0x20c, TimerDateTime() );        // Update MacOS time
428 >        if ( ! uaeCreated )
429 >                return;
430 >
431 >        WriteMacInt32 (0x20c, TimerDateTime() );        // Update MacOS time
432 >
433 >        SetInterruptFlag(INTFLAG_1HZ);
434 >        TriggerInterrupt();
435   }
436  
437   - (void) redrawScreen
438   {
439          if ( display_type == DISPLAY_SCREEN )
440          {
441 <                NSLog(@"Why was redrawScreen() called?");
441 >                NSLog(@"We are in fullscreen mode - why was redrawScreen() called?");
442                  return;
443          }
444          [barberPole animate:self];                      // wobble the pole
445          [screen setNeedsDisplay: YES];          // redisplay next time through runLoop
446          // Or, use a direct method. e.g.
447 <        //      [screen cgDrawInto: ...];
447 >        //      [screen display] or [screen cgDrawInto: ...];
448   }
449  
450   #include <main.h>                               // For #define INTFLAG_60HZ

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines