14
14
#include < QKeyEvent>
15
15
#include < QMessageBox>
16
16
#include < QScrollArea>
17
+ #include < QStandardPaths>
17
18
#include < QToolBar>
18
19
#include < QVBoxLayout>
19
20
@@ -65,6 +66,7 @@ static QString replace(QString str, QString var, QString val) {
65
66
class hscChar : public Char {
66
67
private:
67
68
hscCharacter character;
69
+ QString _path;
68
70
69
71
void capture (int , QDomNode);
70
72
void captureAttr (int , QDomAttr);
@@ -112,12 +114,13 @@ class hscChar: public Char {
112
114
113
115
114
116
public:
115
- int getPrimary (const QString& s) { return character.getPrimary (s); }
116
- int getPrimaryResistant (const QString s) { return character.getPrimaryResistant (s); }
117
- int getSecondary (const QString& s) { return character.getSecondary (s); }
118
- int getSecondaryResistant (const QString s) { return character.getSecondaryResistant (s); }
119
- QByteArray image () { return character.image .image ; }
120
- QString name () { return character.characterInfo .characterName ; }
117
+ int getPrimary (const QString& s) { return character.getPrimary (s); }
118
+ int getPrimaryResistant (const QString s) { return character.getPrimaryResistant (s); }
119
+ int getSecondary (const QString& s) { return character.getSecondary (s); }
120
+ int getSecondaryResistant (const QString s) { return character.getSecondaryResistant (s); }
121
+ QByteArray image () { return character.image .image ; }
122
+ QString name () { return character.characterInfo .characterName ; }
123
+ QString path () { return _path; }
121
124
122
125
QStringList disadvantages () {
123
126
QStringList disad;
@@ -135,6 +138,7 @@ class hscChar: public Char {
135
138
}
136
139
137
140
void load (QString f) {
141
+ _path = f;
138
142
QDomDocument chr (f);
139
143
QFile file (f);
140
144
if (!file.open (QIODevice::ReadOnly)) return ;
@@ -240,6 +244,7 @@ class hscChar: public Char {
240
244
class hsccuChar : public Char {
241
245
private:
242
246
Character character;
247
+ QString _path;
243
248
Option opt;
244
249
245
250
int str2idx (QString s) {
@@ -250,8 +255,9 @@ class hsccuChar: public Char {
250
255
}
251
256
252
257
public:
253
- QByteArray image () { return character.imageData (); }
254
- QString name () { return character.characterName (); }
258
+ QByteArray image () { return character.imageData (); }
259
+ QString name () { return character.characterName (); }
260
+ QString path () { return _path; }
255
261
256
262
QStringList disadvantages () {
257
263
QStringList disad;
@@ -286,6 +292,7 @@ class hsccuChar: public Char {
286
292
}
287
293
288
294
void load (QString f) {
295
+ _path = f;
289
296
character.load (opt, f);
290
297
rebuildCharacter (character);
291
298
}
@@ -525,8 +532,13 @@ MainWindow::MainWindow(QWidget *parent)
525
532
526
533
ref = this ;
527
534
535
+ _dir = QStandardPaths::writableLocation (QStandardPaths::DocumentsLocation);
536
+
528
537
QAction* newAction = new QAction (" New" );
529
538
QAction* loadAction = new QAction (" Open" );
539
+ #ifndef __wasm__
540
+ QAction* saveAction = new QAction (" Save" );
541
+ #endif
530
542
QAction* removeAction = new QAction (" Delete" );
531
543
QAction* startAction = new QAction (" Start" );
532
544
QAction* nextAction = new QAction (" Next" );
@@ -535,6 +547,9 @@ MainWindow::MainWindow(QWidget *parent)
535
547
536
548
ui->toolBar ->addAction (newAction);
537
549
ui->toolBar ->addAction (loadAction);
550
+ #ifndef __wasm__
551
+ ui->toolBar ->addAction (saveAction);
552
+ #endif
538
553
ui->toolBar ->addAction (removeAction);
539
554
ui->toolBar ->addAction (startAction);
540
555
ui->toolBar ->addAction (nextAction);
@@ -543,6 +558,9 @@ MainWindow::MainWindow(QWidget *parent)
543
558
544
559
connect (newAction, SIGNAL (triggered ()), this , SLOT (doNew ()));
545
560
connect (loadAction, SIGNAL (triggered ()), this , SLOT (load ()));
561
+ #ifndef __wasm__
562
+ connect (saveAction, SIGNAL (triggered ()), this , SLOT (save ()));
563
+ #endif
546
564
connect (removeAction, SIGNAL (triggered ()), this , SLOT (remove ()));
547
565
connect (startAction, SIGNAL (triggered ()), this , SLOT (start ()));
548
566
connect (nextAction, SIGNAL (triggered ()), this , SLOT (next ()));
@@ -1363,13 +1381,7 @@ void MainWindow::itemSelected() {
1363
1381
displayCharacter (name);
1364
1382
}
1365
1383
1366
- void MainWindow::load () {
1367
- QString filename = QFileDialog::getOpenFileName (nullptr , tr (" Import Character file" ), QString (), tr (" Hero System Characters (*.hdc *.hsccu)" ));
1368
- if (filename.isEmpty ()) return ;
1369
-
1370
- std::shared_ptr<Char> character;
1371
- if (filename.endsWith (" .hsc" )) character = make_shared<hscChar>();
1372
- else character = make_shared<hsccuChar>();
1384
+ void MainWindow::load (std::shared_ptr<Char>& character, QString filename) {
1373
1385
character->load (filename);
1374
1386
1375
1387
QString name = character->name ();
@@ -1380,6 +1392,27 @@ void MainWindow::load() {
1380
1392
displayCharacter (name);
1381
1393
}
1382
1394
1395
+ void MainWindow::load () {
1396
+ #ifdef __wasm__
1397
+ QString filename = QFileDialog::getOpenFileName (this , tr (" Import Character file" ), QString (), tr (" Hero System Characters (*.hdc *.hsccu)" ));
1398
+ if (filename.isEmpty ()) return ;
1399
+ #else
1400
+ QStringList files = QFileDialog::getOpenFileNames (this , " Import Character file(s)" , _dir, " Hero System Character(s) (*.hdc *.hsccu *.hsc)" );
1401
+ if (files.isEmpty ()) return ;
1402
+ for (const auto & filename: files) {
1403
+ #endif
1404
+ std::shared_ptr<Char> character;
1405
+ if (filename.endsWith (" .hdc" )) character = make_shared<hscChar>();
1406
+ else if (filename.endsWith (" .hsscu" )) character = make_shared<hsccuChar>();
1407
+ else {
1408
+ continue ;
1409
+ }
1410
+ load (character, filename);
1411
+ #ifndef __wasm__
1412
+ }
1413
+ #endif
1414
+ }
1415
+
1383
1416
void MainWindow::next () {
1384
1417
if (_characters.isEmpty ()) {
1385
1418
OK (" You need to load some characters\n before combat can continue!" , " Whoops!" );
@@ -1425,6 +1458,16 @@ void MainWindow::remove() {
1425
1458
removeChart (character);
1426
1459
}
1427
1460
1461
+ #ifndef __wasm__
1462
+ void MainWindow::save () {
1463
+ // get a save file from the user
1464
+ // go through all of the characters:
1465
+ // write the path for characters that have a non-empty one
1466
+ // else write the simple character to the save-file
1467
+ // success!!
1468
+ }
1469
+ #endif
1470
+
1428
1471
void MainWindow::setup () {
1429
1472
_font = ui->BODYLabel ->font ().pointSize ();
1430
1473
SetupDialog dlg (_font);
0 commit comments