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