-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
55 lines (50 loc) · 1.4 KB
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <QAction>
#include <QFile>
#include <QFileDialog>
#include <QMenu>
#include <QMenuBar>
#include <QMessageBox>
#include <QTextStream>
#include "mainwindow.hh"
#include "game.hh"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent)
{
QMenu *fileMenu = new QMenu("File");
menuBar()->addMenu(fileMenu);
QAction *openMapAction = new QAction("Open map...");
fileMenu->addAction(openMapAction);
connect(openMapAction, &QAction::triggered,
this, &MainWindow::openMapDialog);
}
void MainWindow::openMapDialog()
{
QString fileName = QFileDialog::getOpenFileName(this);
if (fileName.isEmpty())
return;
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly)) {
QMessageBox::warning(this, "Error", file.errorString());
return;
}
QTextStream stream(&file);
QVector<QVector<bool>> map;
while (!stream.atEnd()) {
QVector<bool> row;
for (const QChar &ch : stream.readLine()) {
if (ch == "0")
row.push_back(false);
else if (ch == "1")
row.push_back(true);
else if (ch == "\n")
break;
else {
QMessageBox::warning(this, "Error", QString("Invalid character: ") + ch);
return;
}
}
map.append(row);
}
m_game = new Game(map, this);
setCentralWidget(m_game);
}