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
|
/****************************************************************
**
** Attal : Lords of Doom
**
** graphicalLord.cpp
** draw a hero on the map
**
** Version : $Id: graphicalLord.cpp,v 1.26 2008/04/10 20:11:57 lusum Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 09/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 "graphicalLord.h"
// generic include files
// include files for QT
#include <QColor>
#include <QRect>
#include <QPixmap>
// application specific include
#include "conf.h"
#include "libCommon/genericPlayer.h"
#include "libCommon/log.h"
#include "libCommon/dataTheme.h"
#include "libClient/imageTheme.h"
/** rtti number for GraphicalLord class */
const int GraphicalLord::RTTI = Type;
GraphicalLord::GraphicalLord( QGraphicsScene * canvas )
: AttalSprite( ImageTheme.lords, canvas )
{
setFrame( 0 );
setZValue( CAN_LORD );
setSequence( ImageTheme.lords );
_flag = new Flag( canvas );
}
GraphicalLord::~GraphicalLord()
{
if( _flag ) {
delete _flag;
}
}
/** set the hero on the cell */
void GraphicalLord::setCell( GenericCell *cell )
{
if( cell ) {
TRACE("GraphicalLord::setCell");
setPos( cell->getCol() * DataTheme.tiles.getWidth() , (cell->getRow() + 1) * DataTheme.tiles.getHeight() - boundingRect().height() );
if( _flag ) {
_flag->setPos( cell->getCol() * DataTheme.tiles.getWidth() , (cell->getRow() + 1) * DataTheme.tiles.getHeight() - boundingRect().height() );
_flag->setZValue( CAN_LORD + cell->getRow() + 1 );
}
setZValue( CAN_LORD + cell->getRow() );
setVisible(true);
} else {
setVisible(false);
}
}
void GraphicalLord::setVisible( bool state )
{
AttalSprite::setVisible( state );
if( _flag ) {
_flag->setVisible( state );
}
}
void GraphicalLord::advance( int /*stage*/ )
{
/// XXX: TODO
//logEE( "not yet implemented" );
}
void GraphicalLord::setOwner( GenericPlayer * player )
{
_flag->setOwner( player );
_imabk = image().toImage();
}
void GraphicalLord::highlight( bool state)
{
if( state ) {
setFrame(1);
} else {
setFrame(0);
}
}
/*
void GraphicalLord::setColor( QColor color )
{
QImage ima = image()->toImage();
uint *p;
for( int i = 0; i < 8; i++ )
for( int j = 0; j < 8; j++ ) {
p = (uint *)ima.scanLine(i) + j;
*p = color.rgb();
}
image()->convertFromImage( ima );
}*/
QPixmap GraphicalLord::imageAdvanced()
{
return image();
}
int GraphicalLord::type() const
{
// Enable the use of qgraphicsitem_cast with this item.
return Type;
}
|