summaryrefslogtreecommitdiffstats
path: root/examples/statemachine/statemachine/rogue/window.h
blob: faca764ac3d5392027bb6e6a8ed6641b30aa4d34 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef WINDOW_H
#define WINDOW_H

#include <QWidget>

QT_BEGIN_NAMESPACE
class QState;
class QStateMachine;
class QTransition;
QT_END_NAMESPACE

#define WIDTH 35
#define HEIGHT 20

//![0]
class Window : public QWidget
{
    Q_OBJECT
    Q_PROPERTY(QString status READ status WRITE setStatus)

public:
    enum Direction { Up, Down, Left, Right };

    Window();

    void movePlayer(Direction direction);
    void setStatus(const QString &status);
    QString status() const;

    QSize sizeHint() const override;

protected:
    void paintEvent(QPaintEvent *event) override;
//![0]

//![1]
private:
    void buildMachine();
    void setupMap();

    QChar map[WIDTH][HEIGHT];
    int pX, pY;

    QStateMachine *machine;
    QString myStatus;
};
//![1]

#endif