]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/mainwin.cpp
482b9cdff9e8176d7f309c3edef04c9882a64f7c
[virtualjaguar] / src / gui / mainwin.cpp
1 //
2 // mainwin.cpp - Qt-based GUI for Virtual Jaguar: Main Application Window
3 // by James Hammons
4 // (C) 2009 Underground Software
5 //
6 // JLH = James Hammons <jlhamm@acm.org>
7 //
8 // Who  When        What
9 // ---  ----------  -------------------------------------------------------------
10 // JLH  12/23/2009  Created this file
11 // JLH  12/20/2010  Added settings, menus & toolbars
12 // JLH  07/05/2011  Added CD BIOS functionality to GUI
13 //
14
15 // FIXED:
16 //
17 // - Add dbl click/enter to select in cart list, ESC to dimiss [DONE]
18 // - Autoscan/autoload all available BIOS from 'software' folder [DONE]
19 // - Add 1 key jumping in cartridge list (press 'R', jumps to carts starting with 'R', etc) [DONE]
20 // - Controller configuration [DONE]
21 //
22 // STILL TO BE DONE:
23 //
24 // - Fix bug in switching between PAL & NTSC in fullscreen mode.
25 // - Remove SDL dependencies (sound, mainly) from Jaguar core lib
26 // - Fix inconsistency with trailing slashes in paths (eeproms needs one, software doesn't)
27 //
28 // SFDX CODE: S1E9T8H5M23YS
29
30 // Uncomment this for debugging...
31 //#define DEBUG
32 //#define DEBUGFOO                      // Various tool debugging...
33 //#define DEBUGTP                               // Toolpalette debugging...
34
35 #include "mainwin.h"
36
37 #include "SDL.h"
38 #include "app.h"
39 #include "about.h"
40 #include "configdialog.h"
41 #include "controllertab.h"
42 #include "filepicker.h"
43 #include "gamepad.h"
44 #include "generaltab.h"
45 #include "glwidget.h"
46 #include "help.h"
47 #include "profile.h"
48 #include "settings.h"
49 #include "version.h"
50 #include "debug/cpubrowser.h"
51 #include "debug/m68kdasmbrowser.h"
52 #include "debug/memorybrowser.h"
53 #include "debug/opbrowser.h"
54 #include "debug/riscdasmbrowser.h"
55
56 #include "dac.h"
57 #include "jaguar.h"
58 #include "log.h"
59 #include "file.h"
60 #include "jagbios.h"
61 #include "jagbios2.h"
62 #include "jagcdbios.h"
63 #include "jagstub2bios.h"
64 #include "joystick.h"
65 #include "m68000/m68kinterface.h"
66
67 // According to SebRmv, this header isn't seen on Arch Linux either... :-/
68 //#ifdef __GCCWIN32__
69 // Apparently on win32, usleep() is not pulled in by the usual suspects.
70 #include <unistd.h>
71 //#endif
72
73 // The way BSNES controls things is by setting a timer with a zero
74 // timeout, sleeping if not emulating anything. Seems there has to be a
75 // better way.
76
77 // It has a novel approach to plugging-in/using different video/audio/input
78 // methods, can we do something similar or should we just use the built-in
79 // QOpenGL?
80
81 // We're going to try to use the built-in OpenGL support and see how it goes.
82 // We'll make the VJ core modular so that it doesn't matter what GUI is in
83 // use, we can drop it in anywhere and use it as-is.
84
85 MainWin::MainWin(bool autoRun): running(true), powerButtonOn(false),
86         showUntunedTankCircuit(true), cartridgeLoaded(false), CDActive(false),
87         pauseForFileSelector(false), loadAndGo(autoRun), plzDontKillMyComputer(false)
88 {
89         debugbar = NULL;
90
91         for(int i=0; i<8; i++)
92                 keyHeld[i] = false;
93
94         // FPS management
95         for(int i=0; i<RING_BUFFER_SIZE; i++)
96                 ringBuffer[i] = 0;
97
98         ringBufferPointer = RING_BUFFER_SIZE - 1;
99
100         videoWidget = new GLWidget(this);
101         setCentralWidget(videoWidget);
102         setWindowIcon(QIcon(":/res/vj-icon.png"));
103
104         QString title = QString(tr("Virtual Jaguar " VJ_RELEASE_VERSION ));
105
106         if (vjs.hardwareTypeAlpine)
107                 title += QString(tr(" - Alpine Mode"));
108
109         setWindowTitle(title);
110
111         aboutWin = new AboutWindow(this);
112         helpWin = new HelpWindow(this);
113         filePickWin = new FilePickerWindow(this);
114         memBrowseWin = new MemoryBrowserWindow(this);
115         cpuBrowseWin = new CPUBrowserWindow(this);
116         opBrowseWin = new OPBrowserWindow(this);
117         m68kDasmBrowseWin = new M68KDasmBrowserWindow(this);
118         riscDasmBrowseWin = new RISCDasmBrowserWindow(this);
119
120         videoWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
121         setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
122
123         setUnifiedTitleAndToolBarOnMac(true);
124
125         // Create actions
126
127         quitAppAct = new QAction(tr("E&xit"), this);
128 //      quitAppAct->setShortcuts(QKeySequence::Quit);
129 //      quitAppAct->setShortcut(QKeySequence(tr("Alt+x")));
130         quitAppAct->setShortcut(QKeySequence(tr("Ctrl+q")));
131         quitAppAct->setShortcutContext(Qt::ApplicationShortcut);
132         quitAppAct->setStatusTip(tr("Quit Virtual Jaguar"));
133         connect(quitAppAct, SIGNAL(triggered()), this, SLOT(close()));
134
135         powerGreen.addFile(":/res/power-off.png", QSize(), QIcon::Normal, QIcon::Off);
136         powerGreen.addFile(":/res/power-on-green.png", QSize(), QIcon::Normal, QIcon::On);
137         powerRed.addFile(":/res/power-off.png", QSize(), QIcon::Normal, QIcon::Off);
138         powerRed.addFile(":/res/power-on-red.png", QSize(), QIcon::Normal, QIcon::On);
139
140 //      powerAct = new QAction(QIcon(":/res/power.png"), tr("&Power"), this);
141         powerAct = new QAction(powerGreen, tr("&Power"), this);
142         powerAct->setStatusTip(tr("Powers Jaguar on/off"));
143         powerAct->setCheckable(true);
144         powerAct->setChecked(false);
145 //      powerAct->setDisabled(true);
146         connect(powerAct, SIGNAL(triggered()), this, SLOT(TogglePowerState()));
147
148         QIcon pauseIcon;
149         pauseIcon.addFile(":/res/pause-off", QSize(), QIcon::Normal, QIcon::Off);
150         pauseIcon.addFile(":/res/pause-on", QSize(), QIcon::Normal, QIcon::On);
151 //      pauseAct = new QAction(QIcon(":/res/pause.png"), tr("Pause"), this);
152         pauseAct = new QAction(pauseIcon, tr("Pause"), this);
153         pauseAct->setStatusTip(tr("Toggles the running state"));
154         pauseAct->setCheckable(true);
155         pauseAct->setDisabled(true);
156         pauseAct->setShortcut(QKeySequence(tr("Esc")));
157         pauseAct->setShortcutContext(Qt::ApplicationShortcut);
158         connect(pauseAct, SIGNAL(triggered()), this, SLOT(ToggleRunState()));
159
160         zoomActs = new QActionGroup(this);
161
162         x1Act = new QAction(QIcon(":/res/zoom100.png"), tr("Zoom 100%"), zoomActs);
163         x1Act->setStatusTip(tr("Set window zoom to 100%"));
164         x1Act->setCheckable(true);
165         connect(x1Act, SIGNAL(triggered()), this, SLOT(SetZoom100()));
166
167         x2Act = new QAction(QIcon(":/res/zoom200.png"), tr("Zoom 200%"), zoomActs);
168         x2Act->setStatusTip(tr("Set window zoom to 200%"));
169         x2Act->setCheckable(true);
170         connect(x2Act, SIGNAL(triggered()), this, SLOT(SetZoom200()));
171
172         x3Act = new QAction(QIcon(":/res/zoom300.png"), tr("Zoom 300%"), zoomActs);
173         x3Act->setStatusTip(tr("Set window zoom to 300%"));
174         x3Act->setCheckable(true);
175         connect(x3Act, SIGNAL(triggered()), this, SLOT(SetZoom300()));
176
177         tvTypeActs = new QActionGroup(this);
178
179         ntscAct = new QAction(QIcon(":/res/ntsc.png"), tr("NTSC"), tvTypeActs);
180         ntscAct->setStatusTip(tr("Sets Jaguar to NTSC mode"));
181         ntscAct->setCheckable(true);
182         connect(ntscAct, SIGNAL(triggered()), this, SLOT(SetNTSC()));
183
184         palAct = new QAction(QIcon(":/res/pal.png"), tr("PAL"), tvTypeActs);
185         palAct->setStatusTip(tr("Sets Jaguar to PAL mode"));
186         palAct->setCheckable(true);
187         connect(palAct, SIGNAL(triggered()), this, SLOT(SetPAL()));
188
189         blurAct = new QAction(QIcon(":/res/blur.png"), tr("Blur"), this);
190         blurAct->setStatusTip(tr("Sets OpenGL rendering to GL_NEAREST"));
191         blurAct->setCheckable(true);
192         connect(blurAct, SIGNAL(triggered()), this, SLOT(ToggleBlur()));
193
194         aboutAct = new QAction(QIcon(":/res/vj-icon.png"), tr("&About..."), this);
195         aboutAct->setStatusTip(tr("Blatant self-promotion"));
196         connect(aboutAct, SIGNAL(triggered()), this, SLOT(ShowAboutWin()));
197
198         helpAct = new QAction(QIcon(":/res/vj-icon.png"), tr("&Contents..."), this);
199         helpAct->setStatusTip(tr("Help is available, if you should need it"));
200         connect(helpAct, SIGNAL(triggered()), this, SLOT(ShowHelpWin()));
201
202         filePickAct = new QAction(QIcon(":/res/software.png"), tr("&Insert Cartridge..."), this);
203         filePickAct->setStatusTip(tr("Insert a cartridge into Virtual Jaguar"));
204         filePickAct->setShortcut(QKeySequence(tr("Ctrl+i")));
205         filePickAct->setShortcutContext(Qt::ApplicationShortcut);
206         connect(filePickAct, SIGNAL(triggered()), this, SLOT(InsertCart()));
207
208         configAct = new QAction(QIcon(":/res/wrench.png"), tr("&Configure"), this);
209         configAct->setStatusTip(tr("Configure options for Virtual Jaguar"));
210         configAct->setShortcut(QKeySequence(tr("Ctrl+c")));
211         configAct->setShortcutContext(Qt::ApplicationShortcut);
212         connect(configAct, SIGNAL(triggered()), this, SLOT(Configure()));
213
214         useCDAct = new QAction(QIcon(":/res/compact-disc.png"), tr("&Use CD Unit"), this);
215         useCDAct->setStatusTip(tr("Use Jaguar Virtual CD unit"));
216 //      useCDAct->setShortcut(QKeySequence(tr("Ctrl+c")));
217         useCDAct->setCheckable(true);
218         connect(useCDAct, SIGNAL(triggered()), this, SLOT(ToggleCDUsage()));
219
220         frameAdvanceAct = new QAction(QIcon(":/res/frame-advance.png"), tr("&Frame Advance"), this);
221         frameAdvanceAct->setShortcut(QKeySequence(tr("F7")));
222         frameAdvanceAct->setShortcutContext(Qt::ApplicationShortcut);
223         frameAdvanceAct->setDisabled(true);
224         connect(frameAdvanceAct, SIGNAL(triggered()), this, SLOT(FrameAdvance()));
225
226         fullScreenAct = new QAction(QIcon(":/res/fullscreen.png"), tr("F&ull Screen"), this);
227         fullScreenAct->setShortcut(QKeySequence(tr("F9")));
228         fullScreenAct->setShortcutContext(Qt::ApplicationShortcut);
229         fullScreenAct->setCheckable(true);
230         connect(fullScreenAct, SIGNAL(triggered()), this, SLOT(ToggleFullScreen()));
231
232         // Debugger Actions
233         memBrowseAct = new QAction(QIcon(":/res/tool-memory.png"), tr("Memory Browser"), this);
234         memBrowseAct->setStatusTip(tr("Shows the Jaguar memory browser window"));
235 //      memBrowseAct->setCheckable(true);
236         connect(memBrowseAct, SIGNAL(triggered()), this, SLOT(ShowMemoryBrowserWin()));
237
238         cpuBrowseAct = new QAction(QIcon(":/res/tool-cpu.png"), tr("CPU Browser"), this);
239         cpuBrowseAct->setStatusTip(tr("Shows the Jaguar CPU browser window"));
240 //      memBrowseAct->setCheckable(true);
241         connect(cpuBrowseAct, SIGNAL(triggered()), this, SLOT(ShowCPUBrowserWin()));
242
243         opBrowseAct = new QAction(QIcon(":/res/tool-op.png"), tr("OP Browser"), this);
244         opBrowseAct->setStatusTip(tr("Shows the Jaguar OP browser window"));
245 //      memBrowseAct->setCheckable(true);
246         connect(opBrowseAct, SIGNAL(triggered()), this, SLOT(ShowOPBrowserWin()));
247
248         m68kDasmBrowseAct = new QAction(QIcon(":/res/tool-68k-dis.png"), tr("68K Listing Browser"), this);
249         m68kDasmBrowseAct->setStatusTip(tr("Shows the 68K disassembly browser window"));
250 //      memBrowseAct->setCheckable(true);
251         connect(m68kDasmBrowseAct, SIGNAL(triggered()), this, SLOT(ShowM68KDasmBrowserWin()));
252
253         riscDasmBrowseAct = new QAction(QIcon(":/res/tool-risc-dis.png"), tr("RISC Listing Browser"), this);
254         riscDasmBrowseAct->setStatusTip(tr("Shows the RISC disassembly browser window"));
255 //      memBrowseAct->setCheckable(true);
256         connect(riscDasmBrowseAct, SIGNAL(triggered()), this, SLOT(ShowRISCDasmBrowserWin()));
257
258         // Misc. connections...
259         connect(filePickWin, SIGNAL(RequestLoad(QString)), this, SLOT(LoadSoftware(QString)));
260         connect(filePickWin, SIGNAL(FilePickerHiding()), this, SLOT(Unpause()));
261
262         // Create menus & toolbars
263
264         fileMenu = menuBar()->addMenu(tr("&Jaguar"));
265         fileMenu->addAction(powerAct);
266         fileMenu->addAction(pauseAct);
267 //      fileMenu->addAction(frameAdvanceAct);
268         fileMenu->addAction(filePickAct);
269         fileMenu->addAction(useCDAct);
270         fileMenu->addAction(configAct);
271         fileMenu->addAction(quitAppAct);
272
273         if (vjs.hardwareTypeAlpine)
274         {
275                 debugMenu = menuBar()->addMenu(tr("&Debug"));
276                 debugMenu->addAction(memBrowseAct);
277                 debugMenu->addAction(cpuBrowseAct);
278                 debugMenu->addAction(opBrowseAct);
279                 debugMenu->addAction(m68kDasmBrowseAct);
280                 debugMenu->addAction(riscDasmBrowseAct);
281         }
282
283         helpMenu = menuBar()->addMenu(tr("&Help"));
284         helpMenu->addAction(helpAct);
285         helpMenu->addAction(aboutAct);
286
287         toolbar = addToolBar(tr("Stuff"));
288         toolbar->addAction(powerAct);
289         toolbar->addAction(pauseAct);
290         toolbar->addAction(frameAdvanceAct);
291         toolbar->addAction(filePickAct);
292         toolbar->addAction(useCDAct);
293         toolbar->addSeparator();
294         toolbar->addAction(x1Act);
295         toolbar->addAction(x2Act);
296         toolbar->addAction(x3Act);
297         toolbar->addSeparator();
298         toolbar->addAction(ntscAct);
299         toolbar->addAction(palAct);
300         toolbar->addSeparator();
301         toolbar->addAction(blurAct);
302         toolbar->addAction(fullScreenAct);
303
304         if (vjs.hardwareTypeAlpine)
305         {
306                 debugbar = addToolBar(tr("&Debug"));
307                 debugbar->addAction(memBrowseAct);
308                 debugbar->addAction(cpuBrowseAct);
309                 debugbar->addAction(opBrowseAct);
310                 debugbar->addAction(m68kDasmBrowseAct);
311                 debugbar->addAction(riscDasmBrowseAct);
312         }
313
314         // Add actions to the main window, as hiding widgets with them
315         // disables them :-P
316         addAction(fullScreenAct);
317         addAction(quitAppAct);
318         addAction(configAct);
319         addAction(pauseAct);
320         addAction(filePickAct);
321         addAction(frameAdvanceAct);
322
323         //      Create status bar
324         statusBar()->showMessage(tr("Ready"));
325
326         ReadSettings();
327
328         // Do this in case original size isn't correct (mostly for the first-run case)
329         ResizeMainWindow();
330
331         // Create our test pattern bitmap
332         QImage tempImg(":/res/test-pattern.jpg");
333         QImage tempImgScaled = tempImg.scaled(VIRTUAL_SCREEN_WIDTH, VIRTUAL_SCREEN_HEIGHT_PAL, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
334
335         for(uint32_t y=0; y<VIRTUAL_SCREEN_HEIGHT_PAL; y++)
336         {
337                 const QRgb * scanline = (QRgb *)tempImgScaled.constScanLine(y);
338
339                 for(uint32_t x=0; x<VIRTUAL_SCREEN_WIDTH; x++)
340                 {
341                         uint32_t pixel = (qRed(scanline[x]) << 24) | (qGreen(scanline[x]) << 16) | (qBlue(scanline[x]) << 8) | 0xFF;
342                         testPattern[(y * VIRTUAL_SCREEN_WIDTH) + x] = pixel;
343                 }
344         }
345
346         // Set up timer based loop for animation...
347         timer = new QTimer(this);
348         connect(timer, SIGNAL(timeout()), this, SLOT(Timer()));
349
350         // This isn't very accurate for NTSC: This is early by 40 msec per frame.
351         // This is because it's discarding the 0.6666... on the end of the fraction.
352         // Alas, 6 doesn't divide cleanly into 10. :-P
353 //Should we defer this until SyncUI? Probably.
354 //No, it doesn't work, because it uses setInterval() instead of start()...
355 //      timer->start(vjs.hardwareTypeNTSC ? 16 : 20);
356
357         // We set this initially, to make VJ behave somewhat as it would if no
358         // cart were inserted and the BIOS was set as active...
359         jaguarCartInserted = true;
360         WriteLog("Virtual Jaguar %s (Last full build was on %s %s)\n", VJ_RELEASE_VERSION, __DATE__, __TIME__);
361         WriteLog("VJ: Initializing jaguar subsystem...\n");
362         JaguarInit();
363 //      memcpy(jagMemSpace + 0xE00000, jaguarBootROM, 0x20000); // Use the stock BIOS
364         memcpy(jagMemSpace + 0xE00000, (vjs.biosType == BT_K_SERIES ? jaguarBootROM : jaguarBootROM2), 0x20000);        // Use the stock BIOS
365
366         // Prevent the file scanner from running if filename passed
367         // in on the command line...
368         if (autoRun)
369                 return;
370
371         // Load up the default ROM if in Alpine mode:
372         if (vjs.hardwareTypeAlpine)
373         {
374                 bool romLoaded = JaguarLoadFile(vjs.alpineROMPath);
375
376                 // If regular load failed, try just a straight file load
377                 // (Dev only! I don't want people to start getting lazy with their releases again! :-P)
378                 if (!romLoaded)
379                         romLoaded = AlpineLoadFile(vjs.alpineROMPath);
380
381                 if (romLoaded)
382                         WriteLog("Alpine Mode: Successfully loaded file \"%s\".\n", vjs.alpineROMPath);
383                 else
384                         WriteLog("Alpine Mode: Unable to load file \"%s\"!\n", vjs.alpineROMPath);
385
386                 // Attempt to load/run the ABS file...
387                 LoadSoftware(vjs.absROMPath);
388                 memcpy(jagMemSpace + 0xE00000, jaguarDevBootROM2, 0x20000);     // Use the stub BIOS
389                 // Prevent the scanner from running...
390                 return;
391         }
392
393         // Run the scanner if nothing passed in and *not* Alpine mode...
394         // NB: Really need to look into caching the info scanned in here...
395         filePickWin->ScanSoftwareFolder(allowUnknownSoftware);
396 }
397
398
399 void MainWin::LoadFile(QString file)
400 {
401         LoadSoftware(file);
402 }
403
404
405 void MainWin::SyncUI(void)
406 {
407         // Set toolbar buttons/menus based on settings read in (sync the UI)...
408         // (Really, this is to sync command line options passed in)
409         blurAct->setChecked(vjs.glFilter);
410         x1Act->setChecked(zoomLevel == 1);
411         x2Act->setChecked(zoomLevel == 2);
412         x3Act->setChecked(zoomLevel == 3);
413 //      running = powerAct->isChecked();
414         ntscAct->setChecked(vjs.hardwareTypeNTSC);
415         palAct->setChecked(!vjs.hardwareTypeNTSC);
416         powerAct->setIcon(vjs.hardwareTypeNTSC ? powerRed : powerGreen);
417
418         fullScreenAct->setChecked(vjs.fullscreen);
419         fullScreen = vjs.fullscreen;
420         SetFullScreen(fullScreen);
421
422         // Reset the timer to be what was set in the command line (if any):
423 //      timer->setInterval(vjs.hardwareTypeNTSC ? 16 : 20);
424         timer->start(vjs.hardwareTypeNTSC ? 16 : 20);
425 }
426
427
428 void MainWin::closeEvent(QCloseEvent * event)
429 {
430         JaguarDone();
431 // This should only be done by the config dialog
432 //      WriteSettings();
433         WriteUISettings();
434         event->accept(); // ignore() if can't close for some reason
435 }
436
437
438 void MainWin::keyPressEvent(QKeyEvent * e)
439 {
440         // From jaguar.cpp
441         extern bool startM68KTracing;
442         // From joystick.cpp
443         extern int blit_start_log;
444         // From blitter.cpp
445         extern bool startConciseBlitLogging;
446
447
448         // We ignore the Alt key for now, since it causes problems with the GUI
449         if (e->key() == Qt::Key_Alt)
450         {
451                 e->accept();
452                 return;
453         }
454         else if (e->key() == Qt::Key_F11)
455         {
456                 startM68KTracing = true;
457                 e->accept();
458                 return;
459         }
460         else if (e->key() == Qt::Key_F12)
461         {
462                 blit_start_log = true;
463                 e->accept();
464                 return;
465         }
466         else if (e->key() == Qt::Key_F10)
467         {
468                 startConciseBlitLogging = true;
469                 e->accept();
470                 return;
471         }
472         else if (e->key() == Qt::Key_F8)
473         {
474                 // ggn: For extra NYAN pleasure...
475                 // ggn: There you go James :P
476                 // Shamus: Thanks for the patch! :-D
477                 WriteLog("    o  +           +        +\n");
478                 WriteLog("+        o     o       +        o\n");
479                 WriteLog("-_-_-_-_-_-_-_,------,      o \n");
480                 WriteLog("_-_-_-_-_-_-_-|   /\\_/\\  \n");
481                 WriteLog("-_-_-_-_-_-_-~|__( ^ .^)  +     +  \n");
482                 WriteLog("_-_-_-_-_-_-_-\"\"  \"\"      \n");
483                 WriteLog("+      o         o   +       o\n");
484                 WriteLog("    +         +\n");
485                 e->accept();
486                 return;
487         }
488
489 /*
490 This is done now by a QAction...
491         if (e->key() == Qt::Key_F9)
492         {
493                 ToggleFullScreen();
494                 return;
495         }
496 */
497         HandleKeys(e, true);
498 }
499
500
501 void MainWin::keyReleaseEvent(QKeyEvent * e)
502 {
503         // We ignore the Alt key for now, since it causes problems with the GUI
504         if (e->key() == Qt::Key_Alt)
505         {
506                 e->accept();
507                 return;
508         }
509
510         HandleKeys(e, false);
511 }
512
513
514 void MainWin::HandleKeys(QKeyEvent * e, bool state)
515 {
516         enum { P1LEFT = 0, P1RIGHT, P1UP, P1DOWN, P2LEFT, P2RIGHT, P2UP, P2DOWN };
517         // We kill bad key combos here, before they can get to the emulator...
518         // This also kills the illegal instruction problem that cropped up in Rayman!
519         // May want to do this by killing the old one instead of ignoring the new one...
520         // Seems to work better that way...
521
522 // The problem with this approach is that it causes bad results because it doesn't do
523 // any checking of previous states. Need to come up with something better because this
524 // causes problems where the keyboard acts as if it were unresponsive. :-P
525 #if 0
526         if ((e->key() == vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
527                 || (e->key() == vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
528                 || (e->key() == vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
529                 || (e->key() == vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U]))
530                 return;
531 #else
532 #if 0
533         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
534                 joypad_0_buttons[BUTTON_R] = 0;
535         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
536                 joypad_0_buttons[BUTTON_L] = 0;
537         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
538                 joypad_0_buttons[BUTTON_D] = 0;
539         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U])
540                 joypad_0_buttons[BUTTON_U] = 0;
541
542         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_L] && joypad_1_buttons[BUTTON_R])
543                 joypad_1_buttons[BUTTON_R] = 0;
544         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_R] && joypad_1_buttons[BUTTON_L])
545                 joypad_1_buttons[BUTTON_L] = 0;
546         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_U] && joypad_1_buttons[BUTTON_D])
547                 joypad_1_buttons[BUTTON_D] = 0;
548         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_D] && joypad_1_buttons[BUTTON_U])
549                 joypad_1_buttons[BUTTON_U] = 0;
550 #else
551 //hrm, this still has sticky state problems... Ugh!
552         // First, settle key states...
553         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_L])
554                 keyHeld[P1LEFT] = state;
555         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_R])
556                 keyHeld[P1RIGHT] = state;
557         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_U])
558                 keyHeld[P1UP] = state;
559         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_D])
560                 keyHeld[P1DOWN] = state;
561         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_L])
562                 keyHeld[P2LEFT] = state;
563         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_R])
564                 keyHeld[P2RIGHT] = state;
565         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_U])
566                 keyHeld[P2UP] = state;
567         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_D])
568                 keyHeld[P2DOWN] = state;
569
570         // Next, check for conflicts and bail out if there are any...
571         if ((keyHeld[P1LEFT] && keyHeld[P1RIGHT])
572                 || (keyHeld[P1UP] && keyHeld[P1DOWN])
573                 || (keyHeld[P2LEFT] && keyHeld[P2RIGHT])
574                 || (keyHeld[P2UP] && keyHeld[P2DOWN]))
575                 return;
576 #endif
577 #endif
578
579         // No bad combos exist, let's stuff the emulator key buffers...!
580         for(int i=BUTTON_FIRST; i<=BUTTON_LAST; i++)
581         {
582                 if (e->key() == (int)vjs.p1KeyBindings[i])
583 //                      joypad_0_buttons[i] = (uint8)state;
584                         joypad0Buttons[i] = (state ? 0x01 : 0x00);
585
586 // Pad #2 is screwing up pad #1. Prolly a problem in joystick.cpp...
587 // So let's try to fix it there. :-P [DONE]
588                 if (e->key() == (int)vjs.p2KeyBindings[i])
589 //                      joypad_1_buttons[i] = (uint8)state;
590                         joypad1Buttons[i] = (state ? 0x01 : 0x00);
591         }
592 }
593
594
595 void MainWin::HandleGamepads(void)
596 {
597         Gamepad::Update();
598
599         for(int i=BUTTON_FIRST; i<=BUTTON_LAST; i++)
600         {
601                 if (vjs.p1KeyBindings[i] & (JOY_BUTTON | JOY_HAT | JOY_AXIS))
602                         joypad0Buttons[i] = (Gamepad::GetState(0, vjs.p1KeyBindings[i]) ? 0x01 : 0x00);
603 /*{
604 if (vjs.p1KeyBindings[i] & JOY_AXIS)
605         printf("Axis state (HandleGamepads): %i\n", joypad0Buttons[i]);
606 }*/
607                 if (vjs.p2KeyBindings[i] & (JOY_BUTTON | JOY_HAT | JOY_AXIS))
608                         joypad1Buttons[i] = (Gamepad::GetState(1, vjs.p2KeyBindings[i]) ? 0x01 : 0x00);
609         }
610 }
611
612
613 void MainWin::Open(void)
614 {
615 }
616
617
618 void MainWin::Configure(void)
619 {
620         // Call the configuration dialog and update settings
621         ConfigDialog dlg(this);
622         //ick.
623         dlg.generalTab->useUnknownSoftware->setChecked(allowUnknownSoftware);
624         dlg.controllerTab1->profileNum = lastEditedProfile;
625         dlg.controllerTab1->SetupLastUsedProfile();
626
627         if (dlg.exec() == false)
628                 return;
629
630         QString before = vjs.ROMPath;
631         QString alpineBefore = vjs.alpineROMPath;
632         QString absBefore = vjs.absROMPath;
633 //      bool audioBefore = vjs.audioEnabled;
634         bool audioBefore = vjs.DSPEnabled;
635         dlg.UpdateVJSettings();
636         QString after = vjs.ROMPath;
637         QString alpineAfter = vjs.alpineROMPath;
638         QString absAfter = vjs.absROMPath;
639 //      bool audioAfter = vjs.audioEnabled;
640         bool audioAfter = vjs.DSPEnabled;
641
642         bool allowOld = allowUnknownSoftware;
643         //ick.
644         allowUnknownSoftware = dlg.generalTab->useUnknownSoftware->isChecked();
645         lastEditedProfile = dlg.controllerTab1->profileNum;
646
647         // We rescan the "software" folder if the user either changed the path or
648         // checked/unchecked the "Allow unknown files" option in the config dialog.
649         if ((before != after) || (allowOld != allowUnknownSoftware))
650                 filePickWin->ScanSoftwareFolder(allowUnknownSoftware);
651
652         // If the "Alpine" ROM is changed, then let's load it...
653         if (alpineBefore != alpineAfter)
654         {
655                 if (!JaguarLoadFile(vjs.alpineROMPath) && !AlpineLoadFile(vjs.alpineROMPath))
656                 {
657                         // Oh crap, we couldn't get the file! Alert the media!
658                         QMessageBox msg;
659                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.alpineROMPath));
660                         msg.setIcon(QMessageBox::Warning);
661                         msg.exec();
662                 }
663         }
664
665         // If the "ABS" ROM is changed, then let's load it...
666         if (absBefore != absAfter)
667         {
668                 if (!JaguarLoadFile(vjs.absROMPath))
669                 {
670                         // Oh crap, we couldn't get the file! Alert the media!
671                         QMessageBox msg;
672                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.absROMPath));
673                         msg.setIcon(QMessageBox::Warning);
674                         msg.exec();
675                 }
676         }
677
678         // If the "Enable DSP" checkbox changed, then we have to re-init the DAC,
679         // since it's running in the host audio IRQ...
680         if (audioBefore != audioAfter)
681         {
682                 DACDone();
683                 DACInit();
684         }
685
686         // Just in case we crash before a clean exit...
687         WriteSettings();
688 }
689
690
691 //
692 // Here's the main emulator loop
693 //
694 void MainWin::Timer(void)
695 {
696         if (!running)
697                 return;
698
699         if (showUntunedTankCircuit)
700         {
701                 // Some machines can't handle this, so we give them the option to disable it. :-)
702                 if (!plzDontKillMyComputer)
703                 {
704                         // Random hash & trash
705                         // We try to simulate an untuned tank circuit here... :-)
706                         for(uint32_t x=0; x<videoWidget->rasterWidth; x++)
707                         {
708                                 for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
709                                 {
710                                         videoWidget->buffer[(y * videoWidget->textureWidth) + x]
711                                                 = (rand() & 0xFF) << 8 | (rand() & 0xFF) << 16 | (rand() & 0xFF) << 24;
712                                 }
713                         }
714                 }
715         }
716         else
717         {
718                 // Otherwise, run the Jaguar simulation
719                 HandleGamepads();
720                 JaguarExecuteNew();
721                 videoWidget->HandleMouseHiding();
722         }
723
724         videoWidget->updateGL();
725
726         // FPS handling
727         // Approach: We use a ring buffer to store times (in ms) over a given
728         // amount of frames, then sum them to figure out the FPS.
729         uint32_t timestamp = SDL_GetTicks();
730         // This assumes the ring buffer size is a power of 2
731 //      ringBufferPointer = (ringBufferPointer + 1) & (RING_BUFFER_SIZE - 1);
732         // Doing it this way is better. Ring buffer size can be arbitrary then.
733         ringBufferPointer = (ringBufferPointer + 1) % RING_BUFFER_SIZE;
734         ringBuffer[ringBufferPointer] = timestamp - oldTimestamp;
735         uint32_t elapsedTime = 0;
736
737         for(uint32_t i=0; i<RING_BUFFER_SIZE; i++)
738                 elapsedTime += ringBuffer[i];
739
740         // elapsedTime must be non-zero
741         if (elapsedTime == 0)
742                 elapsedTime = 1;
743
744         // This is in frames per 10 seconds, so we can have 1 decimal
745         uint32_t framesPerSecond = (uint32_t)(((float)RING_BUFFER_SIZE / (float)elapsedTime) * 10000.0);
746         uint32_t fpsIntegerPart = framesPerSecond / 10;
747         uint32_t fpsDecimalPart = framesPerSecond % 10;
748         // If this is updated too frequently to be useful, we can throttle it down
749         // so that it only updates every 10th frame or so
750         statusBar()->showMessage(QString("%1.%2 FPS").arg(fpsIntegerPart).arg(fpsDecimalPart));
751         oldTimestamp = timestamp;
752 }
753
754
755 void MainWin::TogglePowerState(void)
756 {
757         powerButtonOn = !powerButtonOn;
758         running = true;
759
760         // With the power off, we simulate white noise on the screen. :-)
761         if (!powerButtonOn)
762         {
763                 // Restore the mouse pointer, if hidden:
764                 videoWidget->CheckAndRestoreMouseCursor();
765                 useCDAct->setDisabled(false);
766                 palAct->setDisabled(false);
767                 ntscAct->setDisabled(false);
768                 pauseAct->setChecked(false);
769                 pauseAct->setDisabled(true);
770                 showUntunedTankCircuit = true;
771                 DACPauseAudioThread();
772                 // This is just in case the ROM we were playing was in a narrow or wide
773                 // field mode, so the untuned tank sim doesn't look wrong. :-)
774                 TOMReset();
775
776                 if (plzDontKillMyComputer)
777                 {
778                         // We have to do it line by line, because the texture pitch is not
779                         // the same as the picture buffer's pitch.
780                         for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
781                         {
782                                 memcpy(videoWidget->buffer + (y * videoWidget->textureWidth), testPattern + (y * VIRTUAL_SCREEN_WIDTH), VIRTUAL_SCREEN_WIDTH * sizeof(uint32_t));
783                         }
784                 }
785         }
786         else
787         {
788                 useCDAct->setDisabled(true);
789                 palAct->setDisabled(true);
790                 ntscAct->setDisabled(true);
791                 pauseAct->setChecked(false);
792                 pauseAct->setDisabled(false);
793                 showUntunedTankCircuit = false;
794
795                 // Otherwise, we prepare for running regular software...
796                 if (CDActive)
797                 {
798 // Should check for cartridgeLoaded here as well...!
799 // We can clear it when toggling CDActive on, so that when we power cycle it
800 // does the expected thing. Otherwise, if we use the file picker to insert a
801 // cart, we expect to run the cart! Maybe have a RemoveCart function that only
802 // works if the CD unit is active?
803                         setWindowTitle(QString("Virtual Jaguar " VJ_RELEASE_VERSION
804                                 " - Now playing: Jaguar CD"));
805                 }
806
807                 WriteLog("GUI: Resetting Jaguar...\n");
808                 JaguarReset();
809                 DACPauseAudioThread(false);
810         }
811 }
812
813
814 void MainWin::ToggleRunState(void)
815 {
816         running = !running;
817
818         if (!running)
819         {
820                 // Restore the mouse pointer, if hidden:
821                 videoWidget->CheckAndRestoreMouseCursor();
822                 frameAdvanceAct->setDisabled(false);
823
824                 for(uint32_t i=0; i<(uint32_t)(videoWidget->textureWidth * 256); i++)
825                 {
826                         uint32_t pixel = videoWidget->buffer[i];
827                         uint8_t r = (pixel >> 24) & 0xFF, g = (pixel >> 16) & 0xFF, b = (pixel >> 8) & 0xFF;
828                         pixel = ((r + g + b) / 3) & 0x00FF;
829                         videoWidget->buffer[i] = 0x000000FF | (pixel << 16) | (pixel << 8);
830                 }
831
832                 videoWidget->updateGL();
833         }
834         else
835                 frameAdvanceAct->setDisabled(true);
836
837         // Pause/unpause any running/non-running threads...
838         DACPauseAudioThread(!running);
839 }
840
841
842 void MainWin::SetZoom100(void)
843 {
844         zoomLevel = 1;
845         ResizeMainWindow();
846 }
847
848
849 void MainWin::SetZoom200(void)
850 {
851         zoomLevel = 2;
852         ResizeMainWindow();
853 }
854
855
856 void MainWin::SetZoom300(void)
857 {
858         zoomLevel = 3;
859         ResizeMainWindow();
860 }
861
862
863 void MainWin::SetNTSC(void)
864 {
865         powerAct->setIcon(powerRed);
866         timer->setInterval(16);
867         vjs.hardwareTypeNTSC = true;
868         ResizeMainWindow();
869         WriteSettings();
870 }
871
872
873 void MainWin::SetPAL(void)
874 {
875         powerAct->setIcon(powerGreen);
876         timer->setInterval(20);
877         vjs.hardwareTypeNTSC = false;
878         ResizeMainWindow();
879         WriteSettings();
880 }
881
882
883 void MainWin::ToggleBlur(void)
884 {
885         vjs.glFilter = !vjs.glFilter;
886         WriteSettings();
887 }
888
889
890 void MainWin::ShowAboutWin(void)
891 {
892         aboutWin->show();
893 }
894
895
896 void MainWin::ShowHelpWin(void)
897 {
898         helpWin->show();
899 }
900
901
902 void MainWin::InsertCart(void)
903 {
904         // If the emulator is running, we pause it here and unpause it later
905         // if we dismiss the file selector without choosing anything
906         if (running && powerButtonOn)
907         {
908                 ToggleRunState();
909                 pauseForFileSelector = true;
910         }
911
912         filePickWin->show();
913 }
914
915
916 void MainWin::Unpause(void)
917 {
918         // Here we unpause the emulator if it was paused when we went into the file selector
919         if (pauseForFileSelector)
920         {
921                 pauseForFileSelector = false;
922
923                 // Some nutter might have unpaused while in the file selector, so check for that
924                 if (!running)
925                         ToggleRunState();
926         }
927 }
928
929
930 void MainWin::LoadSoftware(QString file)
931 {
932         running = false;                                                        // Prevent bad things(TM) from happening...
933         pauseForFileSelector = false;                           // Reset the file selector pause flag
934
935         char * biosPointer = jaguarBootROM;
936
937         if (vjs.hardwareTypeAlpine)
938                 biosPointer = jaguarDevBootROM2;
939
940         memcpy(jagMemSpace + 0xE00000, biosPointer, 0x20000);
941
942         powerAct->setDisabled(false);
943         powerAct->setChecked(true);
944         powerButtonOn = false;
945         TogglePowerState();
946         // We have to load our software *after* the Jaguar RESET
947         cartridgeLoaded = JaguarLoadFile(file.toAscii().data());
948         SET32(jaguarMainRAM, 0, 0x00200000);            // Set top of stack...
949
950         // This is icky because we've already done it
951 // it gets worse :-P
952 if (!vjs.useJaguarBIOS)
953         SET32(jaguarMainRAM, 4, jaguarRunAddress);
954
955         m68k_pulse_reset();
956
957         if (!vjs.hardwareTypeAlpine && !loadAndGo)
958         {
959                 QString newTitle = QString("Virtual Jaguar " VJ_RELEASE_VERSION " - Now playing: %1")
960                         .arg(filePickWin->GetSelectedPrettyName());
961                 setWindowTitle(newTitle);
962         }
963 }
964
965
966 void MainWin::ToggleCDUsage(void)
967 {
968         CDActive = !CDActive;
969
970         // Set up the Jaguar CD for execution, otherwise, clear memory
971         if (CDActive)
972                 memcpy(jagMemSpace + 0x800000, jaguarCDBootROM, 0x40000);
973         else
974                 memset(jagMemSpace + 0x800000, 0xFF, 0x40000);
975 }
976
977
978 void MainWin::FrameAdvance(void)
979 {
980 //printf("Frame Advance...\n");
981         // Execute 1 frame, then exit (only useful in Pause mode)
982         JaguarExecuteNew();
983         videoWidget->updateGL();
984         // Need to execute 1 frames' worth of DSP thread as well :-/
985 #warning "!!! Need to execute the DSP thread for 1 frame too !!!"
986 }
987
988
989 void MainWin::SetFullScreen(bool state/*= true*/)
990 {
991         if (state)
992         {
993                 mainWinPosition = pos();
994                 menuBar()->hide();
995                 statusBar()->hide();
996                 toolbar->hide();
997
998                 if (debugbar)
999                         debugbar->hide();
1000
1001                 showFullScreen();
1002                 // This is needed because the fullscreen may happen on a different
1003                 // screen than screen 0:
1004                 int screenNum = QApplication::desktop()->screenNumber(videoWidget);
1005 //              QRect r = QApplication::desktop()->availableGeometry(screenNum);
1006                 QRect r = QApplication::desktop()->screenGeometry(screenNum);
1007                 double targetWidth = (double)VIRTUAL_SCREEN_WIDTH,
1008                         targetHeight = (double)(vjs.hardwareTypeNTSC ? VIRTUAL_SCREEN_HEIGHT_NTSC : VIRTUAL_SCREEN_HEIGHT_PAL);
1009                 double aspectRatio = targetWidth / targetHeight;
1010                 // NOTE: Really should check here to see which dimension constrains the
1011                 //       other. Right now, we assume that height is the constraint.
1012                 int newWidth = (int)(aspectRatio * (double)r.height());
1013                 videoWidget->offset = (r.width() - newWidth) / 2;
1014                 videoWidget->fullscreen = true;
1015                 videoWidget->outputWidth = newWidth;
1016                 videoWidget->setFixedSize(r.width(), r.height());
1017                 showFullScreen();
1018         }
1019         else
1020         {
1021                 // Reset the video widget to windowed mode
1022                 videoWidget->offset = 0;
1023                 videoWidget->fullscreen = false;
1024                 menuBar()->show();
1025                 statusBar()->show();
1026                 toolbar->show();
1027
1028                 if (debugbar)
1029                         debugbar->show();
1030
1031                 showNormal();
1032                 ResizeMainWindow();
1033                 move(mainWinPosition);
1034         }
1035 }
1036
1037
1038 void MainWin::ToggleFullScreen(void)
1039 {
1040         fullScreen = !fullScreen;
1041         SetFullScreen(fullScreen);
1042 }
1043
1044
1045 void MainWin::ShowMemoryBrowserWin(void)
1046 {
1047         memBrowseWin->show();
1048         memBrowseWin->RefreshContents();
1049 }
1050
1051
1052 void MainWin::ShowCPUBrowserWin(void)
1053 {
1054         cpuBrowseWin->show();
1055         cpuBrowseWin->RefreshContents();
1056 }
1057
1058
1059 void MainWin::ShowOPBrowserWin(void)
1060 {
1061         opBrowseWin->show();
1062         opBrowseWin->RefreshContents();
1063 }
1064
1065
1066 void MainWin::ShowM68KDasmBrowserWin(void)
1067 {
1068         m68kDasmBrowseWin->show();
1069         m68kDasmBrowseWin->RefreshContents();
1070 }
1071
1072
1073 void MainWin::ShowRISCDasmBrowserWin(void)
1074 {
1075         riscDasmBrowseWin->show();
1076         riscDasmBrowseWin->RefreshContents();
1077 }
1078
1079
1080 void MainWin::ResizeMainWindow(void)
1081 {
1082         videoWidget->setFixedSize(zoomLevel * VIRTUAL_SCREEN_WIDTH,
1083                 zoomLevel * (vjs.hardwareTypeNTSC ? VIRTUAL_SCREEN_HEIGHT_NTSC : VIRTUAL_SCREEN_HEIGHT_PAL));
1084
1085         // Show the test pattern if user requested plzDontKillMyComputer mode
1086         if (!powerButtonOn && plzDontKillMyComputer)
1087         {
1088                 for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
1089                 {
1090                         memcpy(videoWidget->buffer + (y * videoWidget->textureWidth), testPattern + (y * VIRTUAL_SCREEN_WIDTH), VIRTUAL_SCREEN_WIDTH * sizeof(uint32_t));
1091                 }
1092         }
1093
1094         show();
1095
1096         for(int i=0; i<2; i++)
1097         {
1098                 resize(0, 0);
1099                 usleep(2000);
1100                 QApplication::processEvents();
1101         }
1102 }
1103
1104
1105 #warning "!!! Need to check the window geometry to see if the positions are legal !!!"
1106 // i.e., someone could drag it to another screen, close it, then disconnect that screen
1107 void MainWin::ReadSettings(void)
1108 {
1109         QSettings settings("Underground Software", "Virtual Jaguar");
1110         mainWinPosition = settings.value("pos", QPoint(200, 200)).toPoint();
1111         QSize size = settings.value("size", QSize(400, 400)).toSize();
1112         resize(size);
1113         move(mainWinPosition);
1114         QPoint pos = settings.value("cartLoadPos", QPoint(200, 200)).toPoint();
1115         filePickWin->move(pos);
1116
1117         zoomLevel = settings.value("zoom", 2).toInt();
1118         allowUnknownSoftware = settings.value("showUnknownSoftware", false).toBool();
1119         lastEditedProfile = settings.value("lastEditedProfile", 0).toInt();
1120
1121         vjs.useJoystick      = settings.value("useJoystick", false).toBool();
1122         vjs.joyport          = settings.value("joyport", 0).toInt();
1123         vjs.hardwareTypeNTSC = settings.value("hardwareTypeNTSC", true).toBool();
1124         vjs.frameSkip        = settings.value("frameSkip", 0).toInt();
1125         vjs.useJaguarBIOS    = settings.value("useJaguarBIOS", false).toBool();
1126         vjs.GPUEnabled       = settings.value("GPUEnabled", true).toBool();
1127         vjs.DSPEnabled       = settings.value("DSPEnabled", true).toBool();
1128         vjs.audioEnabled     = settings.value("audioEnabled", true).toBool();
1129         vjs.usePipelinedDSP  = settings.value("usePipelinedDSP", false).toBool();
1130         vjs.fullscreen       = settings.value("fullscreen", false).toBool();
1131         vjs.useOpenGL        = settings.value("useOpenGL", true).toBool();
1132         vjs.glFilter         = settings.value("glFilterType", 1).toInt();
1133         vjs.renderType       = settings.value("renderType", 0).toInt();
1134         vjs.allowWritesToROM = settings.value("writeROM", false).toBool();
1135         vjs.biosType         = settings.value("biosType", BT_M_SERIES).toInt();
1136         vjs.useFastBlitter   = settings.value("useFastBlitter", false).toBool();
1137         strcpy(vjs.EEPROMPath, settings.value("EEPROMs", "./eeproms/").toString().toAscii().data());
1138         strcpy(vjs.ROMPath, settings.value("ROMs", "./software/").toString().toAscii().data());
1139         strcpy(vjs.alpineROMPath, settings.value("DefaultROM", "").toString().toAscii().data());
1140         strcpy(vjs.absROMPath, settings.value("DefaultABS", "").toString().toAscii().data());
1141
1142 WriteLog("MainWin: Paths\n");
1143 WriteLog("   EEPROMPath = \"%s\"\n", vjs.EEPROMPath);
1144 WriteLog("      ROMPath = \"%s\"\n", vjs.ROMPath);
1145 WriteLog("AlpineROMPath = \"%s\"\n", vjs.alpineROMPath);
1146 WriteLog("   absROMPath = \"%s\"\n", vjs.absROMPath);
1147 WriteLog("Pipelined DSP = %s\n", (vjs.usePipelinedDSP ? "ON" : "off"));
1148
1149         // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
1150         vjs.p1KeyBindings[BUTTON_U] = settings.value("p1k_up", Qt::Key_S).toInt();
1151         vjs.p1KeyBindings[BUTTON_D] = settings.value("p1k_down", Qt::Key_X).toInt();
1152         vjs.p1KeyBindings[BUTTON_L] = settings.value("p1k_left", Qt::Key_A).toInt();
1153         vjs.p1KeyBindings[BUTTON_R] = settings.value("p1k_right", Qt::Key_D).toInt();
1154         vjs.p1KeyBindings[BUTTON_C] = settings.value("p1k_c", Qt::Key_J).toInt();
1155         vjs.p1KeyBindings[BUTTON_B] = settings.value("p1k_b", Qt::Key_K).toInt();
1156         vjs.p1KeyBindings[BUTTON_A] = settings.value("p1k_a", Qt::Key_L).toInt();
1157         vjs.p1KeyBindings[BUTTON_OPTION] = settings.value("p1k_option", Qt::Key_O).toInt();
1158         vjs.p1KeyBindings[BUTTON_PAUSE] = settings.value("p1k_pause", Qt::Key_P).toInt();
1159         vjs.p1KeyBindings[BUTTON_0] = settings.value("p1k_0", Qt::Key_0).toInt();
1160         vjs.p1KeyBindings[BUTTON_1] = settings.value("p1k_1", Qt::Key_1).toInt();
1161         vjs.p1KeyBindings[BUTTON_2] = settings.value("p1k_2", Qt::Key_2).toInt();
1162         vjs.p1KeyBindings[BUTTON_3] = settings.value("p1k_3", Qt::Key_3).toInt();
1163         vjs.p1KeyBindings[BUTTON_4] = settings.value("p1k_4", Qt::Key_4).toInt();
1164         vjs.p1KeyBindings[BUTTON_5] = settings.value("p1k_5", Qt::Key_5).toInt();
1165         vjs.p1KeyBindings[BUTTON_6] = settings.value("p1k_6", Qt::Key_6).toInt();
1166         vjs.p1KeyBindings[BUTTON_7] = settings.value("p1k_7", Qt::Key_7).toInt();
1167         vjs.p1KeyBindings[BUTTON_8] = settings.value("p1k_8", Qt::Key_8).toInt();
1168         vjs.p1KeyBindings[BUTTON_9] = settings.value("p1k_9", Qt::Key_9).toInt();
1169         vjs.p1KeyBindings[BUTTON_d] = settings.value("p1k_pound", Qt::Key_Minus).toInt();
1170         vjs.p1KeyBindings[BUTTON_s] = settings.value("p1k_star", Qt::Key_Equal).toInt();
1171
1172         vjs.p2KeyBindings[BUTTON_U] = settings.value("p2k_up", Qt::Key_Up).toInt();
1173         vjs.p2KeyBindings[BUTTON_D] = settings.value("p2k_down", Qt::Key_Down).toInt();
1174         vjs.p2KeyBindings[BUTTON_L] = settings.value("p2k_left", Qt::Key_Left).toInt();
1175         vjs.p2KeyBindings[BUTTON_R] = settings.value("p2k_right", Qt::Key_Right).toInt();
1176         vjs.p2KeyBindings[BUTTON_C] = settings.value("p2k_c", Qt::Key_Z).toInt();
1177         vjs.p2KeyBindings[BUTTON_B] = settings.value("p2k_b", Qt::Key_X).toInt();
1178         vjs.p2KeyBindings[BUTTON_A] = settings.value("p2k_a", Qt::Key_C).toInt();
1179         vjs.p2KeyBindings[BUTTON_OPTION] = settings.value("p2k_option", Qt::Key_Apostrophe).toInt();
1180         vjs.p2KeyBindings[BUTTON_PAUSE] = settings.value("p2k_pause", Qt::Key_Return).toInt();
1181         vjs.p2KeyBindings[BUTTON_0] = settings.value("p2k_0", Qt::Key_0).toInt();
1182         vjs.p2KeyBindings[BUTTON_1] = settings.value("p2k_1", Qt::Key_1).toInt();
1183         vjs.p2KeyBindings[BUTTON_2] = settings.value("p2k_2", Qt::Key_2).toInt();
1184         vjs.p2KeyBindings[BUTTON_3] = settings.value("p2k_3", Qt::Key_3).toInt();
1185         vjs.p2KeyBindings[BUTTON_4] = settings.value("p2k_4", Qt::Key_4).toInt();
1186         vjs.p2KeyBindings[BUTTON_5] = settings.value("p2k_5", Qt::Key_5).toInt();
1187         vjs.p2KeyBindings[BUTTON_6] = settings.value("p2k_6", Qt::Key_6).toInt();
1188         vjs.p2KeyBindings[BUTTON_7] = settings.value("p2k_7", Qt::Key_7).toInt();
1189         vjs.p2KeyBindings[BUTTON_8] = settings.value("p2k_8", Qt::Key_8).toInt();
1190         vjs.p2KeyBindings[BUTTON_9] = settings.value("p2k_9", Qt::Key_9).toInt();
1191         vjs.p2KeyBindings[BUTTON_d] = settings.value("p2k_pound", Qt::Key_Slash).toInt();
1192         vjs.p2KeyBindings[BUTTON_s] = settings.value("p2k_star", Qt::Key_Asterisk).toInt();
1193
1194         ReadProfiles(&settings);
1195 }
1196
1197
1198 void MainWin::WriteSettings(void)
1199 {
1200         QSettings settings("Underground Software", "Virtual Jaguar");
1201         settings.setValue("pos", pos());
1202         settings.setValue("size", size());
1203         settings.setValue("cartLoadPos", filePickWin->pos());
1204
1205         settings.setValue("zoom", zoomLevel);
1206         settings.setValue("showUnknownSoftware", allowUnknownSoftware);
1207         settings.setValue("lastEditedProfile", lastEditedProfile);
1208
1209         settings.setValue("useJoystick", vjs.useJoystick);
1210         settings.setValue("joyport", vjs.joyport);
1211         settings.setValue("hardwareTypeNTSC", vjs.hardwareTypeNTSC);
1212         settings.setValue("frameSkip", vjs.frameSkip);
1213         settings.setValue("useJaguarBIOS", vjs.useJaguarBIOS);
1214         settings.setValue("GPUEnabled", vjs.GPUEnabled);
1215         settings.setValue("DSPEnabled", vjs.DSPEnabled);
1216         settings.setValue("audioEnabled", vjs.audioEnabled);
1217         settings.setValue("usePipelinedDSP", vjs.usePipelinedDSP);
1218         settings.setValue("fullscreen", vjs.fullscreen);
1219         settings.setValue("useOpenGL", vjs.useOpenGL);
1220         settings.setValue("glFilterType", vjs.glFilter);
1221         settings.setValue("renderType", vjs.renderType);
1222         settings.setValue("writeROM", vjs.allowWritesToROM);
1223         settings.setValue("biosType", vjs.biosType);
1224         settings.setValue("useFastBlitter", vjs.useFastBlitter);
1225         settings.setValue("JagBootROM", vjs.jagBootPath);
1226         settings.setValue("CDBootROM", vjs.CDBootPath);
1227         settings.setValue("EEPROMs", vjs.EEPROMPath);
1228         settings.setValue("ROMs", vjs.ROMPath);
1229         settings.setValue("DefaultROM", vjs.alpineROMPath);
1230         settings.setValue("DefaultABS", vjs.absROMPath);
1231
1232         settings.setValue("p1k_up", vjs.p1KeyBindings[BUTTON_U]);
1233         settings.setValue("p1k_down", vjs.p1KeyBindings[BUTTON_D]);
1234         settings.setValue("p1k_left", vjs.p1KeyBindings[BUTTON_L]);
1235         settings.setValue("p1k_right", vjs.p1KeyBindings[BUTTON_R]);
1236         settings.setValue("p1k_c", vjs.p1KeyBindings[BUTTON_C]);
1237         settings.setValue("p1k_b", vjs.p1KeyBindings[BUTTON_B]);
1238         settings.setValue("p1k_a", vjs.p1KeyBindings[BUTTON_A]);
1239         settings.setValue("p1k_option", vjs.p1KeyBindings[BUTTON_OPTION]);
1240         settings.setValue("p1k_pause", vjs.p1KeyBindings[BUTTON_PAUSE]);
1241         settings.setValue("p1k_0", vjs.p1KeyBindings[BUTTON_0]);
1242         settings.setValue("p1k_1", vjs.p1KeyBindings[BUTTON_1]);
1243         settings.setValue("p1k_2", vjs.p1KeyBindings[BUTTON_2]);
1244         settings.setValue("p1k_3", vjs.p1KeyBindings[BUTTON_3]);
1245         settings.setValue("p1k_4", vjs.p1KeyBindings[BUTTON_4]);
1246         settings.setValue("p1k_5", vjs.p1KeyBindings[BUTTON_5]);
1247         settings.setValue("p1k_6", vjs.p1KeyBindings[BUTTON_6]);
1248         settings.setValue("p1k_7", vjs.p1KeyBindings[BUTTON_7]);
1249         settings.setValue("p1k_8", vjs.p1KeyBindings[BUTTON_8]);
1250         settings.setValue("p1k_9", vjs.p1KeyBindings[BUTTON_9]);
1251         settings.setValue("p1k_pound", vjs.p1KeyBindings[BUTTON_d]);
1252         settings.setValue("p1k_star", vjs.p1KeyBindings[BUTTON_s]);
1253
1254         settings.setValue("p2k_up", vjs.p2KeyBindings[BUTTON_U]);
1255         settings.setValue("p2k_down", vjs.p2KeyBindings[BUTTON_D]);
1256         settings.setValue("p2k_left", vjs.p2KeyBindings[BUTTON_L]);
1257         settings.setValue("p2k_right", vjs.p2KeyBindings[BUTTON_R]);
1258         settings.setValue("p2k_c", vjs.p2KeyBindings[BUTTON_C]);
1259         settings.setValue("p2k_b", vjs.p2KeyBindings[BUTTON_B]);
1260         settings.setValue("p2k_a", vjs.p2KeyBindings[BUTTON_A]);
1261         settings.setValue("p2k_option", vjs.p2KeyBindings[BUTTON_OPTION]);
1262         settings.setValue("p2k_pause", vjs.p2KeyBindings[BUTTON_PAUSE]);
1263         settings.setValue("p2k_0", vjs.p2KeyBindings[BUTTON_0]);
1264         settings.setValue("p2k_1", vjs.p2KeyBindings[BUTTON_1]);
1265         settings.setValue("p2k_2", vjs.p2KeyBindings[BUTTON_2]);
1266         settings.setValue("p2k_3", vjs.p2KeyBindings[BUTTON_3]);
1267         settings.setValue("p2k_4", vjs.p2KeyBindings[BUTTON_4]);
1268         settings.setValue("p2k_5", vjs.p2KeyBindings[BUTTON_5]);
1269         settings.setValue("p2k_6", vjs.p2KeyBindings[BUTTON_6]);
1270         settings.setValue("p2k_7", vjs.p2KeyBindings[BUTTON_7]);
1271         settings.setValue("p2k_8", vjs.p2KeyBindings[BUTTON_8]);
1272         settings.setValue("p2k_9", vjs.p2KeyBindings[BUTTON_9]);
1273         settings.setValue("p2k_pound", vjs.p2KeyBindings[BUTTON_d]);
1274         settings.setValue("p2k_star", vjs.p2KeyBindings[BUTTON_s]);
1275
1276         WriteProfiles(&settings);
1277 }
1278
1279
1280 void MainWin::WriteUISettings(void)
1281 {
1282         QSettings settings("Underground Software", "Virtual Jaguar");
1283         settings.setValue("pos", pos());
1284         settings.setValue("size", size());
1285         settings.setValue("cartLoadPos", filePickWin->pos());
1286
1287         settings.setValue("zoom", zoomLevel);
1288 }
1289