]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/app.cpp
Added BIOS and DSP options to configure dialog.
[virtualjaguar] / src / gui / app.cpp
1 //
2 // app.cpp - Qt-based GUI for Virtual Jaguar
3 //
4 // by James L. Hammons
5 // (C) 2010 Underground Software
6 //
7 // JLH = James L. Hammons <jlhamm@acm.org>
8 //
9 // Who  When        What
10 // ---  ----------  -------------------------------------------------------------
11 // JLH  12/23/2009  Created this file
12 // JLH  01/21/2011  Added SDL initialization
13 // JLH  06/26/2011  Added fix to keep SDL from hijacking main() on win32
14 //
15
16 #include "app.h"
17
18 #include <SDL.h>
19 #include <QApplication>
20 #include "log.h"
21 #include "mainwin.h"
22 #include "types.h"
23
24 #ifdef __GCCWIN32__
25 // Apparently on win32, SDL is hijacking main from Qt. So let's do this:
26 #undef main
27 #endif
28
29 // Here's the main application loop--short and simple...
30 int main(int argc, char * argv[])
31 {
32         if (argc > 1)
33         {
34                 if (strcmp(argv[1], "--help") == 0)
35                 {
36                         printf("Virtual Jaguar 2.0.0 help\n");
37                         printf("\n");
38                         printf("This is an experimental branch of Virtual Jaguar, how did you get it?\n");
39                         return 0;
40                 }
41         }
42
43         Q_INIT_RESOURCE(virtualjaguar); // This must the same name as the exe filename
44 //or is it the .qrc filename???
45         // This is so we can pass this stuff using signal/slot mechanism...
46 //ick   int id = qRegisterMetaType<uint32>();
47
48         LogInit("virtualjaguar.log");                           // Init logfile
49         int retVal = -1;                                                        // Default is failure
50
51         // Set up SDL library
52         if (SDL_Init(SDL_INIT_JOYSTICK | SDL_INIT_AUDIO) < 0)
53         {
54                 WriteLog("VJ: Could not initialize the SDL library: %s\n", SDL_GetError());
55         }
56         else
57         {
58                 WriteLog("VJ: SDL (joystick, audio) successfully initialized.\n");
59                 App app(argc, argv);                                    // Declare an instance of the application
60                 retVal = app.exec();                                    // And run it!
61         }
62
63         LogDone();                                                                      // Close logfile
64         return retVal;
65 }
66
67 // Main app constructor--we stick globally accessible stuff here...
68
69 App::App(int argc, char * argv[]): QApplication(argc, argv)
70 {
71         mainWindow = new MainWin();
72         mainWindow->show();
73 }