]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/mainwin.cpp
Fixed bug with missing BIOS on first boot of Virtual Jaguar.
[virtualjaguar] / src / gui / mainwin.cpp
1 //
2 // mainwin.cpp - Qt-based GUI for Virtual Jaguar: Main Application Window
3 // by James L. Hammons
4 // (C) 2009 Underground Software
5 //
6 // JLH = James L. 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 //
21 // STILL TO BE DONE:
22 //
23 // - Controller configuration
24 // - Remove SDL dependencies (sound, mainly) from Jaguar core lib
25 // - Fix inconsistency with trailing slashes in paths (eeproms needs one, software doesn't)
26 //
27
28 // Uncomment this for debugging...
29 //#define DEBUG
30 //#define DEBUGFOO                      // Various tool debugging...
31 //#define DEBUGTP                               // Toolpalette debugging...
32
33 #include "mainwin.h"
34
35 #include "SDL.h"
36 #include "glwidget.h"
37 #include "about.h"
38 #include "settings.h"
39 #include "filepicker.h"
40 #include "configdialog.h"
41 #include "generaltab.h"
42 #include "version.h"
43
44 #include "dac.h"
45 #include "jaguar.h"
46 #include "tom.h"
47 #include "log.h"
48 #include "file.h"
49 #include "jagbios.h"
50 #include "jagcdbios.h"
51 #include "jagstub2bios.h"
52 #include "joystick.h"
53
54 #ifdef __GCCWIN32__
55 // Apparently on win32, usleep() is not pulled in by the usual suspects.
56 #include <unistd.h>
57 #endif
58
59 // Uncomment this to use built-in BIOS/CD-ROM BIOS
60 // You'll need a copy of jagboot.h & jagcd.h for this to work...!
61 // Creating those is left as an exercise for the reader. ;-)
62 //#define USE_BUILT_IN_BIOS
63
64 //#ifdef USE_BUILT_IN_BIOS
65 //#include "jagboot.h"
66 //#include "jagcd.h"
67 //#endif
68
69 // The way BSNES controls things is by setting a timer with a zero
70 // timeout, sleeping if not emulating anything. Seems there has to be a
71 // better way.
72
73 // It has a novel approach to plugging-in/using different video/audio/input
74 // methods, can we do something similar or should we just use the built-in
75 // QOpenGL?
76
77 // We're going to try to use the built-in OpenGL support and see how it goes.
78 // We'll make the VJ core modular so that it doesn't matter what GUI is in
79 // use, we can drop it in anywhere and use it as-is.
80
81 MainWin::MainWin(): running(false), powerButtonOn(false), showUntunedTankCircuit(true),
82         cartridgeLoaded(false), CDActive(false),//, alpineLoadSuccessful(false),
83         pauseForFileSelector(false)
84 {
85         videoWidget = new GLWidget(this);
86         setCentralWidget(videoWidget);
87         setWindowIcon(QIcon(":/res/vj-icon.png"));
88 //      setWindowTitle("Virtual Jaguar v2.0.0");
89
90         QString title = QString(tr("Virtual Jaguar " VJ_RELEASE_VERSION ));
91
92         if (vjs.hardwareTypeAlpine)
93                 title += QString(tr(" - Alpine Mode"));
94
95         setWindowTitle(title);
96
97         aboutWin = new AboutWindow(this);
98         filePickWin = new FilePickerWindow(this);
99
100     videoWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
101     setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
102
103         setUnifiedTitleAndToolBarOnMac(true);
104
105         // Create actions
106
107         quitAppAct = new QAction(tr("E&xit"), this);
108         quitAppAct->setShortcuts(QKeySequence::Quit);
109         quitAppAct->setStatusTip(tr("Quit Virtual Jaguar"));
110         connect(quitAppAct, SIGNAL(triggered()), this, SLOT(close()));
111
112         powerAct = new QAction(QIcon(":/res/power.png"), tr("&Power"), this);
113         powerAct->setStatusTip(tr("Powers Jaguar on/off"));
114         powerAct->setCheckable(true);
115         powerAct->setChecked(false);
116         powerAct->setDisabled(true);
117         connect(powerAct, SIGNAL(triggered()), this, SLOT(TogglePowerState()));
118
119         pauseAct = new QAction(QIcon(":/res/pause.png"), tr("Pause"), this);
120         pauseAct->setStatusTip(tr("Toggles the running state"));
121         pauseAct->setCheckable(true);
122         pauseAct->setDisabled(true);
123         pauseAct->setShortcut(QKeySequence(tr("Esc")));
124         connect(pauseAct, SIGNAL(triggered()), this, SLOT(ToggleRunState()));
125
126         zoomActs = new QActionGroup(this);
127
128         x1Act = new QAction(QIcon(":/res/zoom100.png"), tr("Zoom 100%"), zoomActs);
129         x1Act->setStatusTip(tr("Set window zoom to 100%"));
130         x1Act->setCheckable(true);
131         connect(x1Act, SIGNAL(triggered()), this, SLOT(SetZoom100()));
132
133         x2Act = new QAction(QIcon(":/res/zoom200.png"), tr("Zoom 200%"), zoomActs);
134         x2Act->setStatusTip(tr("Set window zoom to 200%"));
135         x2Act->setCheckable(true);
136         connect(x2Act, SIGNAL(triggered()), this, SLOT(SetZoom200()));
137
138         x3Act = new QAction(QIcon(":/res/zoom300.png"), tr("Zoom 300%"), zoomActs);
139         x3Act->setStatusTip(tr("Set window zoom to 300%"));
140         x3Act->setCheckable(true);
141         connect(x3Act, SIGNAL(triggered()), this, SLOT(SetZoom300()));
142
143         tvTypeActs = new QActionGroup(this);
144
145         ntscAct = new QAction(QIcon(":/res/ntsc.png"), tr("NTSC"), tvTypeActs);
146         ntscAct->setStatusTip(tr("Sets Jaguar to NTSC mode"));
147         ntscAct->setCheckable(true);
148         connect(ntscAct, SIGNAL(triggered()), this, SLOT(SetNTSC()));
149
150         palAct = new QAction(QIcon(":/res/pal.png"), tr("PAL"), tvTypeActs);
151         palAct->setStatusTip(tr("Sets Jaguar to PAL mode"));
152         palAct->setCheckable(true);
153         connect(palAct, SIGNAL(triggered()), this, SLOT(SetPAL()));
154
155         blurAct = new QAction(QIcon(":/res/generic.png"), tr("Blur"), this);
156         blurAct->setStatusTip(tr("Sets OpenGL rendering to GL_NEAREST"));
157         blurAct->setCheckable(true);
158         connect(blurAct, SIGNAL(triggered()), this, SLOT(ToggleBlur()));
159
160         aboutAct = new QAction(QIcon(":/res/vj-icon.png"), tr("&About..."), this);
161         aboutAct->setStatusTip(tr("Blatant self-promotion"));
162         connect(aboutAct, SIGNAL(triggered()), this, SLOT(ShowAboutWin()));
163
164         filePickAct = new QAction(QIcon(":/res/software.png"), tr("&Insert Cartridge..."), this);
165         filePickAct->setStatusTip(tr("Insert a cartridge into Virtual Jaguar"));
166         filePickAct->setShortcut(QKeySequence(tr("Ctrl+i")));
167         connect(filePickAct, SIGNAL(triggered()), this, SLOT(InsertCart()));
168
169         configAct = new QAction(QIcon(":/res/wrench.png"), tr("&Configure"), this);
170         configAct->setStatusTip(tr("Configure options for Virtual Jaguar"));
171         configAct->setShortcut(QKeySequence(tr("Ctrl+c")));
172         connect(configAct, SIGNAL(triggered()), this, SLOT(Configure()));
173
174         useCDAct = new QAction(QIcon(":/res/compact-disc.png"), tr("&Use CD Unit"), this);
175         useCDAct->setStatusTip(tr("Use Jaguar Virtual CD unit"));
176 //      useCDAct->setShortcut(QKeySequence(tr("Ctrl+c")));
177         useCDAct->setCheckable(true);
178         connect(useCDAct, SIGNAL(triggered()), this, SLOT(ToggleCDUsage()));
179
180         // Misc. connections...
181         connect(filePickWin, SIGNAL(RequestLoad(QString)), this, SLOT(LoadSoftware(QString)));
182         connect(filePickWin, SIGNAL(FilePickerHiding()), this, SLOT(Unpause()));
183
184         // Create menus & toolbars
185
186         fileMenu = menuBar()->addMenu(tr("&Jaguar"));
187         fileMenu->addAction(powerAct);
188         fileMenu->addAction(pauseAct);
189         fileMenu->addAction(filePickAct);
190         fileMenu->addAction(useCDAct);
191         fileMenu->addAction(configAct);
192         fileMenu->addAction(quitAppAct);
193
194         helpMenu = menuBar()->addMenu(tr("&Help"));
195         helpMenu->addAction(aboutAct);
196
197         toolbar = addToolBar(tr("Stuff"));
198         toolbar->addAction(powerAct);
199         toolbar->addAction(pauseAct);
200         toolbar->addAction(filePickAct);
201         toolbar->addAction(useCDAct);
202         toolbar->addSeparator();
203         toolbar->addAction(x1Act);
204         toolbar->addAction(x2Act);
205         toolbar->addAction(x3Act);
206         toolbar->addSeparator();
207         toolbar->addAction(ntscAct);
208         toolbar->addAction(palAct);
209         toolbar->addSeparator();
210         toolbar->addAction(blurAct);
211
212         //      Create status bar
213         statusBar()->showMessage(tr("Ready"));
214
215         ReadSettings();
216
217         // Set toolbar buttons/menus based on settings read in (sync the UI)...
218         blurAct->setChecked(vjs.glFilter);
219         x1Act->setChecked(zoomLevel == 1);
220         x2Act->setChecked(zoomLevel == 2);
221         x3Act->setChecked(zoomLevel == 3);
222         running = powerAct->isChecked();
223         ntscAct->setChecked(vjs.hardwareTypeNTSC);
224         palAct->setChecked(!vjs.hardwareTypeNTSC);
225
226         // Do this in case original size isn't correct (mostly for the first-run case)
227         ResizeMainWindow();
228
229         // Set up timer based loop for animation...
230         timer = new QTimer(this);
231         connect(timer, SIGNAL(timeout()), this, SLOT(Timer()));
232         timer->start(20);
233
234         WriteLog("Virtual Jaguar %s (Last full build was on %s %s)\n", VJ_RELEASE_VERSION, __DATE__, __TIME__);
235         WriteLog("VJ: Initializing jaguar subsystem...\n");
236         JaguarInit();
237
238         // Get the BIOS ROM
239 #ifdef USE_BUILT_IN_BIOS
240 //      WriteLog("VJ: Using built in BIOS/CD BIOS...\n");
241 //      memcpy(jaguarBootROM, jagBootROM, 0x20000);
242 //      memcpy(jaguarCDBootROM, jagCDROM, 0x40000);
243 ////    BIOSLoaded = CDBIOSLoaded = true;
244 //      biosAvailable |= (BIOS_NORMAL | BIOS_CD);
245 #else
246 // What would be nice here would be a way to check if the BIOS was loaded so that we
247 // could disable the pushbutton on the Misc Options menu... !!! FIX !!! [DONE here, but needs to be fixed in GUI as well!]
248 //      WriteLog("VJ: About to attempt to load BIOSes...\n");
249 //This is short-circuiting the file finding thread... ??? WHY ???
250 //Not anymore. Was related to a QImage object creation/corruption bug elsewhere.
251 //      BIOSLoaded = (JaguarLoadROM(jaguarBootROM, vjs.jagBootPath) == 0x20000 ? true : false);
252 //      WriteLog("VJ: BIOS is %savailable...\n", (BIOSLoaded ? "" : "not "));
253 //      CDBIOSLoaded = (JaguarLoadROM(jaguarCDBootROM, vjs.CDBootPath) == 0x40000 ? true : false);
254 //      WriteLog("VJ: CD BIOS is %savailable...\n", (CDBIOSLoaded ? "" : "not "));
255 #endif
256
257         filePickWin->ScanSoftwareFolder(allowUnknownSoftware);
258
259         // Load up the default ROM if in Alpine mode:
260         if (vjs.hardwareTypeAlpine)
261         {
262                 bool romLoaded = JaguarLoadFile(vjs.alpineROMPath);
263
264                 // If regular load failed, try just a straight file load
265                 // (Dev only! I don't want people to start getting lazy with their releases again! :-P)
266                 if (!romLoaded)
267                         romLoaded = AlpineLoadFile(vjs.alpineROMPath);
268
269                 if (romLoaded)
270                         WriteLog("Alpine Mode: Successfully loaded file \"%s\".\n", vjs.alpineROMPath);
271                 else
272                         WriteLog("Alpine Mode: Unable to load file \"%s\"!\n", vjs.alpineROMPath);
273
274                 // Attempt to load/run the ABS file...
275                 LoadSoftware(vjs.absROMPath);
276         }
277         else
278                 memcpy(jagMemSpace + 0xE00000, jaguarBootROM, 0x20000); // Otherwise, use the stock BIOS
279 }
280
281 void MainWin::closeEvent(QCloseEvent * event)
282 {
283         JaguarDone();
284         WriteSettings();
285         event->accept(); // ignore() if can't close for some reason
286 }
287
288 void MainWin::keyPressEvent(QKeyEvent * e)
289 {
290         HandleKeys(e, true);
291 }
292
293 void MainWin::keyReleaseEvent(QKeyEvent * e)
294 {
295         HandleKeys(e, false);
296 }
297
298 void MainWin::HandleKeys(QKeyEvent * e, bool state)
299 {
300         // We kill bad key combos here, before they can get to the emulator...
301         // This also kills the illegal instruction problem that cropped up in Rayman!
302         // May want to do this by killing the old one instead of ignoring the new one...
303         // Seems to work better that way...
304 #if 0
305         if ((e->key() == vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
306                 || (e->key() == vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
307                 || (e->key() == vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
308                 || (e->key() == vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U]))
309                 return;
310 #else
311         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_L] && joypad_0_buttons[BUTTON_R])
312                 joypad_0_buttons[BUTTON_R] = 0;
313         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_R] && joypad_0_buttons[BUTTON_L])
314                 joypad_0_buttons[BUTTON_L] = 0;
315         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_U] && joypad_0_buttons[BUTTON_D])
316                 joypad_0_buttons[BUTTON_D] = 0;
317         if (e->key() == (int)vjs.p1KeyBindings[BUTTON_D] && joypad_0_buttons[BUTTON_U])
318                 joypad_0_buttons[BUTTON_U] = 0;
319 #endif
320
321         // No bad combos exist, let's stuff the emulator key buffers...!
322         for(int i=BUTTON_FIRST; i<=BUTTON_LAST; i++)
323         {
324                 if (e->key() == (int)vjs.p1KeyBindings[i])
325                         joypad_0_buttons[i] = (uint8)state;
326         }
327 }
328
329 void MainWin::Open(void)
330 {
331 }
332
333 void MainWin::Configure(void)
334 {
335         // Call the configuration dialog and update settings
336         ConfigDialog dlg(this);
337         //ick.
338         dlg.generalTab->useUnknownSoftware->setChecked(allowUnknownSoftware);
339
340         if (dlg.exec() == false)
341                 return;
342
343         QString before = vjs.ROMPath;
344         QString alpineBefore = vjs.alpineROMPath;
345         QString absBefore = vjs.absROMPath;
346         bool audioBefore = vjs.audioEnabled;
347         dlg.UpdateVJSettings();
348         QString after = vjs.ROMPath;
349         QString alpineAfter = vjs.alpineROMPath;
350         QString absAfter = vjs.absROMPath;
351         bool audioAfter = vjs.audioEnabled;
352
353         bool allowOld = allowUnknownSoftware;
354         //ick.
355         allowUnknownSoftware = dlg.generalTab->useUnknownSoftware->isChecked();
356
357         // We rescan the "software" folder if the user either changed the path or
358         // checked/unchecked the "Allow unknown files" option in the config dialog.
359         if ((before != after) || (allowOld != allowUnknownSoftware))
360                 filePickWin->ScanSoftwareFolder(allowUnknownSoftware);
361
362         // If the "Alpine" ROM is changed, then let's load it...
363         if (alpineBefore != alpineAfter)
364         {
365                 if (!JaguarLoadFile(vjs.alpineROMPath) && !AlpineLoadFile(vjs.alpineROMPath))
366                 {
367                         // Oh crap, we couldn't get the file! Alert the media!
368                         QMessageBox msg;
369                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.alpineROMPath));
370                         msg.setIcon(QMessageBox::Warning);
371                         msg.exec();
372                 }
373         }
374
375         // If the "ABS" ROM is changed, then let's load it...
376         if (absBefore != absAfter)
377         {
378                 if (!JaguarLoadFile(vjs.absROMPath))
379                 {
380                         // Oh crap, we couldn't get the file! Alert the media!
381                         QMessageBox msg;
382                         msg.setText(QString(tr("Could not load file \"%1\"!")).arg(vjs.absROMPath));
383                         msg.setIcon(QMessageBox::Warning);
384                         msg.exec();
385                 }
386         }
387
388         // If the "Enable audio" checkbox changed, then we have to re-init the DAC...
389         if (audioBefore != audioAfter)
390         {
391                 DACDone();
392                 DACInit();
393         }
394
395         // Just in case we crash before a clean exit...
396         WriteSettings();
397 }
398
399 //
400 // Here's the main emulator loop
401 //
402 void MainWin::Timer(void)
403 {
404         if (!running)
405                 return;
406
407         if (showUntunedTankCircuit)
408         {
409                 // Random hash & trash
410                 // We try to simulate an untuned tank circuit here... :-)
411                 for(uint32_t x=0; x<videoWidget->rasterWidth; x++)
412                 {
413                         for(uint32_t y=0; y<videoWidget->rasterHeight; y++)
414                         {
415                                 videoWidget->buffer[(y * videoWidget->textureWidth) + x] = (rand() & 0xFF) << 8 | (rand() & 0xFF) << 16 | (rand() & 0xFF) << 24;// | (rand() & 0xFF);//0x000000FF;
416         //                      buffer[(y * textureWidth) + x] = x*y;
417                         }
418                 }
419         }
420         else
421         {
422                 // Otherwise, run the Jaguar simulation
423                 JaguarExecuteNew();
424 //              memcpy(videoWidget->buffer, backbuffer, videoWidget->rasterHeight * videoWidget->rasterWidth);
425                 memcpy(videoWidget->buffer, backbuffer, videoWidget->rasterHeight * videoWidget->textureWidth * sizeof(uint32_t));
426 //              memcpy(surface->pixels, backbuffer, TOMGetVideoModeWidth() * TOMGetVideoModeHeight() * 4);
427         }
428
429         videoWidget->updateGL();
430 }
431
432 void MainWin::TogglePowerState(void)
433 {
434         powerButtonOn = !powerButtonOn;
435
436         // With the power off, we simulate white noise on the screen. :-)
437         if (!powerButtonOn)
438         {
439                 pauseAct->setChecked(false);
440                 pauseAct->setDisabled(true);
441                 showUntunedTankCircuit = true;
442                 running = true;
443                 // This is just in case the ROM we were playing was in a narrow or wide field mode,
444                 // so the untuned tank sim doesn't look wrong. :-)
445                 TOMReset();
446         }
447         else
448         {
449 //NOTE: Low hanging fruit: We can simplify this a lot...
450                 // Otherwise, we prepare for running regular software...
451                 if (!CDActive)
452                 {
453                         showUntunedTankCircuit = false;//(cartridgeLoaded ? false : true);
454                         pauseAct->setChecked(false);
455                         pauseAct->setDisabled(false);//!cartridgeLoaded);
456                 }
457                 // Or, set up for the Jaguar CD
458                 else
459                 {
460 // Should check for cartridgeLoaded here as well...!
461 // We can clear it when toggling CDActive on, so that when we power cycle it does the
462 // expected thing. Otherwise, if we use the file picker to insert a cart, we expect
463 // to run the cart! Maybe have a RemoveCart function that only works if the CD unit
464 // is active?
465                         showUntunedTankCircuit = false;
466                         pauseAct->setChecked(false);
467                         pauseAct->setDisabled(false);
468                         memcpy(jagMemSpace + 0x800000, jaguarCDBootROM, 0x40000);
469                         setWindowTitle(QString("Virtual Jaguar " VJ_RELEASE_VERSION
470                                 " - Now playing: Jaguar CD"));
471                 }
472
473                 WriteLog("GUI: Resetting Jaguar...\n");
474                 JaguarReset();
475                 running = true;
476         }
477 }
478
479 void MainWin::ToggleRunState(void)
480 {
481         running = !running;
482
483         if (!running)
484         {
485                 for(uint32_t i=0; i<(uint32_t)(videoWidget->textureWidth * 256); i++)
486                 {
487                         uint32_t pixel = backbuffer[i];
488                         uint8_t r = (pixel >> 24) & 0xFF, g = (pixel >> 16) & 0xFF, b = (pixel >> 8) & 0xFF;
489                         pixel = ((r + g + b) / 3) & 0x00FF;
490                         backbuffer[i] = 0x000000FF | (pixel << 16) | (pixel << 8);
491                 }
492
493                 memcpy(videoWidget->buffer, backbuffer, videoWidget->rasterHeight * videoWidget->textureWidth * sizeof(uint32_t));
494
495                 videoWidget->updateGL();
496         }
497 }
498
499 void MainWin::SetZoom100(void)
500 {
501         zoomLevel = 1;
502         ResizeMainWindow();
503 }
504
505 void MainWin::SetZoom200(void)
506 {
507         zoomLevel = 2;
508         ResizeMainWindow();
509 }
510
511 void MainWin::SetZoom300(void)
512 {
513         zoomLevel = 3;
514         ResizeMainWindow();
515 }
516
517 void MainWin::SetNTSC(void)
518 {
519         vjs.hardwareTypeNTSC = true;
520         ResizeMainWindow();
521 }
522
523 void MainWin::SetPAL(void)
524 {
525         vjs.hardwareTypeNTSC = false;
526         ResizeMainWindow();
527 }
528
529 void MainWin::ToggleBlur(void)
530 {
531         vjs.glFilter = !vjs.glFilter;
532 }
533
534 void MainWin::ShowAboutWin(void)
535 {
536         aboutWin->show();
537 }
538
539 void MainWin::InsertCart(void)
540 {
541         // If the emulator is running, we pause it here and unpause it later
542         // if we dismiss the file selector without choosing anything
543         if (running)
544         {
545                 ToggleRunState();
546                 pauseForFileSelector = true;
547         }
548
549         filePickWin->show();
550 }
551
552 void MainWin::Unpause(void)
553 {
554         // Here we unpause the emulator if it was paused when we went into the file selector
555         if (pauseForFileSelector)
556         {
557                 pauseForFileSelector = false;
558                 ToggleRunState();
559         }
560 }
561
562 void MainWin::LoadSoftware(QString file)
563 {
564         running = false;                                                        // Prevent bad things(TM) from happening...
565         pauseForFileSelector = false;                           // Reset the file selector pause flag
566         SET32(jaguarMainRAM, 0, 0x00200000);            // Set top of stack...
567         cartridgeLoaded = JaguarLoadFile(file.toAscii().data());
568
569         char * biosPointer = jaguarBootROM;
570
571         if (vjs.hardwareTypeAlpine)
572                 biosPointer = jaguarDevBootROM2;
573
574         memcpy(jagMemSpace + 0xE00000, biosPointer, 0x20000);
575
576         powerAct->setDisabled(false);
577         powerAct->setChecked(true);
578         powerButtonOn = false;
579         TogglePowerState();
580
581         if (!vjs.hardwareTypeAlpine)
582         {
583                 QString newTitle = QString("Virtual Jaguar " VJ_RELEASE_VERSION " - Now playing: %1")
584                         .arg(filePickWin->GetSelectedPrettyName());
585                 setWindowTitle(newTitle);
586         }
587 }
588
589 void MainWin::ToggleCDUsage(void)
590 {
591         CDActive = !CDActive;
592
593         if (CDActive)
594         {
595                 powerAct->setDisabled(false);
596         }
597         else
598         {
599                 powerAct->setDisabled(true);
600         }
601 }
602
603 void MainWin::ResizeMainWindow(void)
604 {
605         videoWidget->setFixedSize(zoomLevel * 320, zoomLevel * (vjs.hardwareTypeNTSC ? 240 : 256));
606         show();
607
608         for(int i=0; i<2; i++)
609         {
610                 resize(0, 0);
611                 usleep(2000);
612                 QApplication::processEvents();
613         }
614 }
615
616 void MainWin::ReadSettings(void)
617 {
618         QSettings settings("Underground Software", "Virtual Jaguar");
619         QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint();
620         QSize size = settings.value("size", QSize(400, 400)).toSize();
621         resize(size);
622         move(pos);
623         pos = settings.value("cartLoadPos", QPoint(200, 200)).toPoint();
624         filePickWin->move(pos);
625
626         zoomLevel = settings.value("zoom", 1).toInt();
627         allowUnknownSoftware = settings.value("showUnknownSoftware", false).toBool();
628
629         vjs.useJoystick      = settings.value("useJoystick", false).toBool();
630         vjs.joyport          = settings.value("joyport", 0).toInt();
631         vjs.hardwareTypeNTSC = settings.value("hardwareTypeNTSC", true).toBool();
632         vjs.frameSkip        = settings.value("frameSkip", 0).toInt();
633         vjs.useJaguarBIOS    = settings.value("useJaguarBIOS", false).toBool();
634         vjs.DSPEnabled       = settings.value("DSPEnabled", false).toBool();
635         vjs.audioEnabled     = settings.value("audioEnabled", true).toBool();
636         vjs.usePipelinedDSP  = settings.value("usePipelinedDSP", false).toBool();
637         vjs.fullscreen       = settings.value("fullscreen", false).toBool();
638         vjs.useOpenGL        = settings.value("useOpenGL", true).toBool();
639         vjs.glFilter         = settings.value("glFilterType", 0).toInt();
640         vjs.renderType       = settings.value("renderType", 0).toInt();
641         vjs.allowWritesToROM = settings.value("writeROM", false).toBool();
642 //      strcpy(vjs.jagBootPath, settings.value("JagBootROM", "./bios/[BIOS] Atari Jaguar (USA, Europe).zip").toString().toAscii().data());
643 //      strcpy(vjs.CDBootPath, settings.value("CDBootROM", "./bios/jagcd.rom").toString().toAscii().data());
644         strcpy(vjs.EEPROMPath, settings.value("EEPROMs", "./eeproms/").toString().toAscii().data());
645         strcpy(vjs.ROMPath, settings.value("ROMs", "./software/").toString().toAscii().data());
646         strcpy(vjs.alpineROMPath, settings.value("DefaultROM", "").toString().toAscii().data());
647         strcpy(vjs.absROMPath, settings.value("DefaultABS", "").toString().toAscii().data());
648 WriteLog("MainWin: Paths\n");
649 //WriteLog("    jagBootPath = \"%s\"\n", vjs.jagBootPath);
650 //WriteLog("    CDBootPath  = \"%s\"\n", vjs.CDBootPath);
651 WriteLog("   EEPROMPath = \"%s\"\n", vjs.EEPROMPath);
652 WriteLog("      ROMPath = \"%s\"\n", vjs.ROMPath);
653 WriteLog("AlpineROMPath = \"%s\"\n", vjs.alpineROMPath);
654 WriteLog("   absROMPath = \"%s\"\n", vjs.absROMPath);
655
656         // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
657         vjs.p1KeyBindings[BUTTON_U] = settings.value("p1k_up", Qt::Key_Up).toInt();
658         vjs.p1KeyBindings[BUTTON_D] = settings.value("p1k_down", Qt::Key_Down).toInt();
659         vjs.p1KeyBindings[BUTTON_L] = settings.value("p1k_left", Qt::Key_Left).toInt();
660         vjs.p1KeyBindings[BUTTON_R] = settings.value("p1k_right", Qt::Key_Right).toInt();
661         vjs.p1KeyBindings[BUTTON_C] = settings.value("p1k_c", Qt::Key_Z).toInt();
662         vjs.p1KeyBindings[BUTTON_B] = settings.value("p1k_b", Qt::Key_X).toInt();
663         vjs.p1KeyBindings[BUTTON_A] = settings.value("p1k_a", Qt::Key_C).toInt();
664         vjs.p1KeyBindings[BUTTON_OPTION] = settings.value("p1k_option", Qt::Key_Apostrophe).toInt();
665         vjs.p1KeyBindings[BUTTON_PAUSE] = settings.value("p1k_pause", Qt::Key_Return).toInt();
666         vjs.p1KeyBindings[BUTTON_0] = settings.value("p1k_0", Qt::Key_0).toInt();
667         vjs.p1KeyBindings[BUTTON_1] = settings.value("p1k_1", Qt::Key_1).toInt();
668         vjs.p1KeyBindings[BUTTON_2] = settings.value("p1k_2", Qt::Key_2).toInt();
669         vjs.p1KeyBindings[BUTTON_3] = settings.value("p1k_3", Qt::Key_3).toInt();
670         vjs.p1KeyBindings[BUTTON_4] = settings.value("p1k_4", Qt::Key_4).toInt();
671         vjs.p1KeyBindings[BUTTON_5] = settings.value("p1k_5", Qt::Key_5).toInt();
672         vjs.p1KeyBindings[BUTTON_6] = settings.value("p1k_6", Qt::Key_6).toInt();
673         vjs.p1KeyBindings[BUTTON_7] = settings.value("p1k_7", Qt::Key_7).toInt();
674         vjs.p1KeyBindings[BUTTON_8] = settings.value("p1k_8", Qt::Key_8).toInt();
675         vjs.p1KeyBindings[BUTTON_9] = settings.value("p1k_9", Qt::Key_9).toInt();
676         vjs.p1KeyBindings[BUTTON_d] = settings.value("p1k_pound", Qt::Key_Slash).toInt();
677         vjs.p1KeyBindings[BUTTON_s] = settings.value("p1k_star", Qt::Key_Asterisk).toInt();
678
679         vjs.p2KeyBindings[BUTTON_U] = settings.value("p2k_up", Qt::Key_Up).toInt();
680         vjs.p2KeyBindings[BUTTON_D] = settings.value("p2k_down", Qt::Key_Down).toInt();
681         vjs.p2KeyBindings[BUTTON_L] = settings.value("p2k_left", Qt::Key_Left).toInt();
682         vjs.p2KeyBindings[BUTTON_R] = settings.value("p2k_right", Qt::Key_Right).toInt();
683         vjs.p2KeyBindings[BUTTON_C] = settings.value("p2k_c", Qt::Key_Z).toInt();
684         vjs.p2KeyBindings[BUTTON_B] = settings.value("p2k_b", Qt::Key_X).toInt();
685         vjs.p2KeyBindings[BUTTON_A] = settings.value("p2k_a", Qt::Key_C).toInt();
686         vjs.p2KeyBindings[BUTTON_OPTION] = settings.value("p2k_option", Qt::Key_Apostrophe).toInt();
687         vjs.p2KeyBindings[BUTTON_PAUSE] = settings.value("p2k_pause", Qt::Key_Return).toInt();
688         vjs.p2KeyBindings[BUTTON_0] = settings.value("p2k_0", Qt::Key_0).toInt();
689         vjs.p2KeyBindings[BUTTON_1] = settings.value("p2k_1", Qt::Key_1).toInt();
690         vjs.p2KeyBindings[BUTTON_2] = settings.value("p2k_2", Qt::Key_2).toInt();
691         vjs.p2KeyBindings[BUTTON_3] = settings.value("p2k_3", Qt::Key_3).toInt();
692         vjs.p2KeyBindings[BUTTON_4] = settings.value("p2k_4", Qt::Key_4).toInt();
693         vjs.p2KeyBindings[BUTTON_5] = settings.value("p2k_5", Qt::Key_5).toInt();
694         vjs.p2KeyBindings[BUTTON_6] = settings.value("p2k_6", Qt::Key_6).toInt();
695         vjs.p2KeyBindings[BUTTON_7] = settings.value("p2k_7", Qt::Key_7).toInt();
696         vjs.p2KeyBindings[BUTTON_8] = settings.value("p2k_8", Qt::Key_8).toInt();
697         vjs.p2KeyBindings[BUTTON_9] = settings.value("p2k_9", Qt::Key_9).toInt();
698         vjs.p2KeyBindings[BUTTON_d] = settings.value("p2k_pound", Qt::Key_Slash).toInt();
699         vjs.p2KeyBindings[BUTTON_s] = settings.value("p2k_star", Qt::Key_Asterisk).toInt();
700 }
701
702 void MainWin::WriteSettings(void)
703 {
704         QSettings settings("Underground Software", "Virtual Jaguar");
705         settings.setValue("pos", pos());
706         settings.setValue("size", size());
707         settings.setValue("cartLoadPos", filePickWin->pos());
708
709         settings.setValue("zoom", zoomLevel);
710         settings.setValue("showUnknownSoftware", allowUnknownSoftware);
711
712         settings.setValue("useJoystick", vjs.useJoystick);
713         settings.setValue("joyport", vjs.joyport);
714         settings.setValue("hardwareTypeNTSC", vjs.hardwareTypeNTSC);
715         settings.setValue("frameSkip", vjs.frameSkip);
716         settings.setValue("useJaguarBIOS", vjs.useJaguarBIOS);
717         settings.setValue("DSPEnabled", vjs.DSPEnabled);
718         settings.setValue("audioEnabled", vjs.audioEnabled);
719         settings.setValue("usePipelinedDSP", vjs.usePipelinedDSP);
720         settings.setValue("fullscreen", vjs.fullscreen);
721         settings.setValue("useOpenGL", vjs.useOpenGL);
722         settings.setValue("glFilterType", vjs.glFilter);
723         settings.setValue("renderType", vjs.renderType);
724         settings.setValue("writeROM", vjs.allowWritesToROM);
725         settings.setValue("JagBootROM", vjs.jagBootPath);
726         settings.setValue("CDBootROM", vjs.CDBootPath);
727         settings.setValue("EEPROMs", vjs.EEPROMPath);
728         settings.setValue("ROMs", vjs.ROMPath);
729         settings.setValue("DefaultROM", vjs.alpineROMPath);
730         settings.setValue("DefaultABS", vjs.absROMPath);
731
732         settings.setValue("p1k_up", vjs.p1KeyBindings[BUTTON_U]);
733         settings.setValue("p1k_down", vjs.p1KeyBindings[BUTTON_D]);
734         settings.setValue("p1k_left", vjs.p1KeyBindings[BUTTON_L]);
735         settings.setValue("p1k_right", vjs.p1KeyBindings[BUTTON_R]);
736         settings.setValue("p1k_c", vjs.p1KeyBindings[BUTTON_C]);
737         settings.setValue("p1k_b", vjs.p1KeyBindings[BUTTON_B]);
738         settings.setValue("p1k_a", vjs.p1KeyBindings[BUTTON_A]);
739         settings.setValue("p1k_option", vjs.p1KeyBindings[BUTTON_OPTION]);
740         settings.setValue("p1k_pause", vjs.p1KeyBindings[BUTTON_PAUSE]);
741         settings.setValue("p1k_0", vjs.p1KeyBindings[BUTTON_0]);
742         settings.setValue("p1k_1", vjs.p1KeyBindings[BUTTON_1]);
743         settings.setValue("p1k_2", vjs.p1KeyBindings[BUTTON_2]);
744         settings.setValue("p1k_3", vjs.p1KeyBindings[BUTTON_3]);
745         settings.setValue("p1k_4", vjs.p1KeyBindings[BUTTON_4]);
746         settings.setValue("p1k_5", vjs.p1KeyBindings[BUTTON_5]);
747         settings.setValue("p1k_6", vjs.p1KeyBindings[BUTTON_6]);
748         settings.setValue("p1k_7", vjs.p1KeyBindings[BUTTON_7]);
749         settings.setValue("p1k_8", vjs.p1KeyBindings[BUTTON_8]);
750         settings.setValue("p1k_9", vjs.p1KeyBindings[BUTTON_9]);
751         settings.setValue("p1k_pound", vjs.p1KeyBindings[BUTTON_d]);
752         settings.setValue("p1k_star", vjs.p1KeyBindings[BUTTON_s]);
753
754         settings.setValue("p2k_up", vjs.p2KeyBindings[BUTTON_U]);
755         settings.setValue("p2k_down", vjs.p2KeyBindings[BUTTON_D]);
756         settings.setValue("p2k_left", vjs.p2KeyBindings[BUTTON_L]);
757         settings.setValue("p2k_right", vjs.p2KeyBindings[BUTTON_R]);
758         settings.setValue("p2k_c", vjs.p2KeyBindings[BUTTON_C]);
759         settings.setValue("p2k_b", vjs.p2KeyBindings[BUTTON_B]);
760         settings.setValue("p2k_a", vjs.p2KeyBindings[BUTTON_A]);
761         settings.setValue("p2k_option", vjs.p2KeyBindings[BUTTON_OPTION]);
762         settings.setValue("p2k_pause", vjs.p2KeyBindings[BUTTON_PAUSE]);
763         settings.setValue("p2k_0", vjs.p2KeyBindings[BUTTON_0]);
764         settings.setValue("p2k_1", vjs.p2KeyBindings[BUTTON_1]);
765         settings.setValue("p2k_2", vjs.p2KeyBindings[BUTTON_2]);
766         settings.setValue("p2k_3", vjs.p2KeyBindings[BUTTON_3]);
767         settings.setValue("p2k_4", vjs.p2KeyBindings[BUTTON_4]);
768         settings.setValue("p2k_5", vjs.p2KeyBindings[BUTTON_5]);
769         settings.setValue("p2k_6", vjs.p2KeyBindings[BUTTON_6]);
770         settings.setValue("p2k_7", vjs.p2KeyBindings[BUTTON_7]);
771         settings.setValue("p2k_8", vjs.p2KeyBindings[BUTTON_8]);
772         settings.setValue("p2k_9", vjs.p2KeyBindings[BUTTON_9]);
773         settings.setValue("p2k_pound", vjs.p2KeyBindings[BUTTON_d]);
774         settings.setValue("p2k_star", vjs.p2KeyBindings[BUTTON_s]);
775 }
776
777 // Here's how Byuu does it...
778 // I think I have it working now... :-)
779 #if 0
780 void Utility::resizeMainWindow()
781 {
782   unsigned region = config().video.context->region;
783   unsigned multiplier = config().video.context->multiplier;
784   unsigned width = 256 * multiplier;
785   unsigned height = (region == 0 ? 224 : 239) * multiplier;
786
787   if(config().video.context->correctAspectRatio)
788   {
789     if(region == 0)
790         {
791       width = (double)width * config().video.ntscAspectRatio + 0.5;  //NTSC adjust
792     }
793         else
794         {
795       width = (double)width * config().video.palAspectRatio  + 0.5;  //PAL adjust
796     }
797   }
798
799   if(config().video.isFullscreen == false)
800   {
801     //get effective desktop work area region (ignore Windows taskbar, OS X dock, etc.)
802     QRect deskRect = QApplication::desktop()->availableGeometry(mainWindow);
803
804     //ensure window size will not be larger than viewable desktop area
805     constrainSize(height, width, deskRect.height()); //- frameHeight);
806     constrainSize(width, height, deskRect.width());  //- frameWidth );
807
808     mainWindow->canvas->setFixedSize(width, height);
809     mainWindow->show();
810   }
811   else
812   {
813     for(unsigned i = 0; i < 2; i++)
814         {
815       unsigned iWidth = width, iHeight = height;
816
817       constrainSize(iHeight, iWidth, mainWindow->canvasContainer->size().height());
818       constrainSize(iWidth, iHeight, mainWindow->canvasContainer->size().width());
819
820       //center canvas onscreen; ensure it is not larger than viewable area
821       mainWindow->canvas->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
822       mainWindow->canvas->setFixedSize(iWidth, iHeight);
823       mainWindow->canvas->setMinimumSize(0, 0);
824
825       usleep(2000);
826       QApplication::processEvents();
827     }
828   }
829
830   //workaround for Qt/Xlib bug:
831   //if window resize occurs with cursor over it, Qt shows Qt::Size*DiagCursor;
832   //so force it to show Qt::ArrowCursor, as expected
833   mainWindow->setCursor(Qt::ArrowCursor);
834   mainWindow->canvasContainer->setCursor(Qt::ArrowCursor);
835   mainWindow->canvas->setCursor(Qt::ArrowCursor);
836
837   //workaround for DirectSound(?) bug:
838   //window resizing sometimes breaks audio sync, this call re-initializes it
839   updateAvSync();
840 }
841
842 void Utility::setScale(unsigned scale)
843 {
844   config().video.context->multiplier = scale;
845   resizeMainWindow();
846   mainWindow->shrink();
847   mainWindow->syncUi();
848 }
849
850 void QbWindow::shrink()
851 {
852   if(config().video.isFullscreen == false)
853   {
854     for(unsigned i = 0; i < 2; i++)
855         {
856       resize(0, 0);
857       usleep(2000);
858       QApplication::processEvents();
859     }
860   }
861 }
862 #endif