2017-07-13 10:26:03 +02:00
/*
* MiscWidgets . 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
*
*/
2014-07-13 18:40:13 +03:00
# include "StdInc.h"
# include "MiscWidgets.h"
2014-07-15 10:14:49 +03:00
# include "CComponent.h"
2014-07-13 20:53:37 +03:00
# include "../gui/CGuiHandler.h"
# include "../gui/CCursorHandler.h"
2014-07-13 18:40:13 +03:00
# include "../CBitmapHandler.h"
# include "../CPlayerInterface.h"
# include "../CMessage.h"
# include "../CGameInfo.h"
2014-07-13 20:53:37 +03:00
# include "../windows/CAdvmapInterface.h"
# include "../windows/CCastleInterface.h"
2014-07-15 10:14:49 +03:00
# include "../windows/InfoWindows.h"
2014-07-13 18:40:13 +03:00
# include "../../CCallback.h"
# include "../../lib/mapObjects/CGHeroInstance.h"
2014-07-15 10:14:49 +03:00
# include "../../lib/mapObjects/CGTownInstance.h"
2014-07-13 18:40:13 +03:00
# include "../../lib/CGeneralTextHandler.h"
# include "../../lib/CModHandler.h"
2014-07-15 10:14:49 +03:00
# include "../../lib/CGameState.h"
2014-07-13 18:40:13 +03:00
2014-07-15 10:14:49 +03:00
void CHoverableArea : : hover ( bool on )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
if ( on )
GH . statusbar - > setText ( hoverText ) ;
else if ( GH . statusbar - > getText ( ) = = hoverText )
GH . statusbar - > clear ( ) ;
2014-07-13 18:40:13 +03:00
}
2014-07-15 10:14:49 +03:00
CHoverableArea : : CHoverableArea ( )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
addUsedEvents ( HOVER ) ;
2014-07-13 18:40:13 +03:00
}
2014-07-15 10:14:49 +03:00
CHoverableArea : : ~ CHoverableArea ( )
2014-07-13 18:40:13 +03:00
{
}
2014-07-15 10:14:49 +03:00
void LRClickableAreaWText : : clickLeft ( tribool down , bool previousState )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
if ( ! down & & previousState & & ! text . empty ( ) )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
LOCPLINT - > showInfoDialog ( text ) ;
2014-07-13 18:40:13 +03:00
}
}
2014-07-15 10:14:49 +03:00
void LRClickableAreaWText : : clickRight ( tribool down , bool previousState )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
if ( ! text . empty ( ) )
adventureInt - > handleRightClick ( text , down ) ;
2014-07-13 18:40:13 +03:00
}
2014-07-15 10:14:49 +03:00
LRClickableAreaWText : : LRClickableAreaWText ( )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
init ( ) ;
2014-07-13 18:40:13 +03:00
}
2017-07-15 13:08:20 +02:00
LRClickableAreaWText : : LRClickableAreaWText ( const Rect & Pos , const std : : string & HoverText , const std : : string & ClickText )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
init ( ) ;
pos = Pos + pos ;
hoverText = HoverText ;
text = ClickText ;
2014-07-13 18:40:13 +03:00
}
2014-07-15 10:14:49 +03:00
LRClickableAreaWText : : ~ LRClickableAreaWText ( )
2014-07-13 18:40:13 +03:00
{
}
2014-07-15 10:14:49 +03:00
void LRClickableAreaWText : : init ( )
2014-07-13 18:40:13 +03:00
{
2014-07-15 10:14:49 +03:00
addUsedEvents ( LCLICK | RCLICK | HOVER ) ;
2014-07-13 18:40:13 +03:00
}
void LRClickableAreaWTextComp : : clickLeft ( tribool down , bool previousState )
{
if ( ( ! down ) & & previousState )
{
2018-04-07 13:34:11 +02:00
std : : vector < std : : shared_ptr < CComponent > > comp ( 1 , createComponent ( ) ) ;
2014-07-13 18:40:13 +03:00
LOCPLINT - > showInfoDialog ( text , comp ) ;
}
}
LRClickableAreaWTextComp : : LRClickableAreaWTextComp ( const Rect & Pos , int BaseType )
2017-10-29 17:23:30 +02:00
: LRClickableAreaWText ( Pos ) , baseType ( BaseType ) , bonusValue ( - 1 )
2014-07-13 18:40:13 +03:00
{
2017-10-29 17:23:30 +02:00
type = - 1 ;
2014-07-13 18:40:13 +03:00
}
2018-04-07 13:34:11 +02:00
std : : shared_ptr < CComponent > LRClickableAreaWTextComp : : createComponent ( ) const
2014-07-13 18:40:13 +03:00
{
if ( baseType > = 0 )
2018-04-07 13:34:11 +02:00
return std : : make_shared < CComponent > ( CComponent : : Etype ( baseType ) , type , bonusValue ) ;
2014-07-13 18:40:13 +03:00
else
2018-04-07 13:34:11 +02:00
return std : : shared_ptr < CComponent > ( ) ;
2014-07-13 18:40:13 +03:00
}
void LRClickableAreaWTextComp : : clickRight ( tribool down , bool previousState )
{
if ( down )
{
2018-04-07 13:34:11 +02:00
if ( auto comp = createComponent ( ) )
2014-07-13 18:40:13 +03:00
{
CRClickPopup : : createAndPush ( text , CInfoWindow : : TCompsInfo ( 1 , comp ) ) ;
return ;
}
}
LRClickableAreaWText : : clickRight ( down , previousState ) ; //only if with-component variant not occurred
}
2018-04-07 13:34:11 +02:00
CHeroArea : : CHeroArea ( int x , int y , const CGHeroInstance * _hero )
: CIntObject ( LCLICK | RCLICK | HOVER ) ,
hero ( _hero )
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
pos . x + = x ;
pos . w = 58 ;
pos . y + = y ;
pos . h = 64 ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
if ( hero )
portrait = std : : make_shared < CAnimImage > ( " PortraitsLarge " , hero - > portrait ) ;
2014-07-13 18:40:13 +03:00
}
void CHeroArea : : clickLeft ( tribool down , bool previousState )
{
2016-11-28 01:09:24 +02:00
if ( hero & & ( ! down ) & & previousState )
2014-07-13 18:40:13 +03:00
LOCPLINT - > openHeroWindow ( hero ) ;
}
void CHeroArea : : clickRight ( tribool down , bool previousState )
{
2016-11-28 01:09:24 +02:00
if ( hero & & ( ! down ) & & previousState )
2014-07-13 18:40:13 +03:00
LOCPLINT - > openHeroWindow ( hero ) ;
}
void CHeroArea : : hover ( bool on )
{
if ( on & & hero )
GH . statusbar - > setText ( hero - > getObjectName ( ) ) ;
else
GH . statusbar - > clear ( ) ;
}
void LRClickableAreaOpenTown : : clickLeft ( tribool down , bool previousState )
{
2016-11-28 01:09:24 +02:00
if ( town & & ( ! down ) & & previousState )
{
2014-07-13 18:40:13 +03:00
LOCPLINT - > openTownWindow ( town ) ;
if ( type = = 2 )
LOCPLINT - > castleInt - > builds - > buildingClicked ( BuildingID : : VILLAGE_HALL ) ;
else if ( type = = 3 & & town - > fortLevel ( ) )
LOCPLINT - > castleInt - > builds - > buildingClicked ( BuildingID : : FORT ) ;
2016-11-28 01:09:24 +02:00
}
2014-07-13 18:40:13 +03:00
}
void LRClickableAreaOpenTown : : clickRight ( tribool down , bool previousState )
{
2016-11-28 01:09:24 +02:00
if ( town & & ( ! down ) & & previousState )
2014-07-13 18:40:13 +03:00
LOCPLINT - > openTownWindow ( town ) ; //TODO: popup?
}
2016-11-27 17:17:20 +02:00
LRClickableAreaOpenTown : : LRClickableAreaOpenTown ( const Rect & Pos , const CGTownInstance * Town )
: LRClickableAreaWTextComp ( Pos , - 1 ) , town ( Town )
2014-07-13 18:40:13 +03:00
{
}
void CMinorResDataBar : : show ( SDL_Surface * to )
{
}
void CMinorResDataBar : : showAll ( SDL_Surface * to )
{
2018-04-07 13:34:11 +02:00
CIntObject : : showAll ( to ) ;
2014-07-13 18:40:13 +03:00
for ( Res : : ERes i = Res : : WOOD ; i < = Res : : GOLD ; vstd : : advance ( i , 1 ) )
{
std : : string text = boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > getResourceAmount ( i ) ) ;
graphics - > fonts [ FONT_SMALL ] - > renderTextCenter ( to , text , Colors : : WHITE , Point ( pos . x + 50 + 76 * i , pos . y + pos . h / 2 ) ) ;
}
std : : vector < std : : string > temp ;
temp . push_back ( boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > getDate ( Date : : MONTH ) ) ) ;
temp . push_back ( boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > getDate ( Date : : WEEK ) ) ) ;
temp . push_back ( boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > getDate ( Date : : DAY_OF_WEEK ) ) ) ;
std : : string datetext = CGI - > generaltexth - > allTexts [ 62 ] + " : %s, " + CGI - > generaltexth - > allTexts [ 63 ]
+ " : %s, " + CGI - > generaltexth - > allTexts [ 64 ] + " : %s " ;
graphics - > fonts [ FONT_SMALL ] - > renderTextCenter ( to , CSDL_Ext : : processStr ( datetext , temp ) , Colors : : WHITE , Point ( pos . x + 545 + ( pos . w - 545 ) / 2 , pos . y + pos . h / 2 ) ) ;
}
CMinorResDataBar : : CMinorResDataBar ( )
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
pos . x = 7 ;
pos . y = 575 ;
2018-04-07 13:34:11 +02:00
background = std : : make_shared < CPicture > ( " KRESBAR.bmp " ) ;
background - > colorize ( LOCPLINT - > playerID ) ;
pos . w = background - > pos . w ;
pos . h = background - > pos . h ;
2014-07-13 18:40:13 +03:00
}
2018-04-07 13:34:11 +02:00
CMinorResDataBar : : ~ CMinorResDataBar ( ) = default ;
2014-07-13 18:40:13 +03:00
void CArmyTooltip : : init ( const InfoAboutArmy & army )
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
title = std : : make_shared < CLabel > ( 66 , 2 , FONT_SMALL , TOPLEFT , Colors : : WHITE , army . name ) ;
2014-07-13 18:40:13 +03:00
std : : vector < Point > slotsPos ;
2018-04-07 13:34:11 +02:00
slotsPos . push_back ( Point ( 36 , 73 ) ) ;
slotsPos . push_back ( Point ( 72 , 73 ) ) ;
slotsPos . push_back ( Point ( 108 , 73 ) ) ;
slotsPos . push_back ( Point ( 18 , 122 ) ) ;
slotsPos . push_back ( Point ( 54 , 122 ) ) ;
slotsPos . push_back ( Point ( 90 , 122 ) ) ;
slotsPos . push_back ( Point ( 126 , 122 ) ) ;
2014-07-13 18:40:13 +03:00
for ( auto & slot : army . army )
{
if ( slot . first . getNum ( ) > = GameConstants : : ARMY_SIZE )
{
2017-08-11 13:38:10 +02:00
logGlobal - > warn ( " %s has stack in slot %d " , army . name , slot . first . getNum ( ) ) ;
2014-07-13 18:40:13 +03:00
continue ;
}
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
icons . push_back ( std : : make_shared < CAnimImage > ( " CPRSMALL " , slot . second . type - > getIconIndex ( ) , 0 , slotsPos [ slot . first . getNum ( ) ] . x , slotsPos [ slot . first . getNum ( ) ] . y ) ) ;
2014-07-13 18:40:13 +03:00
std : : string subtitle ;
if ( army . army . isDetailed )
2018-04-07 13:34:11 +02:00
{
2014-07-13 18:40:13 +03:00
subtitle = boost : : lexical_cast < std : : string > ( slot . second . count ) ;
2018-04-07 13:34:11 +02:00
}
2014-07-13 18:40:13 +03:00
else
{
//if =0 - we have no information about stack size at all
2018-04-07 13:34:11 +02:00
if ( slot . second . count )
2014-07-13 18:40:13 +03:00
subtitle = CGI - > generaltexth - > arraytxt [ 171 + 3 * ( slot . second . count ) ] ;
}
2018-04-07 13:34:11 +02:00
subtitles . push_back ( std : : make_shared < CLabel > ( slotsPos [ slot . first . getNum ( ) ] . x + 17 , slotsPos [ slot . first . getNum ( ) ] . y + 41 , FONT_TINY , CENTER , Colors : : WHITE , subtitle ) ) ;
2014-07-13 18:40:13 +03:00
}
}
2018-04-07 13:34:11 +02:00
CArmyTooltip : : CArmyTooltip ( Point pos , const InfoAboutArmy & army ) :
2014-07-13 18:40:13 +03:00
CIntObject ( 0 , pos )
{
init ( army ) ;
}
CArmyTooltip : : CArmyTooltip ( Point pos , const CArmedInstance * army ) :
CIntObject ( 0 , pos )
{
init ( InfoAboutArmy ( army , true ) ) ;
}
2018-04-07 13:34:11 +02:00
void CHeroTooltip : : init ( const InfoAboutHero & hero )
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
portrait = std : : make_shared < CAnimImage > ( " PortraitsLarge " , hero . portrait , 0 , 3 , 2 ) ;
2014-07-13 18:40:13 +03:00
if ( hero . details )
{
2018-04-07 13:34:11 +02:00
for ( size_t i = 0 ; i < hero . details - > primskills . size ( ) ; i + + )
2020-10-01 10:38:06 +02:00
labels . push_back ( std : : make_shared < CLabel > ( 75 + 28 * ( int ) i , 58 , FONT_SMALL , CENTER , Colors : : WHITE ,
2018-04-07 13:34:11 +02:00
boost : : lexical_cast < std : : string > ( hero . details - > primskills [ i ] ) ) ) ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
labels . push_back ( std : : make_shared < CLabel > ( 158 , 98 , FONT_TINY , CENTER , Colors : : WHITE , boost : : lexical_cast < std : : string > ( hero . details - > mana ) ) ) ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
morale = std : : make_shared < CAnimImage > ( " IMRL22 " , hero . details - > morale + 3 , 0 , 5 , 74 ) ;
luck = std : : make_shared < CAnimImage > ( " ILCK22 " , hero . details - > luck + 3 , 0 , 5 , 91 ) ;
2014-07-13 18:40:13 +03:00
}
}
CHeroTooltip : : CHeroTooltip ( Point pos , const InfoAboutHero & hero ) :
CArmyTooltip ( pos , hero )
{
init ( hero ) ;
}
CHeroTooltip : : CHeroTooltip ( Point pos , const CGHeroInstance * hero ) :
2016-09-28 13:22:33 +02:00
CArmyTooltip ( pos , InfoAboutHero ( hero , InfoAboutHero : : EInfoLevel : : DETAILED ) )
2014-07-13 18:40:13 +03:00
{
2016-09-28 13:22:33 +02:00
init ( InfoAboutHero ( hero , InfoAboutHero : : EInfoLevel : : DETAILED ) ) ;
2014-07-13 18:40:13 +03:00
}
2018-04-07 13:34:11 +02:00
void CTownTooltip : : init ( const InfoAboutTown & town )
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
//order of icons in def: fort, citadel, castle, no fort
size_t fortIndex = town . fortLevel ? town . fortLevel - 1 : 3 ;
2018-04-07 13:34:11 +02:00
fort = std : : make_shared < CAnimImage > ( " ITMCLS " , fortIndex , 0 , 105 , 31 ) ;
2014-07-13 18:40:13 +03:00
assert ( town . tType ) ;
size_t iconIndex = town . tType - > clientInfo . icons [ town . fortLevel > 0 ] [ town . built > = CGI - > modh - > settings . MAX_BUILDING_PER_TURN ] ;
2018-04-07 13:34:11 +02:00
build = std : : make_shared < CAnimImage > ( " itpt " , iconIndex , 0 , 3 , 2 ) ;
2014-07-13 18:40:13 +03:00
if ( town . details )
{
2018-04-07 13:34:11 +02:00
fort = std : : make_shared < CAnimImage > ( " ITMTLS " , town . details - > hallLevel , 0 , 67 , 31 ) ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
if ( town . details - > goldIncome )
{
income = std : : make_shared < CLabel > ( 157 , 58 , FONT_TINY , CENTER , Colors : : WHITE ,
2014-07-13 18:40:13 +03:00
boost : : lexical_cast < std : : string > ( town . details - > goldIncome ) ) ;
2018-04-07 13:34:11 +02:00
}
2014-07-13 18:40:13 +03:00
if ( town . details - > garrisonedHero ) //garrisoned hero icon
2018-04-07 13:34:11 +02:00
garrisonedHero = std : : make_shared < CPicture > ( " TOWNQKGH " , 149 , 76 ) ;
2014-07-13 18:40:13 +03:00
if ( town . details - > customRes ) //silo is built
{
2018-04-07 13:34:11 +02:00
if ( town . tType - > primaryRes = = Res : : WOOD_AND_ORE ) // wood & ore
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
res1 = std : : make_shared < CAnimImage > ( " SMALRES " , Res : : WOOD , 0 , 7 , 75 ) ;
res2 = std : : make_shared < CAnimImage > ( " SMALRES " , Res : : ORE , 0 , 7 , 88 ) ;
2014-07-13 18:40:13 +03:00
}
else
2018-04-07 13:34:11 +02:00
{
res1 = std : : make_shared < CAnimImage > ( " SMALRES " , town . tType - > primaryRes , 0 , 7 , 81 ) ;
}
2014-07-13 18:40:13 +03:00
}
}
}
2018-04-07 13:34:11 +02:00
CTownTooltip : : CTownTooltip ( Point pos , const InfoAboutTown & town )
: CArmyTooltip ( pos , town )
2014-07-13 18:40:13 +03:00
{
init ( town ) ;
}
2018-04-07 13:34:11 +02:00
CTownTooltip : : CTownTooltip ( Point pos , const CGTownInstance * town )
: CArmyTooltip ( pos , InfoAboutTown ( town , true ) )
2014-07-13 18:40:13 +03:00
{
init ( InfoAboutTown ( town , true ) ) ;
}
2018-04-07 13:34:11 +02:00
void MoraleLuckBox : : set ( const IBonusBearer * node )
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CUSTOM_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
const int textId [ ] = { 62 , 88 } ; //eg %s \n\n\n {Current Luck Modifiers:}
const int noneTxtId = 108 ; //Russian version uses same text for neutral morale\luck
const int neutralDescr [ ] = { 60 , 86 } ; //eg {Neutral Morale} \n\n Neutral morale means your armies will neither be blessed with extra attacks or freeze in combat.
const int componentType [ ] = { CComponent : : luck , CComponent : : morale } ;
const int hoverTextBase [ ] = { 7 , 4 } ;
2020-11-11 21:43:40 +02:00
TConstBonusListPtr modifierList = std : : make_shared < const BonusList > ( ) ;
bonusValue = 0 ;
2014-07-13 18:40:13 +03:00
2018-04-07 13:34:11 +02:00
if ( node )
2020-11-11 21:43:40 +02:00
bonusValue = morale ? node - > MoraleValAndBonusList ( modifierList ) : node - > LuckValAndBonusList ( modifierList ) ;
2014-07-13 18:40:13 +03:00
2015-09-04 18:38:42 +02:00
int mrlt = ( bonusValue > 0 ) - ( bonusValue < 0 ) ; //signum: -1 - bad luck / morale, 0 - neutral, 1 - good
2014-07-13 18:40:13 +03:00
hoverText = CGI - > generaltexth - > heroscrn [ hoverTextBase [ morale ] - mrlt ] ;
baseType = componentType [ morale ] ;
text = CGI - > generaltexth - > arraytxt [ textId [ morale ] ] ;
boost : : algorithm : : replace_first ( text , " %s " , CGI - > generaltexth - > arraytxt [ neutralDescr [ morale ] - mrlt ] ) ;
2016-11-27 17:17:20 +02:00
if ( morale & & node & & ( node - > hasBonusOfType ( Bonus : : UNDEAD )
| | node - > hasBonusOfType ( Bonus : : BLOCK_MORALE )
2015-09-04 18:38:42 +02:00
| | node - > hasBonusOfType ( Bonus : : NON_LIVING ) ) )
2015-12-24 21:35:32 +02:00
{
text + = CGI - > generaltexth - > arraytxt [ 113 ] ; //unaffected by morale
bonusValue = 0 ;
}
else if ( ! morale & & node & & node - > hasBonusOfType ( Bonus : : BLOCK_LUCK ) )
{
// TODO: there is no text like "Unaffected by luck" so probably we need own text
text + = CGI - > generaltexth - > arraytxt [ noneTxtId ] ;
bonusValue = 0 ;
}
2017-10-05 17:13:49 +02:00
else if ( morale & & node & & node - > hasBonusOfType ( Bonus : : NO_MORALE ) )
{
2020-11-11 21:43:40 +02:00
auto noMorale = node - > getBonus ( Selector : : type ( ) ( Bonus : : NO_MORALE ) ) ;
2017-10-05 17:13:49 +02:00
text + = " \n " + noMorale - > Description ( ) ;
bonusValue = 0 ;
}
else if ( ! morale & & node & & node - > hasBonusOfType ( Bonus : : NO_LUCK ) )
{
2020-11-11 21:43:40 +02:00
auto noLuck = node - > getBonus ( Selector : : type ( ) ( Bonus : : NO_LUCK ) ) ;
2017-10-05 17:13:49 +02:00
text + = " \n " + noLuck - > Description ( ) ;
bonusValue = 0 ;
}
2015-09-04 18:38:42 +02:00
else if ( modifierList - > empty ( ) )
text + = CGI - > generaltexth - > arraytxt [ noneTxtId ] ; //no modifiers
2014-07-13 18:40:13 +03:00
else
{
2016-09-19 23:36:35 +02:00
for ( auto & elem : * modifierList )
2014-07-13 18:40:13 +03:00
{
2015-09-04 18:38:42 +02:00
if ( elem - > val ! = 0 )
//no bonuses with value 0
text + = " \n " + elem - > Description ( ) ;
2014-07-13 18:40:13 +03:00
}
}
std : : string imageName ;
if ( small )
imageName = morale ? " IMRL30 " : " ILCK30 " ;
else
imageName = morale ? " IMRL42 " : " ILCK42 " ;
2018-04-07 13:34:11 +02:00
image = std : : make_shared < CAnimImage > ( imageName , bonusValue + 3 ) ;
2014-07-13 18:40:13 +03:00
image - > moveBy ( Point ( pos . w / 2 - image - > pos . w / 2 , pos . h / 2 - image - > pos . h / 2 ) ) ; //center icon
}
2018-04-07 13:34:11 +02:00
MoraleLuckBox : : MoraleLuckBox ( bool Morale , const Rect & r , bool Small )
: morale ( Morale ) ,
2014-07-13 18:40:13 +03:00
small ( Small )
{
bonusValue = 0 ;
pos = r + pos ;
2018-04-07 13:34:11 +02:00
defActions = 255 - DISPOSE ;
2014-07-13 18:40:13 +03:00
}
2018-04-07 13:34:11 +02:00
CCreaturePic : : CCreaturePic ( int x , int y , const CCreature * cre , bool Big , bool Animated )
2014-07-13 18:40:13 +03:00
{
2018-04-07 13:34:11 +02:00
OBJECT_CONSTRUCTION_CAPTURING ( 255 - DISPOSE ) ;
2014-07-13 18:40:13 +03:00
pos . x + = x ;
pos . y + = y ;
TFaction faction = cre - > faction ;
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
assert ( CGI - > townh - > size ( ) > faction ) ;
2014-07-13 18:40:13 +03:00
if ( Big )
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
bg = std : : make_shared < CPicture > ( ( * CGI - > townh ) [ faction ] - > creatureBg130 ) ;
2014-07-13 18:40:13 +03:00
else
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
bg = std : : make_shared < CPicture > ( ( * CGI - > townh ) [ faction ] - > creatureBg120 ) ;
2018-07-25 00:36:48 +02:00
anim = std : : make_shared < CCreatureAnim > ( 0 , 0 , cre - > animDefName ) ;
2014-07-13 18:40:13 +03:00
anim - > clipRect ( cre - > isDoubleWide ( ) ? 170 : 150 , 155 , bg - > pos . w , bg - > pos . h ) ;
anim - > startPreview ( cre - > hasBonusOfType ( Bonus : : SIEGE_WEAPON ) ) ;
2018-04-07 13:34:11 +02:00
amount = std : : make_shared < CLabel > ( bg - > pos . w , bg - > pos . h , FONT_MEDIUM , BOTTOMRIGHT , Colors : : WHITE ) ;
2014-09-19 16:31:01 +03:00
2014-07-13 18:40:13 +03:00
pos . w = bg - > pos . w ;
pos . h = bg - > pos . h ;
}
2014-09-19 16:31:01 +03:00
2018-04-07 13:34:11 +02:00
void CCreaturePic : : show ( SDL_Surface * to )
2014-09-19 16:31:01 +03:00
{
// redraw everything in a proper order
bg - > showAll ( to ) ;
anim - > show ( to ) ;
amount - > showAll ( to ) ;
}
void CCreaturePic : : setAmount ( int newAmount )
{
2018-04-07 13:34:11 +02:00
if ( newAmount ! = 0 )
2014-09-19 16:31:01 +03:00
amount - > setText ( boost : : lexical_cast < std : : string > ( newAmount ) ) ;
else
amount - > setText ( " " ) ;
}