File: displayCreature.h

package info (click to toggle)
attal 0.9.2-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,992 kB
  • ctags: 5,972
  • sloc: cpp: 44,510; sh: 160; makefile: 45
file content (227 lines) | stat: -rw-r--r-- 4,843 bytes parent folder | download | duplicates (2)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/****************************************************************
**
** Attal : Lords of Doom
**
** displayCreature.h
** widget for displaying, buying cretaures
**
** Version : $Id: displayCreature.h,v 1.3 2004/11/16 19:29:41 lusum Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 01/01/2001
**
** Licence :
**	This program is free software; you can redistribute it and/or modify
**   	it under the terms of the GNU General Public License as published by
**     	the Free Software Foundation; either version 2, or (at your option)
**      any later version.
**
**	This program is distributed in the hope that it will be useful,
** 	but WITHOUT ANY WARRANTY; without even the implied warranty of
**	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**	GNU General Public License for more details.
**
****************************************************************/


#ifndef DISPLAYCREATURE_H
#define DISPLAYCREATURE_H


// generic include files
// include files for QT
#include <qwidget.h>
#include <qdialog.h>
#include <qlabel.h>
#include <qpushbutton.h>
// application specific include files
#include "libCommon/creature.h"

class QScrollBar;

class AttalSocket;
class ComputeCost;
class CreatureCost;
class CreatureInfo;
class CreaturePresentation;
class GenericPlayer;
class GenericBase;
class Icon;
class InfoFrame;
class ResourceLabel;

/*              ------------------------------
 *                         DisplayCreature
 *              ------------------------------ */



/** comment for the class */
class DisplayCreature : public QFrame
{
	Q_OBJECT
public:
	/** Constructor */
	DisplayCreature( QWidget * parent = 0, const char * name = 0 );

	/** Initialize creature to display */
	void setCreature( int race, int level );

	Creature * getCreature() { return _creature; }

signals:
	/** Signal if clicked */
	void sig_clicked();

protected:
	void mousePressEvent( QMouseEvent * event );

private:
	CreaturePresentation * _creaturePres;
	CreatureInfo * _creatureInfo;
	Creature * _creature;
};

/** Presentation of a creature */
class CreaturePresentation : public QWidget
{
public:
	/** Constructor */
	CreaturePresentation( QWidget * parent = 0, const char * name = 0 );

	/** Initialize creature to display */
	void setCreature( int race, int level );

private:
	QLabel * _name, * _picture,  * _building, * _available;
};

/** Information about a creature */
class CreatureInfo : public QWidget
{
public:
	/** Constructor */
	CreatureInfo( QWidget * parent = 0, const char * name = 0 );

	/** Initialize creature to display */
	void setCreature( int race, int level );

private:
	InfoFrame * _attack, * _defense, * _damage;
	InfoFrame * _health, * _speed, * _growth;
};

enum TypeInfo {
	INF_ATTACK,
	INF_DEFENSE,
	INF_ARROW,
	INF_DAMAGE,
	INF_HEALTH,
	INF_SPEED,
	INF_GROWTH
};

/** Frame for displaying one information */
class InfoFrame : public QWidget
{
public:
	/** Constructor */
	InfoFrame( TypeInfo info, QWidget * arent = 0, const char * name = 0 );

	/** Set value */
	void setValue( int val );

	/** Set range of values */
	void setValue( int val1, int val2 );

private:
	QLabel * _value;
};

/** Dialog for buying a creature */
class BuyCreature : public QDialog
{
	Q_OBJECT
public:
	/** Constructor */
	BuyCreature( QWidget * parent = 0, const char * name = 0 );

	/** Initialize creature to display */
	void init( GenericPlayer * player, GenericBase * base, Creature * creature );

	void reinit();

	/** Initialize the socket of the dialog for requesting the server */
	void initSocket( AttalSocket * socket ) {
		_socket = socket;
	}

	/** Sets max number of creatures allowed to buy */
	void setMaxNumber( int max ) { _max = max; }

public slots:
	/** Slot for 'All' button clicked */
	void slot_all();

	void slot_buy();

private:
	QLabel * _labPres, * _labDescr;
	Icon * _ico;
	ComputeCost * _cost;
	Creature * _creature;
	AttalSocket * _socket;
	GenericBase * _base;
	GenericPlayer * _player;
	int _max;
};

/** Display cost of creatures to buy */
class ComputeCost : public QWidget
{
	Q_OBJECT
public:
	/** Constructor */
	ComputeCost( QWidget * parent = 0, const char * name = 0 );

	/** Init widget */
	void init( Creature * creature, int max );

	/** \return Returns nb creatures to buy */
	int getNumber();
	
	void setValue(int value);

private slots:
	void slot_newValue( int );

private:
	QScrollBar * _bar;
	CreatureCost * _unitaryCost, * _totalCost;
	int _max;

};

/** Display cost of a creature */
class CreatureCost : public QFrame
{
public:
	/** Constrcutor */
	CreatureCost( QWidget * parent = 0, const char * name = 0 );

	/** Init widget */
	void init( Creature * creature );

	/** Sets number of creature */
	void setNumber( unsigned int nb );

protected:
	void reinit();

	uint _nb;
	Creature * _creature;
	ResourceLabel * _res[MAX_RESS];
};

#endif // DISPLAYCREATURE_H