Imported more functionality from old db classes to new models.
[emufront] / src / mainwindow.cpp
1 /*
2 ** EmuFront
3 ** Copyright 2010 Mikko Keinänen
4 **
5 ** This file is part of EmuFront.
6 **
7 **
8 ** EmuFront is free software: you can redistribute it and/or modify
9 ** it under the terms of the GNU General Public License version 2 as published by
10 ** the Free Software Foundation and appearing in the file gpl.txt included in the
11 ** packaging of this file.
12 **
13 ** EmuFront is distributed in the hope that it will be useful,
14 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ** GNU General Public License for more details.
17 **
18 ** You should have received a copy of the GNU General Public License
19 ** along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
20 */
21 #include <QtGui>
22 #include "mainwindow.h"
23 #include "emulauncher.h"
24 // TODO: deprecated
25 //#include "platformdialog.h"
26 #include "platformeditview.h"
27 //#include "mediatypedialog.h"
28 #include "mediatypeeditview.h"
29 // TODO: DEPRECATED
30 //#include "mediaimagepathmaindialog.h"
31 #include "filepatheditview.h"
32 // TODO: deprecated
33 //#include "setupmaindialog.h"
34 #include "setupeditview.h"
35 // TODO: deprecated
36 //#include "executablemaindialog.h"
37 #include "externalexecutableeditview.h"
38 #include "datfileutil.h"
39 #include "databasemanager.h"
40 #include "dbcreator.h"
41 #include "dbconfig.h"
42
43 QString MainWindow::aboutStr = trUtf8(
44         "<h2>EmuFront</h2>"
45         "<p>&copy; 2010 Mikko Keinänen</p>"
46         "<p>mikko.keinanen@gmail.com</p>"
47         "<p>EmuFront is free software: you can redistribute it and/or modify "
48         "it under the terms of the GNU General Public License version 2 as published by "
49         "the Free Software Foundation.</p>"
50 );
51
52 QString MainWindow::aboutTitle = tr("About EmuFront");
53
54 MainWindow::MainWindow(bool reset)
55 {
56     if (!testDB(reset)) close();
57     errorMessage = new QErrorMessage(this);
58     setWindowTitle("EmuFront");
59     tmpDirFilePath = DbConfig::getTmpDir();
60     if (tmpDirFilePath.isEmpty())
61         tmpDirFilePath = QDir::homePath();
62     qDebug() << "Temporary dir is " << tmpDirFilePath;
63     launcher = new EmuLauncher(errorMessage, this, tmpDirFilePath);
64     setCentralWidget(launcher);
65     createActions();
66     createMenus();
67     createStatusBar();
68     readSettings();
69     // TODO: deprecated
70     //platformDialog = 0;
71     plfDialog = 0;
72     // TODO: deprecated
73     //mediaTypeDialog = 0;
74     mdtDialog = 0;
75     // TODO: DEPRECATED
76     //mediaImagePathDialog = 0;
77     mediaImagePathView = 0;
78     // TODO: deprecated
79     //setupMainDialog = 0;
80     setupMainView = 0;
81     // TODO: deprecated
82     //executableMainDialog = 0;
83     emulatorEditView = 0;
84 }
85
86 void MainWindow::connectSignals()
87 {
88 }
89
90 void MainWindow::createActions()
91 {
92     // TODO: deprecated
93     /*configPlatformAction = new QAction(tr("&Platforms"), this);
94     configPlatformAction->setStatusTip(tr("Configure platforms"));
95     connect(configPlatformAction, SIGNAL(triggered()),
96         this, SLOT(configurePlatforms()));*/
97
98     configPlatformsAction = new QAction(tr("&Set Platforms"), this);
99     configPlatformsAction->setStatusTip(tr("Add, edit and delete platforms"));
100     connect(configPlatformsAction, SIGNAL(triggered()),
101         this, SLOT(configurePlatformss()));
102
103     // TODO: deprecated
104     /*configMediaTypeAction = new QAction(tr("&Media Types"), this);
105     configMediaTypeAction->setStatusTip(tr("Configure media types"));
106     connect(configMediaTypeAction, SIGNAL(triggered()), this, SLOT(configureMediaTypes()));*/
107
108     configMediaTypesAction = new QAction(tr("&Set Media Types"), this);
109     configMediaTypesAction->setStatusTip(tr("Add, edit and delete media types"));
110     connect(configMediaTypesAction, SIGNAL(triggered()), this, SLOT(configureMediaTypess()));
111
112     // TODO: DEPRECATED
113     /*configMediaImagePathAction = new QAction(tr("Media &Image Paths"), this);
114     configMediaImagePathAction->setStatusTip(tr("Configure media image file paths."));
115     connect(configMediaImagePathAction, SIGNAL(triggered()),
116         this, SLOT(configureMediaImagePaths()));*/
117
118     configMediaImagePathsAction = new QAction(tr("Set media &image paths"), this);
119     configMediaImagePathsAction->setStatusTip(tr("Add, edit and delete media image file paths."));
120     connect(configMediaImagePathsAction, SIGNAL(triggered()),
121         this, SLOT(configureMediaImagePathss()));
122
123     // TODO: deprecated
124     /*configSetupAction = new QAction(tr("S&etups"), this);
125     configSetupAction->setStatusTip(tr("Configure set ups"));
126     connect(configSetupAction, SIGNAL(triggered()), this, SLOT(configureSetups()));*/
127
128     configSetupsAction = new QAction(tr("Configure S&etups"), this);
129     configSetupsAction->setStatusTip(tr("Add, edit and delete setups"));
130     connect(configSetupsAction, SIGNAL(triggered()), this, SLOT(configureSetupss()));
131
132     /*configEmulatorAction = new QAction(tr("Em&ulators"), this);
133     configEmulatorAction->setStatusTip(tr("Configure emulators"));
134     connect(configEmulatorAction, SIGNAL(triggered()), this, SLOT(configureEmulators()));*/
135
136     configEmulatorsAction = new QAction(tr("Configure Em&ulators"), this);
137     configEmulatorsAction->setStatusTip(tr("Add, edit and delete emulator configurations"));
138     connect(configEmulatorsAction, SIGNAL(triggered()), this, SLOT(configureEmulatorss()));
139
140
141     configTmpDirAction = new QAction(tr("&Temp dir"), this);
142     configTmpDirAction->setStatusTip(tr("Configure directory for temporary files."));
143     connect(configTmpDirAction, SIGNAL(triggered()), this, SLOT(configureTmpDir()));
144
145     manageDatFilesAction = new QAction(tr("&Manage dats"), this);
146     manageDatFilesAction->setStatusTip(tr("Read dat files to database."));
147     connect(manageDatFilesAction, SIGNAL(triggered()), this, SLOT(manageDatFiles()));
148
149     exitAction = new QAction(tr("&Exit"), this);
150     exitAction->setShortcut(tr("Ctrl+Q"));
151     exitAction->setStatusTip(tr("Exit EmuFront"));
152     connect(exitAction, SIGNAL(triggered()), this, SLOT(close()));
153
154     resetDbAction = new QAction( tr("Reset database"), this);
155     resetDbAction->setStatusTip(tr("Deletes all the current data and create a new database."));
156     connect(resetDbAction, SIGNAL(triggered()), this, SLOT(resetDb()));
157
158     aboutAction = new QAction(tr("&About"), this);
159     aboutAction->setStatusTip(tr("About EmuFront"));
160     connect(aboutAction, SIGNAL(triggered()), this, SLOT(about()));
161 }
162
163 // TODO: deprecated
164 /*void MainWindow::configurePlatforms()
165 {
166    if (!platformDialog)
167    {
168        platformDialog = new PlatformDialog(this);
169        connect(platformDialog, SIGNAL(finished(int)), this, SLOT(updateData()));
170    }
171    activateDialog(platformDialog);
172 }*/
173
174 void MainWindow::configurePlatformss()
175 {
176     if (!plfDialog) {
177         plfDialog = new PlatformEditView(this);
178         connect(plfDialog, SIGNAL(finished(int)), this, SLOT(updateData()));
179     }
180     activateDialog(plfDialog);
181 }
182
183 // TODO: deprecated
184 /*void MainWindow::configureMediaTypes()
185 {
186     if (!mediaTypeDialog)
187     {
188         mediaTypeDialog = new MediaTypeDialog(this);
189         connect(mediaTypeDialog, SIGNAL(finished(int)), this, SLOT(updateData()));
190    }
191    activateDialog(mediaTypeDialog);
192 }*/
193
194 void MainWindow::configureMediaTypess()
195 {
196     if (!mdtDialog)
197     {
198         mdtDialog = new MediaTypeEditView(this);
199         connect(mdtDialog, SIGNAL(finished(int)), this, SLOT(updateData()));
200    }
201    activateDialog(mdtDialog);
202 }
203
204
205 // TODO: DEPRECATED
206 /*void MainWindow::configureMediaImagePaths()
207 {
208     if (!mediaImagePathDialog)
209     {
210         mediaImagePathDialog = new MediaImagePathMainDialog(this);
211     }
212     activateDialog(mediaImagePathDialog);
213 }*/
214
215 void MainWindow::configureMediaImagePathss()
216 {
217     if (!mediaImagePathView)
218     {
219         mediaImagePathView = new FilePathEditView(this);
220     }
221     activateDialog(mediaImagePathView);
222 }
223
224 // TODO: deprecated
225 /*void MainWindow::configureSetups()
226 {
227     if (!setupMainDialog)
228     {
229         setupMainDialog = new SetupMainDialog(this);
230     }
231     activateDialog(setupMainDialog);
232     setupMainDialog->refreshDataModel();
233 }*/
234
235 void MainWindow::configureSetupss()
236 {
237     if (!setupMainView) {
238         setupMainView = new SetupEditView(this);
239     }
240     activateDialog(setupMainView);
241 }
242
243
244 // TODO: deprecated
245 /*void MainWindow::configureEmulators()
246 {
247     if (!executableMainDialog) {
248         executableMainDialog = new ExecutableMainDialog(this);
249         connect(executableMainDialog, SIGNAL(finished(int)), this, SLOT(updateData()));
250     }
251     activateDialog(executableMainDialog);
252     executableMainDialog->refreshDataModel();
253 }*/
254
255 void MainWindow::configureEmulatorss()
256 {
257     if (!emulatorEditView) {
258         emulatorEditView = new ExternalExecutableEditView(this);
259         connect(emulatorEditView, SIGNAL(finished(int)), this, SLOT(updateData()));
260     }
261     activateDialog(emulatorEditView);
262 }
263
264 void MainWindow::configureTmpDir()
265 {
266     /*if (!tmpFolderDialog) {
267         tmpFolderDialog = new TmpFolderEditDialog(this, tmpDirFilePath);
268     }
269     activateDialog(tmpFolderDialog);*/
270
271     QString fpath = QFileDialog::getExistingDirectory(this,
272         tr("Select a directory"), tmpDirFilePath,
273         QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
274     QDir d(fpath);
275     if (d.exists() && d.isReadable()) {
276         tmpDirFilePath = fpath;
277         DbConfig::setTmpDir(tmpDirFilePath);
278         launcher->setTmpDirPath(tmpDirFilePath);
279     }
280 }
281
282 void MainWindow::resetDb()
283 {
284     if (QMessageBox::question(this, "Reset database?",
285         "Are you REALLY SURE you want to do this? "
286         "All the current data WILL BE LOST!",
287         QMessageBox::No,
288         QMessageBox::Yes) == QMessageBox::No) {
289         return;
290     }
291     try {
292         createDB();
293     }
294     catch (EmuFrontException e) {
295         errorMessage->showMessage(e.what());
296     }
297 }
298
299 void MainWindow::manageDatFiles()
300 {
301     DatFileUtil dfu;
302     dfu.open();
303 }
304
305 void MainWindow::activateDialog(EmuFrontDialog* dia) const
306 {
307     dia->show();
308     dia->raise();
309     dia->activateWindow();
310 }
311
312 void MainWindow::createMenus()
313 {
314     fileMenu = menuBar()->addMenu(tr("&File"));
315     fileMenu->addAction(resetDbAction);
316     fileMenu->addSeparator();
317     fileMenu->addAction(exitAction);
318
319     configMenu = menuBar()->addMenu(tr("&Config"));
320     configMenu->addAction(configTmpDirAction);
321     configMenu->addSeparator();
322     // TODO: deprecated
323     //configMenu->addAction(configPlatformAction);
324     configMenu->addAction(configPlatformsAction);
325     // TODO: deprecated
326     //configMenu->addAction(configMediaTypeAction);
327     configMenu->addAction(configMediaTypesAction);
328     // TODO: deprecated
329     //configMenu->addAction(configSetupAction);
330     configMenu->addAction(configSetupsAction);
331     // TODO: DEPRECATED
332     //configMenu->addAction(configMediaImagePathAction);
333     configMenu->addAction(configMediaImagePathsAction);
334     // TODO: DEPRECATED
335     //configMenu->addAction(configEmulatorAction);
336     configMenu->addAction(configEmulatorsAction);
337     configMenu->addSeparator();
338     configMenu->addAction(manageDatFilesAction);
339
340     helpMenu = menuBar()->addMenu(tr("&Help"));
341     helpMenu->addAction(aboutAction);
342 }
343
344 void MainWindow::createStatusBar()
345 {
346     messageLabel = new QLabel;
347     statusBar()->addWidget(messageLabel);
348 }
349
350 void MainWindow::readSettings()
351 {
352 }
353
354 void MainWindow::writeSettings()
355 {
356 }
357
358 void MainWindow::closeEvent(QCloseEvent *event)
359 {
360     if (okToContinue())
361         event->accept();
362     else event->ignore();
363 }
364
365 bool MainWindow::okToContinue()
366 {
367     return true;
368 }
369
370 void MainWindow::updateData()
371 {
372     qDebug() << "MainWindow::updateData()";
373     launcher->updateData();
374 }
375
376 void MainWindow::about()
377 {
378     QMessageBox::about(this, aboutTitle, aboutStr);
379 }
380
381 bool MainWindow::testDB(bool reset)
382 {
383     try {
384         if (DatabaseManager::openDB()) {
385             qDebug() << " Database opened succesfully!";
386         }
387         else {
388             throw EmuFrontException("Database connection failed!");
389         }
390
391         int dbVer = DbCreator::dbExists();
392         if (dbVer == 0) reset = true;
393         if (!reset && dbVer != DbCreator::DB_VERSION) {
394             QString msg("Database is not compatible "
395                         "with current version of EmuFront!"
396                         "Do you want to continue to recreate the database?"
397                         "ALL THE CURRENT DATA WILL BE LOST!!!");
398             if (QMessageBox::question(this, "Database not compatible!", msg,
399                                       QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
400                 reset = true;
401             }
402             else throw EmuFrontException("The current database is not compatible!"
403                                          " Cannot continue.");
404         }
405     
406         if (reset) {
407             createDB();
408         }
409         return true;
410     }
411     catch (EmuFrontException e) {
412         qDebug() << e.what();
413         errorMessage->showMessage(e.what());
414         return false;
415     }
416 }
417
418 void MainWindow::createDB() const
419 {
420     try
421     {
422         DbCreator dbCreator;
423         dbCreator.createDB();
424     }
425     catch (QString str) {
426         QString msg(tr("Exception while trying to create"
427                        " EmuFront database: %s").arg(str));
428         errorMessage->showMessage(msg);
429     }
430 }
431