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