summaryrefslogtreecommitdiffstats
path: root/examples/corelib/serialization/savegame/character.cpp
blob: 863fcb9153b6ec3082d5222a7f932c18ab33e0a9 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "character.h"

#include <QMetaEnum>
#include <QTextStream>

Character::Character() = default;

Character::Character(const QString &name, int level, Character::ClassType classType)
    : mName(name), mLevel(level), mClassType(classType)
{
}

QString Character::name() const
{
    return mName;
}

void Character::setName(const QString &name)
{
    mName = name;
}

int Character::level() const
{
    return mLevel;
}

void Character::setLevel(int level)
{
    mLevel = level;
}

Character::ClassType Character::classType() const
{
    return mClassType;
}

void Character::setClassType(Character::ClassType classType)
{
    mClassType = classType;
}

//! [fromJson]
Character Character::fromJson(const QJsonObject &json)
{
    Character result;

    if (const QJsonValue v = json["name"]; v.isString())
        result.mName = v.toString();

    if (const QJsonValue v = json["level"]; v.isDouble())
        result.mLevel = v.toInt();

    if (const QJsonValue v = json["classType"]; v.isDouble())
        result.mClassType = ClassType(v.toInt());

    return result;
}
//! [fromJson]

//! [toJson]
QJsonObject Character::toJson() const
{
    QJsonObject json;
    json["name"] = mName;
    json["level"] = mLevel;
    json["classType"] = mClassType;
    return json;
}
//! [toJson]

void Character::print(QTextStream &s, int indentation) const
{
    const QString indent(indentation * 2, ' ');
    const QString className = QMetaEnum::fromType<ClassType>().valueToKey(mClassType);

    s << indent << "Name:\t" << mName << "\n"
      << indent << "Level:\t" << mLevel << "\n"
      << indent << "Class:\t" << className << "\n";
}