2011-12-14 00:23:17 +03:00
# include "StdInc.h"
2009-05-20 12:02:50 +03:00
# include "CCastleInterface.h"
2011-12-14 00:23:17 +03:00
2009-05-20 13:08:56 +03:00
# include "../CCallback.h"
2010-12-20 23:22:53 +02:00
# include "../lib/CArtHandler.h"
# include "../lib/CBuildingHandler.h"
2011-03-22 15:19:07 +02:00
# include "../lib/CCreatureHandler.h"
2010-12-20 23:22:53 +02:00
# include "../lib/CGeneralTextHandler.h"
2012-09-05 15:49:23 +03:00
# include "../lib/CModHandler.h"
2010-12-20 23:22:53 +02:00
# include "../lib/CObjectHandler.h"
# include "../lib/CSpellHandler.h"
# include "../lib/CTownHandler.h"
2011-03-22 15:19:07 +02:00
# include "CAdvmapInterface.h"
# include "CAnimation.h"
# include "CBitmapHandler.h"
# include "CDefHandler.h"
# include "CGameInfo.h"
# include "CHeroWindow.h"
# include "CMessage.h"
2010-12-20 23:22:53 +02:00
# include "CMusicHandler.h"
2011-03-22 15:19:07 +02:00
# include "CPlayerInterface.h"
# include "Graphics.h"
2013-04-07 14:52:07 +03:00
# include "gui/SDL_Extensions.h"
2011-12-14 00:23:17 +03:00
# include "../lib/GameConstants.h"
2013-04-07 14:52:07 +03:00
# include "gui/CGuiHandler.h"
# include "gui/CIntObjectClasses.h"
2011-03-22 15:19:07 +02:00
2008-08-17 12:11:16 +03:00
using namespace boost : : assign ;
2009-04-15 17:03:31 +03:00
/*
* CCastleInterface . cpp , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
2013-05-30 21:43:45 +03:00
const CBuilding * CBuildingRect : : getBuilding ( )
{
2013-06-02 21:57:58 +03:00
if ( ! str - > building )
2013-12-02 14:58:02 +03:00
return nullptr ;
if ( str - > hiddenUpgrade ) // hidden upgrades, e.g. hordes - return base (dwelling for hordes)
return town - > town - > buildings . at ( str - > building - > getBase ( ) ) ;
return str - > building ;
}
2013-05-30 21:43:45 +03:00
2012-09-02 13:33:41 +03:00
CBuildingRect : : CBuildingRect ( CCastleBuildings * Par , const CGTownInstance * Town , const CStructure * Str )
2011-02-06 19:26:27 +02:00
: CShowableAnim ( 0 , 0 , Str - > defName , CShowableAnim : : BASE | CShowableAnim : : USE_RLE ) ,
2011-04-07 20:54:08 +03:00
parent ( Par ) ,
town ( Town ) ,
str ( Str ) ,
stateCounter ( 80 )
2008-08-02 18:08:03 +03:00
{
2011-04-07 20:54:08 +03:00
recActions = ACTIVATE | DEACTIVATE | DISPOSE | SHARE_POS ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ;
2011-03-22 15:19:07 +02:00
pos . x + = str - > pos . x ;
pos . y + = str - > pos . y ;
2010-11-15 17:15:00 +02:00
2011-02-06 19:26:27 +02:00
if ( ! str - > borderName . empty ( ) )
border = BitmapHandler : : loadBitmap ( str - > borderName , true ) ;
else
2013-06-26 14:18:27 +03:00
border = nullptr ;
2009-10-13 07:07:26 +03:00
2011-02-06 19:26:27 +02:00
if ( ! str - > areaName . empty ( ) )
area = BitmapHandler : : loadBitmap ( str - > areaName ) ;
else
2013-06-26 14:18:27 +03:00
area = nullptr ;
2008-01-19 13:55:04 +02:00
}
CBuildingRect : : ~ CBuildingRect ( )
{
2011-03-22 15:19:07 +02:00
SDL_FreeSurface ( border ) ;
SDL_FreeSurface ( area ) ;
2008-01-19 13:55:04 +02:00
}
2008-03-23 03:01:17 +02:00
2008-01-19 13:55:04 +02:00
bool CBuildingRect : : operator < ( const CBuildingRect & p2 ) const
{
2012-09-05 15:49:23 +03:00
return ( str - > pos . z ) < ( p2 . str - > pos . z ) ;
2008-01-19 13:55:04 +02:00
}
2011-03-22 15:19:07 +02:00
2008-01-20 18:24:03 +02:00
void CBuildingRect : : hover ( bool on )
2008-01-19 13:55:04 +02:00
{
2008-01-24 00:15:33 +02:00
if ( on )
2008-01-20 18:24:03 +02:00
{
2011-02-06 19:26:27 +02:00
if ( ! ( active & MOVE ) )
2012-06-02 18:16:54 +03:00
addUsedEvents ( MOVE ) ;
2008-01-24 00:15:33 +02:00
}
2008-08-02 18:08:03 +03:00
else
2008-01-24 00:15:33 +02:00
{
2011-02-06 19:26:27 +02:00
if ( active & MOVE )
2012-06-02 18:16:54 +03:00
removeUsedEvents ( MOVE ) ;
2011-02-06 19:26:27 +02:00
2011-03-22 15:19:07 +02:00
if ( parent - > selectedBuilding = = this )
2008-01-27 22:37:10 +02:00
{
2013-06-26 14:18:27 +03:00
parent - > selectedBuilding = nullptr ;
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2008-01-27 22:37:10 +02:00
}
2008-01-20 18:24:03 +02:00
}
2008-01-19 13:55:04 +02:00
}
2010-11-15 17:15:00 +02:00
2009-08-11 19:05:33 +03:00
void CBuildingRect : : clickLeft ( tribool down , bool previousState )
2008-01-19 13:55:04 +02:00
{
2013-05-30 21:43:45 +03:00
if ( previousState & & ! down & & area & & ( parent - > selectedBuilding = = this ) & & getBuilding ( ) )
2010-11-15 17:15:00 +02:00
if ( ! CSDL_Ext : : isTransparent ( area , GH . current - > motion . x - pos . x , GH . current - > motion . y - pos . y ) ) //inside building image
2013-05-30 21:43:45 +03:00
parent - > buildingClicked ( getBuilding ( ) - > bid ) ;
2008-01-19 13:55:04 +02:00
}
2010-11-15 17:15:00 +02:00
2009-08-11 19:05:33 +03:00
void CBuildingRect : : clickRight ( tribool down , bool previousState )
2008-01-19 13:55:04 +02:00
{
2013-05-30 21:43:45 +03:00
if ( ( ! area ) | | ( ! ( ( bool ) down ) ) | | ( this ! = parent - > selectedBuilding ) | | getBuilding ( ) = = nullptr )
2008-03-06 20:54:35 +02:00
return ;
2013-12-02 14:58:02 +03:00
if ( ! CSDL_Ext : : isTransparent ( area , GH . current - > motion . x - pos . x , GH . current - > motion . y - pos . y ) ) //inside building image
{
BuildingID bid = getBuilding ( ) - > bid ;
const CBuilding * bld = town - > town - > buildings . at ( bid ) ;
if ( bid < BuildingID : : DWELL_FIRST )
{
CRClickPopup : : createAndPush ( CInfoWindow : : genText ( bld - > Name ( ) , bld - > Description ( ) ) ,
2013-04-21 15:49:26 +03:00
new CComponent ( CComponent : : building , bld - > town - > faction - > index , bld - > bid ) ) ;
2011-04-07 20:54:08 +03:00
}
else
{
2013-02-11 02:24:57 +03:00
int level = ( bid - BuildingID : : DWELL_FIRST ) % GameConstants : : CREATURES_PER_TOWN ;
2011-04-07 20:54:08 +03:00
GH . pushInt ( new CDwellingInfoBox ( parent - > pos . x + parent - > pos . w / 2 , parent - > pos . y + parent - > pos . h / 2 , town , level ) ) ;
}
2008-03-06 20:54:35 +02:00
}
2008-01-19 13:55:04 +02:00
}
2010-06-30 22:27:35 +03:00
2011-12-14 00:23:17 +03:00
SDL_Color multiplyColors ( const SDL_Color & b , const SDL_Color & a , double f )
2011-03-22 15:19:07 +02:00
{
SDL_Color ret ;
ret . r = a . r * f + b . r * ( 1 - f ) ;
ret . g = a . g * f + b . g * ( 1 - f ) ;
ret . b = a . b * f + b . b * ( 1 - f ) ;
return ret ;
}
2011-12-22 16:05:19 +03:00
void CBuildingRect : : show ( SDL_Surface * to )
2010-11-15 17:15:00 +02:00
{
2011-12-14 00:23:17 +03:00
const ui32 stageDelay = 16 ;
2011-03-22 15:19:07 +02:00
2011-12-14 00:23:17 +03:00
const ui32 S1_TRANSP = 16 ; //0.5 sec building appear 0->100 transparency
const ui32 S2_WHITE_B = 32 ; //0.5 sec border glows from white to yellow
const ui32 S3_YELLOW_B = 48 ; //0.5 sec border glows from yellow to normal
const ui32 BUILDED = 80 ; // 1 sec delay, nothing happens
2011-03-22 15:19:07 +02:00
if ( stateCounter < S1_TRANSP )
{
setAlpha ( 255 * stateCounter / stageDelay ) ;
CShowableAnim : : show ( to ) ;
}
else
{
setAlpha ( 255 ) ;
CShowableAnim : : show ( to ) ;
}
if ( border & & stateCounter > S1_TRANSP )
{
if ( stateCounter = = BUILDED )
{
if ( parent - > selectedBuilding = = this )
blitAtLoc ( border , 0 , 0 , to ) ;
return ;
}
2013-12-08 13:07:06 +03:00
if ( border - > format - > palette ! = nullptr )
{
// key colors in glowing border
SDL_Color c1 = { 200 , 200 , 200 , 255 } ;
SDL_Color c2 = { 120 , 100 , 60 , 255 } ;
SDL_Color c3 = { 200 , 180 , 110 , 255 } ;
ui32 colorID = SDL_MapRGB ( border - > format , c3 . r , c3 . g , c3 . b ) ;
SDL_Color oldColor = border - > format - > palette - > colors [ colorID ] ;
SDL_Color newColor ;
if ( stateCounter < S2_WHITE_B )
newColor = multiplyColors ( c1 , c2 , static_cast < double > ( stateCounter % stageDelay ) / stageDelay ) ;
else
if ( stateCounter < S3_YELLOW_B )
newColor = multiplyColors ( c2 , c3 , static_cast < double > ( stateCounter % stageDelay ) / stageDelay ) ;
else
newColor = oldColor ;
SDL_SetColors ( border , & newColor , colorID , 1 ) ;
blitAtLoc ( border , 0 , 0 , to ) ;
SDL_SetColors ( border , & oldColor , colorID , 1 ) ;
}
2011-03-22 15:19:07 +02:00
}
if ( stateCounter < BUILDED )
stateCounter + + ;
2010-11-15 17:15:00 +02:00
}
2011-12-22 16:05:19 +03:00
void CBuildingRect : : showAll ( SDL_Surface * to )
2010-11-15 17:15:00 +02:00
{
2011-04-07 20:54:08 +03:00
if ( stateCounter = = 0 )
2011-02-20 11:24:53 +02:00
return ;
2011-03-22 15:19:07 +02:00
2011-02-06 19:26:27 +02:00
CShowableAnim : : showAll ( to ) ;
2011-04-07 20:54:08 +03:00
if ( ! active & & parent - > selectedBuilding = = this & & border )
2011-02-06 19:26:27 +02:00
blitAtLoc ( border , 0 , 0 , to ) ;
2010-11-15 17:15:00 +02:00
}
2013-05-30 21:43:45 +03:00
std : : string CBuildingRect : : getSubtitle ( ) //hover text for building
2010-06-30 22:27:35 +03:00
{
2013-05-30 21:43:45 +03:00
if ( ! getBuilding ( ) )
2012-09-05 15:49:23 +03:00
return " " ;
2013-12-02 14:58:02 +03:00
int bid = getBuilding ( ) - > bid ;
if ( bid < 30 ) //non-dwellings - only buiding name
return town - > town - > buildings . at ( getBuilding ( ) - > bid ) - > Name ( ) ;
else //dwellings - recruit %creature%
{
auto & availableCreatures = town - > creatures [ ( bid - 30 ) % GameConstants : : CREATURES_PER_TOWN ] . second ;
if ( availableCreatures . size ( ) )
{
int creaID = availableCreatures . back ( ) ; //taking last of available creatures
return CGI - > generaltexth - > allTexts [ 16 ] + " " + CGI - > creh - > creatures . at ( creaID ) - > namePl ;
}
else
{
2013-04-09 17:31:36 +03:00
logGlobal - > warnStream ( ) < < " Problem: dwelling with id " < < bid < < " offers no creatures! " ;
2013-02-07 18:27:22 +03:00
return " #ERROR# " ;
}
2010-06-30 22:27:35 +03:00
}
}
2008-09-25 17:09:31 +03:00
void CBuildingRect : : mouseMoved ( const SDL_MouseMotionEvent & sEvent )
2008-01-24 00:15:33 +02:00
{
2009-05-30 19:00:26 +03:00
if ( area & & isItIn ( & pos , sEvent . x , sEvent . y ) )
2008-01-24 00:15:33 +02:00
{
2013-04-03 19:28:50 +03:00
if ( CSDL_Ext : : isTransparent ( area , GH . current - > motion . x - pos . x , GH . current - > motion . y - pos . y ) ) //hovered pixel is inside this building
2008-01-24 00:15:33 +02:00
{
2011-03-22 15:19:07 +02:00
if ( parent - > selectedBuilding = = this )
2008-01-27 22:37:10 +02:00
{
2013-06-26 14:18:27 +03:00
parent - > selectedBuilding = nullptr ;
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2008-01-27 22:37:10 +02:00
}
2008-01-24 00:15:33 +02:00
}
2008-03-15 19:48:05 +02:00
else //inside the area of this building
2008-01-24 00:15:33 +02:00
{
2011-03-22 15:19:07 +02:00
if ( ! parent - > selectedBuilding //no building hovered
| | ( * parent - > selectedBuilding ) < ( * this ) ) //or we are on top
2008-01-24 00:15:33 +02:00
{
2011-03-22 15:19:07 +02:00
parent - > selectedBuilding = this ;
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( getSubtitle ( ) ) ;
2008-01-24 00:15:33 +02:00
}
}
}
}
2010-11-15 17:15:00 +02:00
2012-06-15 20:08:19 +03:00
CDwellingInfoBox : : CDwellingInfoBox ( int centerX , int centerY , const CGTownInstance * Town , int level ) :
CWindowObject ( RCLICK_POPUP | PLAYER_COLORED , " CRTOINFO " , Point ( centerX , centerY ) )
2013-12-02 14:58:02 +03:00
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
const CCreature * creature = CGI - > creh - > creatures . at ( Town - > creatures . at ( level ) . second . back ( ) ) ;
title = new CLabel ( 80 , 30 , FONT_SMALL , CENTER , Colors : : WHITE , creature - > namePl ) ;
animation = new CCreaturePic ( 30 , 44 , creature , true , true ) ;
2014-03-07 16:21:09 +03:00
2013-12-02 14:58:02 +03:00
std : : string text = boost : : lexical_cast < std : : string > ( Town - > creatures . at ( level ) . first ) ;
available = new CLabel ( 80 , 190 , FONT_SMALL , CENTER , Colors : : WHITE , CGI - > generaltexth - > allTexts [ 217 ] + text ) ;
costPerTroop = new CLabel ( 80 , 227 , FONT_SMALL , CENTER , Colors : : WHITE , CGI - > generaltexth - > allTexts [ 346 ] ) ;
2014-03-07 16:21:09 +03:00
2011-12-14 00:23:17 +03:00
for ( int i = 0 ; i < GameConstants : : RESOURCE_QUANTITY ; i + + )
2011-04-07 20:54:08 +03:00
{
if ( creature - > cost [ i ] )
{
2012-05-13 18:04:21 +03:00
resPicture . push_back ( new CAnimImage ( " RESOURCE " , i , 0 , 0 , 0 ) ) ;
2012-11-11 15:23:31 +03:00
resAmount . push_back ( new CLabel ( 0 , 0 , FONT_SMALL , CENTER , Colors : : WHITE , boost : : lexical_cast < std : : string > ( creature - > cost [ i ] ) ) ) ;
2011-04-07 20:54:08 +03:00
}
}
int posY = 238 ;
2011-09-23 18:58:18 +03:00
int posX = pos . w / 2 - resAmount . size ( ) * 25 + 5 ;
2011-04-07 20:54:08 +03:00
for ( size_t i = 0 ; i < resAmount . size ( ) ; i + + )
{
2011-12-22 16:05:19 +03:00
resPicture [ i ] - > moveBy ( Point ( posX , posY ) ) ;
resAmount [ i ] - > moveBy ( Point ( posX + 16 , posY + 43 ) ) ;
2011-09-23 18:58:18 +03:00
posX + = 50 ;
2011-04-07 20:54:08 +03:00
}
}
2008-08-16 11:47:41 +03:00
void CHeroGSlot : : hover ( bool on )
{
2010-11-15 17:15:00 +02:00
if ( ! on )
2009-12-23 03:46:15 +02:00
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-12-23 03:46:15 +02:00
return ;
}
2011-04-30 21:16:58 +03:00
CHeroGSlot * other = upg ? owner - > garrisonedHero : owner - > visitingHero ;
2008-08-16 11:47:41 +03:00
std : : string temp ;
if ( hero )
{
2012-05-13 18:04:21 +03:00
if ( selection ) //view NNN
2008-08-16 11:47:41 +03:00
{
2008-12-22 19:48:41 +02:00
temp = CGI - > generaltexth - > tcommands [ 4 ] ;
2008-08-16 11:47:41 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , hero - > name ) ;
}
2012-05-13 18:04:21 +03:00
else if ( other - > hero & & other - > selection ) //exchange
2008-08-16 11:47:41 +03:00
{
2008-12-22 19:48:41 +02:00
temp = CGI - > generaltexth - > tcommands [ 7 ] ;
2008-08-16 11:47:41 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , hero - > name ) ;
boost : : algorithm : : replace_first ( temp , " %s " , other - > hero - > name ) ;
}
else // select NNN (in ZZZ)
{
if ( upg ) //down - visiting
{
2008-12-22 19:48:41 +02:00
temp = CGI - > generaltexth - > tcommands [ 32 ] ;
2008-08-16 11:47:41 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , hero - > name ) ;
}
else //up - garrison
{
2008-12-22 19:48:41 +02:00
temp = CGI - > generaltexth - > tcommands [ 12 ] ;
2008-08-16 11:47:41 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , hero - > name ) ;
}
}
}
else //we are empty slot
{
2012-05-13 18:04:21 +03:00
if ( other - > selection & & other - > hero ) //move NNNN
2008-08-16 11:47:41 +03:00
{
2008-12-22 19:48:41 +02:00
temp = CGI - > generaltexth - > tcommands [ 6 ] ;
2008-08-16 11:47:41 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , other - > hero - > name ) ;
}
else //empty
{
temp = CGI - > generaltexth - > allTexts [ 507 ] ;
}
}
if ( temp . size ( ) )
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( temp ) ;
2008-08-16 11:47:41 +03:00
}
2009-04-14 15:47:09 +03:00
2009-08-11 19:05:33 +03:00
void CHeroGSlot : : clickLeft ( tribool down , bool previousState )
2008-08-16 11:47:41 +03:00
{
2011-04-30 21:16:58 +03:00
CHeroGSlot * other = upg ? owner - > garrisonedHero : owner - > visitingHero ;
2008-08-16 11:47:41 +03:00
if ( ! down )
{
2012-12-11 15:12:46 +03:00
owner - > garr - > setSplittingMode ( false ) ;
owner - > garr - > selectSlot ( nullptr ) ;
2009-09-09 09:04:42 +03:00
2012-05-13 18:04:21 +03:00
if ( hero & & selection )
2008-08-16 11:47:41 +03:00
{
2009-09-09 09:04:42 +03:00
setHighlight ( false ) ;
2008-08-16 11:47:41 +03:00
LOCPLINT - > openHeroWindow ( hero ) ;
}
2012-05-13 18:04:21 +03:00
else if ( other - > hero & & other - > selection )
2008-08-25 13:25:16 +03:00
{
2009-04-09 18:05:20 +03:00
bool allow = true ;
2009-10-23 06:07:03 +03:00
if ( upg ) //moving hero out of town - check if it is allowed
2009-04-09 18:05:20 +03:00
{
if ( ! hero & & LOCPLINT - > cb - > howManyHeroes ( false ) > = 8 )
{
std : : string tmp = CGI - > generaltexth - > allTexts [ 18 ] ; //You already have %d adventuring heroes under your command.
boost : : algorithm : : replace_first ( tmp , " %d " , boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > howManyHeroes ( false ) ) ) ;
2011-12-22 16:05:19 +03:00
LOCPLINT - > showInfoDialog ( tmp , std : : vector < CComponent * > ( ) , soundBase : : sound_todo ) ;
2009-04-09 18:05:20 +03:00
allow = false ;
}
2010-05-02 21:20:26 +03:00
else if ( ! other - > hero - > stacksCount ( ) ) //hero has no creatures - strange, but if we have appropriate error message...
2009-04-09 18:05:20 +03:00
{
2011-12-22 16:05:19 +03:00
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 19 ] , std : : vector < CComponent * > ( ) , soundBase : : sound_todo ) ; //This hero has no creatures. A hero must have creatures before he can brave the dangers of the countryside.
2009-04-09 18:05:20 +03:00
allow = false ;
}
}
2009-09-09 09:04:42 +03:00
setHighlight ( false ) ;
other - > setHighlight ( false ) ;
2009-04-09 18:05:20 +03:00
if ( allow )
2012-07-21 23:16:54 +03:00
owner - > swapArmies ( ) ;
2008-08-25 13:25:16 +03:00
}
2008-08-16 11:47:41 +03:00
else if ( hero )
{
2009-09-09 09:04:42 +03:00
setHighlight ( true ) ;
2012-12-11 15:12:46 +03:00
owner - > garr - > selectSlot ( nullptr ) ;
2011-04-30 21:16:58 +03:00
showAll ( screen2 ) ;
2008-08-16 11:47:41 +03:00
}
hover ( false ) ; hover ( true ) ; //refresh statusbar
}
}
2009-04-14 15:47:09 +03:00
2008-08-16 11:47:41 +03:00
void CHeroGSlot : : deactivate ( )
{
2012-06-02 18:16:54 +03:00
vstd : : clear_pointer ( selection ) ;
2010-11-15 17:15:00 +02:00
CIntObject : : deactivate ( ) ;
2008-08-16 11:47:41 +03:00
}
2009-04-14 15:47:09 +03:00
2011-04-30 21:16:58 +03:00
CHeroGSlot : : CHeroGSlot ( int x , int y , int updown , const CGHeroInstance * h , HeroSlots * Owner )
2008-08-16 11:47:41 +03:00
{
owner = Owner ;
2011-04-07 20:54:08 +03:00
pos . x + = x ;
pos . y + = y ;
2008-08-16 11:47:41 +03:00
pos . w = 58 ;
pos . h = 64 ;
upg = updown ;
2012-05-13 18:04:21 +03:00
selection = nullptr ;
image = nullptr ;
set ( h ) ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | HOVER ) ;
2008-08-16 11:47:41 +03:00
}
2009-04-14 15:47:09 +03:00
2008-08-16 11:47:41 +03:00
CHeroGSlot : : ~ CHeroGSlot ( )
{
}
2009-04-14 15:47:09 +03:00
2009-09-09 09:04:42 +03:00
void CHeroGSlot : : setHighlight ( bool on )
{
2012-05-13 18:04:21 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
vstd : : clear_pointer ( selection ) ;
2012-05-13 18:04:21 +03:00
if ( on )
selection = new CAnimImage ( " TWCRPORT " , 1 , 0 ) ;
2011-04-30 21:16:58 +03:00
if ( owner - > garrisonedHero - > hero & & owner - > visitingHero - > hero ) //two heroes in town
2009-09-09 09:04:42 +03:00
{
2013-06-29 16:05:48 +03:00
for ( auto & elem : owner - > garr - > splitButtons ) //splitting enabled when slot higlighted
elem - > block ( ! on ) ;
2009-09-09 09:04:42 +03:00
}
}
2012-05-13 18:04:21 +03:00
void CHeroGSlot : : set ( const CGHeroInstance * newHero )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
if ( image )
2012-06-02 18:16:54 +03:00
delete image ;
2012-05-13 18:04:21 +03:00
hero = newHero ;
if ( newHero )
image = new CAnimImage ( " PortraitsLarge " , newHero - > portrait , 0 , 0 , 0 ) ;
else if ( ! upg & & owner - > showEmpty ) //up garrison
2013-03-03 20:06:03 +03:00
image = new CAnimImage ( " CREST58 " , LOCPLINT - > castleInt - > town - > getOwner ( ) . getNum ( ) , 0 , 0 , 0 ) ;
2014-03-07 16:21:09 +03:00
else
2013-06-26 14:18:27 +03:00
image = nullptr ;
2012-05-13 18:04:21 +03:00
}
2011-03-22 15:19:07 +02:00
template < class ptr >
2008-01-15 23:38:01 +02:00
class SORTHELP
{
public :
bool operator ( )
2011-03-22 15:19:07 +02:00
( const ptr * a ,
const ptr * b )
2008-01-15 23:38:01 +02:00
{
2008-01-19 13:55:04 +02:00
return ( * a ) < ( * b ) ;
2008-01-15 23:38:01 +02:00
}
2011-03-22 15:19:07 +02:00
} ;
2008-01-09 19:21:31 +02:00
2011-03-22 15:19:07 +02:00
SORTHELP < CBuildingRect > buildSorter ;
2012-09-02 13:33:41 +03:00
SORTHELP < CStructure > structSorter ;
2008-04-19 19:15:04 +03:00
2011-03-22 15:19:07 +02:00
CCastleBuildings : : CCastleBuildings ( const CGTownInstance * Town ) :
town ( Town ) ,
2013-06-26 14:18:27 +03:00
selectedBuilding ( nullptr )
2011-03-22 15:19:07 +02:00
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2008-04-19 19:15:04 +03:00
2012-09-05 15:49:23 +03:00
background = new CPicture ( town - > town - > clientInfo . townBackground ) ;
2011-03-22 15:19:07 +02:00
pos . w = background - > pos . w ;
pos . h = background - > pos . h ;
2012-09-05 15:49:23 +03:00
recreate ( ) ;
}
void CCastleBuildings : : recreate ( )
{
selectedBuilding = nullptr ;
OBJ_CONSTRUCTION_CAPTURING_ALL ;
//clear existing buildings
2013-06-29 16:05:48 +03:00
for ( auto build : buildings )
2012-09-05 15:49:23 +03:00
delete build ;
buildings . clear ( ) ;
groups . clear ( ) ;
2011-03-22 15:19:07 +02:00
//Generate buildings list
2008-01-31 23:35:30 +02:00
2012-09-05 15:49:23 +03:00
auto buildingsCopy = town - > builtBuildings ; // a bit modified copy of built buildings
2009-07-20 11:18:33 +03:00
2013-02-11 02:24:57 +03:00
if ( vstd : : contains ( town - > builtBuildings , BuildingID : : SHIPYARD ) )
2011-03-22 15:19:07 +02:00
{
std : : vector < const CGObjectInstance * > vobjs = LOCPLINT - > cb - > getVisitableObjs ( town - > bestLocation ( ) ) ;
2012-09-05 15:49:23 +03:00
//there is visitable obj at shipyard output tile and it's a boat or hero (on boat)
2012-09-23 21:01:04 +03:00
if ( ! vobjs . empty ( ) & & ( vobjs . front ( ) - > ID = = Obj : : BOAT | | vobjs . front ( ) - > ID = = Obj : : HERO ) )
2011-03-22 15:19:07 +02:00
{
2013-02-11 02:24:57 +03:00
buildingsCopy . insert ( BuildingID : : SHIP ) ;
2011-03-22 15:19:07 +02:00
}
}
2009-04-14 15:47:09 +03:00
2013-06-29 16:05:48 +03:00
for ( const CStructure * structure : town - > town - > clientInfo . structures )
2008-01-15 23:38:01 +02:00
{
2012-09-05 15:49:23 +03:00
if ( ! structure - > building )
{
buildings . push_back ( new CBuildingRect ( this , town , structure ) ) ;
2011-03-22 15:19:07 +02:00
continue ;
2012-09-05 15:49:23 +03:00
}
if ( vstd : : contains ( buildingsCopy , structure - > building - > bid ) )
2011-11-01 15:58:01 +03:00
{
2012-09-05 15:49:23 +03:00
groups [ structure - > building - > getBase ( ) ] . push_back ( structure ) ;
2011-11-01 15:58:01 +03:00
}
2012-09-05 15:49:23 +03:00
}
2013-12-02 14:58:02 +03:00
for ( auto & entry : groups )
{
const CBuilding * build = town - > town - > buildings . at ( entry . first ) ;
const CStructure * toAdd = * boost : : max_element ( entry . second , [ = ] ( const CStructure * a , const CStructure * b )
{
2012-09-05 15:49:23 +03:00
return build - > getDistance ( a - > building - > bid )
< build - > getDistance ( b - > building - > bid ) ;
} ) ;
2011-11-01 15:58:01 +03:00
2012-09-05 15:49:23 +03:00
buildings . push_back ( new CBuildingRect ( this , town , toAdd ) ) ;
2008-01-15 23:38:01 +02:00
}
2012-09-05 15:49:23 +03:00
boost : : sort ( buildings , [ ] ( const CBuildingRect * a , const CBuildingRect * b )
{
return * a < * b ;
} ) ;
}
CCastleBuildings : : ~ CCastleBuildings ( )
{
2011-03-22 15:19:07 +02:00
}
2013-12-02 14:58:02 +03:00
void CCastleBuildings : : addBuilding ( BuildingID building )
{
//FIXME: implement faster method without complete recreation of town
BuildingID base = town - > town - > buildings . at ( building ) - > getBase ( ) ;
recreate ( ) ;
auto & structures = groups . at ( base ) ;
for ( CBuildingRect * rect : buildings )
{
2012-09-05 15:49:23 +03:00
if ( vstd : : contains ( structures , rect - > str ) )
2011-03-22 15:19:07 +02:00
{
2012-09-05 15:49:23 +03:00
//reset animation
if ( structures . size ( ) = = 1 )
rect - > stateCounter = 0 ; // transparency -> fully visible stage
else
rect - > stateCounter = 16 ; // already in fully visible stage
break ;
2011-03-22 15:19:07 +02:00
}
2009-12-23 03:46:15 +02:00
}
2008-01-09 19:21:31 +02:00
}
2009-04-14 15:47:09 +03:00
2013-02-11 22:11:34 +03:00
void CCastleBuildings : : removeBuilding ( BuildingID building )
2008-01-09 19:21:31 +02:00
{
2012-09-05 15:49:23 +03:00
//FIXME: implement faster method without complete recreation of town
recreate ( ) ;
2011-03-22 15:19:07 +02:00
}
2011-12-22 16:05:19 +03:00
void CCastleBuildings : : show ( SDL_Surface * to )
2011-03-22 15:19:07 +02:00
{
2011-04-07 20:54:08 +03:00
CIntObject : : show ( to ) ;
2013-06-29 16:05:48 +03:00
for ( CBuildingRect * str : buildings )
2012-09-05 15:49:23 +03:00
str - > show ( to ) ;
2011-03-22 15:19:07 +02:00
}
2011-12-22 16:05:19 +03:00
void CCastleBuildings : : showAll ( SDL_Surface * to )
2011-03-22 15:19:07 +02:00
{
2011-04-07 20:54:08 +03:00
CIntObject : : showAll ( to ) ;
2013-06-29 16:05:48 +03:00
for ( CBuildingRect * str : buildings )
2012-09-05 15:49:23 +03:00
str - > showAll ( to ) ;
2008-01-09 19:21:31 +02:00
}
2009-04-14 15:47:09 +03:00
2011-03-22 15:19:07 +02:00
const CGHeroInstance * CCastleBuildings : : getHero ( )
2008-01-30 00:47:43 +02:00
{
2011-03-22 15:19:07 +02:00
if ( town - > visitingHero )
return town - > visitingHero ;
if ( town - > garrisonHero )
return town - > garrisonHero ;
2013-06-26 14:18:27 +03:00
return nullptr ;
2008-01-30 00:47:43 +02:00
}
2009-04-14 15:47:09 +03:00
2013-02-11 22:11:34 +03:00
void CCastleBuildings : : buildingClicked ( BuildingID building )
2008-03-10 01:06:35 +02:00
{
2013-04-09 17:31:36 +03:00
logGlobal - > traceStream ( ) < < " You've clicked on " < < building ;
2012-09-02 13:33:41 +03:00
const CBuilding * b = town - > town - > buildings . find ( building ) - > second ;
2010-05-26 12:47:53 +03:00
2013-02-11 02:24:57 +03:00
if ( building > = BuildingID : : DWELL_FIRST )
2008-04-04 20:30:53 +03:00
{
2013-02-11 02:24:57 +03:00
enterDwelling ( ( building - BuildingID : : DWELL_FIRST ) % GameConstants : : CREATURES_PER_TOWN ) ;
2008-04-04 20:30:53 +03:00
}
2008-04-20 15:39:33 +03:00
else
2008-03-10 01:06:35 +02:00
{
2008-04-20 15:39:33 +03:00
switch ( building )
{
2013-02-11 02:24:57 +03:00
case BuildingID : : MAGES_GUILD_1 :
case BuildingID : : MAGES_GUILD_2 :
case BuildingID : : MAGES_GUILD_3 :
case BuildingID : : MAGES_GUILD_4 :
case BuildingID : : MAGES_GUILD_5 :
2011-03-22 15:19:07 +02:00
enterMagesGuild ( ) ;
2008-08-20 09:57:53 +03:00
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : TAVERN :
2011-03-22 15:19:07 +02:00
LOCPLINT - > showTavernWindow ( town ) ;
2008-10-26 22:58:34 +02:00
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : SHIPYARD :
2013-07-21 13:08:32 +03:00
if ( town - > shipyardStatus ( ) = = IBoatGenerator : : GOOD )
LOCPLINT - > showShipyardDialog ( town ) ;
2009-07-26 06:33:13 +03:00
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : FORT :
case BuildingID : : CITADEL :
case BuildingID : : CASTLE :
2011-04-07 20:54:08 +03:00
GH . pushInt ( new CFortScreen ( town ) ) ;
2008-08-17 12:11:16 +03:00
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : VILLAGE_HALL :
case BuildingID : : CITY_HALL :
case BuildingID : : TOWN_HALL :
case BuildingID : : CAPITOL :
2011-03-22 15:19:07 +02:00
enterTownHall ( ) ;
break ;
2013-02-11 02:24:57 +03:00
case BuildingID : : MARKETPLACE :
2011-03-22 15:19:07 +02:00
GH . pushInt ( new CMarketplaceWindow ( town , town - > visitingHero ) ) ;
2008-09-07 06:38:37 +03:00
break ;
2009-12-29 15:40:16 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : BLACKSMITH :
2011-03-22 15:19:07 +02:00
enterBlacksmith ( town - > town - > warMachine ) ;
break ;
2013-02-11 02:24:57 +03:00
case BuildingID : : SPECIAL_1 :
2010-01-25 23:25:14 +02:00
switch ( town - > subID )
2008-08-27 13:19:18 +03:00
{
2012-09-05 15:49:23 +03:00
case ETownType : : RAMPART : //Mystic Pond
2011-03-22 15:19:07 +02:00
enterFountain ( building ) ;
break ;
2012-09-05 15:49:23 +03:00
case ETownType : : TOWER :
case ETownType : : DUNGEON : //Artifact Merchant
case ETownType : : CONFLUX :
2011-03-22 15:19:07 +02:00
if ( town - > visitingHero )
2011-12-14 00:23:17 +03:00
GH . pushInt ( new CMarketplaceWindow ( town , town - > visitingHero , EMarketMode : : RESOURCE_ARTIFACT ) ) ;
2011-03-22 15:19:07 +02:00
else
LOCPLINT - > showInfoDialog ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 273 ] ) % b - > Name ( ) ) ) ; //Only visiting heroes may use the %s.
break ;
2010-10-31 21:17:26 +02:00
2010-01-25 23:25:14 +02:00
default :
2011-03-22 15:19:07 +02:00
enterBuilding ( building ) ;
2010-01-25 23:25:14 +02:00
break ;
2008-08-27 13:19:18 +03:00
}
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : SHIP :
2011-03-22 15:19:07 +02:00
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 51 ] ) ; //Cannot build another boat
break ;
2013-02-11 02:24:57 +03:00
case BuildingID : : SPECIAL_2 :
2010-01-25 23:25:14 +02:00
switch ( town - > subID )
{
2012-09-05 15:49:23 +03:00
case ETownType : : RAMPART : //Fountain of Fortune
2011-03-22 15:19:07 +02:00
enterFountain ( building ) ;
break ;
2012-09-05 15:49:23 +03:00
case ETownType : : STRONGHOLD : //Freelancer's Guild
2011-03-22 15:19:07 +02:00
if ( getHero ( ) )
2011-12-14 00:23:17 +03:00
GH . pushInt ( new CMarketplaceWindow ( town , getHero ( ) , EMarketMode : : CREATURE_RESOURCE ) ) ;
2011-03-22 15:19:07 +02:00
else
LOCPLINT - > showInfoDialog ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 273 ] ) % b - > Name ( ) ) ) ; //Only visiting heroes may use the %s.
break ;
2012-09-05 15:49:23 +03:00
case ETownType : : CONFLUX : //Magic University
2011-03-22 15:19:07 +02:00
if ( getHero ( ) )
GH . pushInt ( new CUniversityWindow ( getHero ( ) , town ) ) ;
else
enterBuilding ( building ) ;
break ;
2010-11-15 17:15:00 +02:00
2010-01-25 23:25:14 +02:00
default :
2011-03-22 15:19:07 +02:00
enterBuilding ( building ) ;
break ;
2010-01-25 23:25:14 +02:00
}
break ;
2011-03-22 15:19:07 +02:00
2013-02-11 02:24:57 +03:00
case BuildingID : : SPECIAL_3 :
2009-05-22 02:50:45 +03:00
switch ( town - > subID )
{
2012-09-05 15:49:23 +03:00
case ETownType : : CASTLE : //Brotherhood of sword
2011-03-22 15:19:07 +02:00
LOCPLINT - > showTavernWindow ( town ) ;
break ;
2012-09-05 15:49:23 +03:00
case ETownType : : INFERNO : //Castle Gate
2011-03-22 15:19:07 +02:00
enterCastleGate ( ) ;
break ;
2010-11-15 17:15:00 +02:00
2012-09-05 15:49:23 +03:00
case ETownType : : NECROPOLIS : //Skeleton Transformer
2011-03-22 15:19:07 +02:00
GH . pushInt ( new CTransformerWindow ( getHero ( ) , town ) ) ;
2010-07-03 15:00:53 +03:00
break ;
2010-11-15 17:15:00 +02:00
2012-09-05 15:49:23 +03:00
case ETownType : : DUNGEON : //Portal of Summoning
2011-12-14 00:23:17 +03:00
if ( town - > creatures [ GameConstants : : CREATURES_PER_TOWN ] . second . empty ( ) ) //No creatures
2011-03-22 15:19:07 +02:00
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > tcommands [ 30 ] ) ;
2010-11-15 17:15:00 +02:00
else
2011-12-14 00:23:17 +03:00
enterDwelling ( GameConstants : : CREATURES_PER_TOWN ) ;
2011-03-22 15:19:07 +02:00
break ;
2012-09-05 15:49:23 +03:00
case ETownType : : STRONGHOLD : //Ballista Yard
2013-02-07 20:34:50 +03:00
enterBlacksmith ( ArtifactID : : BALLISTA ) ;
2011-03-22 15:19:07 +02:00
break ;
2009-05-22 02:50:45 +03:00
default :
2011-03-22 15:19:07 +02:00
enterBuilding ( building ) ;
break ;
2009-05-22 02:50:45 +03:00
}
break ;
2011-03-22 15:19:07 +02:00
2009-12-30 09:49:25 +02:00
default :
2011-03-22 15:19:07 +02:00
enterBuilding ( building ) ;
2009-12-29 15:40:16 +02:00
break ;
2008-04-20 15:39:33 +03:00
}
2008-03-10 01:06:35 +02:00
}
2009-12-30 09:49:25 +02:00
}
2010-06-26 13:01:26 +03:00
2013-02-11 02:24:57 +03:00
void CCastleBuildings : : enterBlacksmith ( ArtifactID artifactID )
2010-06-26 13:01:26 +03:00
{
2011-03-22 15:19:07 +02:00
const CGHeroInstance * hero = town - > visitingHero ;
if ( ! hero )
{
2013-02-11 22:11:34 +03:00
LOCPLINT - > showInfoDialog ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 273 ] ) % town - > town - > buildings . find ( BuildingID : : BLACKSMITH ) - > second - > Name ( ) ) ) ;
2011-03-22 15:19:07 +02:00
return ;
}
2013-02-07 20:34:50 +03:00
int price = CGI - > arth - > artifacts [ artifactID ] - > price ;
bool possible = LOCPLINT - > cb - > getResourceAmount ( Res : : GOLD ) > = price & & ! hero - > hasArt ( artifactID ) ;
GH . pushInt ( new CBlacksmithDialog ( possible , CArtHandler : : machineIDToCreature ( artifactID ) , artifactID , hero - > id ) ) ;
2010-06-26 13:01:26 +03:00
}
2013-02-11 22:11:34 +03:00
void CCastleBuildings : : enterBuilding ( BuildingID building )
2009-12-30 09:49:25 +02:00
{
2012-05-13 18:04:21 +03:00
std : : vector < CComponent * > comps ( 1 , new CComponent ( CComponent : : building , town - > subID , building ) ) ;
2009-12-29 15:40:16 +02:00
2009-12-30 09:49:25 +02:00
LOCPLINT - > showInfoDialog (
2012-09-02 13:33:41 +03:00
town - > town - > buildings . find ( building ) - > second - > Description ( ) , comps ) ;
2011-03-22 15:19:07 +02:00
}
void CCastleBuildings : : enterCastleGate ( )
{
if ( ! town - > visitingHero )
{
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 126 ] ) ;
return ; //only visiting hero can use castle gates
}
std : : vector < int > availableTowns ;
std : : vector < const CGTownInstance * > Towns = LOCPLINT - > cb - > getTownsInfo ( false ) ;
2013-06-29 16:05:48 +03:00
for ( auto & Town : Towns )
2011-03-22 15:19:07 +02:00
{
2013-06-29 16:05:48 +03:00
const CGTownInstance * t = Town ;
2013-06-26 14:18:27 +03:00
if ( t - > id ! = this - > town - > id & & t - > visitingHero = = nullptr & & //another town, empty and this is
2013-02-11 02:24:57 +03:00
t - > hasBuilt ( BuildingID : : CASTLE_GATE , ETownType : : INFERNO ) )
2011-03-22 15:19:07 +02:00
{
2013-02-14 02:55:42 +03:00
availableTowns . push_back ( t - > id . getNum ( ) ) ; //add to the list
2011-03-22 15:19:07 +02:00
}
}
2013-06-29 16:05:48 +03:00
auto titlePic = new CPicture ( LOCPLINT - > castleInt - > bicons - > ourImages [ BuildingID : : CASTLE_GATE ] . bitmap , 0 , 0 , false ) ; //will be deleted by selection window
2011-03-22 15:19:07 +02:00
GH . pushInt ( new CObjectListWindow ( availableTowns , titlePic , CGI - > generaltexth - > jktexts [ 40 ] ,
2013-07-02 18:23:32 +03:00
CGI - > generaltexth - > jktexts [ 41 ] , boost : : bind ( & CCastleInterface : : castleTeleport , LOCPLINT - > castleInt , _1 ) ) ) ;
2011-03-22 15:19:07 +02:00
}
void CCastleBuildings : : enterDwelling ( int level )
{
assert ( level > = 0 & & level < town - > creatures . size ( ) ) ;
2013-06-23 19:09:15 +03:00
auto recruitCb = [ = ] ( CreatureID id , int count ) { LOCPLINT - > cb - > recruitCreatures ( town , id , count , level ) ; } ;
GH . pushInt ( new CRecruitmentWindow ( town , level , town , recruitCb , - 87 ) ) ;
2008-03-10 01:06:35 +02:00
}
2009-04-14 15:47:09 +03:00
2013-02-11 22:11:34 +03:00
void CCastleBuildings : : enterFountain ( BuildingID building )
2010-01-25 23:25:14 +02:00
{
2012-05-13 18:04:21 +03:00
std : : vector < CComponent * > comps ( 1 , new CComponent ( CComponent : : building , town - > subID , building ) ) ;
2010-01-25 23:25:14 +02:00
2012-09-02 13:33:41 +03:00
std : : string descr = town - > town - > buildings . find ( building ) - > second - > Description ( ) ;
2012-09-05 15:49:23 +03:00
2013-02-11 02:24:57 +03:00
if ( building = = BuildingID : : FOUNTAIN_OF_FORTUNE )
descr + = " \n \n " + town - > town - > buildings . find ( BuildingID : : MYSTIC_POND ) - > second - > Description ( ) ;
2012-09-05 15:49:23 +03:00
2010-01-28 18:15:46 +02:00
if ( town - > bonusValue . first = = 0 ) //fountain was builded this week
2010-01-25 23:25:14 +02:00
descr + = " \n \n " + CGI - > generaltexth - > allTexts [ 677 ] ;
2010-01-28 18:15:46 +02:00
else //fountain produced something;
2010-01-25 23:25:14 +02:00
{
descr + = " \n \n " + CGI - > generaltexth - > allTexts [ 678 ] ;
2010-01-28 18:15:46 +02:00
boost : : algorithm : : replace_first ( descr , " %s " , CGI - > generaltexth - > restypes [ town - > bonusValue . first ] ) ;
2011-03-22 15:19:07 +02:00
boost : : algorithm : : replace_first ( descr , " %d " , boost : : lexical_cast < std : : string > ( town - > bonusValue . second ) ) ;
2010-01-28 18:15:46 +02:00
}
2011-03-22 15:19:07 +02:00
LOCPLINT - > showInfoDialog ( descr , comps ) ;
2010-01-25 23:25:14 +02:00
}
2011-03-22 15:19:07 +02:00
void CCastleBuildings : : enterMagesGuild ( )
2010-01-25 23:25:14 +02:00
{
2011-03-22 15:19:07 +02:00
const CGHeroInstance * hero = getHero ( ) ;
if ( hero & & ! hero - > hasSpellbook ( ) ) //hero doesn't have spellbok
2010-01-25 23:25:14 +02:00
{
2011-03-22 15:19:07 +02:00
if ( LOCPLINT - > cb - > getResourceAmount ( Res : : GOLD ) < 500 ) //not enough gold to buy spellbook
{
2012-06-02 18:16:54 +03:00
openMagesGuild ( ) ;
2011-03-22 15:19:07 +02:00
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 213 ] ) ;
}
else
{
2013-06-23 19:09:15 +03:00
CFunctionList < void ( ) > onYes = [ this ] { openMagesGuild ( ) ; } ;
2012-06-02 18:16:54 +03:00
CFunctionList < void ( ) > onNo = onYes ;
2013-06-23 19:09:15 +03:00
onYes + = [ hero ] { LOCPLINT - > cb - > buyArtifact ( hero , ArtifactID : : SPELLBOOK ) ; } ;
2011-12-22 16:05:19 +03:00
std : : vector < CComponent * > components ( 1 , new CComponent ( CComponent : : artifact , 0 , 0 ) ) ;
2011-03-22 15:19:07 +02:00
2012-06-02 18:16:54 +03:00
LOCPLINT - > showYesNoDialog ( CGI - > generaltexth - > allTexts [ 214 ] , onYes , onNo , true , components ) ;
2011-03-22 15:19:07 +02:00
}
2010-01-25 23:25:14 +02:00
}
2011-03-22 15:19:07 +02:00
else
{
openMagesGuild ( ) ;
}
}
void CCastleBuildings : : enterTownHall ( )
{
if ( town - > visitingHero & & town - > visitingHero - > hasArt ( 2 ) & &
2013-02-11 02:24:57 +03:00
! vstd : : contains ( town - > builtBuildings , BuildingID : : GRAIL ) ) //hero has grail, but town does not have it
2011-03-22 15:19:07 +02:00
{
2013-02-11 02:24:57 +03:00
if ( ! vstd : : contains ( town - > forbiddenBuildings , BuildingID : : GRAIL ) )
2011-03-22 15:19:07 +02:00
{
LOCPLINT - > showYesNoDialog ( CGI - > generaltexth - > allTexts [ 597 ] , //Do you wish this to be the permanent home of the Grail?
2013-06-23 15:36:18 +03:00
[ & ] { LOCPLINT - > cb - > buildBuilding ( town , BuildingID : : GRAIL ) ; } ,
[ & ] { openTownHall ( ) ; } ,
true ) ;
2011-03-22 15:19:07 +02:00
}
else
{
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 673 ] ) ;
2013-07-02 18:23:32 +03:00
( dynamic_cast < CInfoWindow * > ( GH . topInt ( ) ) ) - > buttons [ 0 ] - > callback + = boost : : bind ( & CCastleBuildings : : openTownHall , this ) ;
2011-03-22 15:19:07 +02:00
}
}
else
{
openTownHall ( ) ;
}
}
void CCastleBuildings : : openMagesGuild ( )
{
2014-04-24 22:36:10 +03:00
std : : string mageGuildBackground ;
mageGuildBackground = LOCPLINT - > castleInt - > town - > town - > clientInfo . guildBackground ;
GH . pushInt ( new CMageGuildScreen ( LOCPLINT - > castleInt , mageGuildBackground ) ) ;
2010-01-25 23:25:14 +02:00
}
2011-03-22 15:19:07 +02:00
void CCastleBuildings : : openTownHall ( )
2008-03-10 01:06:35 +02:00
{
2011-04-07 20:54:08 +03:00
GH . pushInt ( new CHallInterface ( town ) ) ;
2011-03-22 15:19:07 +02:00
}
2012-06-13 16:04:06 +03:00
CCastleInterface : : CCastleInterface ( const CGTownInstance * Town , const CGTownInstance * from ) :
2012-06-15 20:08:19 +03:00
CWindowObject ( PLAYER_COLORED | BORDERED ) ,
2013-06-26 14:18:27 +03:00
hall ( nullptr ) ,
fort ( nullptr ) ,
2011-04-07 20:54:08 +03:00
town ( Town )
2011-03-22 15:19:07 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-05-13 18:04:21 +03:00
LOCPLINT - > castleInt = this ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( KEYBOARD ) ;
2011-04-07 20:54:08 +03:00
builds = new CCastleBuildings ( town ) ;
panel = new CPicture ( " TOWNSCRN " , 0 , builds - > pos . h ) ;
panel - > colorize ( LOCPLINT - > playerID ) ;
pos . w = panel - > pos . w ;
pos . h = builds - > pos . h + panel - > pos . h ;
center ( ) ;
2012-06-16 13:41:14 +03:00
updateShadow ( ) ;
2011-04-07 20:54:08 +03:00
2011-12-22 16:05:19 +03:00
garr = new CGarrisonInt ( 305 , 387 , 4 , Point ( 0 , 96 ) , panel - > bg , Point ( 62 , 374 ) , town - > getUpperArmy ( ) , town - > visitingHero ) ;
heroes = new HeroSlots ( town , Point ( 241 , 387 ) , Point ( 241 , 483 ) , garr , true ) ;
2012-12-25 18:39:06 +03:00
title = new CLabel ( 85 , 387 , FONT_MEDIUM , TOPLEFT , Colors : : WHITE , town - > name ) ;
2011-04-07 20:54:08 +03:00
income = new CLabel ( 195 , 443 , FONT_SMALL , CENTER ) ;
icon = new CAnimImage ( " ITPT " , 0 , 0 , 15 , 387 ) ;
2013-07-02 18:23:32 +03:00
exit = new CAdventureMapButton ( CGI - > generaltexth - > tcommands [ 8 ] , " " , boost : : bind ( & CCastleInterface : : close , this ) , 744 , 544 , " TSBTNS " , SDLK_RETURN ) ;
2011-03-22 15:19:07 +02:00
exit - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2011-04-07 20:54:08 +03:00
exit - > setOffset ( 4 ) ;
2013-07-02 18:23:32 +03:00
split = new CAdventureMapButton ( CGI - > generaltexth - > tcommands [ 3 ] , " " , boost : : bind ( & CGarrisonInt : : splitClick , garr ) , 744 , 382 , " TSBTNS.DEF " ) ;
split - > callback + = boost : : bind ( & HeroSlots : : splitClicked , heroes ) ;
2011-03-22 15:19:07 +02:00
garr - > addSplitBtn ( split ) ;
2011-12-22 16:05:19 +03:00
Rect barRect ( 9 , 182 , 732 , 18 ) ;
2011-04-07 20:54:08 +03:00
statusbar = new CGStatusBar ( new CPicture ( * panel , barRect , 9 , 555 , false ) ) ;
2013-05-04 16:14:23 +03:00
resdatabar = new CResDataBar ( " ARESBAR " , 3 , 575 , 32 , 2 , 85 , 85 ) ;
2011-04-07 20:54:08 +03:00
2012-06-13 16:04:06 +03:00
townlist = new CTownList ( 3 , Point ( 744 , 414 ) , " IAM014 " , " IAM015 " ) ;
if ( from )
townlist - > select ( from ) ;
2011-03-22 15:19:07 +02:00
2012-06-13 16:04:06 +03:00
townlist - > select ( town ) ; //this will scroll list to select current town
2013-07-02 18:23:32 +03:00
townlist - > onSelect = boost : : bind ( & CCastleInterface : : townChange , this ) ;
2011-03-22 15:19:07 +02:00
recreateIcons ( ) ;
2012-09-05 15:49:23 +03:00
CCS - > musich - > playMusic ( town - > town - > clientInfo . musicTheme , true ) ;
2014-03-07 16:21:09 +03:00
2012-09-05 15:49:23 +03:00
bicons = CDefHandler : : giveDefEss ( town - > town - > clientInfo . buildingsIcons ) ;
2011-03-22 15:19:07 +02:00
}
CCastleInterface : : ~ CCastleInterface ( )
{
2013-06-26 14:18:27 +03:00
LOCPLINT - > castleInt = nullptr ;
2011-03-22 15:19:07 +02:00
delete bicons ;
}
void CCastleInterface : : close ( )
{
if ( town - > tempOwner = = LOCPLINT - > playerID ) //we may have opened window for an allied town
{
2013-02-23 15:22:23 +03:00
if ( town - > visitingHero & & town - > visitingHero - > tempOwner = = LOCPLINT - > playerID )
2011-03-22 15:19:07 +02:00
adventureInt - > select ( town - > visitingHero ) ;
else
adventureInt - > select ( town ) ;
}
2012-06-15 20:08:19 +03:00
CWindowObject : : close ( ) ;
2011-03-22 15:19:07 +02:00
}
2011-04-07 20:54:08 +03:00
void CCastleInterface : : castleTeleport ( int where )
2009-04-14 15:47:09 +03:00
{
2013-02-14 02:55:42 +03:00
const CGTownInstance * dest = LOCPLINT - > cb - > getTown ( ObjectInstanceID ( where ) ) ;
2011-04-07 20:54:08 +03:00
LOCPLINT - > cb - > teleportHero ( town - > visitingHero , dest ) ;
2013-10-17 16:54:12 +03:00
LOCPLINT - > eraseCurrentPathOf ( town - > visitingHero , false ) ;
2008-01-19 14:26:55 +02:00
}
2009-04-14 15:47:09 +03:00
2008-01-31 23:35:30 +02:00
void CCastleInterface : : townChange ( )
{
2012-06-13 16:04:06 +03:00
const CGTownInstance * dest = LOCPLINT - > towns [ townlist - > getSelectedIndex ( ) ] ;
const CGTownInstance * town = this - > town ; // "this" is going to be deleted
if ( dest = = town )
2011-01-01 22:26:39 +02:00
return ;
2012-06-15 20:08:19 +03:00
close ( ) ;
2012-06-13 16:04:06 +03:00
GH . pushInt ( new CCastleInterface ( dest , town ) ) ;
2008-01-31 23:35:30 +02:00
}
2009-04-14 15:47:09 +03:00
2013-02-11 22:11:34 +03:00
void CCastleInterface : : addBuilding ( BuildingID bid )
2008-03-23 03:01:17 +02:00
{
2008-08-01 21:13:33 +03:00
deactivate ( ) ;
2011-03-22 15:19:07 +02:00
builds - > addBuilding ( bid ) ;
2009-12-23 03:46:15 +02:00
recreateIcons ( ) ;
2008-08-01 21:13:33 +03:00
activate ( ) ;
2008-03-23 03:01:17 +02:00
}
2013-02-11 22:11:34 +03:00
void CCastleInterface : : removeBuilding ( BuildingID bid )
2008-03-23 03:01:17 +02:00
{
2011-04-07 20:54:08 +03:00
deactivate ( ) ;
2011-03-22 15:19:07 +02:00
builds - > removeBuilding ( bid ) ;
2009-12-23 03:46:15 +02:00
recreateIcons ( ) ;
2011-04-07 20:54:08 +03:00
activate ( ) ;
2008-03-23 03:01:17 +02:00
}
2009-12-23 03:46:15 +02:00
void CCastleInterface : : recreateIcons ( )
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
delete fort ;
delete hall ;
2011-04-07 20:54:08 +03:00
2012-09-22 18:10:15 +03:00
size_t iconIndex = town - > town - > clientInfo . icons [ town - > hasFort ( ) ] [ town - > builded > = CGI - > modh - > settings . MAX_BUILDING_PER_TURN ] ;
2009-12-23 03:46:15 +02:00
2011-04-07 20:54:08 +03:00
icon - > setFrame ( iconIndex ) ;
2014-04-26 17:23:35 +03:00
TResources townIncome = town - > dailyIncome ( ) ;
income - > setText ( boost : : lexical_cast < std : : string > ( townIncome [ Res : : GOLD ] ) ) ;
2011-04-07 20:54:08 +03:00
hall = new CTownInfo ( 80 , 413 , town , true ) ;
fort = new CTownInfo ( 122 , 413 , town , false ) ;
2013-06-29 16:05:48 +03:00
for ( auto & elem : creainfo )
delete elem ;
2009-12-23 03:46:15 +02:00
creainfo . clear ( ) ;
2011-04-07 20:54:08 +03:00
for ( size_t i = 0 ; i < 4 ; i + + )
2011-12-22 16:05:19 +03:00
creainfo . push_back ( new CCreaInfo ( Point ( 14 + 55 * i , 459 ) , town , i ) ) ;
2011-04-07 20:54:08 +03:00
for ( size_t i = 0 ; i < 4 ; i + + )
2011-12-22 16:05:19 +03:00
creainfo . push_back ( new CCreaInfo ( Point ( 14 + 55 * i , 507 ) , town , i + 4 ) ) ;
2009-12-23 03:46:15 +02:00
}
2011-04-07 20:54:08 +03:00
2011-12-22 16:05:19 +03:00
CCreaInfo : : CCreaInfo ( Point position , const CGTownInstance * Town , int Level , bool compact , bool ShowAvailable ) :
2011-04-07 20:54:08 +03:00
town ( Town ) ,
2011-07-18 18:21:16 +03:00
level ( Level ) ,
showAvailable ( ShowAvailable )
2009-12-23 03:46:15 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2011-07-18 18:21:16 +03:00
pos + = position ;
2014-03-07 16:21:09 +03:00
2011-04-07 20:54:08 +03:00
if ( town - > creatures . size ( ) < = level | | town - > creatures [ level ] . second . empty ( ) )
{
level = - 1 ;
2013-06-26 14:18:27 +03:00
label = nullptr ;
picture = nullptr ;
2011-04-07 20:54:08 +03:00
return ; //No creature
}
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ;
2011-04-07 20:54:08 +03:00
2011-12-14 00:23:17 +03:00
ui32 creatureID = town - > creatures [ level ] . second . back ( ) ;
2011-04-07 20:54:08 +03:00
creature = CGI - > creh - > creatures [ creatureID ] ;
2012-09-22 18:10:15 +03:00
picture = new CAnimImage ( " CPRSMALL " , creature - > iconIndex , 0 , 8 , 0 ) ;
2011-07-18 18:21:16 +03:00
std : : string value ;
if ( showAvailable )
value = boost : : lexical_cast < std : : string > ( town - > creatures [ level ] . first ) ;
else
value = boost : : lexical_cast < std : : string > ( town - > creatureGrowth ( level ) ) ;
if ( compact )
{
2012-11-11 15:23:31 +03:00
label = new CLabel ( 40 , 32 , FONT_TINY , BOTTOMRIGHT , Colors : : WHITE , value ) ;
2011-07-18 18:21:16 +03:00
pos . x + = 8 ;
pos . w = 32 ;
pos . h = 32 ;
}
else
{
2012-11-11 15:23:31 +03:00
label = new CLabel ( 24 , 40 , FONT_SMALL , CENTER , Colors : : WHITE , value ) ;
2011-07-18 18:21:16 +03:00
pos . w = 48 ;
pos . h = 48 ;
}
}
void CCreaInfo : : update ( )
{
if ( label )
{
std : : string value ;
if ( showAvailable )
value = boost : : lexical_cast < std : : string > ( town - > creatures [ level ] . first ) ;
else
value = boost : : lexical_cast < std : : string > ( town - > creatureGrowth ( level ) ) ;
if ( value ! = label - > text )
2013-08-29 16:46:27 +03:00
label - > setText ( value ) ;
2011-07-18 18:21:16 +03:00
}
2009-12-23 03:46:15 +02:00
}
2011-04-07 20:54:08 +03:00
void CCreaInfo : : hover ( bool on )
2009-12-23 03:46:15 +02:00
{
2011-04-30 21:16:58 +03:00
std : : string message = CGI - > generaltexth - > allTexts [ 588 ] ;
boost : : algorithm : : replace_first ( message , " %s " , creature - > namePl ) ;
2009-12-23 03:46:15 +02:00
if ( on )
{
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( message ) ;
2009-12-23 03:46:15 +02:00
}
2013-08-29 16:46:27 +03:00
else if ( message = = GH . statusbar - > getText ( ) )
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-12-23 03:46:15 +02:00
}
2010-07-10 19:50:23 +03:00
2011-04-07 20:54:08 +03:00
void CCreaInfo : : clickLeft ( tribool down , bool previousState )
2011-07-18 18:21:16 +03:00
{
if ( previousState & & ( ! down ) )
{
int offset = LOCPLINT - > castleInt ? ( - 87 ) : 0 ;
2013-06-23 19:09:15 +03:00
auto recruitCb = [ = ] ( CreatureID id , int count ) { LOCPLINT - > cb - > recruitCreatures ( town , id , count , level ) ; } ;
GH . pushInt ( new CRecruitmentWindow ( town , level , town , recruitCb , offset ) ) ;
2011-07-18 18:21:16 +03:00
}
2010-07-10 19:50:23 +03:00
}
2009-12-23 03:46:15 +02:00
2011-04-07 20:54:08 +03:00
int CCreaInfo : : AddToString ( std : : string from , std : : string & to , int numb )
2009-12-23 03:46:15 +02:00
{
2011-04-07 20:54:08 +03:00
if ( numb = = 0 )
return 0 ;
2010-10-02 10:10:38 +03:00
boost : : algorithm : : replace_first ( from , " %+d " , ( numb > 0 ? " + " : " " ) + boost : : lexical_cast < std : : string > ( numb ) ) ; //negative values don't need "+"
2009-12-23 03:46:15 +02:00
to + = " \n " + from ;
return numb ;
2010-07-10 19:50:23 +03:00
}
2009-12-23 03:46:15 +02:00
2011-07-18 18:21:16 +03:00
std : : string CCreaInfo : : genGrowthText ( )
2009-12-23 03:46:15 +02:00
{
2011-08-26 23:32:05 +03:00
GrowthInfo gi = town - > getGrowthInfo ( level ) ;
std : : string descr = boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 589 ] ) % creature - > nameSing % gi . totalGrowth ( ) ) ;
2009-12-23 03:46:15 +02:00
2013-06-29 16:05:48 +03:00
for ( const GrowthInfo : : Entry & entry : gi . entries )
2011-07-18 18:21:16 +03:00
{
2011-08-26 23:32:05 +03:00
descr + = " \n " + entry . description ;
2011-07-18 18:21:16 +03:00
}
2014-03-07 16:21:09 +03:00
2011-07-18 18:21:16 +03:00
return descr ;
}
2009-12-23 03:46:15 +02:00
2011-07-18 18:21:16 +03:00
void CCreaInfo : : clickRight ( tribool down , bool previousState )
{
if ( down )
{
if ( showAvailable )
GH . pushInt ( new CDwellingInfoBox ( screen - > w / 2 , screen - > h / 2 , town , level ) ) ;
else
2012-12-11 15:12:46 +03:00
CRClickPopup : : createAndPush ( genGrowthText ( ) , new CComponent ( CComponent : : creature , creature - > idNumber ) ) ;
2009-12-23 03:46:15 +02:00
}
}
2010-06-30 22:27:35 +03:00
2011-04-07 20:54:08 +03:00
CTownInfo : : CTownInfo ( int posX , int posY , const CGTownInstance * Town , bool townHall ) :
town ( Town ) ,
2013-06-26 14:18:27 +03:00
building ( nullptr )
2009-12-23 03:46:15 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( RCLICK | HOVER ) ;
2011-04-07 20:54:08 +03:00
pos . x + = posX ;
pos . y + = posY ;
int buildID ;
2010-06-30 22:27:35 +03:00
2011-04-07 20:54:08 +03:00
if ( townHall )
{
buildID = 10 + town - > hallLevel ( ) ;
picture = new CAnimImage ( " ITMTL.DEF " , town - > hallLevel ( ) ) ;
}
else
2009-12-23 03:46:15 +02:00
{
2011-04-07 20:54:08 +03:00
buildID = 6 + town - > fortLevel ( ) ;
if ( buildID = = 6 )
2013-12-02 14:58:02 +03:00
return ;
picture = new CAnimImage ( " ITMCL.DEF " , town - > fortLevel ( ) - 1 ) ;
}
building = town - > town - > buildings . at ( BuildingID ( buildID ) ) ;
pos = picture - > pos ;
}
2011-04-07 20:54:08 +03:00
void CTownInfo : : hover ( bool on )
2009-12-23 03:46:15 +02:00
{
if ( on )
{
2011-04-07 20:54:08 +03:00
if ( building )
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( building - > Name ( ) ) ;
2009-12-23 03:46:15 +02:00
}
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-12-23 03:46:15 +02:00
}
2010-06-30 22:27:35 +03:00
2011-04-07 20:54:08 +03:00
void CTownInfo : : clickRight ( tribool down , bool previousState )
2012-12-11 15:12:46 +03:00
{
if ( down & & building )
CRClickPopup : : createAndPush ( CInfoWindow : : genText ( building - > Name ( ) , building - > Description ( ) ) ,
2013-04-21 15:49:26 +03:00
new CComponent ( CComponent : : building , building - > town - > faction - > index , building - > bid ) ) ;
2012-12-11 15:12:46 +03:00
2009-12-23 03:46:15 +02:00
}
2010-06-30 22:27:35 +03:00
2009-07-20 11:18:33 +03:00
void CCastleInterface : : keyPressed ( const SDL_KeyboardEvent & key )
{
2009-09-07 05:29:44 +03:00
if ( key . state ! = SDL_PRESSED ) return ;
2009-07-20 11:18:33 +03:00
switch ( key . keysym . sym )
{
2012-10-07 17:58:48 +03:00
#if 0 // code that can be used to fix blit order in towns using +/- keys. Quite ugly but works
case SDLK_KP_PLUS :
if ( builds - > selectedBuilding )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
CStructure * str = const_cast < CStructure * > ( builds - > selectedBuilding - > str ) ;
str - > pos . z + + ;
delete builds ;
builds = new CCastleBuildings ( town ) ;
2013-06-29 16:05:48 +03:00
for ( const CStructure * str : town - > town - > clientInfo . structures )
2012-11-13 14:52:23 +03:00
{
if ( str - > building )
2013-04-09 17:31:36 +03:00
logGlobal - > errorStream ( ) < < int ( str - > building - > bid ) < < " -> " < < int ( str - > pos . z ) ;
2012-11-13 14:52:23 +03:00
}
2012-10-07 17:58:48 +03:00
}
break ;
case SDLK_KP_MINUS :
if ( builds - > selectedBuilding )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
CStructure * str = const_cast < CStructure * > ( builds - > selectedBuilding - > str ) ;
str - > pos . z - - ;
delete builds ;
builds = new CCastleBuildings ( town ) ;
2013-06-29 16:05:48 +03:00
for ( const CStructure * str : town - > town - > clientInfo . structures )
2012-11-13 14:52:23 +03:00
{
if ( str - > building )
2013-04-09 17:31:36 +03:00
logGlobal - > errorStream ( ) < < int ( str - > building - > bid ) < < " -> " < < int ( str - > pos . z ) ;
2012-11-13 14:52:23 +03:00
}
2012-10-07 17:58:48 +03:00
}
break ;
# endif
2009-07-20 11:18:33 +03:00
case SDLK_UP :
2012-06-13 16:04:06 +03:00
townlist - > selectPrev ( ) ;
2009-07-20 11:18:33 +03:00
break ;
case SDLK_DOWN :
2012-06-13 16:04:06 +03:00
townlist - > selectNext ( ) ;
2009-07-20 11:18:33 +03:00
break ;
case SDLK_SPACE :
2012-07-21 23:16:54 +03:00
heroes - > swapArmies ( ) ;
2009-07-20 11:18:33 +03:00
break ;
2012-04-08 04:15:18 +03:00
case SDLK_t :
2013-02-11 02:24:57 +03:00
if ( town - > hasBuilt ( BuildingID : : TAVERN ) )
2012-04-08 04:15:18 +03:00
LOCPLINT - > showTavernWindow ( town ) ;
break ;
2009-10-13 07:07:26 +03:00
default :
break ;
2009-07-20 11:18:33 +03:00
}
}
2011-12-22 16:05:19 +03:00
HeroSlots : : HeroSlots ( const CGTownInstance * Town , Point garrPos , Point visitPos , CGarrisonInt * Garrison , bool ShowEmpty ) :
2011-04-30 21:16:58 +03:00
showEmpty ( ShowEmpty ) ,
town ( Town ) ,
garr ( Garrison )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
garrisonedHero = new CHeroGSlot ( garrPos . x , garrPos . y , 0 , town - > garrisonHero , this ) ;
visitingHero = new CHeroGSlot ( visitPos . x , visitPos . y , 1 , town - > visitingHero , this ) ;
}
void HeroSlots : : update ( )
{
2012-05-13 18:04:21 +03:00
garrisonedHero - > set ( town - > garrisonHero ) ;
visitingHero - > set ( town - > visitingHero ) ;
2011-04-30 21:16:58 +03:00
}
void HeroSlots : : splitClicked ( )
2009-09-09 09:04:42 +03:00
{
2012-05-13 18:04:21 +03:00
if ( ! ! town - > visitingHero & & town - > garrisonHero & & ( visitingHero - > selection | | garrisonedHero - > selection ) )
2009-09-09 09:04:42 +03:00
{
2013-05-27 13:53:28 +03:00
LOCPLINT - > heroExchangeStarted ( town - > visitingHero - > id , town - > garrisonHero - > id , QueryID ( - 1 ) ) ;
2009-09-09 09:04:42 +03:00
}
}
2012-07-21 23:16:54 +03:00
void HeroSlots : : swapArmies ( )
{
if ( ! town - > garrisonHero & & town - > visitingHero ) //visiting => garrison, merge armies: town army => hero army
{
if ( ! town - > visitingHero - > canBeMergedWith ( * town ) )
{
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 275 ] , std : : vector < CComponent * > ( ) , soundBase : : sound_todo ) ;
return ;
}
}
LOCPLINT - > cb - > swapGarrisonHero ( town ) ;
}
2008-03-10 01:06:35 +02:00
void CHallInterface : : CBuildingBox : : hover ( bool on )
{
2008-03-16 02:09:43 +02:00
if ( on )
{
2008-06-03 21:16:54 +03:00
std : : string toPrint ;
2013-12-02 14:58:02 +03:00
if ( state = = EBuildingState : : PREREQUIRES | | state = = EBuildingState : : MISSING_BASE )
2008-12-22 19:48:41 +02:00
toPrint = CGI - > generaltexth - > hcommands [ 5 ] ;
2011-12-14 00:23:17 +03:00
else if ( state = = EBuildingState : : CANT_BUILD_TODAY )
2009-12-23 03:46:15 +02:00
toPrint = CGI - > generaltexth - > allTexts [ 223 ] ;
2008-06-03 21:16:54 +03:00
else
2008-12-22 19:48:41 +02:00
toPrint = CGI - > generaltexth - > hcommands [ state ] ;
2011-04-07 20:54:08 +03:00
boost : : algorithm : : replace_first ( toPrint , " %s " , building - > Name ( ) ) ;
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( toPrint ) ;
2008-03-16 02:09:43 +02:00
}
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2008-03-10 01:06:35 +02:00
}
2011-04-07 20:54:08 +03:00
2009-08-11 19:05:33 +03:00
void CHallInterface : : CBuildingBox : : clickLeft ( tribool down , bool previousState )
2008-03-10 01:06:35 +02:00
{
2009-08-11 19:05:33 +03:00
if ( previousState & & ( ! down ) )
2011-04-07 20:54:08 +03:00
GH . pushInt ( new CBuildWindow ( town , building , state , 0 ) ) ;
2008-03-10 01:06:35 +02:00
}
2011-04-07 20:54:08 +03:00
2009-08-11 19:05:33 +03:00
void CHallInterface : : CBuildingBox : : clickRight ( tribool down , bool previousState )
2008-03-10 01:06:35 +02:00
{
2008-03-21 02:03:31 +02:00
if ( down )
2011-04-07 20:54:08 +03:00
GH . pushInt ( new CBuildWindow ( town , building , state , 1 ) ) ;
2008-03-11 23:36:59 +02:00
}
2011-04-07 20:54:08 +03:00
CHallInterface : : CBuildingBox : : CBuildingBox ( int x , int y , const CGTownInstance * Town , const CBuilding * Building ) :
town ( Town ) ,
building ( Building )
2008-03-11 23:36:59 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ;
2011-04-07 20:54:08 +03:00
pos . x + = x ;
pos . y + = y ;
pos . w = 154 ;
pos . h = 92 ;
2014-03-07 16:21:09 +03:00
2011-04-07 20:54:08 +03:00
state = LOCPLINT - > cb - > canBuildStructure ( town , building - > bid ) ;
2011-12-14 00:23:17 +03:00
assert ( state < EBuildingState : : BUILDING_ERROR ) ;
2013-12-02 14:58:02 +03:00
static int panelIndex [ 10 ] = { 3 , 3 , 3 , 0 , 0 , 2 , 2 , 1 , 2 , 2 } ;
static int iconIndex [ 10 ] = { - 1 , - 1 , - 1 , 0 , 0 , 1 , 2 , - 1 , 1 , 1 } ;
2008-03-10 01:06:35 +02:00
2012-09-05 15:49:23 +03:00
picture = new CAnimImage ( town - > town - > clientInfo . buildingsIcons , building - > bid , 0 , 2 , 2 ) ;
2011-04-07 20:54:08 +03:00
panel = new CAnimImage ( " TPTHBAR " , panelIndex [ state ] , 0 , 1 , 73 ) ;
if ( iconIndex [ state ] > = 0 )
icon = new CAnimImage ( " TPTHCHK " , iconIndex [ state ] , 0 , 136 , 56 ) ;
2012-11-11 15:23:31 +03:00
label = new CLabel ( 75 , 81 , FONT_SMALL , CENTER , Colors : : WHITE , building - > Name ( ) ) ;
2011-04-07 20:54:08 +03:00
}
2008-03-10 01:06:35 +02:00
2011-04-07 20:54:08 +03:00
CHallInterface : : CHallInterface ( const CGTownInstance * Town ) :
2012-09-02 13:33:41 +03:00
CWindowObject ( PLAYER_COLORED | BORDERED , Town - > town - > clientInfo . hallBackground ) ,
2011-04-07 20:54:08 +03:00
town ( Town )
2008-03-10 01:06:35 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2009-05-20 12:02:50 +03:00
resdatabar = new CMinorResDataBar ;
resdatabar - > pos . x + = pos . x ;
resdatabar - > pos . y + = pos . y ;
2013-12-02 14:58:02 +03:00
Rect barRect ( 5 , 556 , 740 , 18 ) ;
statusBar = new CGStatusBar ( new CPicture ( * background , barRect , 5 , 556 , false ) ) ;
title = new CLabel ( 399 , 12 , FONT_MEDIUM , CENTER , Colors : : WHITE , town - > town - > buildings . at ( BuildingID ( town - > hallLevel ( ) + BuildingID : : VILLAGE_HALL ) ) - > Name ( ) ) ;
2014-03-07 16:21:09 +03:00
exit = new CAdventureMapButton ( CGI - > generaltexth - > hcommands [ 8 ] , " " ,
2013-12-02 14:58:02 +03:00
boost : : bind ( & CHallInterface : : close , this ) , 748 , 556 , " TPMAGE1.DEF " , SDLK_RETURN ) ;
exit - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2008-03-21 02:03:31 +02:00
2012-09-02 13:33:41 +03:00
auto & boxList = town - > town - > clientInfo . hallSlots ;
2011-04-07 20:54:08 +03:00
boxes . resize ( boxList . size ( ) ) ;
for ( size_t row = 0 ; row < boxList . size ( ) ; row + + ) //for each row
2008-03-11 23:36:59 +02:00
{
2011-04-07 20:54:08 +03:00
for ( size_t col = 0 ; col < boxList [ row ] . size ( ) ; col + + ) //for each box
2008-03-11 23:36:59 +02:00
{
2013-06-26 14:18:27 +03:00
const CBuilding * building = nullptr ;
2013-12-02 14:58:02 +03:00
for ( auto & elem : boxList [ row ] [ col ] ) //we are looking for the first not build structure
{
auto buildingID = elem ;
building = town - > town - > buildings . at ( buildingID ) ;
if ( ! vstd : : contains ( town - > builtBuildings , buildingID ) )
break ;
2008-03-11 23:36:59 +02:00
}
2011-04-07 20:54:08 +03:00
int posX = pos . w / 2 - boxList [ row ] . size ( ) * 154 / 2 - ( boxList [ row ] . size ( ) - 1 ) * 20 + 194 * col ,
posY = 35 + 104 * row ;
if ( building )
boxes [ row ] . push_back ( new CBuildingBox ( posX , posY , town , building ) ) ;
2008-03-11 23:36:59 +02:00
}
}
2008-03-10 01:06:35 +02:00
}
2009-04-14 15:47:09 +03:00
2011-04-07 20:54:08 +03:00
void CBuildWindow : : buyFunc ( )
2008-03-21 02:03:31 +02:00
{
2011-04-07 20:54:08 +03:00
LOCPLINT - > cb - > buildBuilding ( town , building - > bid ) ;
GH . popInts ( 2 ) ; //we - build window and hall screen
2008-03-21 02:03:31 +02:00
}
2009-04-14 15:47:09 +03:00
2011-04-07 20:54:08 +03:00
std : : string CBuildWindow : : getTextForState ( int state )
2008-03-21 02:03:31 +02:00
{
2008-03-23 03:01:17 +02:00
std : : string ret ;
2013-12-02 14:58:02 +03:00
if ( state < EBuildingState : : ALLOWED )
2008-12-22 19:48:41 +02:00
ret = CGI - > generaltexth - > hcommands [ state ] ;
2008-03-21 02:03:31 +02:00
switch ( state )
{
2013-12-02 14:58:02 +03:00
case EBuildingState : : ALREADY_PRESENT :
case EBuildingState : : CANT_BUILD_TODAY :
case EBuildingState : : NO_RESOURCES :
ret . replace ( ret . find_first_of ( " %s " ) , 2 , building - > Name ( ) ) ;
2008-03-23 03:01:17 +02:00
break ;
2013-12-02 14:58:02 +03:00
case EBuildingState : : ALLOWED :
2008-03-21 02:03:31 +02:00
return CGI - > generaltexth - > allTexts [ 219 ] ; //all prereq. are met
2013-12-02 14:58:02 +03:00
case EBuildingState : : PREREQUIRES :
2008-03-23 03:01:17 +02:00
{
2013-12-02 14:58:02 +03:00
auto toStr = [ & ] ( const BuildingID build ) - > std : : string
{
return town - > town - > buildings . at ( build ) - > Name ( ) ;
} ;
/*auto toBool = [&](const BuildingID build)
{
return town - > hasBuilt ( build ) ;
} ; */
2008-03-23 03:01:17 +02:00
ret = CGI - > generaltexth - > allTexts [ 52 ] ;
2013-12-02 14:58:02 +03:00
ret + = " \n " + building - > requirements . toString ( toStr ) ;
break ;
}
case EBuildingState : : MISSING_BASE :
{
std : : string msg = CGI - > generaltexth - > localizedTexts [ " townHall " ] [ " missingBase " ] . String ( ) ;
ret = boost : : str ( boost : : format ( msg ) % town - > town - > buildings . at ( building - > upgrade ) - > Name ( ) ) ;
break ;
}
2008-03-21 02:03:31 +02:00
}
2008-03-23 03:01:17 +02:00
return ret ;
2008-03-16 02:09:43 +02:00
}
2009-04-14 15:47:09 +03:00
2012-07-07 16:32:37 +03:00
CBuildWindow : : CBuildWindow ( const CGTownInstance * Town , const CBuilding * Building , int state , bool rightClick ) :
2012-06-15 20:08:19 +03:00
CWindowObject ( PLAYER_COLORED | ( rightClick ? RCLICK_POPUP : 0 ) , " TPUBUILD " ) ,
2012-06-13 16:04:06 +03:00
town ( Town ) ,
2012-07-07 16:32:37 +03:00
building ( Building )
2011-04-07 20:54:08 +03:00
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-09-05 15:49:23 +03:00
new CAnimImage ( town - > town - > clientInfo . buildingsIcons , building - > bid , 0 , 125 , 50 ) ;
2012-07-07 16:32:37 +03:00
new CGStatusBar ( new CPicture ( * background , Rect ( 8 , pos . h - 26 , pos . w - 16 , 19 ) , 8 , pos . h - 26 ) ) ;
2011-04-07 20:54:08 +03:00
2012-11-11 15:23:31 +03:00
new CLabel ( 197 , 30 , FONT_MEDIUM , CENTER , Colors : : WHITE ,
2011-04-07 20:54:08 +03:00
boost : : str ( boost : : format ( CGI - > generaltexth - > hcommands [ 7 ] ) % building - > Name ( ) ) ) ;
2012-07-07 16:32:37 +03:00
new CTextBox ( building - > Description ( ) , Rect ( 33 , 135 , 329 , 67 ) , 0 , FONT_MEDIUM , CENTER ) ;
new CTextBox ( getTextForState ( state ) , Rect ( 33 , 216 , 329 , 67 ) , 0 , FONT_SMALL , CENTER ) ;
//Create components for all required resources
std : : vector < CComponent * > components ;
2011-04-07 20:54:08 +03:00
2011-12-14 00:23:17 +03:00
for ( int i = 0 ; i < GameConstants : : RESOURCE_QUANTITY ; i + + )
2008-12-23 15:59:03 +02:00
{
2011-04-07 20:54:08 +03:00
if ( building - > resources [ i ] )
2008-12-23 15:59:03 +02:00
{
2012-07-07 16:32:37 +03:00
components . push_back ( new CComponent ( CComponent : : resource , i , building - > resources [ i ] , CComponent : : small ) ) ;
2008-12-23 15:59:03 +02:00
}
}
2011-04-07 20:54:08 +03:00
2012-07-07 16:32:37 +03:00
new CComponentBox ( components , Rect ( 25 , 300 , pos . w - 50 , 130 ) ) ;
2011-04-07 20:54:08 +03:00
2012-06-13 16:04:06 +03:00
if ( ! rightClick )
2012-02-21 17:08:42 +03:00
{ //normal window
2011-12-22 16:05:19 +03:00
buy = new CAdventureMapButton ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 595 ] ) % building - > Name ( ) ) ,
2013-07-02 18:23:32 +03:00
" " , boost : : bind ( & CBuildWindow : : buyFunc , this ) , 45 , 446 , " IBUY30 " , SDLK_RETURN ) ;
2012-11-20 20:53:45 +03:00
buy - > borderColor = Colors : : METALLIC_GOLD ;
2011-04-26 16:30:29 +03:00
buy - > borderEnabled = true ;
2014-03-07 16:21:09 +03:00
2011-12-22 16:05:19 +03:00
cancel = new CAdventureMapButton ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 596 ] ) % building - > Name ( ) ) ,
2013-07-02 18:23:32 +03:00
" " , boost : : bind ( & CBuildWindow : : close , this ) , 290 , 445 , " ICANCEL " , SDLK_ESCAPE ) ;
2012-11-20 20:53:45 +03:00
cancel - > borderColor = Colors : : METALLIC_GOLD ;
2011-04-26 16:30:29 +03:00
cancel - > borderEnabled = true ;
2012-02-21 17:08:42 +03:00
buy - > block ( state ! = 7 | | LOCPLINT - > playerID ! = town - > tempOwner ) ;
2008-03-23 03:01:17 +02:00
}
2008-03-16 02:09:43 +02:00
}
2009-04-14 15:47:09 +03:00
2011-04-07 20:54:08 +03:00
2012-06-02 18:16:54 +03:00
std : : string CFortScreen : : getBgName ( const CGTownInstance * town )
2011-04-07 20:54:08 +03:00
{
2012-06-02 18:16:54 +03:00
ui32 fortSize = town - > creatures . size ( ) ;
if ( fortSize > GameConstants : : CREATURES_PER_TOWN & & town - > creatures . back ( ) . second . empty ( ) )
fortSize - - ;
if ( fortSize = = GameConstants : : CREATURES_PER_TOWN )
return " TPCASTL7 " ;
else
return " TPCASTL8 " ;
2011-04-07 20:54:08 +03:00
}
2012-06-02 18:16:54 +03:00
CFortScreen : : CFortScreen ( const CGTownInstance * town ) :
2012-06-15 20:08:19 +03:00
CWindowObject ( PLAYER_COLORED | BORDERED , getBgName ( town ) )
2008-03-16 02:09:43 +02:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2011-12-14 00:23:17 +03:00
ui32 fortSize = town - > creatures . size ( ) ;
2013-12-02 14:58:02 +03:00
if ( fortSize > GameConstants : : CREATURES_PER_TOWN & & town - > creatures . back ( ) . second . empty ( ) )
fortSize - - ;
2014-03-07 16:21:09 +03:00
2013-12-02 14:58:02 +03:00
const CBuilding * fortBuilding = town - > town - > buildings . at ( BuildingID ( town - > fortLevel ( ) + 6 ) ) ;
title = new CLabel ( 400 , 12 , FONT_BIG , CENTER , Colors : : WHITE , fortBuilding - > Name ( ) ) ;
2014-03-07 16:21:09 +03:00
2013-12-02 14:58:02 +03:00
std : : string text = boost : : str ( boost : : format ( CGI - > generaltexth - > fcommands [ 6 ] ) % fortBuilding - > Name ( ) ) ;
2013-07-02 18:23:32 +03:00
exit = new CAdventureMapButton ( text , " " , boost : : bind ( & CFortScreen : : close , this ) , 748 , 556 , " TPMAGE1 " , SDLK_RETURN ) ;
2012-10-02 17:22:58 +03:00
exit - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2011-04-07 20:54:08 +03:00
2011-12-22 16:05:19 +03:00
std : : vector < Point > positions ;
positions + = Point ( 10 , 22 ) , Point ( 404 , 22 ) ,
Point ( 10 , 155 ) , Point ( 404 , 155 ) ,
Point ( 10 , 288 ) , Point ( 404 , 288 ) ;
2011-04-07 20:54:08 +03:00
2011-12-14 00:23:17 +03:00
if ( fortSize = = GameConstants : : CREATURES_PER_TOWN )
2011-12-22 16:05:19 +03:00
positions + = Point ( 206 , 421 ) ;
2011-04-07 20:54:08 +03:00
else
2011-12-22 16:05:19 +03:00
positions + = Point ( 10 , 421 ) , Point ( 404 , 421 ) ;
2014-03-07 16:21:09 +03:00
2011-12-14 00:23:17 +03:00
for ( ui32 i = 0 ; i < fortSize ; i + + )
2008-03-23 03:01:17 +02:00
{
2013-02-11 22:11:34 +03:00
BuildingID buildingID ;
2011-12-14 00:23:17 +03:00
if ( fortSize = = GameConstants : : CREATURES_PER_TOWN )
2011-04-07 20:54:08 +03:00
{
2013-02-11 02:24:57 +03:00
if ( vstd : : contains ( town - > builtBuildings , BuildingID : : DWELL_UP_FIRST + i ) )
2013-02-11 22:11:34 +03:00
buildingID = BuildingID ( BuildingID : : DWELL_UP_FIRST + i ) ;
2011-04-07 20:54:08 +03:00
else
2013-02-11 22:11:34 +03:00
buildingID = BuildingID ( BuildingID : : DWELL_FIRST + i ) ;
2011-04-07 20:54:08 +03:00
}
else
2013-02-11 22:11:34 +03:00
buildingID = BuildingID : : SPECIAL_3 ;
2014-01-11 21:12:09 +03:00
recAreas . push_back ( new RecruitArea ( positions [ i ] . x , positions [ i ] . y , town , i ) ) ;
2008-03-23 03:01:17 +02:00
}
2011-04-07 20:54:08 +03:00
resdatabar = new CMinorResDataBar ;
resdatabar - > pos . x + = pos . x ;
resdatabar - > pos . y + = pos . y ;
2011-12-22 16:05:19 +03:00
Rect barRect ( 4 , 554 , 740 , 18 ) ;
2011-04-07 20:54:08 +03:00
statusBar = new CGStatusBar ( new CPicture ( * background , barRect , 4 , 554 , false ) ) ;
2008-08-02 18:08:03 +03:00
}
2008-08-17 12:11:16 +03:00
2011-04-07 20:54:08 +03:00
void CFortScreen : : creaturesChanged ( )
2008-08-17 12:11:16 +03:00
{
2013-06-29 16:05:48 +03:00
for ( auto & elem : recAreas )
elem - > creaturesChanged ( ) ;
2008-08-17 12:11:16 +03:00
}
2011-12-22 16:05:19 +03:00
LabeledValue : : LabeledValue ( Rect size , std : : string name , std : : string descr , int min , int max )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
pos . x + = size . x ;
pos . y + = size . y ;
pos . w = size . w ;
pos . h = size . h ;
init ( name , descr , min , max ) ;
2011-02-06 19:26:27 +02:00
}
2011-12-22 16:05:19 +03:00
LabeledValue : : LabeledValue ( Rect size , std : : string name , std : : string descr , int val )
2011-02-06 19:26:27 +02:00
{
2011-04-07 20:54:08 +03:00
pos . x + = size . x ;
pos . y + = size . y ;
pos . w = size . w ;
pos . h = size . h ;
init ( name , descr , val , val ) ;
2008-08-17 12:11:16 +03:00
}
2011-04-07 20:54:08 +03:00
void LabeledValue : : init ( std : : string nameText , std : : string descr , int min , int max )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( HOVER ) ;
2011-04-07 20:54:08 +03:00
hoverText = descr ;
std : : string valueText ;
if ( min & & max )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
valueText = boost : : lexical_cast < std : : string > ( min ) ;
if ( min ! = max )
valueText + = ' - ' + boost : : lexical_cast < std : : string > ( max ) ;
2008-08-17 12:11:16 +03:00
}
2012-11-11 15:23:31 +03:00
name = new CLabel ( 3 , 0 , FONT_SMALL , TOPLEFT , Colors : : WHITE , nameText ) ;
value = new CLabel ( pos . w - 3 , pos . h - 2 , FONT_SMALL , BOTTOMRIGHT , Colors : : WHITE , valueText ) ;
2008-08-17 12:11:16 +03:00
}
2011-04-07 20:54:08 +03:00
void LabeledValue : : hover ( bool on )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
if ( on )
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( hoverText ) ;
2011-04-07 20:54:08 +03:00
else
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
GH . statusbar - > clear ( ) ;
parent - > hovered = false ;
2008-08-17 12:11:16 +03:00
}
}
2014-01-11 21:12:09 +03:00
const CCreature * CFortScreen : : RecruitArea : : getMyCreature ( )
{
if ( ! town - > creatures . at ( level ) . second . empty ( ) ) // built
return VLC - > creh - > creatures [ town - > creatures . at ( level ) . second . back ( ) ] ;
if ( ! town - > town - > creatures . at ( level ) . empty ( ) ) // there are creatures on this level
return VLC - > creh - > creatures [ town - > town - > creatures . at ( level ) . front ( ) ] ;
return nullptr ;
}
const CBuilding * CFortScreen : : RecruitArea : : getMyBuilding ( )
{
BuildingID myID = BuildingID ( BuildingID : : DWELL_FIRST ) . advance ( level ) ;
if ( level = = GameConstants : : CREATURES_PER_TOWN )
return town - > town - > buildings . at ( BuildingID : : PORTAL_OF_SUMMON ) ;
if ( ! town - > town - > buildings . count ( myID ) )
return nullptr ;
const CBuilding * build = town - > town - > buildings . at ( myID ) ;
while ( town - > town - > buildings . count ( myID ) )
{
if ( town - > hasBuilt ( myID ) )
build = town - > town - > buildings . at ( myID ) ;
myID . advance ( GameConstants : : CREATURES_PER_TOWN ) ;
}
return build ;
}
CFortScreen : : RecruitArea : : RecruitArea ( int posX , int posY , const CGTownInstance * Town , int Level ) :
2011-04-07 20:54:08 +03:00
town ( Town ) ,
level ( Level ) ,
2013-06-26 14:18:27 +03:00
availableCount ( nullptr )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
pos . x + = posX ;
pos . y + = posY ;
pos . w = 386 ;
pos . h = 126 ;
2014-03-07 16:21:09 +03:00
2011-04-07 20:54:08 +03:00
if ( ! town - > creatures [ level ] . second . empty ( ) )
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ; //Activate only if dwelling is present
2014-03-07 16:21:09 +03:00
2013-05-04 16:14:23 +03:00
icons = new CPicture ( " TPCAINFO " , 261 , 3 ) ;
2014-01-11 21:12:09 +03:00
if ( getMyBuilding ( ) ! = nullptr )
{
buildingPic = new CAnimImage ( town - > town - > clientInfo . buildingsIcons , getMyBuilding ( ) - > bid , 0 , 4 , 21 ) ;
dwellingName = new CLabel ( 78 , 101 , FONT_SMALL , CENTER , Colors : : WHITE , getMyBuilding ( ) - > Name ( ) ) ;
2011-04-07 20:54:08 +03:00
2014-01-11 21:12:09 +03:00
if ( vstd : : contains ( town - > builtBuildings , getMyBuilding ( ) - > bid ) )
{
ui32 available = town - > creatures [ level ] . first ;
std : : string availableText = CGI - > generaltexth - > allTexts [ 217 ] + boost : : lexical_cast < std : : string > ( available ) ;
availableCount = new CLabel ( 78 , 119 , FONT_SMALL , CENTER , Colors : : WHITE , availableText ) ;
}
}
2011-04-07 20:54:08 +03:00
2014-01-11 21:12:09 +03:00
if ( getMyCreature ( ) ! = nullptr )
2013-12-02 14:58:02 +03:00
{
2014-01-11 21:12:09 +03:00
hoverText = boost : : str ( boost : : format ( CGI - > generaltexth - > tcommands [ 21 ] ) % getMyCreature ( ) - > namePl ) ;
creatureAnim = new CCreaturePic ( 159 , 4 , getMyCreature ( ) , false ) ;
creatureName = new CLabel ( 78 , 11 , FONT_SMALL , CENTER , Colors : : WHITE , getMyCreature ( ) - > namePl ) ;
Rect sizes ( 287 , 4 , 96 , 18 ) ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 190 ] , CGI - > generaltexth - > fcommands [ 0 ] , getMyCreature ( ) - > Attack ( ) ) ) ;
sizes . y + = 20 ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 191 ] , CGI - > generaltexth - > fcommands [ 1 ] , getMyCreature ( ) - > Defense ( ) ) ) ;
sizes . y + = 21 ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 199 ] , CGI - > generaltexth - > fcommands [ 2 ] , getMyCreature ( ) - > getMinDamage ( ) , getMyCreature ( ) - > getMaxDamage ( ) ) ) ;
sizes . y + = 20 ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 388 ] , CGI - > generaltexth - > fcommands [ 3 ] , getMyCreature ( ) - > MaxHealth ( ) ) ) ;
sizes . y + = 21 ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 193 ] , CGI - > generaltexth - > fcommands [ 4 ] , getMyCreature ( ) - > valOfBonuses ( Bonus : : STACKS_SPEED ) ) ) ;
sizes . y + = 20 ;
values . push_back ( new LabeledValue ( sizes , CGI - > generaltexth - > allTexts [ 194 ] , CGI - > generaltexth - > fcommands [ 5 ] , town - > creatureGrowth ( level ) ) ) ;
2011-04-07 20:54:08 +03:00
}
2008-08-17 12:11:16 +03:00
}
2009-04-14 15:47:09 +03:00
2011-04-07 20:54:08 +03:00
void CFortScreen : : RecruitArea : : hover ( bool on )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
if ( on )
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( hoverText ) ;
2010-07-26 01:47:59 +03:00
else
2011-04-07 20:54:08 +03:00
GH . statusbar - > clear ( ) ;
2008-08-17 12:11:16 +03:00
}
2011-04-07 20:54:08 +03:00
void CFortScreen : : RecruitArea : : creaturesChanged ( )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
if ( availableCount )
2008-08-17 12:11:16 +03:00
{
2011-04-07 20:54:08 +03:00
std : : string availableText = CGI - > generaltexth - > allTexts [ 217 ] +
boost : : lexical_cast < std : : string > ( town - > creatures [ level ] . first ) ;
2013-08-29 16:46:27 +03:00
availableCount - > setText ( availableText ) ;
2008-08-17 12:11:16 +03:00
}
}
2011-04-07 20:54:08 +03:00
void CFortScreen : : RecruitArea : : clickLeft ( tribool down , bool previousState )
2008-08-17 12:11:16 +03:00
{
2009-08-11 19:05:33 +03:00
if ( ! down & & previousState )
2011-03-22 15:19:07 +02:00
LOCPLINT - > castleInt - > builds - > enterDwelling ( level ) ;
2008-08-17 12:11:16 +03:00
}
2008-08-20 09:57:53 +03:00
2011-04-07 20:54:08 +03:00
void CFortScreen : : RecruitArea : : clickRight ( tribool down , bool previousState )
2009-01-22 19:30:15 +02:00
{
2009-08-11 19:05:33 +03:00
clickLeft ( down , false ) ; //r-click does same as l-click - opens recr. window
2009-01-22 19:30:15 +02:00
}
2011-04-07 20:54:08 +03:00
2014-04-24 22:36:10 +03:00
CMageGuildScreen : : CMageGuildScreen ( CCastleInterface * owner , std : : string imagem ) : CWindowObject ( BORDERED , imagem )
2008-08-20 09:57:53 +03:00
{
2014-04-24 22:36:10 +03:00
2010-11-15 17:15:00 +02:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2014-03-07 16:21:09 +03:00
2012-09-05 15:49:23 +03:00
window = new CPicture ( owner - > town - > town - > clientInfo . guildWindow , 332 , 76 ) ;
2014-03-07 16:21:09 +03:00
2009-05-20 12:02:50 +03:00
resdatabar = new CMinorResDataBar ;
resdatabar - > pos . x + = pos . x ;
resdatabar - > pos . y + = pos . y ;
2011-12-22 16:05:19 +03:00
Rect barRect ( 7 , 556 , 737 , 18 ) ;
2011-04-07 20:54:08 +03:00
statusBar = new CGStatusBar ( new CPicture ( * background , barRect , 7 , 556 , false ) ) ;
2014-03-07 16:21:09 +03:00
2013-07-02 18:23:32 +03:00
exit = new CAdventureMapButton ( CGI - > generaltexth - > allTexts [ 593 ] , " " , boost : : bind ( & CMageGuildScreen : : close , this ) , 748 , 556 , " TPMAGE1.DEF " , SDLK_RETURN ) ;
2008-11-28 03:36:34 +02:00
exit - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2014-03-07 16:21:09 +03:00
2011-12-22 16:05:19 +03:00
std : : vector < std : : vector < Point > > positions ;
2011-04-07 20:54:08 +03:00
2008-08-20 09:57:53 +03:00
positions . resize ( 5 ) ;
2011-12-22 16:05:19 +03:00
positions [ 0 ] + = Point ( 222 , 445 ) , Point ( 312 , 445 ) , Point ( 402 , 445 ) , Point ( 520 , 445 ) , Point ( 610 , 445 ) , Point ( 700 , 445 ) ;
positions [ 1 ] + = Point ( 48 , 53 ) , Point ( 48 , 147 ) , Point ( 48 , 241 ) , Point ( 48 , 335 ) , Point ( 48 , 429 ) ;
positions [ 2 ] + = Point ( 570 , 82 ) , Point ( 672 , 82 ) , Point ( 570 , 157 ) , Point ( 672 , 157 ) ;
positions [ 3 ] + = Point ( 183 , 42 ) , Point ( 183 , 148 ) , Point ( 183 , 253 ) ;
positions [ 4 ] + = Point ( 491 , 325 ) , Point ( 591 , 325 ) ;
2014-03-07 16:21:09 +03:00
2008-12-21 21:17:35 +02:00
for ( size_t i = 0 ; i < owner - > town - > town - > mageLevel ; i + + )
2008-08-20 09:57:53 +03:00
{
2011-04-07 20:54:08 +03:00
size_t spellCount = owner - > town - > spellsAtLevel ( i + 1 , false ) ; //spell at level with -1 hmmm?
for ( size_t j = 0 ; j < spellCount ; j + + )
2008-08-20 09:57:53 +03:00
{
2008-09-23 13:58:54 +03:00
if ( i < owner - > town - > mageGuildLevel ( ) & & owner - > town - > spells [ i ] . size ( ) > j )
2014-03-07 16:21:09 +03:00
spells . push_back ( new Scroll ( positions [ i ] [ j ] , CGI - > spellh - > objects [ owner - > town - > spells [ i ] [ j ] ] ) ) ;
2008-08-20 09:57:53 +03:00
else
2011-04-07 20:54:08 +03:00
new CAnimImage ( " TPMAGES.DEF " , 1 , 0 , positions [ i ] [ j ] . x , positions [ i ] [ j ] . y ) ; //closed scroll
2008-08-20 09:57:53 +03:00
}
}
}
2009-04-14 15:47:09 +03:00
2011-12-22 16:05:19 +03:00
CMageGuildScreen : : Scroll : : Scroll ( Point position , const CSpell * Spell )
2010-11-15 17:15:00 +02:00
: spell ( Spell )
2008-08-20 09:57:53 +03:00
{
2011-04-07 20:54:08 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2012-06-02 18:16:54 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ;
2011-04-07 20:54:08 +03:00
pos + = position ;
image = new CAnimImage ( " SPELLSCR " , spell - > id ) ;
pos = image - > pos ;
2008-08-20 09:57:53 +03:00
}
2009-04-14 15:47:09 +03:00
2009-08-11 19:05:33 +03:00
void CMageGuildScreen : : Scroll : : clickLeft ( tribool down , bool previousState )
2008-08-20 09:57:53 +03:00
{
2008-08-27 13:19:18 +03:00
if ( down )
2014-03-17 16:11:10 +03:00
LOCPLINT - > showInfoDialog ( spell - > getLevelInfo ( 0 ) . description , new CComponent ( CComponent : : spell , spell - > id ) ) ;
2008-08-20 09:57:53 +03:00
}
2009-04-14 15:47:09 +03:00
2009-08-11 19:05:33 +03:00
void CMageGuildScreen : : Scroll : : clickRight ( tribool down , bool previousState )
2008-08-20 09:57:53 +03:00
{
if ( down )
2014-03-17 16:11:10 +03:00
CRClickPopup : : createAndPush ( spell - > getLevelInfo ( 0 ) . description , new CComponent ( CComponent : : spell , spell - > id ) ) ;
2008-08-20 09:57:53 +03:00
}
2009-04-14 15:47:09 +03:00
2008-08-20 09:57:53 +03:00
void CMageGuildScreen : : Scroll : : hover ( bool on )
{
2008-08-27 13:19:18 +03:00
if ( on )
2013-08-29 16:46:27 +03:00
GH . statusbar - > setText ( spell - > name ) ;
2008-08-27 13:19:18 +03:00
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2008-08-20 09:57:53 +03:00
}
2009-04-14 15:47:09 +03:00
2013-02-14 02:55:42 +03:00
CBlacksmithDialog : : CBlacksmithDialog ( bool possible , CreatureID creMachineID , ArtifactID aid , ObjectInstanceID hid ) :
2012-06-15 20:08:19 +03:00
CWindowObject ( PLAYER_COLORED , " TPSMITH " )
2008-08-27 13:19:18 +03:00
{
2010-11-15 17:15:00 +02:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2011-04-07 20:54:08 +03:00
2012-06-16 13:41:14 +03:00
statusBar = new CGStatusBar ( new CPicture ( * background , Rect ( 8 , pos . h - 26 , pos . w - 16 , 19 ) , 8 , pos . h - 26 ) ) ;
2014-03-07 16:21:09 +03:00
2011-02-06 19:26:27 +02:00
animBG = new CPicture ( " TPSMITBK " , 64 , 50 ) ;
animBG - > needRefresh = true ;
2009-05-07 20:20:41 +03:00
2011-04-07 20:54:08 +03:00
const CCreature * creature = CGI - > creh - > creatures [ creMachineID ] ;
2011-12-22 16:05:19 +03:00
anim = new CCreatureAnim ( 64 , 50 , creature - > animDefName , Rect ( ) ) ;
2011-02-06 19:26:27 +02:00
anim - > clipRect ( 113 , 125 , 200 , 150 ) ;
2014-03-07 16:21:09 +03:00
title = new CLabel ( 165 , 28 , FONT_BIG , CENTER , Colors : : YELLOW ,
2011-04-07 20:54:08 +03:00
boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 274 ] ) % creature - > nameSing ) ) ;
2012-11-11 15:23:31 +03:00
costText = new CLabel ( 165 , 218 , FONT_MEDIUM , CENTER , Colors : : WHITE , CGI - > generaltexth - > jktexts [ 43 ] ) ;
costValue = new CLabel ( 165 , 290 , FONT_MEDIUM , CENTER , Colors : : WHITE ,
2011-04-07 20:54:08 +03:00
boost : : lexical_cast < std : : string > ( CGI - > arth - > artifacts [ aid ] - > price ) ) ;
std : : string text = boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 595 ] ) % creature - > nameSing ) ;
2013-07-02 18:23:32 +03:00
buy = new CAdventureMapButton ( text , " " , boost : : bind ( & CBlacksmithDialog : : close , this ) , 42 , 312 , " IBUY30.DEF " , SDLK_RETURN ) ;
2014-03-07 16:21:09 +03:00
2011-04-07 20:54:08 +03:00
text = boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 596 ] ) % creature - > nameSing ) ;
2013-07-02 18:23:32 +03:00
cancel = new CAdventureMapButton ( text , " " , boost : : bind ( & CBlacksmithDialog : : close , this ) , 224 , 312 , " ICANCEL.DEF " , SDLK_ESCAPE ) ;
2009-05-07 20:20:41 +03:00
2008-08-27 13:19:18 +03:00
if ( possible )
2013-06-23 19:09:15 +03:00
buy - > callback + = [ = ] { LOCPLINT - > cb - > buyArtifact ( LOCPLINT - > cb - > getHero ( hid ) , aid ) ; } ;
2008-08-27 13:19:18 +03:00
else
2011-04-07 20:54:08 +03:00
buy - > block ( true ) ;
2008-08-27 13:19:18 +03:00
2012-05-13 18:04:21 +03:00
new CAnimImage ( " RESOURCE " , 6 , 0 , 148 , 244 ) ;
2008-08-27 13:19:18 +03:00
}