]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/mainwin.cpp
042e607d099025aa42529b9abf486950ee2b7095
[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
473 /*
474 This is done now by a QAction...
475         if (e->key() == Qt::Key_F9)
476         {
477                 ToggleFullScreen();
478                 return;
479         }
480 */
481         HandleKeys(e, true);
482 }
483
484
485 void MainWin::keyReleaseEvent(QKeyEvent * e)
486 {
487         // We ignore the Alt key for now, since it causes problems with the GUI
488         if (e->key() == Qt::Key_Alt)
489         {
490                 e->accept();
491                 return;
492         }
493
494         HandleKeys(e, false);
495 }
496
497
498 void MainWin::HandleKeys(QKeyEvent * e, bool state)
499 {
500         enum { P1LEFT = 0, P1RIGHT, P1UP, P1DOWN, P2LEFT, P2RIGHT, P2UP, P2DOWN };
501         // We kill bad key combos here, before they can get to the emulator...
502         // This also kills the illegal instruction problem that cropped up in Rayman!
503         // May want to do this by killing the old one instead of ignoring the new one...
504         // Seems to work better that way...
505
506 // The problem with this approach is that it causes bad results because it doesn't do
507 // any checking of previous states. Need to come up with something better because this
508 // causes problems where the keyboard acts as if it were unresponsive. :-P
509 #if 0
510         if ((e->key() == vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
511                 || (e->key() == vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
512                 || (e->key() == vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
513                 || (e->key() == vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U]))
514                 return;
515 #else
516 #if 0
517         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
518                 joypad_0_buttons[BUTTON_R] = 0;
519         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
520                 joypad_0_buttons[BUTTON_L] = 0;
521         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
522                 joypad_0_buttons[BUTTON_D] = 0;
523         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U])
524                 joypad_0_buttons[BUTTON_U] = 0;
525
526         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_L] && joypad_1_buttons[BUTTON_R])
527                 joypad_1_buttons[BUTTON_R] = 0;
528         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_R] && joypad_1_buttons[BUTTON_L])
529                 joypad_1_buttons[BUTTON_L] = 0;
530         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_U] && joypad_1_buttons[BUTTON_D])
531                 joypad_1_buttons[BUTTON_D] = 0;
532         if (e->key() == (int)vjs.p2KeyBindings[BUTTON_D] && joypad_1_buttons[BUTTON_U])
533                 joypad_1_buttons[BUTTON_U] = 0;
534 #else
535 //hrm, this still has sticky state problems... Ugh!
536         // First, settle key states...
537         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_L])
538                 keyHeld[P1LEFT] = state;
539         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_R])
540                 keyHeld[P1RIGHT] = state;
541         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_U])
542                 keyHeld[P1UP] = state;
543         else if (e->key() == (int)vjs.p1KeyBindings[BUTTON_D])
544                 keyHeld[P1DOWN] = state;
545         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_L])
546                 keyHeld[P2LEFT] = state;
547         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_R])
548                 keyHeld[P2RIGHT] = state;
549         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_U])
550                 keyHeld[P2UP] = state;
551         else if (e->key() == (int)vjs.p2KeyBindings[BUTTON_D])
552                 keyHeld[P2DOWN] = state;
553
554         // Next, check for conflicts and bail out if there are any...
555         if ((keyHeld[P1LEFT] && keyHeld[P1RIGHT])
556                 || (keyHeld[P1UP] && keyHeld[P1DOWN])
557                 || (keyHeld[P2LEFT] && keyHeld[P2RIGHT])
558                 || (keyHeld[P2UP] && keyHeld[P2DOWN]))
559                 return;
560 #endif
561 #endif
562
563         // No bad combos exist, let's stuff the emulator key buffers...!
564         for(int i=BUTTON_FIRST; i<=BUTTON_LAST; i++)
565         {
566                 if (e->key() == (int)vjs.p1KeyBindings[i])
567 //                      joypad_0_buttons[i] = (uint8)state;
568                         joypad0Buttons[i] = (state ? 0x01 : 0x00);
569
570 // Pad #2 is screwing up pad #1. Prolly a problem in joystick.cpp...
571 // So let's try to fix it there. :-P [DONE]
572                 if (e->key() == (int)vjs.p2KeyBindings[i])
573 //                      joypad_1_buttons[i] = (uint8)state;
574                         joypad1Buttons[i] = (state ? 0x01 : 0x00);
575         }
576 }
577
578
579 void MainWin::HandleGamepads(void)
580 {
581         Gamepad::Update();
582
583         for(int i=BUTTON_FIRST; i<=BUTTON_LAST; i++)
584         {
585                 if (vjs.p1KeyBindings[i] & (JOY_BUTTON | JOY_HAT | JOY_AXIS))
586                         joypad0Buttons[i] = (Gamepad::GetState(0, vjs.p1KeyBindings[i]) ? 0x01 : 0x00);
587 /*{
588 if (vjs.p1KeyBindings[i] & JOY_AXIS)
589         printf("Axis state (HandleGamepads): %i\n", joypad0Buttons[i]);
590 }*/
591                 if (vjs.p2KeyBindings[i] & (JOY_BUTTON | JOY_HAT | JOY_AXIS))
592                         joypad1Buttons[i] = (Gamepad::GetState(1, vjs.p2KeyBindings[i]) ? 0x01 : 0x00);
593         }
594 }
595
596
597 void MainWin::Open(void)
598 {
599 }
600
601
602 void MainWin::Configure(void)
603 {
604         // Call the configuration dialog and update settings
605         ConfigDialog dlg(this);
606         //ick.
607         dlg.generalTab->useUnknownSoftware->setChecked(allowUnknownSoftware);
608         dlg.controllerTab1->profileNum = lastEditedProfile;
609         dlg.controllerTab1->SetupLastUsedProfile();
610
611         if (dlg.exec() == false)
612                 return;
613
614         QString before = vjs.ROMPath;
615         QString alpineBefore = vjs.alpineROMPath;
616         QString absBefore = vjs.absROMPath;
617 //      bool audioBefore = vjs.audioEnabled;
618         bool audioBefore = vjs.DSPEnabled;
619         dlg.UpdateVJSettings();
620         QString after = vjs.ROMPath;
621         QString alpineAfter = vjs.alpineROMPath;
622         QString absAfter = vjs.absROMPath;
623 //      bool audioAfter = vjs.audioEnabled;
624         bool audioAfter = vjs.DSPEnabled;
625
626         bool allowOld = allowUnknownSoftware;
627         //ick.
628         allowUnknownSoftware = dlg.generalTab->useUnknownSoftware->isChecked();
629         lastEditedProfile = dlg.controllerTab1->profileNum;
630
631         // We rescan the "software" folder if the user either changed the path or
632         // checked/unchecked the "Allow unknown files" option in the config dialog.
633         if ((before != after) || (allowOld != allowUnknownSoftware))
634                 filePickWin->ScanSoftwareFolder(allowUnknownSoftware);
635
636         // If the "Alpine" ROM is changed, then let's load it...
637         if (alpineBefore != alpineAfter)
638         {
639                 if (!JaguarLoadFile(vjs.alpineROMPath) && !AlpineLoadFile(vjs.alpineROMPath))
640                 {
641                         // Oh crap, we couldn't get the file! Alert the media!
642                         QMessageBox msg;
643                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.alpineROMPath));
644                         msg.setIcon(QMessageBox::Warning);
645                         msg.exec();
646                 }
647         }
648
649         // If the "ABS" ROM is changed, then let's load it...
650         if (absBefore != absAfter)
651         {
652                 if (!JaguarLoadFile(vjs.absROMPath))
653                 {
654                         // Oh crap, we couldn't get the file! Alert the media!
655                         QMessageBox msg;
656                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.absROMPath));
657                         msg.setIcon(QMessageBox::Warning);
658                         msg.exec();
659                 }
660         }
661
662         // If the "Enable DSP" checkbox changed, then we have to re-init the DAC,
663         // since it's running in the host audio IRQ...
664         if (audioBefore != audioAfter)
665         {
666                 DACDone();
667                 DACInit();
668         }
669
670         // Just in case we crash before a clean exit...
671         WriteSettings();
672 }
673
674
675 //
676 // Here's the main emulator loop
677 //
678 void MainWin::Timer(void)
679 {
680         if (!running)
681                 return;
682
683         if (showUntunedTankCircuit)
684         {
685                 // Some machines can't handle this, so we give them the option to disable it. :-)
686                 if (!plzDontKillMyComputer)
687                 {
688                         // Random hash & trash
689                         // We try to simulate an untuned tank circuit here... :-)
690                         for(uint32_t x=0; x<videoWidget->rasterWidth; x++)
691                         {
692                                 for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
693                                 {
694                                         videoWidget->buffer[(y * videoWidget->textureWidth) + x]
695                                                 = (rand() & 0xFF) << 8 | (rand() & 0xFF) << 16 | (rand() & 0xFF) << 24;
696                                 }
697                         }
698                 }
699         }
700         else
701         {
702                 // Otherwise, run the Jaguar simulation
703                 HandleGamepads();
704                 JaguarExecuteNew();
705                 videoWidget->HandleMouseHiding();
706         }
707
708         videoWidget->updateGL();
709
710         // FPS handling
711         // Approach: We use a ring buffer to store times (in ms) over a given
712         // amount of frames, then sum them to figure out the FPS.
713         uint32_t timestamp = SDL_GetTicks();
714         // This assumes the ring buffer size is a power of 2
715 //      ringBufferPointer = (ringBufferPointer + 1) & (RING_BUFFER_SIZE - 1);
716         // Doing it this way is better. Ring buffer size can be arbitrary then.
717         ringBufferPointer = (ringBufferPointer + 1) % RING_BUFFER_SIZE;
718         ringBuffer[ringBufferPointer] = timestamp - oldTimestamp;
719         uint32_t elapsedTime = 0;
720
721         for(uint32_t i=0; i<RING_BUFFER_SIZE; i++)
722                 elapsedTime += ringBuffer[i];
723
724         // elapsedTime must be non-zero
725         if (elapsedTime == 0)
726                 elapsedTime = 1;
727
728         // This is in frames per 10 seconds, so we can have 1 decimal
729         uint32_t framesPerSecond = (uint32_t)(((float)RING_BUFFER_SIZE / (float)elapsedTime) * 10000.0);
730         uint32_t fpsIntegerPart = framesPerSecond / 10;
731         uint32_t fpsDecimalPart = framesPerSecond % 10;
732         // If this is updated too frequently to be useful, we can throttle it down
733         // so that it only updates every 10th frame or so
734         statusBar()->showMessage(QString("%1.%2 FPS").arg(fpsIntegerPart).arg(fpsDecimalPart));
735         oldTimestamp = timestamp;
736 }
737
738
739 void MainWin::TogglePowerState(void)
740 {
741         powerButtonOn = !powerButtonOn;
742         running = true;
743
744         // With the power off, we simulate white noise on the screen. :-)
745         if (!powerButtonOn)
746         {
747                 // Restore the mouse pointer, if hidden:
748                 videoWidget->CheckAndRestoreMouseCursor();
749                 useCDAct->setDisabled(false);
750                 palAct->setDisabled(false);
751                 ntscAct->setDisabled(false);
752                 pauseAct->setChecked(false);
753                 pauseAct->setDisabled(true);
754                 showUntunedTankCircuit = true;
755                 DACPauseAudioThread();
756                 // This is just in case the ROM we were playing was in a narrow or wide
757                 // field mode, so the untuned tank sim doesn't look wrong. :-)
758                 TOMReset();
759
760                 if (plzDontKillMyComputer)
761                 {
762                         // We have to do it line by line, because the texture pitch is not
763                         // the same as the picture buffer's pitch.
764                         for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
765                         {
766                                 memcpy(videoWidget->buffer + (y * videoWidget->textureWidth), testPattern + (y * VIRTUAL_SCREEN_WIDTH), VIRTUAL_SCREEN_WIDTH * sizeof(uint32_t));
767                         }
768                 }
769         }
770         else
771         {
772                 useCDAct->setDisabled(true);
773                 palAct->setDisabled(true);
774                 ntscAct->setDisabled(true);
775                 pauseAct->setChecked(false);
776                 pauseAct->setDisabled(false);
777                 showUntunedTankCircuit = false;
778
779                 // Otherwise, we prepare for running regular software...
780                 if (CDActive)
781                 {
782 // Should check for cartridgeLoaded here as well...!
783 // We can clear it when toggling CDActive on, so that when we power cycle it
784 // does the expected thing. Otherwise, if we use the file picker to insert a
785 // cart, we expect to run the cart! Maybe have a RemoveCart function that only
786 // works if the CD unit is active?
787                         setWindowTitle(QString("Virtual Jaguar " VJ_RELEASE_VERSION
788                                 " - Now playing: Jaguar CD"));
789                 }
790
791                 WriteLog("GUI: Resetting Jaguar...\n");
792                 JaguarReset();
793                 DACPauseAudioThread(false);
794         }
795 }
796
797
798 void MainWin::ToggleRunState(void)
799 {
800         running = !running;
801
802         if (!running)
803         {
804                 // Restore the mouse pointer, if hidden:
805                 videoWidget->CheckAndRestoreMouseCursor();
806                 frameAdvanceAct->setDisabled(false);
807
808                 for(uint32_t i=0; i<(uint32_t)(videoWidget->textureWidth * 256); i++)
809                 {
810                         uint32_t pixel = videoWidget->buffer[i];
811                         uint8_t r = (pixel >> 24) & 0xFF, g = (pixel >> 16) & 0xFF, b = (pixel >> 8) & 0xFF;
812                         pixel = ((r + g + b) / 3) & 0x00FF;
813                         videoWidget->buffer[i] = 0x000000FF | (pixel << 16) | (pixel << 8);
814                 }
815
816                 videoWidget->updateGL();
817         }
818         else
819                 frameAdvanceAct->setDisabled(true);
820
821         // Pause/unpause any running/non-running threads...
822         DACPauseAudioThread(!running);
823 }
824
825
826 void MainWin::SetZoom100(void)
827 {
828         zoomLevel = 1;
829         ResizeMainWindow();
830 }
831
832
833 void MainWin::SetZoom200(void)
834 {
835         zoomLevel = 2;
836         ResizeMainWindow();
837 }
838
839
840 void MainWin::SetZoom300(void)
841 {
842         zoomLevel = 3;
843         ResizeMainWindow();
844 }
845
846
847 void MainWin::SetNTSC(void)
848 {
849         powerAct->setIcon(powerRed);
850         timer->setInterval(16);
851         vjs.hardwareTypeNTSC = true;
852         ResizeMainWindow();
853         WriteSettings();
854 }
855
856
857 void MainWin::SetPAL(void)
858 {
859         powerAct->setIcon(powerGreen);
860         timer->setInterval(20);
861         vjs.hardwareTypeNTSC = false;
862         ResizeMainWindow();
863         WriteSettings();
864 }
865
866
867 void MainWin::ToggleBlur(void)
868 {
869         vjs.glFilter = !vjs.glFilter;
870         WriteSettings();
871 }
872
873
874 void MainWin::ShowAboutWin(void)
875 {
876         aboutWin->show();
877 }
878
879
880 void MainWin::ShowHelpWin(void)
881 {
882         helpWin->show();
883 }
884
885
886 void MainWin::InsertCart(void)
887 {
888         // If the emulator is running, we pause it here and unpause it later
889         // if we dismiss the file selector without choosing anything
890         if (running && powerButtonOn)
891         {
892                 ToggleRunState();
893                 pauseForFileSelector = true;
894         }
895
896         filePickWin->show();
897 }
898
899
900 void MainWin::Unpause(void)
901 {
902         // Here we unpause the emulator if it was paused when we went into the file selector
903         if (pauseForFileSelector)
904         {
905                 pauseForFileSelector = false;
906
907                 // Some nutter might have unpaused while in the file selector, so check for that
908                 if (!running)
909                         ToggleRunState();
910         }
911 }
912
913
914 void MainWin::LoadSoftware(QString file)
915 {
916         running = false;                                                        // Prevent bad things(TM) from happening...
917         pauseForFileSelector = false;                           // Reset the file selector pause flag
918
919         char * biosPointer = jaguarBootROM;
920
921         if (vjs.hardwareTypeAlpine)
922                 biosPointer = jaguarDevBootROM2;
923
924         memcpy(jagMemSpace + 0xE00000, biosPointer, 0x20000);
925
926         powerAct->setDisabled(false);
927         powerAct->setChecked(true);
928         powerButtonOn = false;
929         TogglePowerState();
930         // We have to load our software *after* the Jaguar RESET
931         cartridgeLoaded = JaguarLoadFile(file.toAscii().data());
932         SET32(jaguarMainRAM, 0, 0x00200000);            // Set top of stack...
933
934         // This is icky because we've already done it
935 // it gets worse :-P
936 if (!vjs.useJaguarBIOS)
937         SET32(jaguarMainRAM, 4, jaguarRunAddress);
938
939         m68k_pulse_reset();
940
941         if (!vjs.hardwareTypeAlpine && !loadAndGo)
942         {
943                 QString newTitle = QString("Virtual Jaguar " VJ_RELEASE_VERSION " - Now playing: %1")
944                         .arg(filePickWin->GetSelectedPrettyName());
945                 setWindowTitle(newTitle);
946         }
947 }
948
949
950 void MainWin::ToggleCDUsage(void)
951 {
952         CDActive = !CDActive;
953
954         // Set up the Jaguar CD for execution, otherwise, clear memory
955         if (CDActive)
956                 memcpy(jagMemSpace + 0x800000, jaguarCDBootROM, 0x40000);
957         else
958                 memset(jagMemSpace + 0x800000, 0xFF, 0x40000);
959 }
960
961
962 void MainWin::FrameAdvance(void)
963 {
964 //printf("Frame Advance...\n");
965         // Execute 1 frame, then exit (only useful in Pause mode)
966         JaguarExecuteNew();
967         videoWidget->updateGL();
968         // Need to execute 1 frames' worth of DSP thread as well :-/
969 #warning "!!! Need to execute the DSP thread for 1 frame too !!!"
970 }
971
972
973 void MainWin::SetFullScreen(bool state/*= true*/)
974 {
975         if (state)
976         {
977                 mainWinPosition = pos();
978                 menuBar()->hide();
979                 statusBar()->hide();
980                 toolbar->hide();
981
982                 if (debugbar)
983                         debugbar->hide();
984
985                 showFullScreen();
986                 // This is needed because the fullscreen may happen on a different
987                 // screen than screen 0:
988                 int screenNum = QApplication::desktop()->screenNumber(videoWidget);
989 //              QRect r = QApplication::desktop()->availableGeometry(screenNum);
990                 QRect r = QApplication::desktop()->screenGeometry(screenNum);
991                 double targetWidth = (double)VIRTUAL_SCREEN_WIDTH,
992                         targetHeight = (double)(vjs.hardwareTypeNTSC ? VIRTUAL_SCREEN_HEIGHT_NTSC : VIRTUAL_SCREEN_HEIGHT_PAL);
993                 double aspectRatio = targetWidth / targetHeight;
994                 // NOTE: Really should check here to see which dimension constrains the
995                 //       other. Right now, we assume that height is the constraint.
996                 int newWidth = (int)(aspectRatio * (double)r.height());
997                 videoWidget->offset = (r.width() - newWidth) / 2;
998                 videoWidget->fullscreen = true;
999                 videoWidget->outputWidth = newWidth;
1000                 videoWidget->setFixedSize(r.width(), r.height());
1001                 showFullScreen();
1002         }
1003         else
1004         {
1005                 // Reset the video widget to windowed mode
1006                 videoWidget->offset = 0;
1007                 videoWidget->fullscreen = false;
1008                 menuBar()->show();
1009                 statusBar()->show();
1010                 toolbar->show();
1011
1012                 if (debugbar)
1013                         debugbar->show();
1014
1015                 showNormal();
1016                 ResizeMainWindow();
1017                 move(mainWinPosition);
1018         }
1019 }
1020
1021
1022 void MainWin::ToggleFullScreen(void)
1023 {
1024         fullScreen = !fullScreen;
1025         SetFullScreen(fullScreen);
1026 }
1027
1028
1029 void MainWin::ShowMemoryBrowserWin(void)
1030 {
1031         memBrowseWin->show();
1032         memBrowseWin->RefreshContents();
1033 }
1034
1035
1036 void MainWin::ShowCPUBrowserWin(void)
1037 {
1038         cpuBrowseWin->show();
1039         cpuBrowseWin->RefreshContents();
1040 }
1041
1042
1043 void MainWin::ShowOPBrowserWin(void)
1044 {
1045         opBrowseWin->show();
1046         opBrowseWin->RefreshContents();
1047 }
1048
1049
1050 void MainWin::ShowM68KDasmBrowserWin(void)
1051 {
1052         m68kDasmBrowseWin->show();
1053         m68kDasmBrowseWin->RefreshContents();
1054 }
1055
1056
1057 void MainWin::ShowRISCDasmBrowserWin(void)
1058 {
1059         riscDasmBrowseWin->show();
1060         riscDasmBrowseWin->RefreshContents();
1061 }
1062
1063
1064 void MainWin::ResizeMainWindow(void)
1065 {
1066         videoWidget->setFixedSize(zoomLevel * VIRTUAL_SCREEN_WIDTH,
1067                 zoomLevel * (vjs.hardwareTypeNTSC ? VIRTUAL_SCREEN_HEIGHT_NTSC : VIRTUAL_SCREEN_HEIGHT_PAL));
1068
1069         // Show the test pattern if user requested plzDontKillMyComputer mode
1070         if (!powerButtonOn && plzDontKillMyComputer)
1071         {
1072                 for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
1073                 {
1074                         memcpy(videoWidget->buffer + (y * videoWidget->textureWidth), testPattern + (y * VIRTUAL_SCREEN_WIDTH), VIRTUAL_SCREEN_WIDTH * sizeof(uint32_t));
1075                 }
1076         }
1077
1078         show();
1079
1080         for(int i=0; i<2; i++)
1081         {
1082                 resize(0, 0);
1083                 usleep(2000);
1084                 QApplication::processEvents();
1085         }
1086 }
1087
1088
1089 #warning "!!! Need to check the window geometry to see if the positions are legal !!!"
1090 // i.e., someone could drag it to another screen, close it, then disconnect that screen
1091 void MainWin::ReadSettings(void)
1092 {
1093         QSettings settings("Underground Software", "Virtual Jaguar");
1094         mainWinPosition = settings.value("pos", QPoint(200, 200)).toPoint();
1095         QSize size = settings.value("size", QSize(400, 400)).toSize();
1096         resize(size);
1097         move(mainWinPosition);
1098         QPoint pos = settings.value("cartLoadPos", QPoint(200, 200)).toPoint();
1099         filePickWin->move(pos);
1100
1101         zoomLevel = settings.value("zoom", 2).toInt();
1102         allowUnknownSoftware = settings.value("showUnknownSoftware", false).toBool();
1103         lastEditedProfile = settings.value("lastEditedProfile", 0).toInt();
1104
1105         vjs.useJoystick      = settings.value("useJoystick", false).toBool();
1106         vjs.joyport          = settings.value("joyport", 0).toInt();
1107         vjs.hardwareTypeNTSC = settings.value("hardwareTypeNTSC", true).toBool();
1108         vjs.frameSkip        = settings.value("frameSkip", 0).toInt();
1109         vjs.useJaguarBIOS    = settings.value("useJaguarBIOS", false).toBool();
1110         vjs.GPUEnabled       = settings.value("GPUEnabled", true).toBool();
1111         vjs.DSPEnabled       = settings.value("DSPEnabled", false).toBool();
1112         vjs.audioEnabled     = settings.value("audioEnabled", true).toBool();
1113         vjs.usePipelinedDSP  = settings.value("usePipelinedDSP", false).toBool();
1114         vjs.fullscreen       = settings.value("fullscreen", false).toBool();
1115         vjs.useOpenGL        = settings.value("useOpenGL", true).toBool();
1116         vjs.glFilter         = settings.value("glFilterType", 1).toInt();
1117         vjs.renderType       = settings.value("renderType", 0).toInt();
1118         vjs.allowWritesToROM = settings.value("writeROM", false).toBool();
1119         vjs.biosType         = settings.value("biosType", BT_M_SERIES).toInt();
1120         strcpy(vjs.EEPROMPath, settings.value("EEPROMs", "./eeproms/").toString().toAscii().data());
1121         strcpy(vjs.ROMPath, settings.value("ROMs", "./software/").toString().toAscii().data());
1122         strcpy(vjs.alpineROMPath, settings.value("DefaultROM", "").toString().toAscii().data());
1123         strcpy(vjs.absROMPath, settings.value("DefaultABS", "").toString().toAscii().data());
1124
1125 WriteLog("MainWin: Paths\n");
1126 WriteLog("   EEPROMPath = \"%s\"\n", vjs.EEPROMPath);
1127 WriteLog("      ROMPath = \"%s\"\n", vjs.ROMPath);
1128 WriteLog("AlpineROMPath = \"%s\"\n", vjs.alpineROMPath);
1129 WriteLog("   absROMPath = \"%s\"\n", vjs.absROMPath);
1130 WriteLog("Pipelined DSP = %s\n", (vjs.usePipelinedDSP ? "ON" : "off"));
1131
1132         // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
1133         vjs.p1KeyBindings[BUTTON_U] = settings.value("p1k_up", Qt::Key_S).toInt();
1134         vjs.p1KeyBindings[BUTTON_D] = settings.value("p1k_down", Qt::Key_X).toInt();
1135         vjs.p1KeyBindings[BUTTON_L] = settings.value("p1k_left", Qt::Key_A).toInt();
1136         vjs.p1KeyBindings[BUTTON_R] = settings.value("p1k_right", Qt::Key_D).toInt();
1137         vjs.p1KeyBindings[BUTTON_C] = settings.value("p1k_c", Qt::Key_J).toInt();
1138         vjs.p1KeyBindings[BUTTON_B] = settings.value("p1k_b", Qt::Key_K).toInt();
1139         vjs.p1KeyBindings[BUTTON_A] = settings.value("p1k_a", Qt::Key_L).toInt();
1140         vjs.p1KeyBindings[BUTTON_OPTION] = settings.value("p1k_option", Qt::Key_O).toInt();
1141         vjs.p1KeyBindings[BUTTON_PAUSE] = settings.value("p1k_pause", Qt::Key_P).toInt();
1142         vjs.p1KeyBindings[BUTTON_0] = settings.value("p1k_0", Qt::Key_0).toInt();
1143         vjs.p1KeyBindings[BUTTON_1] = settings.value("p1k_1", Qt::Key_1).toInt();
1144         vjs.p1KeyBindings[BUTTON_2] = settings.value("p1k_2", Qt::Key_2).toInt();
1145         vjs.p1KeyBindings[BUTTON_3] = settings.value("p1k_3", Qt::Key_3).toInt();
1146         vjs.p1KeyBindings[BUTTON_4] = settings.value("p1k_4", Qt::Key_4).toInt();
1147         vjs.p1KeyBindings[BUTTON_5] = settings.value("p1k_5", Qt::Key_5).toInt();
1148         vjs.p1KeyBindings[BUTTON_6] = settings.value("p1k_6", Qt::Key_6).toInt();
1149         vjs.p1KeyBindings[BUTTON_7] = settings.value("p1k_7", Qt::Key_7).toInt();
1150         vjs.p1KeyBindings[BUTTON_8] = settings.value("p1k_8", Qt::Key_8).toInt();
1151         vjs.p1KeyBindings[BUTTON_9] = settings.value("p1k_9", Qt::Key_9).toInt();
1152         vjs.p1KeyBindings[BUTTON_d] = settings.value("p1k_pound", Qt::Key_Minus).toInt();
1153         vjs.p1KeyBindings[BUTTON_s] = settings.value("p1k_star", Qt::Key_Equal).toInt();
1154
1155         vjs.p2KeyBindings[BUTTON_U] = settings.value("p2k_up", Qt::Key_Up).toInt();
1156         vjs.p2KeyBindings[BUTTON_D] = settings.value("p2k_down", Qt::Key_Down).toInt();
1157         vjs.p2KeyBindings[BUTTON_L] = settings.value("p2k_left", Qt::Key_Left).toInt();
1158         vjs.p2KeyBindings[BUTTON_R] = settings.value("p2k_right", Qt::Key_Right).toInt();
1159         vjs.p2KeyBindings[BUTTON_C] = settings.value("p2k_c", Qt::Key_Z).toInt();
1160         vjs.p2KeyBindings[BUTTON_B] = settings.value("p2k_b", Qt::Key_X).toInt();
1161         vjs.p2KeyBindings[BUTTON_A] = settings.value("p2k_a", Qt::Key_C).toInt();
1162         vjs.p2KeyBindings[BUTTON_OPTION] = settings.value("p2k_option", Qt::Key_Apostrophe).toInt();
1163         vjs.p2KeyBindings[BUTTON_PAUSE] = settings.value("p2k_pause", Qt::Key_Return).toInt();
1164         vjs.p2KeyBindings[BUTTON_0] = settings.value("p2k_0", Qt::Key_0).toInt();
1165         vjs.p2KeyBindings[BUTTON_1] = settings.value("p2k_1", Qt::Key_1).toInt();
1166         vjs.p2KeyBindings[BUTTON_2] = settings.value("p2k_2", Qt::Key_2).toInt();
1167         vjs.p2KeyBindings[BUTTON_3] = settings.value("p2k_3", Qt::Key_3).toInt();
1168         vjs.p2KeyBindings[BUTTON_4] = settings.value("p2k_4", Qt::Key_4).toInt();
1169         vjs.p2KeyBindings[BUTTON_5] = settings.value("p2k_5", Qt::Key_5).toInt();
1170         vjs.p2KeyBindings[BUTTON_6] = settings.value("p2k_6", Qt::Key_6).toInt();
1171         vjs.p2KeyBindings[BUTTON_7] = settings.value("p2k_7", Qt::Key_7).toInt();
1172         vjs.p2KeyBindings[BUTTON_8] = settings.value("p2k_8", Qt::Key_8).toInt();
1173         vjs.p2KeyBindings[BUTTON_9] = settings.value("p2k_9", Qt::Key_9).toInt();
1174         vjs.p2KeyBindings[BUTTON_d] = settings.value("p2k_pound", Qt::Key_Slash).toInt();
1175         vjs.p2KeyBindings[BUTTON_s] = settings.value("p2k_star", Qt::Key_Asterisk).toInt();
1176
1177         ReadProfiles(&settings);
1178 }
1179
1180
1181 void MainWin::WriteSettings(void)
1182 {
1183         QSettings settings("Underground Software", "Virtual Jaguar");
1184         settings.setValue("pos", pos());
1185         settings.setValue("size", size());
1186         settings.setValue("cartLoadPos", filePickWin->pos());
1187
1188         settings.setValue("zoom", zoomLevel);
1189         settings.setValue("showUnknownSoftware", allowUnknownSoftware);
1190         settings.setValue("lastEditedProfile", lastEditedProfile);
1191
1192         settings.setValue("useJoystick", vjs.useJoystick);
1193         settings.setValue("joyport", vjs.joyport);
1194         settings.setValue("hardwareTypeNTSC", vjs.hardwareTypeNTSC);
1195         settings.setValue("frameSkip", vjs.frameSkip);
1196         settings.setValue("useJaguarBIOS", vjs.useJaguarBIOS);
1197         settings.setValue("GPUEnabled", vjs.GPUEnabled);
1198         settings.setValue("DSPEnabled", vjs.DSPEnabled);
1199         settings.setValue("audioEnabled", vjs.audioEnabled);
1200         settings.setValue("usePipelinedDSP", vjs.usePipelinedDSP);
1201         settings.setValue("fullscreen", vjs.fullscreen);
1202         settings.setValue("useOpenGL", vjs.useOpenGL);
1203         settings.setValue("glFilterType", vjs.glFilter);
1204         settings.setValue("renderType", vjs.renderType);
1205         settings.setValue("writeROM", vjs.allowWritesToROM);
1206         settings.setValue("biosType", vjs.biosType);
1207         settings.setValue("JagBootROM", vjs.jagBootPath);
1208         settings.setValue("CDBootROM", vjs.CDBootPath);
1209         settings.setValue("EEPROMs", vjs.EEPROMPath);
1210         settings.setValue("ROMs", vjs.ROMPath);
1211         settings.setValue("DefaultROM", vjs.alpineROMPath);
1212         settings.setValue("DefaultABS", vjs.absROMPath);
1213
1214         settings.setValue("p1k_up", vjs.p1KeyBindings[BUTTON_U]);
1215         settings.setValue("p1k_down", vjs.p1KeyBindings[BUTTON_D]);
1216         settings.setValue("p1k_left", vjs.p1KeyBindings[BUTTON_L]);
1217         settings.setValue("p1k_right", vjs.p1KeyBindings[BUTTON_R]);
1218         settings.setValue("p1k_c", vjs.p1KeyBindings[BUTTON_C]);
1219         settings.setValue("p1k_b", vjs.p1KeyBindings[BUTTON_B]);
1220         settings.setValue("p1k_a", vjs.p1KeyBindings[BUTTON_A]);
1221         settings.setValue("p1k_option", vjs.p1KeyBindings[BUTTON_OPTION]);
1222         settings.setValue("p1k_pause", vjs.p1KeyBindings[BUTTON_PAUSE]);
1223         settings.setValue("p1k_0", vjs.p1KeyBindings[BUTTON_0]);
1224         settings.setValue("p1k_1", vjs.p1KeyBindings[BUTTON_1]);
1225         settings.setValue("p1k_2", vjs.p1KeyBindings[BUTTON_2]);
1226         settings.setValue("p1k_3", vjs.p1KeyBindings[BUTTON_3]);
1227         settings.setValue("p1k_4", vjs.p1KeyBindings[BUTTON_4]);
1228         settings.setValue("p1k_5", vjs.p1KeyBindings[BUTTON_5]);
1229         settings.setValue("p1k_6", vjs.p1KeyBindings[BUTTON_6]);
1230         settings.setValue("p1k_7", vjs.p1KeyBindings[BUTTON_7]);
1231         settings.setValue("p1k_8", vjs.p1KeyBindings[BUTTON_8]);
1232         settings.setValue("p1k_9", vjs.p1KeyBindings[BUTTON_9]);
1233         settings.setValue("p1k_pound", vjs.p1KeyBindings[BUTTON_d]);
1234         settings.setValue("p1k_star", vjs.p1KeyBindings[BUTTON_s]);
1235
1236         settings.setValue("p2k_up", vjs.p2KeyBindings[BUTTON_U]);
1237         settings.setValue("p2k_down", vjs.p2KeyBindings[BUTTON_D]);
1238         settings.setValue("p2k_left", vjs.p2KeyBindings[BUTTON_L]);
1239         settings.setValue("p2k_right", vjs.p2KeyBindings[BUTTON_R]);
1240         settings.setValue("p2k_c", vjs.p2KeyBindings[BUTTON_C]);
1241         settings.setValue("p2k_b", vjs.p2KeyBindings[BUTTON_B]);
1242         settings.setValue("p2k_a", vjs.p2KeyBindings[BUTTON_A]);
1243         settings.setValue("p2k_option", vjs.p2KeyBindings[BUTTON_OPTION]);
1244         settings.setValue("p2k_pause", vjs.p2KeyBindings[BUTTON_PAUSE]);
1245         settings.setValue("p2k_0", vjs.p2KeyBindings[BUTTON_0]);
1246         settings.setValue("p2k_1", vjs.p2KeyBindings[BUTTON_1]);
1247         settings.setValue("p2k_2", vjs.p2KeyBindings[BUTTON_2]);
1248         settings.setValue("p2k_3", vjs.p2KeyBindings[BUTTON_3]);
1249         settings.setValue("p2k_4", vjs.p2KeyBindings[BUTTON_4]);
1250         settings.setValue("p2k_5", vjs.p2KeyBindings[BUTTON_5]);
1251         settings.setValue("p2k_6", vjs.p2KeyBindings[BUTTON_6]);
1252         settings.setValue("p2k_7", vjs.p2KeyBindings[BUTTON_7]);
1253         settings.setValue("p2k_8", vjs.p2KeyBindings[BUTTON_8]);
1254         settings.setValue("p2k_9", vjs.p2KeyBindings[BUTTON_9]);
1255         settings.setValue("p2k_pound", vjs.p2KeyBindings[BUTTON_d]);
1256         settings.setValue("p2k_star", vjs.p2KeyBindings[BUTTON_s]);
1257
1258         WriteProfiles(&settings);
1259 }
1260
1261
1262 void MainWin::WriteUISettings(void)
1263 {
1264         QSettings settings("Underground Software", "Virtual Jaguar");
1265         settings.setValue("pos", pos());
1266         settings.setValue("size", size());
1267         settings.setValue("cartLoadPos", filePickWin->pos());
1268
1269         settings.setValue("zoom", zoomLevel);
1270 }
1271