mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-27 14:38:28 +08:00
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#include "game.h"
|
||
|
|
||
|
#include <QCoreApplication>
|
||
|
#include <QStringList>
|
||
|
#include <QString>
|
||
|
#include <QTextStream>
|
||
|
|
||
|
using namespace Qt::StringLiterals; // for _L1
|
||
|
|
||
|
//! [0]
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication app(argc, argv);
|
||
|
|
||
|
const QStringList args = QCoreApplication::arguments();
|
||
|
const bool newGame
|
||
|
= args.size() <= 1 || QString::compare(args[1], "load"_L1, Qt::CaseInsensitive) == 0;
|
||
|
const bool json
|
||
|
= args.size() <= 2 || QString::compare(args[2], "binary"_L1, Qt::CaseInsensitive) == 0;
|
||
|
|
||
|
Game game;
|
||
|
if (newGame)
|
||
|
game.newGame();
|
||
|
else if (!game.loadGame(json ? Game::Json : Game::Binary))
|
||
|
return 1;
|
||
|
// Game is played; changes are made...
|
||
|
//! [0]
|
||
|
//! [1]
|
||
|
QTextStream(stdout) << "Game ended in the following state:\n";
|
||
|
game.print();
|
||
|
if (!game.saveGame(json ? Game::Json : Game::Binary))
|
||
|
return 1;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
//! [1]
|