1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2004-2009 The Mana World Development Team |
4 |
|
|
* Copyright (C) 2009-2010 The Mana Developers |
5 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
6 |
|
|
* Copyright (C) 2019-2021 Andrei Karas |
7 |
|
|
* |
8 |
|
|
* This file is part of The ManaPlus Client. |
9 |
|
|
* |
10 |
|
|
* This program is free software; you can redistribute it and/or modify |
11 |
|
|
* it under the terms of the GNU General Public License as published by |
12 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
13 |
|
|
* any later version. |
14 |
|
|
* |
15 |
|
|
* This program is distributed in the hope that it will be useful, |
16 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 |
|
|
* GNU General Public License for more details. |
19 |
|
|
* |
20 |
|
|
* You should have received a copy of the GNU General Public License |
21 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 |
|
|
*/ |
23 |
|
|
|
24 |
|
|
#ifndef GUI_WIDGETS_PLAYERBOX_H |
25 |
|
|
#define GUI_WIDGETS_PLAYERBOX_H |
26 |
|
|
|
27 |
|
|
#include "gui/widgets/widget.h" |
28 |
|
|
|
29 |
|
|
#include "listeners/mouselistener.h" |
30 |
|
|
|
31 |
|
|
#include "resources/imagerect.h" |
32 |
|
|
|
33 |
|
|
#include "localconsts.h" |
34 |
|
|
|
35 |
|
|
class Being; |
36 |
|
|
class Skin; |
37 |
|
|
|
38 |
|
|
/** |
39 |
|
|
* A box showing a player character. |
40 |
|
|
* |
41 |
|
|
* \ingroup GUI |
42 |
|
|
*/ |
43 |
|
|
class PlayerBox final : public Widget, |
44 |
|
|
public MouseListener |
45 |
|
|
{ |
46 |
|
|
public: |
47 |
|
|
/** |
48 |
|
|
* Constructor. Takes the initial player character that this box should |
49 |
|
|
* display, which defaults to <code>NULL</code>. |
50 |
|
|
*/ |
51 |
|
|
PlayerBox(Widget2 *const widget, |
52 |
|
|
Being *const being, |
53 |
|
|
const std::string &skin, |
54 |
|
|
const std::string &selectedSkin); |
55 |
|
|
|
56 |
|
|
PlayerBox(Widget2 *const widget, |
57 |
|
|
const std::string &skin, |
58 |
|
|
const std::string &selectedSkin); |
59 |
|
|
|
60 |
|
|
A_DELETE_COPY(PlayerBox) |
61 |
|
|
|
62 |
|
|
/** |
63 |
|
|
* Destructor. |
64 |
|
|
*/ |
65 |
|
|
~PlayerBox() override final; |
66 |
|
|
|
67 |
|
|
void init(std::string name, std::string selectedName); |
68 |
|
|
|
69 |
|
|
/** |
70 |
|
|
* Sets a new player character to be displayed by this box. Setting the |
71 |
|
|
* player to <code>NULL</code> causes the box not to draw any |
72 |
|
|
* character. |
73 |
|
|
*/ |
74 |
|
|
void setPlayer(Being *being) |
75 |
|
1 |
{ mBeing = being; } |
76 |
|
|
|
77 |
|
|
/** |
78 |
|
|
* Draws the scroll area. |
79 |
|
|
*/ |
80 |
|
|
void draw(Graphics *const graphics) override final A_NONNULL(2); |
81 |
|
|
|
82 |
|
|
void safeDraw(Graphics *const graphics) override final A_NONNULL(2); |
83 |
|
|
|
84 |
|
|
/** |
85 |
|
|
* Draws the background and border of the scroll area. |
86 |
|
|
*/ |
87 |
|
|
void drawFrame(Graphics *const graphics) override final A_NONNULL(2); |
88 |
|
|
|
89 |
|
|
void safeDrawFrame(Graphics *const graphics) override final |
90 |
|
|
A_NONNULL(2); |
91 |
|
|
|
92 |
|
|
Being *getBeing() A_WARN_UNUSED |
93 |
|
1 |
{ return mBeing; } |
94 |
|
|
|
95 |
|
|
void setSelected(bool b) |
96 |
|
4 |
{ mSelected = b; } |
97 |
|
|
|
98 |
|
|
void mouseReleased(MouseEvent& event) override final; |
99 |
|
|
|
100 |
|
|
private: |
101 |
|
|
Being *mBeing; |
102 |
|
|
float mAlpha; |
103 |
|
|
ImageRect mBackground; |
104 |
|
|
ImageRect mSelectedBackground; |
105 |
|
|
Skin *mSkin; |
106 |
|
|
Skin *mSelectedSkin; |
107 |
|
|
int mOffsetX; |
108 |
|
|
int mOffsetY; |
109 |
|
|
bool mDrawBackground; |
110 |
|
|
bool mSelected; |
111 |
|
|
}; |
112 |
|
|
|
113 |
|
|
#endif // GUI_WIDGETS_PLAYERBOX_H |