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.5 by nigel, 2003-03-26T01:45:31Z 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>
37 <
38 < #undef check()                          // memory.h defines a check macro, clashes with an OS X one?
39 < #import <cpu_emulation.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   #define DEBUG 0
43 < #import <debug.h>
43 > #import "debug.h"
44 >
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 147 | 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 169 | 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 +
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];
191                uaeCreated = YES;
231          }
232 + #endif
233   }
234  
235   - (IBAction) Resume: (id)sender
# Line 314 | Line 354 | uint8 lastXPRAM[XPRAM_SIZE];           // Copy of
354   #endif
355          emul   = [NNThread      new];
356          RTC    = [NNTimer       new];
357 <        redraw = [NNTimer       new];
357 >        redraw = [[NNTimer      alloc] initWithAutoRelPool];
358          tick   = [NNTimer       new];
359          xPRAM  = [NNTimer       new];
360  
# Line 351 | 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;
354        if ( uaeCreated )
355                QuitEmuNoExit();
394   }
395  
396   - (void) emulThread
# Line 387 | Line 425 | uint8 lastXPRAM[XPRAM_SIZE];           // Copy of
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