File: graphicalBuilding.cpp

package info (click to toggle)
attal 1.0~rc2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 4,348 kB
  • ctags: 7,428
  • sloc: cpp: 55,101; sh: 267; ansic: 100; makefile: 54
file content (167 lines) | stat: -rw-r--r-- 3,796 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
/****************************************************************
**
** Attal : Lords of Doom
**
** graphicalLord.cpp
** draw bases and buildings on the map
**
** Version : $Id: graphicalBuilding.cpp,v 1.13 2007/09/09 16:33:39 lusum Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 26/08/2000
**
** 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.
**
****************************************************************/

#include "graphicalBuilding.h"

// generic include files
// include files for QT
#include <QRectF>
// application specific includes
#include "conf.h"

#include "libCommon/attalSettings.h"
#include "libCommon/genericPlayer.h"
#include "libCommon/log.h"
#include "libCommon/dataTheme.h"

#include "libClient/imageTheme.h"

/** rtti number for GraphicalLord class */
const int GraphicalBuilding::RTTI = Type;

//
// ----- GraphicalBuilding -----
//

/** add comments here */
GraphicalBuilding::GraphicalBuilding( QGraphicsScene * canvas )
	: AttalSprite( ImageTheme.buildings[ 0 ], canvas )
{
 	setFrame( 0 );
	setAnimated( true );
	setZValue( CAN_BUILDING );
	_frame = 0;
	_nbFrame = 1;
	_freq = 1;
	_clock = 0;
	
	_flag = new Flag( canvas );
	_flag->hide();
}

GraphicalBuilding::GraphicalBuilding( QList<QPixmap> * array, QGraphicsScene * canvas )
	: AttalSprite( array, canvas )
{
 	setFrame( 0 );
	setZValue( CAN_BUILDING );
	_frame = 0;
	_nbFrame = 1;
	_freq = 1;
	_clock = 0;
	
	_flag = new Flag( canvas );
	_flag->hide();
}

GraphicalBuilding::~GraphicalBuilding()
{
	if( _flag ) {
		delete _flag;
	}
}


void GraphicalBuilding::setPosition( GenericCell * cell, int offsetRow, int offsetCol )
{
  TRACE("void GraphicalBuilding::setPosition( GenericCell * cell row %d, col %d, int offsetRow %d, int offsetCol %d )", cell->getRow(), cell->getCol(), offsetRow, offsetCol);

	setPos( ( cell->getCol() + offsetCol ) * DataTheme.tiles.getWidth() ,
		( cell->getRow() + offsetRow + 1 ) * DataTheme.tiles.getHeight() - boundingRect().height());
	if( _flag ) {
		_flag->setPos( ( cell->getCol() + offsetCol ) * DataTheme.tiles.getWidth() ,
			( cell->getRow() + offsetRow + 1 ) * DataTheme.tiles.getHeight() - boundingRect().height() );
		_flag->setZValue( CAN_LORD + cell->getRow() + 1 );
		_flag->hide();
	}
}

void GraphicalBuilding::advance( int /*stage*/ )
{
	_clock++;
	if( _clock == _freq ) {
		_clock = 0;
		_frame++;
		if( _frame == _nbFrame ) {
			_frame = 0;
		}
		setFrame( _frame );
	}
}

QPixmap GraphicalBuilding::imageAdvanced() 
{
	/// logDD("imageAdvanced");
	return image();
}

void GraphicalBuilding::setType( int type )
{
	setSequence( ImageTheme.buildings[ type ] );
	setFrame( 0 );
}

void GraphicalBuilding::setAnimation( int nbFrame, int freq )
{
	_nbFrame = nbFrame;
	_freq = freq;
	if( _nbFrame > 1 ) {
		setAnimated( true );
	} else {
		setAnimated( false );
	}
}

void GraphicalBuilding::setOwner( GenericPlayer * player )
{
	if( player ) {
		_flag->show();
		_flag->setOwner( player );
	} else {
		_flag->hide();
	}
}

int GraphicalBuilding::type() const
{
	// Enable the use of qgraphicsitem_cast with this item.
	return Type;
}

//
// ----- GraphicalBase -----
//

GraphicalBase::GraphicalBase( QGraphicsScene * canvas )
	: GraphicalBuilding( ImageTheme.bases, canvas )
{
 	setFrame( 0 );
	setZValue( CAN_BUILDING );
}

void GraphicalBase::setRace( int race )
{
	setFrame( race );
}