2009-05-19 21:23:04 +03:00
# include "GUIClasses.h"
2009-05-20 13:08:56 +03:00
# include "SDL_Extensions.h"
2009-05-19 21:23:04 +03:00
# include "../stdafx.h"
2009-05-20 13:08:56 +03:00
# include "CAdvmapInterface.h"
# include "CBattleInterface.h"
2009-05-19 21:23:04 +03:00
# include "../CCallback.h"
2009-05-20 13:08:56 +03:00
# include "CCastleInterface.h"
# include "CCursorHandler.h"
# include "CGameInfo.h"
# include "CHeroWindow.h"
# include "CMessage.h"
2009-06-02 06:01:17 +03:00
# include "CConfigHandler.h"
2009-05-20 13:08:56 +03:00
# include "SDL_framerate.h"
2009-05-19 21:23:04 +03:00
# include "CConfigHandler.h"
# include "CCreatureAnimation.h"
# include "Graphics.h"
2009-12-30 09:49:25 +02:00
# include "../hch/CArtHandler.h"
2009-12-29 15:40:16 +02:00
# include "../hch/CBuildingHandler.h"
2009-05-19 21:23:04 +03:00
# include "../hch/CGeneralTextHandler.h"
# include "../hch/CHeroHandler.h"
# include "../hch/CLodHandler.h"
# include "../hch/CObjectHandler.h"
# include "../hch/CSpellHandler.h"
# include "../hch/CTownHandler.h"
# include "../lib/CondSh.h"
2009-05-20 13:08:56 +03:00
# include "../lib/map.h"
2010-04-06 11:59:24 +03:00
# include "mapHandler.h"
2009-05-19 21:23:04 +03:00
# include "../timeHandler.h"
2010-02-16 16:39:56 +02:00
# include <boost/foreach.hpp>
2009-05-19 21:23:04 +03:00
# include <boost/lexical_cast.hpp>
2009-11-28 21:55:40 +02:00
# include <boost/format.hpp>
2009-05-19 21:23:04 +03:00
# include <boost/algorithm/string.hpp>
# include <boost/algorithm/string/replace.hpp>
# include <boost/assign/std/vector.hpp>
# include <boost/assign/list_of.hpp>
# include <boost/date_time/posix_time/posix_time.hpp>
2009-05-25 02:21:55 +03:00
//#include <boost/thread.hpp>
2009-05-19 21:23:04 +03:00
# include <cmath>
# include <queue>
# include <sstream>
# include "../lib/NetPacks.h"
2009-06-18 18:05:00 +03:00
# include "CSpellWindow.h"
# include "CHeroWindow.h"
2009-06-24 12:17:33 +03:00
# include "../hch/CVideoHandler.h"
2009-09-05 13:23:29 +03:00
# include "../StartInfo.h"
2009-09-07 05:29:44 +03:00
# include "CPreGame.h"
2010-05-02 21:20:26 +03:00
# include "../lib/HeroBonus.h"
2009-05-19 21:23:04 +03:00
/*
* GUIClasses . 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
*
*/
using namespace boost : : assign ;
using namespace CSDL_Ext ;
extern std : : queue < SDL_Event * > events ;
extern boost : : mutex eventsM ;
2010-02-16 18:35:24 +02:00
std : : list < CFocusable * > CFocusable : : focusables ;
CFocusable * CFocusable : : inputWithFocus ;
2010-02-15 13:37:47 +02:00
2009-06-24 15:14:48 +03:00
# undef min
# undef max
2009-05-19 21:23:04 +03:00
void CGarrisonSlot : : hover ( bool on )
{
2009-08-11 19:05:33 +03:00
////Hoverable::hover(on);
2009-05-19 21:23:04 +03:00
if ( on )
{
std : : string temp ;
if ( creature )
{
if ( owner - > highlighted )
{
if ( owner - > highlighted = = this )
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 4 ] ; //View %s
2009-05-19 21:23:04 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , creature - > nameSing ) ;
}
else if ( owner - > highlighted - > creature = = creature )
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 2 ] ; //Combine %s armies
2009-05-19 21:23:04 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , creature - > nameSing ) ;
}
else if ( owner - > highlighted - > creature )
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 7 ] ; //Exchange %s with %s
2009-05-19 21:23:04 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , owner - > highlighted - > creature - > nameSing ) ;
boost : : algorithm : : replace_first ( temp , " %s " , creature - > nameSing ) ;
}
else
{
tlog2 < < " Warning - shouldn't be - highlighted void slot " < < owner - > highlighted < < std : : endl ;
tlog2 < < " Highlighted set to NULL " < < std : : endl ;
owner - > highlighted = NULL ;
}
}
else
{
if ( upg )
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 32 ] ; //Select %s (visiting)
}
else if ( owner - > oup & & owner - > oup - > ID = = TOWNI_TYPE )
{
temp = CGI - > generaltexth - > tcommands [ 12 ] ; //Select %s (in garrison)
2009-05-19 21:23:04 +03:00
}
else
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > allTexts [ 481 ] ; //Select %s
2009-05-19 21:23:04 +03:00
}
boost : : algorithm : : replace_first ( temp , " %s " , creature - > nameSing ) ;
} ;
}
else
{
if ( owner - > highlighted )
{
const CArmedInstance * highl = owner - > highlighted - > getObj ( ) ;
if ( highl - > needsLastStack ( ) //we are moving stack from hero's
2010-05-02 21:20:26 +03:00
& & highl - > stacksCount ( ) = = 1 //it's only stack
2009-05-19 21:23:04 +03:00
& & owner - > highlighted - > upg ! = upg //we're moving it to the other garrison
)
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 5 ] ; //Cannot move last army to garrison
2009-05-19 21:23:04 +03:00
}
else
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 6 ] ; //Move %s
2009-05-19 21:23:04 +03:00
boost : : algorithm : : replace_first ( temp , " %s " , owner - > highlighted - > creature - > nameSing ) ;
}
}
else
{
2009-07-16 01:46:00 +03:00
temp = CGI - > generaltexth - > tcommands [ 11 ] ; //Empty
2009-05-19 21:23:04 +03:00
}
}
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( temp ) ;
2009-05-19 21:23:04 +03:00
}
else
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
}
}
const CArmedInstance * CGarrisonSlot : : getObj ( )
{
return ( ! upg ) ? ( owner - > oup ) : ( owner - > odown ) ;
}
2009-08-11 19:05:33 +03:00
void CGarrisonSlot : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down & & creature )
2010-05-02 21:20:26 +03:00
GH . pushInt ( new CCreInfoWindow ( * myStack ) ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CGarrisonSlot : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( owner - > ignoreEvent )
{
owner - > ignoreEvent = false ;
return ;
}
if ( down )
{
bool refr = false ;
if ( owner - > highlighted )
{
if ( owner - > highlighted = = this ) //view info
{
UpgradeInfo pom = LOCPLINT - > cb - > getUpgradeInfo ( getObj ( ) , ID ) ;
CCreInfoWindow * creWindow = NULL ;
if ( pom . oldID > = 0 ) //upgrade is possible
{
creWindow = new CCreInfoWindow (
2010-05-02 21:20:26 +03:00
* myStack , 1 ,
2009-07-30 15:49:45 +03:00
boost : : bind ( & CCallback : : upgradeCreature , LOCPLINT - > cb , getObj ( ) , ID , pom . newID [ 0 ] ) , //bind upgrade function
boost : : bind ( & CCallback : : dismissCreature , LOCPLINT - > cb , getObj ( ) , ID ) , & pom ) ;
2009-05-19 21:23:04 +03:00
}
else
{
creWindow = new CCreInfoWindow (
2010-05-02 21:20:26 +03:00
* myStack , 1 , 0 ,
2009-07-30 15:49:45 +03:00
boost : : bind ( & CCallback : : dismissCreature , LOCPLINT - > cb , getObj ( ) , ID ) , NULL ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-07 01:36:51 +03:00
GH . pushInt ( creWindow ) ;
2009-05-19 21:23:04 +03:00
owner - > highlighted = NULL ;
2009-09-09 09:04:42 +03:00
owner - > splitting = false ;
for ( size_t i = 0 ; i < owner - > splitButtons . size ( ) ; i + + )
owner - > splitButtons [ i ] - > block ( true ) ;
2009-05-19 21:23:04 +03:00
show ( screen2 ) ;
refr = true ;
}
2009-09-24 16:23:52 +03:00
else
{
2009-09-09 20:49:03 +03:00
// Only allow certain moves if troops aren't removable.
if ( owner - > removableUnits
| | ( upg = = 0 & & ( owner - > highlighted - > upg = = 1 & & ! creature ) )
| | ( upg = = 1 & & owner - > highlighted - > upg = = 1 ) )
2009-05-19 21:23:04 +03:00
{
2009-09-09 20:49:03 +03:00
//we want to split
if ( ( owner - > splitting | | LOCPLINT - > shiftPressed ( ) )
& & ( ! creature
| | ( creature = = owner - > highlighted - > creature ) ) )
2009-05-19 21:23:04 +03:00
{
2009-09-09 20:49:03 +03:00
owner - > p2 = ID ; //store the second stack pos
owner - > pb = upg ; //store the second stack owner (up or down army)
owner - > splitting = false ;
int totalAmount = owner - > highlighted - > count ;
if ( creature )
totalAmount + = count ;
int last = - 1 ;
if ( upg ! = owner - > highlighted - > upg ) //not splitting within same army
{
2010-05-02 21:20:26 +03:00
if ( owner - > highlighted - > getObj ( ) - > stacksCount ( ) = = 1 //we're splitting away the last stack
2009-09-09 20:49:03 +03:00
& & owner - > highlighted - > getObj ( ) - > needsLastStack ( ) )
{
last = 0 ;
}
2010-05-02 21:20:26 +03:00
if ( getObj ( ) - > stacksCount ( ) = = 1 //destination army can't be emptied, unless we're rebalancing two stacks of same creature
2009-09-24 16:23:52 +03:00
& & owner - > highlighted - > creature = = creature
2009-09-09 20:49:03 +03:00
& & getObj ( ) - > needsLastStack ( ) )
{
last + = 2 ;
}
}
CSplitWindow * spw = new CSplitWindow ( owner - > highlighted - > creature - > idNumber , totalAmount , owner , last , count ) ;
GH . pushInt ( spw ) ;
refr = true ;
2009-05-19 21:23:04 +03:00
}
2009-09-09 20:49:03 +03:00
else if ( creature ! = owner - > highlighted - > creature ) //swap
2009-05-19 21:23:04 +03:00
{
2009-09-09 20:49:03 +03:00
LOCPLINT - > cb - > swapCreatures (
( ! upg ) ? ( owner - > oup ) : ( owner - > odown ) ,
( ! owner - > highlighted - > upg ) ? ( owner - > oup ) : ( owner - > odown ) ,
ID , owner - > highlighted - > ID ) ;
}
else //merge
{
LOCPLINT - > cb - > mergeStacks (
( ! owner - > highlighted - > upg ) ? ( owner - > oup ) : ( owner - > odown ) ,
( ! upg ) ? ( owner - > oup ) : ( owner - > odown ) ,
owner - > highlighted - > ID , ID ) ;
2009-05-19 21:23:04 +03:00
}
}
2009-09-24 16:23:52 +03:00
else // Highlight
{
2009-09-09 20:49:03 +03:00
if ( creature )
owner - > highlighted = this ;
show ( screen2 ) ;
refr = true ;
}
2009-05-19 21:23:04 +03:00
}
}
else //highlight
{
if ( creature )
2009-09-09 09:04:42 +03:00
{
2009-05-19 21:23:04 +03:00
owner - > highlighted = this ;
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < owner - > splitButtons . size ( ) ; i + + )
owner - > splitButtons [ i ] - > block ( false ) ;
}
2009-05-19 21:23:04 +03:00
show ( screen2 ) ;
refr = true ;
}
if ( refr ) { hover ( false ) ; hover ( true ) ; } //to refresh statusbar
}
}
void CGarrisonSlot : : activate ( )
{
if ( ! active ) active = true ;
else return ;
2009-08-11 19:05:33 +03:00
activateLClick ( ) ;
activateRClick ( ) ;
activateHover ( ) ;
2009-05-19 21:23:04 +03:00
}
void CGarrisonSlot : : deactivate ( )
{
if ( active ) active = false ;
else return ;
2009-08-11 19:05:33 +03:00
deactivateLClick ( ) ;
deactivateRClick ( ) ;
deactivateHover ( ) ;
2009-05-19 21:23:04 +03:00
}
2010-05-02 21:20:26 +03:00
CGarrisonSlot : : CGarrisonSlot ( CGarrisonInt * Owner , int x , int y , int IID , int Upg , const CStackInstance * Creature )
2009-05-19 21:23:04 +03:00
{
2010-05-02 21:20:26 +03:00
//assert(Creature == CGI->creh->creatures[Creature->idNumber]);
2009-05-19 21:23:04 +03:00
active = false ;
upg = Upg ;
ID = IID ;
2010-05-02 21:20:26 +03:00
myStack = Creature ;
creature = Creature ? Creature - > type : NULL ;
count = Creature ? Creature - > count : 0 ;
2009-05-19 21:23:04 +03:00
pos . x = x ;
pos . y = y ;
2009-06-28 11:21:50 +03:00
if ( Owner - > smallIcons )
{
pos . w = 32 ;
pos . h = 32 ;
}
else
{
pos . w = 58 ;
pos . h = 64 ;
}
2009-05-19 21:23:04 +03:00
owner = Owner ;
}
CGarrisonSlot : : ~ CGarrisonSlot ( )
{
if ( active )
deactivate ( ) ;
}
void CGarrisonSlot : : show ( SDL_Surface * to )
{
2009-06-28 11:21:50 +03:00
std : : map < int , SDL_Surface * > & imgs = ( owner - > smallIcons ? graphics - > smallImgs : graphics - > bigImgs ) ;
2009-05-19 21:23:04 +03:00
if ( creature )
{
char buf [ 15 ] ;
SDL_itoa ( count , buf , 10 ) ;
2009-06-28 11:21:50 +03:00
blitAt ( imgs [ creature - > idNumber ] , pos , to ) ;
2010-02-07 17:06:14 +02:00
printTo ( buf , pos . x + pos . w , pos . y + pos . h + 1 , owner - > smallIcons ? FONT_TINY : FONT_MEDIUM , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
if ( ( owner - > highlighted = = this )
| | ( owner - > splitting & & owner - > highlighted - > creature = = creature ) )
{
2009-06-28 11:21:50 +03:00
blitAt ( imgs [ - 1 ] , pos , to ) ;
2009-05-19 21:23:04 +03:00
}
}
2010-01-30 21:08:26 +02:00
else //empty slot
2009-05-19 21:23:04 +03:00
{
2009-06-28 11:21:50 +03:00
Rect pos1 = pos , pos2 = pos ; //positions on the garr bg sur and scren
2010-01-30 21:08:26 +02:00
pos1 . x = owner - > surOffset . x + pos . x - owner - > pos . x ;
pos1 . y = owner - > surOffset . y + pos . y - owner - > pos . y ;
2009-06-28 11:21:50 +03:00
SDL_BlitSurface ( owner - > sur , & pos1 , to , & pos2 ) ;
2009-05-19 21:23:04 +03:00
if ( owner - > splitting )
2009-06-28 11:21:50 +03:00
blitAt ( imgs [ - 1 ] , pos , to ) ;
2009-05-19 21:23:04 +03:00
}
}
CGarrisonInt : : ~ CGarrisonInt ( )
{
if ( sup )
{
for ( size_t i = 0 ; i < sup - > size ( ) ; i + + )
{
delete ( * sup ) [ i ] ;
}
delete sup ;
}
if ( sdown )
{
for ( size_t i = 0 ; i < sdown - > size ( ) ; i + + )
{
delete ( * sdown ) [ i ] ; //XXX what about smartpointers? boost or auto_ptr from std
}
delete sdown ;
}
2009-09-11 08:45:40 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
delete splitButtons [ i ] ;
2009-05-19 21:23:04 +03:00
}
void CGarrisonInt : : show ( SDL_Surface * to )
{
if ( sup )
{
for ( size_t i = 0 ; i < sup - > size ( ) ; i + + )
{
if ( ( * sup ) [ i ] )
{
( * sup ) [ i ] - > show ( to ) ;
}
}
}
if ( sdown )
{
for ( size_t i = 0 ; i < sdown - > size ( ) ; i + + )
{
if ( ( * sdown ) [ i ] )
{
( * sdown ) [ i ] - > show ( to ) ;
}
}
}
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
splitButtons [ i ] - > show ( to ) ;
2009-05-19 21:23:04 +03:00
}
void CGarrisonInt : : deactiveteSlots ( )
{
if ( sup )
{
for ( int i = 0 ; i < sup - > size ( ) ; i + + )
{
if ( ( * sup ) [ i ] )
{
( * sup ) [ i ] - > deactivate ( ) ;
}
}
}
if ( sdown )
{
for ( int i = 0 ; i < sdown - > size ( ) ; i + + )
{
if ( ( * sdown ) [ i ] )
{
( * sdown ) [ i ] - > deactivate ( ) ;
}
}
}
}
void CGarrisonInt : : activeteSlots ( )
{
if ( sup )
{
for ( int i = 0 ; i < sup - > size ( ) ; i + + )
{
if ( ( * sup ) [ i ] )
{
( * sup ) [ i ] - > activate ( ) ;
}
}
}
if ( sdown )
{
for ( int i = 0 ; i < sdown - > size ( ) ; i + + )
{
if ( ( * sdown ) [ i ] )
{
( * sdown ) [ i ] - > activate ( ) ;
}
}
}
}
void CGarrisonInt : : createSlots ( )
{
2009-06-28 11:21:50 +03:00
int h , w ; //height and width of slot
if ( smallIcons )
{
h = w = 32 ;
}
else
{
h = 64 ;
w = 58 ;
}
2009-05-19 21:23:04 +03:00
if ( set1 )
{
sup = new std : : vector < CGarrisonSlot * > ( 7 , ( CGarrisonSlot * ) ( NULL ) ) ;
2010-05-02 21:20:26 +03:00
for ( TSlots : : const_iterator i = set1 - > Slots ( ) . begin ( ) ; i ! = set1 - > Slots ( ) . end ( ) ; i + + )
( * sup ) [ i - > first ] = new CGarrisonSlot ( this , pos . x + ( i - > first * ( w + interx ) ) , pos . y , i - > first , 0 , & i - > second ) ;
2010-04-02 05:07:40 +03:00
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < sup - > size ( ) ; i + + )
if ( ( * sup ) [ i ] = = NULL )
2010-05-02 21:20:26 +03:00
( * sup ) [ i ] = new CGarrisonSlot ( this , pos . x + ( i * ( w + interx ) ) , pos . y , i , 0 , NULL ) ;
2010-04-02 05:07:40 +03:00
2010-02-01 01:30:47 +02:00
if ( shiftPos )
for ( int i = shiftPos ; i < sup - > size ( ) ; i + + )
{
( * sup ) [ i ] - > pos . x + = shiftPoint . x ;
( * sup ) [ i ] - > pos . y + = shiftPoint . y ;
} ;
2009-05-19 21:23:04 +03:00
}
if ( set2 )
{
sdown = new std : : vector < CGarrisonSlot * > ( 7 , ( CGarrisonSlot * ) ( NULL ) ) ;
2010-05-02 21:20:26 +03:00
for ( TSlots : : const_iterator i = set2 - > Slots ( ) . begin ( ) ; i ! = set2 - > Slots ( ) . end ( ) ; i + + )
2009-05-19 21:23:04 +03:00
{
( * sdown ) [ i - > first ] =
2010-05-02 21:20:26 +03:00
new CGarrisonSlot ( this , pos . x + ( i - > first * ( w + interx ) ) + garOffset . x , pos . y + garOffset . y , i - > first , 1 , & i - > second ) ;
2009-05-19 21:23:04 +03:00
}
for ( int i = 0 ; i < sdown - > size ( ) ; i + + )
if ( ( * sdown ) [ i ] = = NULL )
2010-05-02 21:20:26 +03:00
( * sdown ) [ i ] = new CGarrisonSlot ( this , pos . x + ( i * ( w + interx ) ) + garOffset . x , pos . y + garOffset . y , i , 1 , NULL ) ;
2010-02-01 01:30:47 +02:00
if ( shiftPos )
for ( int i = shiftPos ; i < sup - > size ( ) ; i + + )
{
( * sdown ) [ i ] - > pos . x + = shiftPoint . x ;
( * sdown ) [ i ] - > pos . y + = shiftPoint . y ;
} ;
2009-05-19 21:23:04 +03:00
}
}
void CGarrisonInt : : deleteSlots ( )
{
if ( sup )
{
for ( int i = 0 ; i < sup - > size ( ) ; i + + )
{
if ( ( * sup ) [ i ] )
{
delete ( * sup ) [ i ] ;
}
}
delete sup ;
sup = NULL ;
}
if ( sdown )
{
for ( int i = 0 ; i < sdown - > size ( ) ; i + + )
{
if ( ( * sdown ) [ i ] )
{
delete ( * sdown ) [ i ] ;
}
}
delete sdown ;
sdown = NULL ;
}
}
void CGarrisonInt : : recreateSlots ( )
{
splitting = false ;
highlighted = NULL ;
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
splitButtons [ i ] - > block ( true ) ;
2009-05-19 21:23:04 +03:00
if ( active )
{
deactiveteSlots ( ) ;
}
deleteSlots ( ) ;
createSlots ( ) ;
if ( active )
{
//ignoreEvent = true;
activeteSlots ( ) ;
//show(screen2);
}
}
void CGarrisonInt : : splitClick ( )
{
if ( ! highlighted )
return ;
splitting = ! splitting ;
show ( screen2 ) ;
}
void CGarrisonInt : : splitStacks ( int am2 )
{
LOCPLINT - > cb - > splitStack (
( highlighted - > upg ) ? ( odown ) : ( oup ) ,
( pb ) ? ( odown ) : ( oup ) ,
highlighted - > ID ,
p2 ,
am2 ) ;
}
2009-06-28 11:21:50 +03:00
CGarrisonInt : : CGarrisonInt ( int x , int y , int inx , const Point & garsOffset , SDL_Surface * & pomsur , const Point & SurOffset ,
2010-02-01 01:22:25 +02:00
const CArmedInstance * s1 , const CArmedInstance * s2 , bool _removableUnits , bool smallImgs , int _shiftPos , const Point & _shiftPoint )
2009-07-16 01:46:00 +03:00
: interx ( inx ) , garOffset ( garsOffset ) , highlighted ( NULL ) , sur ( pomsur ) , surOffset ( SurOffset ) , sup ( NULL ) ,
2010-02-01 01:22:25 +02:00
sdown ( NULL ) , oup ( s1 ) , odown ( s2 ) , removableUnits ( _removableUnits ) , smallIcons ( smallImgs ) , shiftPos ( _shiftPos ) , shiftPoint ( _shiftPoint )
2009-05-19 21:23:04 +03:00
{
active = false ;
splitting = false ;
set1 = LOCPLINT - > cb - > getGarrison ( s1 ) ;
set2 = LOCPLINT - > cb - > getGarrison ( s2 ) ;
ignoreEvent = false ;
update = true ;
pos . x = ( x ) ;
pos . y = ( y ) ;
pos . w = ( 58 ) ;
pos . h = ( 64 ) ;
createSlots ( ) ;
}
void CGarrisonInt : : activate ( )
{
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
if ( splitButtons [ i ] - > blocked ! = ! highlighted )
splitButtons [ i ] - > block ( ! highlighted ) ;
2009-05-19 21:23:04 +03:00
active = true ;
if ( sup )
{
for ( int i = 0 ; i < sup - > size ( ) ; i + + )
if ( ( * sup ) [ i ] )
( * sup ) [ i ] - > activate ( ) ;
}
if ( sdown )
{
for ( int i = 0 ; i < sdown - > size ( ) ; i + + )
if ( ( * sdown ) [ i ] )
( * sdown ) [ i ] - > activate ( ) ;
}
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
splitButtons [ i ] - > activate ( ) ;
2009-05-19 21:23:04 +03:00
}
void CGarrisonInt : : deactivate ( )
{
active = false ;
deactiveteSlots ( ) ;
2009-09-09 09:04:42 +03:00
for ( size_t i = 0 ; i < splitButtons . size ( ) ; i + + )
splitButtons [ i ] - > deactivate ( ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-06 05:10:26 +03:00
CInfoWindow : : CInfoWindow ( std : : string Text , int player , int charperline , const std : : vector < SComponent * > & comps , std : : vector < std : : pair < std : : string , CFunctionList < void ( ) > > > & Buttons , bool delComps )
2009-05-19 21:23:04 +03:00
{
2010-07-06 05:10:26 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2009-05-19 21:23:04 +03:00
ID = - 1 ;
for ( int i = 0 ; i < Buttons . size ( ) ; i + + )
{
buttons . push_back ( new AdventureMapButton ( " " , " " , boost : : bind ( & CInfoWindow : : close , this ) , 0 , 0 , Buttons [ i ] . first ) ) ;
buttons [ i ] - > callback . add ( Buttons [ i ] . second ) ; //each button will close the window apart from call-defined actions
}
2010-07-06 05:10:26 +03:00
text = new CTextBox ( Text , Rect ( 0 , 0 , 250 , 100 ) , 0 , FONT_MEDIUM , CENTER , zwykly ) ;
text - > redrawParentOnScrolling = true ;
2009-05-19 21:23:04 +03:00
buttons . front ( ) - > assignedKeys . insert ( SDLK_RETURN ) ; //first button - reacts on enter
buttons . back ( ) - > assignedKeys . insert ( SDLK_ESCAPE ) ; //last button - reacts on escape
for ( int i = 0 ; i < comps . size ( ) ; i + + )
{
2010-07-06 05:10:26 +03:00
comps [ i ] - > recActions = 0xff ;
addChild ( comps [ i ] ) ;
2010-07-21 13:09:29 +03:00
comps [ i ] - > recActions & = ~ ( SHOWALL | UPDATE ) ;
2009-05-19 21:23:04 +03:00
components . push_back ( comps [ i ] ) ;
}
2010-07-15 06:04:57 +03:00
setDelComps ( delComps ) ;
2010-07-06 05:10:26 +03:00
CMessage : : drawIWindow ( this , Text , player , charperline ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-06 05:10:26 +03:00
2009-05-19 21:23:04 +03:00
CInfoWindow : : CInfoWindow ( )
{
ID = - 1 ;
2010-07-15 06:04:57 +03:00
setDelComps ( false ) ;
2010-07-06 05:10:26 +03:00
text = NULL ;
2009-05-19 21:23:04 +03:00
}
void CInfoWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-11-24 22:29:50 +02:00
if ( LOCPLINT )
LOCPLINT - > showingDialog - > setn ( false ) ;
2009-05-19 21:23:04 +03:00
}
void CInfoWindow : : show ( SDL_Surface * to )
{
2010-07-06 05:10:26 +03:00
CIntObject : : show ( to ) ;
2009-05-19 21:23:04 +03:00
}
CInfoWindow : : ~ CInfoWindow ( )
{
2010-07-15 06:04:57 +03:00
if ( ! delComps )
{
for ( int i = 0 ; i < components . size ( ) ; i + + )
removeChild ( components [ i ] ) ;
}
2009-05-19 21:23:04 +03:00
}
2009-08-17 11:50:31 +03:00
void CInfoWindow : : showAll ( SDL_Surface * to )
{
2010-07-06 05:10:26 +03:00
CSimpleWindow : : show ( to ) ;
CIntObject : : showAll ( to ) ;
2009-08-17 11:50:31 +03:00
}
2009-11-13 21:04:36 +02:00
void CInfoWindow : : showYesNoDialog ( const std : : string & text , const std : : vector < SComponent * > * components , const CFunctionList < void ( ) > & onYes , const CFunctionList < void ( ) > & onNo , bool DelComps , int player )
{
assert ( ! LOCPLINT | | LOCPLINT - > showingDialog - > get ( ) ) ;
std : : vector < std : : pair < std : : string , CFunctionList < void ( ) > > > pom ;
pom . push_back ( std : : pair < std : : string , CFunctionList < void ( ) > > ( " IOKAY.DEF " , 0 ) ) ;
pom . push_back ( std : : pair < std : : string , CFunctionList < void ( ) > > ( " ICANCEL.DEF " , 0 ) ) ;
2009-11-24 22:29:50 +02:00
CInfoWindow * temp = new CInfoWindow ( text , player , 0 , components ? * components : std : : vector < SComponent * > ( ) , pom , DelComps ) ;
2009-11-13 21:04:36 +02:00
for ( int i = 0 ; i < onYes . funcs . size ( ) ; i + + )
temp - > buttons [ 0 ] - > callback + = onYes . funcs [ i ] ;
for ( int i = 0 ; i < onNo . funcs . size ( ) ; i + + )
temp - > buttons [ 1 ] - > callback + = onNo . funcs [ i ] ;
GH . pushInt ( temp ) ;
}
2010-03-08 00:56:51 +02:00
CInfoWindow * CInfoWindow : : create ( const std : : string & text , int playerID /*= 1*/ , const std : : vector < SComponent * > * components /*= NULL*/ )
{
std : : vector < std : : pair < std : : string , CFunctionList < void ( ) > > > pom ;
pom . push_back ( std : : pair < std : : string , CFunctionList < void ( ) > > ( " IOKAY.DEF " , 0 ) ) ;
CInfoWindow * ret = new CInfoWindow ( text , playerID , 0 , components ? * components : std : : vector < SComponent * > ( ) , pom , false ) ;
return ret ;
}
2010-07-15 06:04:57 +03:00
void CInfoWindow : : setDelComps ( bool DelComps )
{
delComps = DelComps ;
BOOST_FOREACH ( SComponent * comp , components )
{
if ( delComps )
comp - > recActions | = DISPOSE ;
else
comp - > recActions & = ~ DISPOSE ;
}
}
2009-08-11 19:05:33 +03:00
void CRClickPopup : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
return ;
close ( ) ;
}
void CRClickPopup : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateRClick ( ) ;
2009-05-19 21:23:04 +03:00
}
void CRClickPopup : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateRClick ( ) ;
2009-05-19 21:23:04 +03:00
}
void CRClickPopup : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
2010-03-21 00:17:19 +02:00
void CRClickPopup : : createAndPush ( const std : : string & txt )
{
int player = LOCPLINT ? LOCPLINT - > playerID : 1 ; //if no player, then use blue
CSimpleWindow * temp = CMessage : : genWindow ( txt , player , true ) ;
CRClickPopupInt * rcpi = new CRClickPopupInt ( temp , true ) ;
GH . pushInt ( rcpi ) ;
}
void CRClickPopup : : createAndPush ( const CGObjectInstance * obj , const Point & p , EAlignment alignment /*= BOTTOMRIGHT*/ )
{
SDL_Surface * iWin = LOCPLINT - > infoWin ( obj ) ; //try get custom infowindow for this obj
if ( iWin )
GH . pushInt ( new CInfoPopup ( iWin , p , alignment , true ) ) ;
else
CRClickPopup : : createAndPush ( obj - > getHoverText ( ) ) ;
}
CRClickPopup : : CRClickPopup ( )
{
}
CRClickPopup : : ~ CRClickPopup ( )
{
}
2009-05-19 21:23:04 +03:00
CInfoPopup : : CInfoPopup ( SDL_Surface * Bitmap , int x , int y , bool Free )
: free ( Free ) , bitmap ( Bitmap )
{
2010-03-21 00:17:19 +02:00
init ( x , y ) ;
}
2009-10-22 06:12:01 +03:00
2009-06-02 06:01:17 +03:00
2010-03-21 00:17:19 +02:00
CInfoPopup : : CInfoPopup ( SDL_Surface * Bitmap , const Point & p , EAlignment alignment , bool Free /*=false*/ )
: free ( Free ) , bitmap ( Bitmap )
{
switch ( alignment )
{
case BOTTOMRIGHT :
init ( p . x - Bitmap - > w , p . y - Bitmap - > h ) ;
break ;
case CENTER :
init ( p . x - Bitmap - > w / 2 , p . y - Bitmap - > h / 2 ) ;
break ;
case TOPLEFT :
init ( p . x , p . y ) ;
break ;
default :
assert ( 0 ) ; //not implemented
}
2009-05-19 21:23:04 +03:00
}
2009-05-22 02:50:45 +03:00
CInfoPopup : : CInfoPopup ( SDL_Surface * Bitmap , bool Free )
{
2009-10-22 06:12:01 +03:00
CGI - > curh - > hide ( ) ;
2009-05-22 02:50:45 +03:00
free = Free ;
bitmap = Bitmap ;
2009-08-22 16:59:15 +03:00
2009-08-23 21:23:21 +03:00
if ( bitmap )
{
pos . x = screen - > w / 2 - bitmap - > w / 2 ;
pos . y = screen - > h / 2 - bitmap - > h / 2 ;
pos . h = bitmap - > h ;
pos . w = bitmap - > w ;
}
2009-05-22 02:50:45 +03:00
}
2009-05-19 21:23:04 +03:00
void CInfoPopup : : close ( )
{
if ( free )
SDL_FreeSurface ( bitmap ) ;
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
void CInfoPopup : : show ( SDL_Surface * to )
{
blitAt ( bitmap , pos . x , pos . y , to ) ;
}
2009-10-22 06:12:01 +03:00
CInfoPopup : : ~ CInfoPopup ( )
{
CGI - > curh - > show ( ) ;
}
2009-05-19 21:23:04 +03:00
2010-03-21 00:17:19 +02:00
void CInfoPopup : : init ( int x , int y )
{
CGI - > curh - > hide ( ) ;
pos . x = x ;
pos . y = y ;
pos . h = bitmap - > h ;
pos . w = bitmap - > w ;
// Put the window back on screen if necessary
amax ( pos . x , 0 ) ;
amax ( pos . y , 0 ) ;
amin ( pos . x , conf . cc . resx - bitmap - > w ) ;
amin ( pos . y , conf . cc . resy - bitmap - > h ) ;
}
2009-05-19 21:23:04 +03:00
void SComponent : : init ( Etype Type , int Subtype , int Val )
{
std : : ostringstream oss ;
switch ( Type )
{
case artifact :
2010-06-26 19:02:10 +03:00
description = CGI - > arth - > artifacts [ Subtype ] - > Description ( ) ;
subtitle = CGI - > arth - > artifacts [ Subtype ] - > Name ( ) ;
2009-05-19 21:23:04 +03:00
break ;
case primskill :
2009-07-16 01:46:00 +03:00
oss < < std : : showpos < < Val < < " " ;
2009-05-19 21:23:04 +03:00
if ( Subtype < 4 )
{
description = CGI - > generaltexth - > arraytxt [ 2 + Subtype ] ;
oss < < CGI - > generaltexth - > primarySkillNames [ Subtype ] ;
}
else if ( Subtype = = 5 ) //spell points
{
description = CGI - > generaltexth - > allTexts [ 149 ] ;
oss < < CGI - > generaltexth - > allTexts [ 387 ] ;
}
else
{
tlog1 < < " Wrong subtype= " < < Subtype < < std : : endl ;
}
subtitle = oss . str ( ) ;
2009-12-30 09:49:25 +02:00
break ;
case building :
2009-12-29 15:40:16 +02:00
description = CGI - > buildh - > buildings [ Subtype ] [ Val ] - > Description ( ) ;
2009-12-30 09:49:25 +02:00
subtitle = CGI - > buildh - > buildings [ Subtype ] [ Val ] - > Name ( ) ;
2009-05-19 21:23:04 +03:00
break ;
case secskill44 : case secskill :
subtitle + = CGI - > generaltexth - > levels [ Val - 1 ] + " " + CGI - > generaltexth - > skillName [ Subtype ] ;
description = CGI - > generaltexth - > skillInfoTexts [ Subtype ] [ Val - 1 ] ;
break ;
case resource :
description = CGI - > generaltexth - > allTexts [ 242 ] ;
oss < < Val ;
subtitle = oss . str ( ) ;
break ;
case spell :
description = CGI - > spellh - > spells [ Subtype ] . descriptions [ Val ] ;
subtitle = CGI - > spellh - > spells [ Subtype ] . name ;
break ;
case creature :
2010-05-02 21:20:26 +03:00
subtitle = boost : : lexical_cast < std : : string > ( Val ) + " " + CGI - > creh - > creatures [ Subtype ] - > * ( Val ! = 1 ? & CCreature : : namePl : & CCreature : : nameSing ) ;
2009-05-19 21:23:04 +03:00
break ;
case experience :
description = CGI - > generaltexth - > allTexts [ 241 ] ;
oss < < Val ;
if ( Subtype & & Val = = 1 )
{
subtitle = CGI - > generaltexth - > allTexts [ 442 ] ;
}
else
{
subtitle = oss . str ( ) ;
}
break ;
2010-02-02 19:05:03 +02:00
case hero :
subtitle = description = CGI - > heroh - > heroes [ Subtype ] - > name ;
break ;
2010-02-01 19:07:46 +02:00
case flag :
subtitle = CGI - > generaltexth - > capColors [ Subtype ] ;
break ;
2009-05-19 21:23:04 +03:00
}
type = Type ;
subtype = Subtype ;
val = Val ;
SDL_Surface * temp = this - > getImg ( ) ;
if ( ! temp )
{
tlog1 < < " Error: cannot find graphic for component with id= " < < type < < " subid= " < < subtype < < " val= " < < val < < std : : endl ;
return ;
}
pos . w = temp - > w ;
pos . h = temp - > h ;
}
SComponent : : SComponent ( Etype Type , int Subtype , int Val )
{
init ( Type , Subtype , Val ) ;
}
SComponent : : SComponent ( const Component & c )
{
if ( c . id = = 5 )
init ( experience , c . subtype , c . val ) ;
else if ( c . id = = Component : : SPELL )
init ( spell , c . subtype , c . val ) ;
else
init ( ( Etype ) c . id , c . subtype , c . val ) ;
if ( c . id = = 2 & & c . when = = - 1 )
subtitle + = CGI - > generaltexth - > allTexts [ 3 ] . substr ( 2 , CGI - > generaltexth - > allTexts [ 3 ] . length ( ) - 2 ) ;
}
void SComponent : : show ( SDL_Surface * to )
{
blitAt ( getImg ( ) , pos . x , pos . y , to ) ;
}
SDL_Surface * SComponent : : getImg ( )
{
switch ( type )
{
case artifact :
return graphics - > artDefs - > ourImages [ subtype ] . bitmap ;
break ;
case primskill :
return graphics - > pskillsb - > ourImages [ subtype ] . bitmap ;
break ;
case secskill44 :
return graphics - > abils44 - > ourImages [ subtype * 3 + 3 + val - 1 ] . bitmap ;
break ;
case secskill :
return graphics - > abils82 - > ourImages [ subtype * 3 + 3 + val - 1 ] . bitmap ;
break ;
case resource :
return graphics - > resources - > ourImages [ subtype ] . bitmap ;
break ;
case experience :
return graphics - > pskillsb - > ourImages [ 4 ] . bitmap ;
break ;
case morale :
return graphics - > morale82 - > ourImages [ val + 3 ] . bitmap ;
break ;
case luck :
return graphics - > luck82 - > ourImages [ val + 3 ] . bitmap ;
break ;
case spell :
return graphics - > spellscr - > ourImages [ subtype ] . bitmap ;
break ;
case creature :
return graphics - > bigImgs [ subtype ] ;
2010-02-02 19:05:03 +02:00
break ;
case hero :
return graphics - > portraitLarge [ subtype ] ;
2010-02-01 19:07:46 +02:00
case flag :
return graphics - > flags - > ourImages [ subtype ] . bitmap ;
2009-05-19 21:23:04 +03:00
}
return NULL ;
}
2009-08-11 19:05:33 +03:00
void SComponent : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( description . size ( ) )
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( description , down ) ;
2009-05-19 21:23:04 +03:00
}
void SComponent : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateRClick ( ) ;
2009-05-19 21:23:04 +03:00
}
void SComponent : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateRClick ( ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CSelectableComponent : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
if ( onSelect )
onSelect ( ) ;
}
}
void CSelectableComponent : : init ( SDL_Surface * Border )
{
SDL_Surface * symb = SComponent : : getImg ( ) ;
myBitmap = CSDL_Ext : : newSurface ( symb - > w + 2 , symb - > h + 2 , screen ) ;
SDL_SetColorKey ( myBitmap , SDL_SRCCOLORKEY , SDL_MapRGB ( myBitmap - > format , 0 , 255 , 255 ) ) ;
blitAt ( symb , 1 , 1 , myBitmap ) ;
if ( Border ) //use custom border
{
border = Border ;
customB = true ;
}
else //we need to draw border
{
customB = false ;
border = CSDL_Ext : : newSurface ( symb - > w + 2 , symb - > h + 2 , screen ) ;
SDL_FillRect ( border , NULL , 0x00FFFF ) ;
for ( int i = 0 ; i < border - > w ; i + + )
{
SDL_PutPixelWithoutRefresh ( border , i , 0 , 239 , 215 , 123 ) ;
SDL_PutPixelWithoutRefresh ( border , i , ( border - > h ) - 1 , 239 , 215 , 123 ) ;
}
for ( int i = 0 ; i < border - > h ; i + + )
{
SDL_PutPixelWithoutRefresh ( border , 0 , i , 239 , 215 , 123 ) ;
SDL_PutPixelWithoutRefresh ( border , ( border - > w ) - 1 , i , 239 , 215 , 123 ) ;
}
SDL_SetColorKey ( border , SDL_SRCCOLORKEY , SDL_MapRGB ( border - > format , 0 , 255 , 255 ) ) ;
}
selected = false ;
}
CSelectableComponent : : CSelectableComponent ( const Component & c , boost : : function < void ( ) > OnSelect , SDL_Surface * Border )
: SComponent ( c ) , onSelect ( OnSelect )
{
init ( Border ) ;
}
CSelectableComponent : : CSelectableComponent ( Etype Type , int Sub , int Val , boost : : function < void ( ) > OnSelect , SDL_Surface * Border )
: SComponent ( Type , Sub , Val ) , onSelect ( OnSelect )
{
init ( Border ) ;
}
CSelectableComponent : : ~ CSelectableComponent ( )
{
SDL_FreeSurface ( myBitmap ) ;
if ( ! customB )
SDL_FreeSurface ( border ) ;
}
void CSelectableComponent : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateKeys ( ) ;
2009-05-19 21:23:04 +03:00
SComponent : : activate ( ) ;
2009-08-11 19:05:33 +03:00
activateLClick ( ) ;
2009-05-19 21:23:04 +03:00
}
void CSelectableComponent : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateKeys ( ) ;
2009-05-19 21:23:04 +03:00
SComponent : : deactivate ( ) ;
2009-08-11 19:05:33 +03:00
deactivateLClick ( ) ;
2009-05-19 21:23:04 +03:00
}
SDL_Surface * CSelectableComponent : : getImg ( )
{
return myBitmap ;
}
void CSelectableComponent : : select ( bool on )
{
if ( on ! = selected )
{
SDL_FillRect ( myBitmap , NULL , 0x000000 ) ;
blitAt ( SComponent : : getImg ( ) , 1 , 1 , myBitmap ) ;
if ( on )
{
blitAt ( border , 0 , 0 , myBitmap ) ;
}
selected = on ;
return ;
}
else
{
return ;
}
}
void CSelectableComponent : : show ( SDL_Surface * to )
{
blitAt ( myBitmap , pos . x , pos . y , to ) ;
2010-02-02 18:24:53 +02:00
printAtMiddleWB ( subtitle , pos . x + pos . w / 2 , pos . y + pos . h + 25 , FONT_SMALL , 12 , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
}
void CSimpleWindow : : show ( SDL_Surface * to )
{
2010-07-06 05:10:26 +03:00
if ( bitmap )
blitAt ( bitmap , pos . x , pos . y , to ) ;
2009-05-19 21:23:04 +03:00
}
CSimpleWindow : : ~ CSimpleWindow ( )
{
if ( bitmap )
{
SDL_FreeSurface ( bitmap ) ;
bitmap = NULL ;
}
}
void CSelWindow : : selectionChange ( unsigned to )
{
for ( unsigned i = 0 ; i < components . size ( ) ; i + + )
{
CSelectableComponent * pom = dynamic_cast < CSelectableComponent * > ( components [ i ] ) ;
if ( ! pom )
continue ;
pom - > select ( i = = to ) ;
blitAt ( pom - > getImg ( ) , pom - > pos . x - pos . x , pom - > pos . y - pos . y , bitmap ) ;
}
}
CSelWindow : : CSelWindow ( const std : : string & text , int player , int charperline , const std : : vector < CSelectableComponent * > & comps , const std : : vector < std : : pair < std : : string , CFunctionList < void ( ) > > > & Buttons , int askID )
{
ID = askID ;
for ( int i = 0 ; i < Buttons . size ( ) ; i + + )
{
buttons . push_back ( new AdventureMapButton ( " " , " " , Buttons [ i ] . second , 0 , 0 , Buttons [ i ] . first ) ) ;
if ( ! i & & askID > = 0 )
buttons . back ( ) - > callback + = boost : : bind ( & CSelWindow : : madeChoice , this ) ;
buttons [ i ] - > callback + = boost : : bind ( & CInfoWindow : : close , this ) ; //each button will close the window apart from call-defined actions
}
buttons . front ( ) - > assignedKeys . insert ( SDLK_RETURN ) ; //first button - reacts on enter
buttons . back ( ) - > assignedKeys . insert ( SDLK_ESCAPE ) ; //last button - reacts on escape
if ( buttons . size ( ) > 1 & & askID > = 0 ) //cancel button functionality
buttons . back ( ) - > callback + = boost : : bind ( & ICallback : : selectionMade , LOCPLINT - > cb , 0 , askID ) ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
{
2010-07-06 05:10:26 +03:00
comps [ i ] - > recActions = 255 ;
addChild ( comps [ i ] ) ;
2009-05-19 21:23:04 +03:00
components . push_back ( comps [ i ] ) ;
comps [ i ] - > onSelect = boost : : bind ( & CSelWindow : : selectionChange , this , i ) ;
if ( i < 9 )
comps [ i ] - > assignedKeys . insert ( SDLK_1 + i ) ;
}
CMessage : : drawIWindow ( this , text , player , charperline ) ;
}
void CSelWindow : : madeChoice ( )
{
if ( ID < 0 )
return ;
int ret = - 1 ;
for ( int i = 0 ; i < components . size ( ) ; i + + )
{
if ( dynamic_cast < CSelectableComponent * > ( components [ i ] ) - > selected )
{
ret = i ;
}
}
LOCPLINT - > cb - > selectionMade ( ret + 1 , ID ) ;
}
CStatusBar : : CStatusBar ( int x , int y , std : : string name , int maxw )
{
bg = BitmapHandler : : loadBitmap ( name ) ;
SDL_SetColorKey ( bg , SDL_SRCCOLORKEY , SDL_MapRGB ( bg - > format , 0 , 255 , 255 ) ) ;
2010-02-07 17:06:14 +02:00
pos . x + = x ;
pos . y + = y ;
2009-05-19 21:23:04 +03:00
if ( maxw > = 0 )
pos . w = std : : min ( bg - > w , maxw ) ;
else
pos . w = bg - > w ;
pos . h = bg - > h ;
2010-02-13 17:56:34 +02:00
middlex = ( pos . w / 2 ) + pos . x ;
middley = ( bg - > h / 2 ) + pos . y ;
2009-05-19 21:23:04 +03:00
}
CStatusBar : : ~ CStatusBar ( )
{
SDL_FreeSurface ( bg ) ;
}
void CStatusBar : : clear ( )
{
if ( LOCPLINT - > cingconsole - > enteredText = = " " ) //for appropriate support for in-game console
{
current = " " ;
2010-07-21 13:09:29 +03:00
redraw ( ) ;
2009-05-19 21:23:04 +03:00
}
}
void CStatusBar : : print ( const std : : string & text )
{
if ( LOCPLINT - > cingconsole - > enteredText = = " " | | text = = LOCPLINT - > cingconsole - > enteredText ) //for appropriate support for in-game console
{
current = text ;
2010-07-21 13:09:29 +03:00
redraw ( ) ;
2009-05-19 21:23:04 +03:00
}
}
void CStatusBar : : show ( SDL_Surface * to )
{
SDL_Rect pom = genRect ( pos . h , pos . w , pos . x , pos . y ) ;
SDL_BlitSurface ( bg , & genRect ( pos . h , pos . w , 0 , 0 ) , to , & pom ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( current , middlex , middley , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
}
std : : string CStatusBar : : getCurrent ( )
{
return current ;
}
void CList : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateLClick ( ) ;
activateRClick ( ) ;
activateHover ( ) ;
activateKeys ( ) ;
activateMouseMove ( ) ;
2009-05-19 21:23:04 +03:00
} ;
void CList : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateLClick ( ) ;
deactivateRClick ( ) ;
deactivateHover ( ) ;
deactivateKeys ( ) ;
deactivateMouseMove ( ) ;
2009-05-19 21:23:04 +03:00
} ;
2009-08-11 19:05:33 +03:00
void CList : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
} ;
CList : : CList ( int Size )
: SIZE ( Size )
{
}
2009-09-13 01:17:23 +03:00
void CList : : fixPos ( )
{
if ( selected < 0 ) //no selection, do nothing
return ;
if ( selected < from ) //scroll up
from = selected ;
else if ( from + SIZE < = selected )
from = selected - SIZE + 1 ;
amin ( from , size ( ) - SIZE ) ;
amax ( from , 0 ) ;
}
2009-05-19 21:23:04 +03:00
CHeroList : : CHeroList ( int Size )
2010-02-20 15:24:38 +02:00
: CList ( Size )
2009-05-19 21:23:04 +03:00
{
arrup = CDefHandler : : giveDef ( conf . go ( ) - > ac . hlistAU ) ;
arrdo = CDefHandler : : giveDef ( conf . go ( ) - > ac . hlistAD ) ;
mobile = CDefHandler : : giveDef ( conf . go ( ) - > ac . hlistMB ) ;
mana = CDefHandler : : giveDef ( conf . go ( ) - > ac . hlistMN ) ;
empty = BitmapHandler : : loadBitmap ( " HPSXXX.bmp " ) ;
selection = BitmapHandler : : loadBitmap ( " HPSYYY.bmp " ) ;
SDL_SetColorKey ( selection , SDL_SRCCOLORKEY , SDL_MapRGB ( selection - > format , 0 , 255 , 255 ) ) ;
pos = genRect ( 32 * SIZE + arrup - > height + arrdo - > height , std : : max ( arrup - > width , arrdo - > width ) , conf . go ( ) - > ac . hlistX , conf . go ( ) - > ac . hlistY ) ;
arrupp = genRect ( arrup - > height , arrup - > width , pos . x , pos . y ) ;
arrdop = genRect ( arrdo - > height , arrdo - > width , pos . x , pos . y + 32 * SIZE + arrup - > height ) ;
//32px per hero
posmobx = pos . x + 1 ;
posmoby = pos . y + arrup - > height + 1 ;
posporx = pos . x + mobile - > width + 2 ;
pospory = pos . y + arrup - > height ;
posmanx = pos . x + 1 + 50 + mobile - > width ;
posmany = pos . y + arrup - > height + 1 ;
from = 0 ;
selected = - 1 ;
pressed = indeterminate ;
}
void CHeroList : : init ( )
{
int w = pos . w + 1 , h = pos . h + 4 ;
bg = CSDL_Ext : : newSurface ( w , h , screen ) ;
2010-02-20 15:24:38 +02:00
SDL_BlitSurface ( adventureInt - > bg , & genRect ( w , h , pos . x , pos . y ) , bg , & genRect ( w , h , 0 , 0 ) ) ;
2009-05-19 21:23:04 +03:00
}
void CHeroList : : genList ( )
{
2009-06-11 20:21:06 +03:00
//int howMany = LOCPLINT->cb->howManyHeroes();
//for (int i=0;i<howMany;i++)
//{
// const CGHeroInstance * h = LOCPLINT->cb->getHeroInfo(i,0);
// if(!h->inTownGarrison)
// items.push_back(std::pair<const CGHeroInstance *,CPath *>(h,NULL));
//}
2009-05-19 21:23:04 +03:00
}
void CHeroList : : select ( int which )
{
if ( which < 0 )
{
selected = which ;
2010-02-20 15:24:38 +02:00
adventureInt - > selection = NULL ;
adventureInt - > terrain . currentPath = NULL ;
2009-05-19 21:23:04 +03:00
draw ( screen ) ;
2010-03-21 00:17:19 +02:00
adventureInt - > infoBar . showAll ( screen ) ;
2009-05-19 21:23:04 +03:00
}
2010-02-20 15:24:38 +02:00
if ( which > = LOCPLINT - > wanderingHeroes . size ( ) )
2009-05-19 21:23:04 +03:00
return ;
2009-06-11 20:21:06 +03:00
selected = which ;
2010-02-20 15:24:38 +02:00
adventureInt - > select ( LOCPLINT - > wanderingHeroes [ which ] ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CHeroList : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
/***************************ARROWS*****************************************/
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
if ( from > 0 )
{
blitAt ( arrup - > ourImages [ 1 ] . bitmap , arrupp . x , arrupp . y ) ;
pressed = true ;
}
return ;
}
2009-08-07 01:36:51 +03:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
2010-02-20 15:24:38 +02:00
if ( LOCPLINT - > wanderingHeroes . size ( ) - from > SIZE )
2009-05-19 21:23:04 +03:00
{
blitAt ( arrdo - > ourImages [ 1 ] . bitmap , arrdop . x , arrdop . y ) ;
pressed = false ;
}
return ;
}
/***************************HEROES*****************************************/
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
if ( ny > = SIZE | | ny < 0 )
return ;
2010-02-20 15:24:38 +02:00
if ( ( ny + from ) = = selected & & ( adventureInt - > selection - > ID = = HEROI_TYPE ) )
LOCPLINT - > openHeroWindow ( LOCPLINT - > wanderingHeroes [ selected ] ) ; //print hero screen
2009-05-19 21:23:04 +03:00
select ( ny + from ) ;
}
else
{
if ( indeterminate ( pressed ) )
return ;
if ( pressed ) //up
{
blitAt ( arrup - > ourImages [ 0 ] . bitmap , arrupp . x , arrupp . y ) ;
pressed = indeterminate ;
if ( ! down )
{
from - - ;
if ( from < 0 )
from = 0 ;
draw ( screen ) ;
}
}
else if ( ! pressed ) //down
{
blitAt ( arrdo - > ourImages [ 0 ] . bitmap , arrdop . x , arrdop . y ) ;
pressed = indeterminate ;
if ( ! down )
{
from + + ;
//if (from<items.size()-5)
// from=items.size()-5;
draw ( screen ) ;
}
}
else
throw 0 ;
}
}
void CHeroList : : mouseMoved ( const SDL_MouseMotionEvent & sEvent )
{
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
if ( from > 0 )
2010-02-20 15:24:38 +02:00
adventureInt - > statusbar . print ( CGI - > generaltexth - > zelp [ 303 ] . first ) ;
2009-05-19 21:23:04 +03:00
else
2010-02-20 15:24:38 +02:00
adventureInt - > statusbar . clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
}
2009-08-07 01:36:51 +03:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
2010-02-20 15:24:38 +02:00
if ( ( LOCPLINT - > wanderingHeroes . size ( ) - from ) > SIZE )
adventureInt - > statusbar . print ( CGI - > generaltexth - > zelp [ 304 ] . first ) ;
2009-05-19 21:23:04 +03:00
else
2010-02-20 15:24:38 +02:00
adventureInt - > statusbar . clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
}
//if not buttons then heroes
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
2010-02-20 15:24:38 +02:00
if ( ( ny > SIZE | | ny < 0 ) | | ( from + ny > = LOCPLINT - > wanderingHeroes . size ( ) ) )
2009-05-19 21:23:04 +03:00
{
2010-02-20 15:24:38 +02:00
adventureInt - > statusbar . clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
}
std : : vector < std : : string > temp ;
2010-02-20 15:24:38 +02:00
temp . push_back ( LOCPLINT - > wanderingHeroes [ from + ny ] - > name ) ;
temp . push_back ( LOCPLINT - > wanderingHeroes [ from + ny ] - > type - > heroClass - > name ) ;
adventureInt - > statusbar . print ( processStr ( CGI - > generaltexth - > allTexts [ 15 ] , temp ) ) ;
2009-05-19 21:23:04 +03:00
//select(ny+from);
}
2009-08-11 19:05:33 +03:00
void CHeroList : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
/***************************ARROWS*****************************************/
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) & & from > 0 )
2009-05-19 21:23:04 +03:00
{
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( CGI - > generaltexth - > zelp [ 303 ] . second , down ) ;
2009-05-19 21:23:04 +03:00
}
2010-02-20 15:24:38 +02:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) & & ( LOCPLINT - > wanderingHeroes . size ( ) - from > 5 ) )
2009-05-19 21:23:04 +03:00
{
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( CGI - > generaltexth - > zelp [ 304 ] . second , down ) ;
2009-05-19 21:23:04 +03:00
}
else
{
//if not buttons then heroes
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
2010-02-20 15:24:38 +02:00
if ( ( ny > SIZE | | ny < 0 ) | | ( from + ny > = LOCPLINT - > wanderingHeroes . size ( ) ) )
2009-05-19 21:23:04 +03:00
{
return ;
2010-03-21 00:17:19 +02:00
} //show popup
2009-05-19 21:23:04 +03:00
2010-03-21 00:17:19 +02:00
CRClickPopup : : createAndPush ( LOCPLINT - > wanderingHeroes [ from + ny ] , GH . current - > motion ) ;
2009-05-19 21:23:04 +03:00
}
}
}
void CHeroList : : hover ( bool on )
{
}
void CHeroList : : keyPressed ( const SDL_KeyboardEvent & key )
{
}
void CHeroList : : updateHList ( const CGHeroInstance * toRemove )
{
if ( toRemove ) //remove specific hero
2010-02-20 15:24:38 +02:00
LOCPLINT - > wanderingHeroes - = toRemove ;
2009-05-19 21:23:04 +03:00
else
2010-02-26 13:18:09 +02:00
LOCPLINT - > recreateHeroTownList ( ) ;
2009-06-11 20:21:06 +03:00
2010-02-20 15:24:38 +02:00
if ( selected > = LOCPLINT - > wanderingHeroes . size ( ) )
select ( LOCPLINT - > wanderingHeroes . size ( ) - 1 ) ;
2009-06-11 20:21:06 +03:00
2009-09-07 05:29:44 +03:00
if ( toRemove )
{
2010-02-20 15:24:38 +02:00
if ( LOCPLINT - > wanderingHeroes . size ( ) = = 0 )
adventureInt - > townList . select ( 0 ) ;
2009-09-07 05:29:44 +03:00
else
select ( selected ) ;
}
2009-05-19 21:23:04 +03:00
}
void CHeroList : : updateMove ( const CGHeroInstance * which ) //draws move points bar
{
int ser = - 1 ;
2010-02-20 15:24:38 +02:00
for ( int i = 0 ; i < LOCPLINT - > wanderingHeroes . size ( ) & & ser < 0 ; i + + )
if ( LOCPLINT - > wanderingHeroes [ i ] - > subID = = which - > subID )
2009-05-19 21:23:04 +03:00
ser = i ;
ser - = from ;
2009-10-22 06:28:54 +03:00
if ( ser < 0 | | ser > = SIZE ) return ;
2009-05-19 21:23:04 +03:00
int pom = std : : min ( ( which - > movement ) / 100 , ( si32 ) mobile - > ourImages . size ( ) - 1 ) ;
blitAt ( mobile - > ourImages [ pom ] . bitmap , posmobx , posmoby + ser * 32 ) ; //move point
}
void CHeroList : : draw ( SDL_Surface * to )
{
for ( int iT = 0 + from ; iT < SIZE + from ; iT + + )
{
int i = iT - from ;
2010-02-20 15:24:38 +02:00
if ( iT > = LOCPLINT - > wanderingHeroes . size ( ) )
2009-05-19 21:23:04 +03:00
{
blitAt ( mobile - > ourImages [ 0 ] . bitmap , posmobx , posmoby + i * 32 , to ) ;
blitAt ( mana - > ourImages [ 0 ] . bitmap , posmanx , posmany + i * 32 , to ) ;
blitAt ( empty , posporx , pospory + i * 32 , to ) ;
continue ;
}
2010-02-20 15:24:38 +02:00
const CGHeroInstance * cur = LOCPLINT - > wanderingHeroes [ iT ] ;
2009-05-19 21:23:04 +03:00
int pom = cur - > movement / 100 ;
if ( pom > 25 ) pom = 25 ;
if ( pom < 0 ) pom = 0 ;
blitAt ( mobile - > ourImages [ pom ] . bitmap , posmobx , posmoby + i * 32 , to ) ; //move point
pom = cur - > mana / 5 ;
if ( pom > 25 ) pom = 25 ;
if ( pom < 0 ) pom = 0 ;
blitAt ( mana - > ourImages [ pom ] . bitmap , posmanx , posmany + i * 32 , to ) ; //mana
SDL_Surface * temp = graphics - > portraitSmall [ cur - > portrait ] ;
blitAt ( temp , posporx , pospory + i * 32 , to ) ;
2010-05-08 21:56:38 +03:00
if ( adventureInt - > selection & & ( selected = = iT ) & & ( adventureInt - > selection - > ID = = HEROI_TYPE ) )
2009-05-19 21:23:04 +03:00
{
blitAt ( selection , posporx , pospory + i * 32 , to ) ;
}
//TODO: support for custom portraits
}
if ( from > 0 )
blitAt ( arrup - > ourImages [ 0 ] . bitmap , arrupp . x , arrupp . y , to ) ;
else
blitAt ( arrup - > ourImages [ 2 ] . bitmap , arrupp . x , arrupp . y , to ) ;
2010-02-20 15:24:38 +02:00
if ( LOCPLINT - > wanderingHeroes . size ( ) - from > SIZE )
2009-05-19 21:23:04 +03:00
blitAt ( arrdo - > ourImages [ 0 ] . bitmap , arrdop . x , arrdop . y , to ) ;
else
blitAt ( arrdo - > ourImages [ 2 ] . bitmap , arrdop . x , arrdop . y , to ) ;
}
2009-06-11 20:21:06 +03:00
int CHeroList : : getPosOfHero ( const CGHeroInstance * h )
2009-05-19 21:23:04 +03:00
{
2010-02-20 15:24:38 +02:00
return vstd : : findPos ( LOCPLINT - > wanderingHeroes , h , std : : equal_to < const CGHeroInstance * > ( ) ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CHeroList : : show ( SDL_Surface * to )
{
}
2009-09-13 01:17:23 +03:00
int CHeroList : : size ( )
{
2010-02-20 15:24:38 +02:00
return LOCPLINT - > wanderingHeroes . size ( ) ;
2009-09-13 01:17:23 +03:00
}
2009-05-19 21:23:04 +03:00
CTownList : : ~ CTownList ( )
{
delete arrup ;
delete arrdo ;
}
CTownList : : CTownList ( int Size , int x , int y , std : : string arrupg , std : : string arrdog )
: CList ( Size )
{
arrup = CDefHandler : : giveDef ( arrupg ) ;
arrdo = CDefHandler : : giveDef ( arrdog ) ;
pos . x = x ;
pos . y = y ;
pos . w = std : : max ( arrdo - > width , arrup - > width ) ;
pos . h = arrdo - > height + arrup - > height + Size * 32 ;
arrupp . x = x ;
arrupp . y = y ;
arrupp . w = arrup - > width ;
arrupp . h = arrup - > height ;
arrdop . x = x ;
arrdop . y = y + arrup - > height + 32 * SIZE ;
arrdop . w = arrdo - > width ;
arrdop . h = arrdo - > height ;
posporx = arrdop . x ;
pospory = arrupp . y + arrupp . h ;
pressed = indeterminate ;
from = 0 ;
selected = - 1 ;
}
void CTownList : : genList ( )
{
2010-02-26 13:18:09 +02:00
// LOCPLINT->towns.clear();
// int howMany = LOCPLINT->cb->howManyTowns();
// for (int i=0;i<howMany;i++)
// {
// LOCPLINT->towns.push_back(LOCPLINT->cb->getTownInfo(i,0));
// }
2009-05-19 21:23:04 +03:00
}
void CTownList : : select ( int which )
{
2010-02-26 13:18:09 +02:00
if ( which > = LOCPLINT - > towns . size ( ) )
2009-05-19 21:23:04 +03:00
return ;
selected = which ;
if ( ! fun . empty ( ) )
fun ( ) ;
}
void CTownList : : mouseMoved ( const SDL_MouseMotionEvent & sEvent )
{
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
if ( from > 0 )
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( CGI - > generaltexth - > zelp [ 306 ] . first ) ;
2009-05-19 21:23:04 +03:00
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
}
2009-08-07 01:36:51 +03:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
2010-02-26 13:18:09 +02:00
if ( ( LOCPLINT - > towns . size ( ) - from ) > SIZE )
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( CGI - > generaltexth - > zelp [ 307 ] . first ) ;
2009-05-19 21:23:04 +03:00
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
}
//if not buttons then towns
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
2010-02-26 13:18:09 +02:00
if ( ( ny > = SIZE | | ny < 0 ) | | ( from + ny > = LOCPLINT - > towns . size ( ) ) )
2009-05-19 21:23:04 +03:00
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
return ;
} ;
2009-12-23 03:46:15 +02:00
std : : string temp = CGI - > generaltexth - > tcommands [ 4 ] ;
2010-02-26 13:18:09 +02:00
boost : : algorithm : : replace_first ( temp , " %s " , LOCPLINT - > towns [ from + ny ] - > name ) ;
temp + = " , " + LOCPLINT - > towns [ from + ny ] - > town - > Name ( ) ;
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( temp ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CTownList : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
/***************************ARROWS*****************************************/
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
if ( from > 0 )
{
2009-05-25 02:21:55 +03:00
blitAt ( arrup - > ourImages [ 1 ] . bitmap , arrupp . x , arrupp . y , screenBuf ) ;
2009-05-19 21:23:04 +03:00
pressed = true ;
}
return ;
}
2009-08-07 01:36:51 +03:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
2010-02-26 13:18:09 +02:00
if ( LOCPLINT - > towns . size ( ) - from > SIZE )
2009-05-19 21:23:04 +03:00
{
2009-05-25 02:21:55 +03:00
blitAt ( arrdo - > ourImages [ 1 ] . bitmap , arrdop . x , arrdop . y , screenBuf ) ;
2009-05-19 21:23:04 +03:00
pressed = false ;
}
return ;
}
/***************************TOWNS*****************************************/
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
2010-02-13 17:56:34 +02:00
if ( ny > = SIZE | | ny < 0 )
2009-05-19 21:23:04 +03:00
return ;
2010-02-20 15:24:38 +02:00
if ( GH . topInt ( ) = = adventureInt
2009-05-19 21:23:04 +03:00
& & ( ny + from ) = = selected
2010-02-20 15:24:38 +02:00
& & adventureInt - > selection - > ID = = TOWNI_TYPE
2009-05-19 21:23:04 +03:00
)
2010-02-26 13:18:09 +02:00
LOCPLINT - > openTownWindow ( LOCPLINT - > towns [ selected ] ) ; //print town screen
2009-05-19 21:23:04 +03:00
else
select ( ny + from ) ;
}
else
{
if ( indeterminate ( pressed ) )
return ;
if ( pressed ) //up
{
2009-05-25 02:21:55 +03:00
blitAt ( arrup - > ourImages [ 0 ] . bitmap , arrupp . x , arrupp . y , screenBuf ) ;
2009-05-19 21:23:04 +03:00
pressed = indeterminate ;
if ( ! down )
{
from - - ;
if ( from < 0 )
from = 0 ;
2009-05-25 02:21:55 +03:00
draw ( screenBuf ) ;
2009-05-19 21:23:04 +03:00
}
}
else if ( ! pressed ) //down
{
2009-05-25 02:21:55 +03:00
blitAt ( arrdo - > ourImages [ 0 ] . bitmap , arrdop . x , arrdop . y , screenBuf ) ;
2009-05-19 21:23:04 +03:00
pressed = indeterminate ;
if ( ! down )
{
from + + ;
2010-02-26 13:18:09 +02:00
//if (from<LOCPLINT->towns.size()-5)
// from=LOCPLINT->towns.size()-5;
2009-05-19 21:23:04 +03:00
2009-05-25 02:21:55 +03:00
draw ( screenBuf ) ;
2009-05-19 21:23:04 +03:00
}
}
else
throw 0 ;
}
}
2009-08-11 19:05:33 +03:00
void CTownList : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
/***************************ARROWS*****************************************/
2009-08-07 01:36:51 +03:00
if ( isItIn ( & arrupp , GH . current - > motion . x , GH . current - > motion . y ) & & from > 0 )
2009-05-19 21:23:04 +03:00
{
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( CGI - > generaltexth - > zelp [ 306 ] . second , down ) ;
2009-05-19 21:23:04 +03:00
}
2010-02-26 13:18:09 +02:00
else if ( isItIn ( & arrdop , GH . current - > motion . x , GH . current - > motion . y ) & & ( LOCPLINT - > towns . size ( ) - from > 5 ) )
2009-05-19 21:23:04 +03:00
{
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( CGI - > generaltexth - > zelp [ 307 ] . second , down ) ;
2009-05-19 21:23:04 +03:00
}
//if not buttons then towns
2009-08-07 01:36:51 +03:00
int hx = GH . current - > motion . x , hy = GH . current - > motion . y ;
2009-05-19 21:23:04 +03:00
hx - = pos . x ;
hy - = pos . y ; hy - = arrup - > ourImages [ 0 ] . bitmap - > h ;
int ny = hy / 32 ;
2010-02-26 13:18:09 +02:00
if ( ( ny > = SIZE | | ny < 0 ) | | ( from + ny > = LOCPLINT - > towns . size ( ) ) )
2009-05-19 21:23:04 +03:00
{
return ;
}
//show popup
2010-03-21 00:17:19 +02:00
CRClickPopup : : createAndPush ( LOCPLINT - > towns [ from + ny ] , GH . current - > motion ) ;
2009-05-19 21:23:04 +03:00
}
}
void CTownList : : hover ( bool on )
{
}
void CTownList : : keyPressed ( const SDL_KeyboardEvent & key )
{
}
void CTownList : : draw ( SDL_Surface * to )
{
for ( int iT = 0 + from ; iT < SIZE + from ; iT + + )
{
int i = iT - from ;
2010-02-26 13:18:09 +02:00
if ( iT > = LOCPLINT - > towns . size ( ) )
2009-05-19 21:23:04 +03:00
{
blitAt ( graphics - > getPic ( - 1 ) , posporx , pospory + i * 32 , to ) ;
continue ;
}
2010-02-26 13:18:09 +02:00
blitAt ( graphics - > getPic ( LOCPLINT - > towns [ iT ] - > subID , LOCPLINT - > towns [ iT ] - > hasFort ( ) , LOCPLINT - > towns [ iT ] - > builded ) , posporx , pospory + i * 32 , to ) ;
2009-05-19 21:23:04 +03:00
2010-05-08 21:56:38 +03:00
if ( adventureInt - > selection & & ( selected = = iT ) & & ( adventureInt - > selection - > ID = = TOWNI_TYPE ) )
2009-05-19 21:23:04 +03:00
{
blitAt ( graphics - > getPic ( - 2 ) , posporx , pospory + i * 32 , to ) ;
}
}
if ( from > 0 )
blitAt ( arrup - > ourImages [ 0 ] . bitmap , arrupp . x , arrupp . y , to ) ;
else
blitAt ( arrup - > ourImages [ 2 ] . bitmap , arrupp . x , arrupp . y , to ) ;
2010-02-26 13:18:09 +02:00
if ( LOCPLINT - > towns . size ( ) - from > SIZE )
2009-05-19 21:23:04 +03:00
blitAt ( arrdo - > ourImages [ 0 ] . bitmap , arrdop . x , arrdop . y , to ) ;
else
blitAt ( arrdo - > ourImages [ 2 ] . bitmap , arrdop . x , arrdop . y , to ) ;
}
2009-08-11 19:05:33 +03:00
void CTownList : : show ( SDL_Surface * to )
{
}
2009-05-19 21:23:04 +03:00
2009-09-13 01:17:23 +03:00
int CTownList : : size ( )
{
2010-02-26 13:18:09 +02:00
return LOCPLINT - > towns . size ( ) ;
2009-09-13 01:17:23 +03:00
}
2009-07-26 13:43:22 +03:00
CCreaturePic : : CCreaturePic ( const CCreature * cre , bool Big )
2009-05-19 21:23:04 +03:00
: c ( cre ) , big ( Big )
{
anim = new CCreatureAnimation ( cre - > animDefName ) ;
}
CCreaturePic : : ~ CCreaturePic ( )
{
delete anim ;
}
int CCreaturePic : : blitPic ( SDL_Surface * to , int x , int y , bool nextFrame )
{
SDL_Rect dst ;
if ( big )
{
blitAt ( graphics - > backgrounds [ c - > faction ] , x , y , to ) ; //curx-50,pos.y+130-65);
dst = genRect ( 130 , 100 , x , y ) ;
}
else
{
blitAt ( graphics - > backgroundsm [ c - > faction ] , x , y , to ) ; //curx-50,pos.y+130-65);
dst = genRect ( 120 , 100 , x , y ) ;
}
if ( c - > isDoubleWide ( ) )
x - = 15 ;
return anim - > nextFrameMiddle ( to , x + 78 , y + ( big ? 55 : 45 ) , true , 0 , nextFrame , false , false , & dst ) ;
}
SDL_Surface * CCreaturePic : : getPic ( bool nextFrame )
{
//TODO: write
return NULL ;
}
void CRecruitmentWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
void CRecruitmentWindow : : Max ( )
{
slider - > moveTo ( slider - > amount ) ;
}
void CRecruitmentWindow : : Buy ( )
{
2009-08-07 01:36:51 +03:00
int crid = creatures [ which ] . ID ,
2010-05-02 21:20:26 +03:00
dstslot = dst - > getSlotFor ( crid ) ;
2009-08-07 01:36:51 +03:00
if ( dstslot < 0 ) //no available slot
{
std : : string txt ;
if ( dst - > ID = = HEROI_TYPE )
{
txt = CGI - > generaltexth - > allTexts [ 425 ] ; //The %s would join your hero, but there aren't enough provisions to support them.
2010-05-02 21:20:26 +03:00
boost : : algorithm : : replace_first ( txt , " %s " , slider - > value > 1 ? CGI - > creh - > creatures [ crid ] - > namePl : CGI - > creh - > creatures [ crid ] - > nameSing ) ;
2009-08-07 01:36:51 +03:00
}
else
{
txt = CGI - > generaltexth - > allTexts [ 17 ] ; //There is no room in the garrison for this army.
}
LOCPLINT - > showInfoDialog ( txt ) ;
return ;
}
recruit ( crid , slider - > value ) ;
2009-07-26 13:43:22 +03:00
if ( level > = 0 )
close ( ) ;
else
slider - > moveTo ( 0 ) ;
2009-05-19 21:23:04 +03:00
}
void CRecruitmentWindow : : Cancel ( )
{
close ( ) ;
}
void CRecruitmentWindow : : sliderMoved ( int to )
{
buy - > block ( ! to ) ;
}
2009-08-11 19:05:33 +03:00
void CRecruitmentWindow : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
2009-08-07 01:36:51 +03:00
int curx = 192 + 51 - ( CREATURE_WIDTH * creatures . size ( ) / 2 ) - ( SPACE_BETWEEN * ( creatures . size ( ) - 1 ) / 2 ) ;
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < creatures . size ( ) ; i + + )
{
2009-08-08 08:45:00 +03:00
const int sCREATURE_WIDTH = CREATURE_WIDTH ; // gcc -O0 workaround
if ( isItIn ( & genRect ( 132 , sCREATURE_WIDTH , pos . x + curx , pos . y + 64 ) , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
which = i ;
int newAmount = std : : min ( amounts [ i ] , creatures [ i ] . amount ) ;
2009-08-17 11:50:31 +03:00
slider - > setAmount ( newAmount ) ;
2010-05-15 11:33:32 +03:00
slider - > block ( ! newAmount ) ;
max - > block ( ! newAmount ) ;
2009-05-19 21:23:04 +03:00
if ( slider - > value > newAmount )
slider - > moveTo ( newAmount ) ;
else
slider - > moveTo ( slider - > value ) ;
2009-08-07 01:36:51 +03:00
curx = 192 + 51 - ( CREATURE_WIDTH * creatures . size ( ) / 2 ) - ( SPACE_BETWEEN * ( creatures . size ( ) - 1 ) / 2 ) ;
2009-05-19 21:23:04 +03:00
for ( int j = 0 ; j < creatures . size ( ) ; j + + )
{
if ( which = = j )
2009-08-07 01:36:51 +03:00
drawBorder ( bitmap , curx , 64 , CREATURE_WIDTH , 132 , int3 ( 255 , 0 , 0 ) ) ;
2009-05-19 21:23:04 +03:00
else
2009-08-07 01:36:51 +03:00
drawBorder ( bitmap , curx , 64 , CREATURE_WIDTH , 132 , int3 ( 239 , 215 , 123 ) ) ;
curx + = TOTAL_CREATURE_WIDTH ;
2009-05-19 21:23:04 +03:00
}
break ;
}
2009-08-07 01:36:51 +03:00
curx + = TOTAL_CREATURE_WIDTH ;
2009-05-19 21:23:04 +03:00
}
}
2009-08-11 19:05:33 +03:00
void CRecruitmentWindow : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
2009-08-07 01:36:51 +03:00
int curx = 192 + 51 - ( CREATURE_WIDTH * creatures . size ( ) / 2 ) - ( SPACE_BETWEEN * ( creatures . size ( ) - 1 ) / 2 ) ;
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < creatures . size ( ) ; i + + )
{
2009-08-08 08:45:00 +03:00
const int sCREATURE_WIDTH = CREATURE_WIDTH ; // gcc -O0 workaround
if ( isItIn ( & genRect ( 132 , sCREATURE_WIDTH , pos . x + curx , pos . y + 64 ) , GH . current - > motion . x , GH . current - > motion . y ) )
2009-05-19 21:23:04 +03:00
{
2010-05-02 21:20:26 +03:00
CCreInfoWindow * popup = new CCreInfoWindow ( creatures [ i ] . ID , 0 , 0 ) ;
2009-08-07 01:36:51 +03:00
GH . pushInt ( popup ) ;
2009-05-19 21:23:04 +03:00
break ;
}
2009-08-07 01:36:51 +03:00
curx + = TOTAL_CREATURE_WIDTH ;
2009-05-19 21:23:04 +03:00
}
}
}
void CRecruitmentWindow : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateLClick ( ) ;
activateRClick ( ) ;
2009-05-19 21:23:04 +03:00
buy - > activate ( ) ;
max - > activate ( ) ;
cancel - > activate ( ) ;
slider - > activate ( ) ;
2010-02-15 08:54:57 +02:00
GH . statusbar = bar ;
2009-05-19 21:23:04 +03:00
}
void CRecruitmentWindow : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateLClick ( ) ;
deactivateRClick ( ) ;
2009-05-19 21:23:04 +03:00
buy - > deactivate ( ) ;
max - > deactivate ( ) ;
cancel - > deactivate ( ) ;
slider - > deactivate ( ) ;
}
void CRecruitmentWindow : : show ( SDL_Surface * to )
{
static char animCounter = 0 ; //animation counter - for determining appropriate animation frame to be shown
blitAt ( bitmap , pos . x , pos . y , to ) ;
buy - > show ( to ) ;
max - > show ( to ) ;
cancel - > show ( to ) ;
slider - > show ( to ) ;
char pom [ 15 ] ;
SDL_itoa ( creatures [ which ] . amount - slider - > value , pom , 10 ) ; //available
2010-06-30 22:27:35 +03:00
printAtMiddle ( pom , pos . x + 205 , pos . y + 253 , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
SDL_itoa ( slider - > value , pom , 10 ) ; //recruit
2010-06-30 22:27:35 +03:00
printAtMiddle ( pom , pos . x + 279 , pos . y + 253 , FONT_SMALL , zwykly , to ) ;
2010-05-02 21:20:26 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 16 ] + " " + CGI - > creh - > creatures [ creatures [ which ] . ID ] - > namePl , pos . x + 243 , pos . y + 32 , FONT_BIG , tytulowy , to ) ; //eg "Recruit Dragon flies"
2009-05-19 21:23:04 +03:00
2010-06-30 22:27:35 +03:00
int curx = pos . x + 122 - creatures [ which ] . res . size ( ) * 24 ;
for ( int i = creatures [ which ] . res . size ( ) - 1 ; i > = 0 ; i - - ) // decrement used to make gold displayed as first res
2009-05-19 21:23:04 +03:00
{
blitAt ( graphics - > resources32 - > ourImages [ creatures [ which ] . res [ i ] . first ] . bitmap , curx , pos . y + 243 , to ) ;
blitAt ( graphics - > resources32 - > ourImages [ creatures [ which ] . res [ i ] . first ] . bitmap , curx + 258 , pos . y + 243 , to ) ;
SDL_itoa ( creatures [ which ] . res [ i ] . second , pom , 10 ) ;
2010-06-30 22:27:35 +03:00
printAtMiddle ( pom , curx + 15 , pos . y + 287 , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
SDL_itoa ( creatures [ which ] . res [ i ] . second * slider - > value , pom , 10 ) ;
2010-06-30 22:27:35 +03:00
printAtMiddle ( pom , curx + 15 + 258 , pos . y + 287 , FONT_SMALL , zwykly , to ) ;
curx + = 32 + 16 ; //size of bitmap + distance between them
2009-05-19 21:23:04 +03:00
}
2009-08-07 01:36:51 +03:00
curx = pos . x + 192 + CREATURE_WIDTH - ( CREATURE_WIDTH * creatures . size ( ) / 2 ) - ( SPACE_BETWEEN * ( creatures . size ( ) - 1 ) / 2 ) ;
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < creatures . size ( ) ; + + i )
{
creatures [ i ] . pic - > blitPic ( to , curx - 50 , pos . y + 130 - 65 , ! ( animCounter % 4 ) ) ;
2009-08-07 01:36:51 +03:00
curx + = TOTAL_CREATURE_WIDTH ;
2009-05-19 21:23:04 +03:00
}
+ + animCounter ;
bar - > show ( to ) ;
}
2010-06-30 22:27:35 +03:00
CRecruitmentWindow : : CRecruitmentWindow ( const CGDwelling * Dwelling , int Level , const CArmedInstance * Dst , const boost : : function < void ( int , int ) > & Recruit , int y_offset )
2009-07-26 13:43:22 +03:00
: recruit ( Recruit ) , dwelling ( Dwelling ) , dst ( Dst ) , level ( Level )
2009-05-19 21:23:04 +03:00
{
2009-07-26 13:43:22 +03:00
which = 0 ;
2009-05-19 21:23:04 +03:00
SDL_Surface * hhlp = BitmapHandler : : loadBitmap ( " TPRCRT.bmp " ) ;
graphics - > blueToPlayersAdv ( hhlp , LOCPLINT - > playerID ) ;
2009-07-26 13:43:22 +03:00
bitmap = SDL_ConvertSurface ( hhlp , screen - > format , 0 ) ;
2009-05-19 21:23:04 +03:00
SDL_SetColorKey ( bitmap , SDL_SRCCOLORKEY , SDL_MapRGB ( bitmap - > format , 0 , 255 , 255 ) ) ;
SDL_FreeSurface ( hhlp ) ;
pos . x = screen - > w / 2 - bitmap - > w / 2 ;
2010-06-30 22:27:35 +03:00
pos . y = screen - > h / 2 - bitmap - > h / 2 + y_offset ;
2009-05-19 21:23:04 +03:00
pos . w = bitmap - > w ;
pos . h = bitmap - > h ;
bar = new CStatusBar ( pos . x + 8 , pos . y + 370 , " APHLFTRT.bmp " , 471 ) ;
max = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 553 ] , boost : : bind ( & CRecruitmentWindow : : Max , this ) , pos . x + 134 , pos . y + 313 , " IRCBTNS.DEF " , SDLK_m ) ;
buy = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 554 ] , boost : : bind ( & CRecruitmentWindow : : Buy , this ) , pos . x + 212 , pos . y + 313 , " IBY6432.DEF " , SDLK_RETURN ) ;
cancel = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 555 ] , boost : : bind ( & CRecruitmentWindow : : Cancel , this ) , pos . x + 290 , pos . y + 313 , " ICN6432.DEF " , SDLK_ESCAPE ) ;
2009-09-20 15:47:40 +03:00
slider = new CSlider ( pos . x + 176 , pos . y + 279 , 135 , boost : : bind ( & CRecruitmentWindow : : sliderMoved , this , _1 ) , 0 , 0 , 0 , true ) ;
2009-07-26 13:43:22 +03:00
initCres ( ) ;
2010-06-30 22:27:35 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 346 ] , 113 , 232 , FONT_SMALL , zwykly , bitmap ) ; //cost per troop t
2010-02-02 18:24:53 +02:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 465 ] , 205 , 233 , FONT_SMALL , zwykly , bitmap ) ; //available t
printAtMiddle ( CGI - > generaltexth - > allTexts [ 16 ] , 279 , 233 , FONT_SMALL , zwykly , bitmap ) ; //recruit t
2010-06-30 22:27:35 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 466 ] , 371 , 232 , FONT_SMALL , zwykly , bitmap ) ; //total cost t
2009-05-19 21:23:04 +03:00
drawBorder ( bitmap , 172 , 222 , 67 , 42 , int3 ( 239 , 215 , 123 ) ) ;
drawBorder ( bitmap , 246 , 222 , 67 , 42 , int3 ( 239 , 215 , 123 ) ) ;
drawBorder ( bitmap , 64 , 222 , 99 , 76 , int3 ( 239 , 215 , 123 ) ) ;
drawBorder ( bitmap , 322 , 222 , 99 , 76 , int3 ( 239 , 215 , 123 ) ) ;
drawBorder ( bitmap , 133 , 312 , 66 , 34 , int3 ( 173 , 142 , 66 ) ) ;
drawBorder ( bitmap , 211 , 312 , 66 , 34 , int3 ( 173 , 142 , 66 ) ) ;
drawBorder ( bitmap , 289 , 312 , 66 , 34 , int3 ( 173 , 142 , 66 ) ) ;
//border for creatures
2009-08-07 01:36:51 +03:00
int curx = 192 + 51 - ( CREATURE_WIDTH * creatures . size ( ) / 2 ) - ( SPACE_BETWEEN * ( creatures . size ( ) - 1 ) / 2 ) ;
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < creatures . size ( ) ; i + + )
{
creatures [ i ] . pos . x = curx + 1 ;
creatures [ i ] . pos . y = 65 ;
creatures [ i ] . pos . w = 100 ;
creatures [ i ] . pos . h = 130 ;
if ( which = = i )
2009-08-07 01:36:51 +03:00
drawBorder ( bitmap , curx , 64 , CREATURE_WIDTH , 132 , int3 ( 255 , 0 , 0 ) ) ;
2009-05-19 21:23:04 +03:00
else
2009-08-07 01:36:51 +03:00
drawBorder ( bitmap , curx , 64 , CREATURE_WIDTH , 132 , int3 ( 239 , 215 , 123 ) ) ;
curx + = TOTAL_CREATURE_WIDTH ;
2009-05-19 21:23:04 +03:00
}
if ( ! creatures [ 0 ] . amount | | ! amounts [ 0 ] )
{
max - > block ( true ) ;
slider - > block ( true ) ;
}
//buy->block(true); //not needed, will be blocked by initing slider on 0
}
CRecruitmentWindow : : ~ CRecruitmentWindow ( )
{
2009-07-26 13:43:22 +03:00
cleanCres ( ) ;
2009-05-19 21:23:04 +03:00
delete max ;
delete buy ;
delete cancel ;
SDL_FreeSurface ( bitmap ) ;
delete slider ;
delete bar ;
}
2009-07-26 13:43:22 +03:00
void CRecruitmentWindow : : initCres ( )
{
cleanCres ( ) ;
for ( int i = 0 ; i < dwelling - > creatures . size ( ) ; i + + )
{
if ( level > = 0 & & i ! = level )
continue ;
for ( int j = dwelling - > creatures [ i ] . second . size ( ) - 1 ; j > = 0 ; j - - )
{
creatures . resize ( creatures . size ( ) + 1 ) ;
creinfo & cur = creatures . back ( ) ;
cur . amount = dwelling - > creatures [ i ] . first ;
cur . ID = dwelling - > creatures [ i ] . second [ j ] ;
2010-05-02 21:20:26 +03:00
const CCreature * cre = CGI - > creh - > creatures [ cur . ID ] ;
2009-07-26 13:43:22 +03:00
cur . pic = new CCreaturePic ( cre ) ;
for ( int k = 0 ; k < cre - > cost . size ( ) ; k + + )
if ( cre - > cost [ k ] )
cur . res . push_back ( std : : make_pair ( k , cre - > cost [ k ] ) ) ;
amounts . push_back ( cre - > maxAmount ( LOCPLINT - > cb - > getResourceAmount ( ) ) ) ;
}
}
2009-08-17 11:50:31 +03:00
slider - > setAmount ( std : : min ( amounts [ which ] , creatures [ which ] . amount ) ) ;
2009-07-26 13:43:22 +03:00
}
void CRecruitmentWindow : : cleanCres ( )
{
for ( int i = 0 ; i < creatures . size ( ) ; i + + )
{
delete creatures [ i ] . pic ;
}
creatures . clear ( ) ;
amounts . clear ( ) ;
}
2009-05-19 21:23:04 +03:00
CSplitWindow : : CSplitWindow ( int cid , int max , CGarrisonInt * Owner , int Last , int val )
{
last = Last ;
which = 1 ;
c = cid ;
slider = NULL ;
gar = Owner ;
2010-02-02 18:24:53 +02:00
SDL_Surface * hhlp = BitmapHandler : : loadBitmap ( " GPUCRDIV.bmp " ) ;
graphics - > blueToPlayersAdv ( hhlp , LOCPLINT - > playerID ) ;
bitmap = SDL_ConvertSurface ( hhlp , screen - > format , 0 ) ;
2009-05-19 21:23:04 +03:00
SDL_SetColorKey ( bitmap , SDL_SRCCOLORKEY , SDL_MapRGB ( bitmap - > format , 0 , 255 , 255 ) ) ;
2010-02-02 18:24:53 +02:00
SDL_FreeSurface ( hhlp ) ;
2009-05-19 21:23:04 +03:00
pos . x = screen - > w / 2 - bitmap - > w / 2 ;
pos . y = screen - > h / 2 - bitmap - > h / 2 ;
pos . w = bitmap - > w ;
pos . h = bitmap - > h ;
ok = new AdventureMapButton ( " " , " " , boost : : bind ( & CSplitWindow : : split , this ) , pos . x + 20 , pos . y + 263 , " IOK6432.DEF " , SDLK_RETURN ) ;
cancel = new AdventureMapButton ( " " , " " , boost : : bind ( & CSplitWindow : : close , this ) , pos . x + 214 , pos . y + 263 , " ICN6432.DEF " , SDLK_ESCAPE ) ;
int sliderPositions = max - ( last > = 0 ) - ( last = = 2 ) ;
2009-09-20 15:47:40 +03:00
slider = new CSlider ( pos . x + 21 , pos . y + 194 , 257 , boost : : bind ( & CSplitWindow : : sliderMoved , this , _1 ) , 0 , sliderPositions , val , true ) ;
2009-05-19 21:23:04 +03:00
a1 = max - val ;
a2 = val ;
2010-05-02 21:20:26 +03:00
anim = new CCreaturePic ( CGI - > creh - > creatures [ cid ] ) ;
2009-05-19 21:23:04 +03:00
anim - > anim - > setType ( 1 ) ;
std : : string title = CGI - > generaltexth - > allTexts [ 256 ] ;
2010-05-02 21:20:26 +03:00
boost : : algorithm : : replace_first ( title , " %s " , CGI - > creh - > creatures [ cid ] - > namePl ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( title , 150 , 34 , FONT_BIG , tytulowy , bitmap ) ;
2009-05-19 21:23:04 +03:00
}
CSplitWindow : : ~ CSplitWindow ( ) //d-tor
{
SDL_FreeSurface ( bitmap ) ;
delete ok ;
delete cancel ;
delete slider ;
delete anim ;
}
void CSplitWindow : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateLClick ( ) ;
activateKeys ( ) ;
2009-05-19 21:23:04 +03:00
ok - > activate ( ) ;
cancel - > activate ( ) ;
slider - > activate ( ) ;
}
void CSplitWindow : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateLClick ( ) ;
deactivateKeys ( ) ;
2009-05-19 21:23:04 +03:00
ok - > deactivate ( ) ;
cancel - > deactivate ( ) ;
slider - > deactivate ( ) ;
}
void CSplitWindow : : split ( )
{
gar - > splitStacks ( a2 ) ;
close ( ) ;
}
void CSplitWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
void CSplitWindow : : sliderMoved ( int to )
{
int all = a1 + a2 ;
a2 = to + ( last = = 1 | | last = = 2 ) ;
if ( slider )
a1 = all - a2 ;
}
void CSplitWindow : : show ( SDL_Surface * to )
{
blitAt ( bitmap , pos . x , pos . y , to ) ;
ok - > show ( to ) ;
cancel - > show ( to ) ;
slider - > show ( to ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( boost : : lexical_cast < std : : string > ( a1 ) + ( ! which ? " _ " : " " ) , pos . x + 70 , pos . y + 237 , FONT_BIG , zwykly , to ) ;
printAtMiddle ( boost : : lexical_cast < std : : string > ( a2 ) + ( which ? " _ " : " " ) , pos . x + 233 , pos . y + 237 , FONT_BIG , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
anim - > blitPic ( to , pos . x + 20 , pos . y + 54 , false ) ;
anim - > blitPic ( to , pos . x + 177 , pos . y + 54 , false ) ;
}
void CSplitWindow : : keyPressed ( const SDL_KeyboardEvent & key )
{
2009-09-07 05:29:44 +03:00
SDLKey k = key . keysym . sym ;
if ( isNumKey ( k ) ) //convert numpad number to normal digit
k = numToDigit ( k ) ;
2009-05-19 21:23:04 +03:00
if ( key . state ! = SDL_PRESSED )
return ;
int & cur = ( which ? a2 : a1 ) ,
& sec = ( which ? a1 : a2 ) ,
ncur = cur ;
2009-09-07 05:29:44 +03:00
if ( k = = SDLK_BACKSPACE )
2009-05-19 21:23:04 +03:00
{
ncur / = 10 ;
}
2009-09-07 05:29:44 +03:00
else if ( k = = SDLK_TAB )
2009-05-19 21:23:04 +03:00
{
which = ! which ;
}
else
{
2009-09-07 05:29:44 +03:00
int number = k - SDLK_0 ;
2009-05-19 21:23:04 +03:00
if ( number < 0 | | number > 9 ) //not a number pressed
{
return ;
}
ncur = cur * 10 + number ;
}
int delta = ncur - cur ;
if ( delta > sec )
{
cur + = sec ;
sec = 0 ;
}
slider - > moveTo ( which ? ncur : a1 + a2 - ncur ) ;
}
2009-08-11 19:05:33 +03:00
void CSplitWindow : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
{
2009-08-07 01:36:51 +03:00
Point click ( GH . current - > motion . x , GH . current - > motion . y ) ;
2009-09-26 00:11:13 +03:00
click = click - pos . topLeft ( ) ;
2009-05-19 21:23:04 +03:00
if ( Rect ( 19 , 216 , 105 , 40 ) . isIn ( click ) ) //left picture
which = 0 ;
else if ( Rect ( 175 , 216 , 105 , 40 ) . isIn ( click ) ) //right picture
which = 1 ;
}
}
void CCreInfoWindow : : show ( SDL_Surface * to )
{
char pom [ 15 ] ;
2010-05-02 21:20:26 +03:00
blitAt ( * bitmap , pos . x , pos . y , to ) ;
2009-05-19 21:23:04 +03:00
anim - > blitPic ( to , pos . x + 21 , pos . y + 48 , ( type ) & & ! ( anf % 4 ) ) ;
if ( + + anf = = 4 )
anf = 0 ;
if ( count . size ( ) )
2010-02-02 18:24:53 +02:00
printTo ( count . c_str ( ) , pos . x + 114 , pos . y + 174 , FONT_TIMES , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
if ( upgrade )
upgrade - > show ( to ) ;
if ( dismiss )
dismiss - > show ( to ) ;
if ( ok )
ok - > show ( to ) ;
}
2010-05-02 21:20:26 +03:00
CCreInfoWindow : : CCreInfoWindow ( const CStackInstance & st , int Type , boost : : function < void ( ) > Upg , boost : : function < void ( ) > Dsm , UpgradeInfo * ui )
2009-07-30 15:49:45 +03:00
: type ( Type ) , dsm ( Dsm ) , dismiss ( 0 ) , upgrade ( 0 ) , ok ( 0 )
2009-05-19 21:23:04 +03:00
{
2010-05-02 21:20:26 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
init ( st . type , & st , st . count ) ;
2009-05-19 21:23:04 +03:00
//print abilities text - if r-click popup
if ( type )
{
if ( Upg & & ui )
{
bool enough = true ;
for ( std : : set < std : : pair < int , int > > : : iterator i = ui - > cost [ 0 ] . begin ( ) ; i ! = ui - > cost [ 0 ] . end ( ) ; i + + ) //calculate upgrade cost
{
2010-07-15 06:04:57 +03:00
BLOCK_CAPTURING ;
2010-05-02 21:20:26 +03:00
if ( LOCPLINT - > cb - > getResourceAmount ( i - > first ) < i - > second * st . count )
2009-05-19 21:23:04 +03:00
enough = false ;
2010-05-02 21:20:26 +03:00
upgResCost . push_back ( new SComponent ( SComponent : : resource , i - > first , i - > second * st . count ) ) ;
2009-05-19 21:23:04 +03:00
}
if ( enough )
{
2010-05-30 14:48:24 +03:00
CFunctionList < void ( ) > fs ;
fs + = Upg ;
fs + = boost : : bind ( & CCreInfoWindow : : close , this ) ;
2009-05-19 21:23:04 +03:00
CFunctionList < void ( ) > cfl ;
2010-05-30 14:48:24 +03:00
cfl = boost : : bind ( & CPlayerInterface : : showYesNoDialog , LOCPLINT , CGI - > generaltexth - > allTexts [ 207 ] , boost : : ref ( upgResCost ) , fs , 0 , false ) ;
2010-05-02 21:20:26 +03:00
upgrade = new AdventureMapButton ( " " , CGI - > generaltexth - > zelp [ 446 ] . second , cfl , 76 , 237 , " IVIEWCR.DEF " , SDLK_u ) ;
2009-05-19 21:23:04 +03:00
}
else
{
2010-05-02 21:20:26 +03:00
upgrade = new AdventureMapButton ( " " , CGI - > generaltexth - > zelp [ 446 ] . second , boost : : function < void ( ) > ( ) , 76 , 237 , " IVIEWCR.DEF " ) ;
2009-05-19 21:23:04 +03:00
upgrade - > callback . funcs . clear ( ) ;
upgrade - > bitmapOffset = 2 ;
}
}
if ( Dsm )
{
CFunctionList < void ( ) > fs [ 2 ] ;
//on dismiss confirmed
fs [ 0 ] + = Dsm ; //dismiss
fs [ 0 ] + = boost : : bind ( & CCreInfoWindow : : close , this ) ; //close this window
CFunctionList < void ( ) > cfl ;
cfl = boost : : bind ( & CPlayerInterface : : showYesNoDialog , LOCPLINT , CGI - > generaltexth - > allTexts [ 12 ] , std : : vector < SComponent * > ( ) , fs [ 0 ] , fs [ 1 ] , false ) ;
2010-05-02 21:20:26 +03:00
dismiss = new AdventureMapButton ( " " , CGI - > generaltexth - > zelp [ 445 ] . second , cfl , 21 , 237 , " IVIEWCR2.DEF " , SDLK_d ) ;
2009-05-19 21:23:04 +03:00
}
2010-05-02 21:20:26 +03:00
ok = new AdventureMapButton ( " " , CGI - > generaltexth - > zelp [ 445 ] . second , boost : : bind ( & CCreInfoWindow : : close , this ) , 216 , 237 , " IOKAY.DEF " , SDLK_RETURN ) ;
2009-05-19 21:23:04 +03:00
}
else
{
2010-05-02 21:20:26 +03:00
printAtWB ( c - > abilityText , 17 , 231 , FONT_SMALL , 35 , zwykly , * bitmap ) ;
2009-05-19 21:23:04 +03:00
}
2010-05-02 21:20:26 +03:00
//if we are displying window fo r stack in battle, there are several more things that we need to display
if ( const CStack * battleStack = dynamic_cast < const CStack * > ( & st ) )
2009-05-19 21:23:04 +03:00
{
2010-05-02 21:20:26 +03:00
//spell effects
2009-05-19 21:23:04 +03:00
int printed = 0 ; //how many effect pics have been printed
2010-05-02 21:20:26 +03:00
BOOST_FOREACH ( const CStack : : StackEffect & effect , battleStack - > effects )
2009-05-19 21:23:04 +03:00
{
2010-05-02 21:20:26 +03:00
blitAt ( graphics - > spellEffectsPics - > ourImages [ effect . id + 1 ] . bitmap , 127 + 52 * printed , 186 , * bitmap ) ;
2009-05-19 21:23:04 +03:00
+ + printed ;
2010-05-02 21:20:26 +03:00
if ( printed > = 3 ) //we can fit only 3 effects
2009-05-19 21:23:04 +03:00
break ;
}
2010-05-02 21:20:26 +03:00
//print current health
printLine ( 5 , CGI - > generaltexth - > allTexts [ 200 ] , battleStack - > firstHPleft ) ;
}
}
void CCreInfoWindow : : printLine ( int nr , const std : : string & text , int baseVal , int val /*=-1*/ , bool range /*=false*/ )
{
printAt ( text , 155 , 48 + nr * 19 , FONT_SMALL , zwykly , * bitmap ) ;
std : : string hlp ;
if ( range & & baseVal ! = val )
hlp = boost : : str ( boost : : format ( " %d - %d " ) % baseVal % val ) ;
else if ( baseVal ! = val & & val > = 0 )
hlp = boost : : str ( boost : : format ( " %d (%d) " ) % baseVal % val ) ;
else
hlp = boost : : lexical_cast < std : : string > ( baseVal ) ;
printTo ( hlp , 276 , 61 + nr * 19 , FONT_SMALL , zwykly , * bitmap ) ;
}
void CCreInfoWindow : : init ( const CCreature * cre , const CStackInstance * stack , int creatureCount )
{
const CBonusSystemNode * finalNode = NULL ;
if ( stack )
finalNode = stack ;
else
finalNode = cre ;
anf = 0 ;
c = cre ;
bitmap = new CPicture ( " CRSTKPU.bmp " ) ;
2010-05-08 01:10:32 +03:00
bitmap - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
2010-05-02 21:20:26 +03:00
pos = bitmap - > center ( ) ;
{
BLOCK_CAPTURING ;
anim = new CCreaturePic ( c ) ;
}
if ( ! type ) anim - > anim - > setType ( 2 ) ;
count = boost : : lexical_cast < std : : string > ( creatureCount ) ;
printAtMiddle ( c - > namePl , 149 , 30 , FONT_SMALL , tytulowy , * bitmap ) ; //creature name
printLine ( 0 , CGI - > generaltexth - > primarySkillNames [ 0 ] , cre - > valOfBonuses ( Bonus : : PRIMARY_SKILL , PrimarySkill : : ATTACK ) , finalNode - > valOfBonuses ( Bonus : : PRIMARY_SKILL , PrimarySkill : : ATTACK ) ) ;
2010-05-27 01:54:00 +03:00
printLine ( 1 , CGI - > generaltexth - > primarySkillNames [ 1 ] , cre - > valOfBonuses ( Bonus : : PRIMARY_SKILL , PrimarySkill : : DEFENSE ) , finalNode - > valOfBonuses ( Bonus : : PRIMARY_SKILL , PrimarySkill : : DEFENSE ) ) ;
2010-05-02 21:20:26 +03:00
if ( c - > shots )
printLine ( 2 , CGI - > generaltexth - > allTexts [ 198 ] , c - > shots ) ;
//TODO
int dmgMultiply = 1 ;
if ( stack & & stack - > hasBonusOfType ( Bonus : : SIEGE_WEAPON ) )
dmgMultiply + = stack - > armyObj - > Attack ( ) ;
2010-07-16 18:52:21 +03:00
printLine ( 3 , CGI - > generaltexth - > allTexts [ 199 ] , finalNode - > getMinDamage ( ) * dmgMultiply , finalNode - > getMaxDamage ( ) * dmgMultiply , true ) ;
2010-05-02 21:20:26 +03:00
printLine ( 4 , CGI - > generaltexth - > allTexts [ 388 ] , cre - > valOfBonuses ( Bonus : : STACK_HEALTH ) , finalNode - > valOfBonuses ( Bonus : : STACK_HEALTH ) ) ;
printLine ( 6 , CGI - > generaltexth - > zelp [ 441 ] . first , cre - > valOfBonuses ( Bonus : : STACKS_SPEED ) , finalNode - > valOfBonuses ( Bonus : : STACKS_SPEED ) ) ;
2010-07-13 08:25:40 +03:00
//setting morale
morale = new MoraleLuckBox ( true ) ;
morale - > pos = genRect ( 42 , 42 , pos . x + 24 , pos . y + 189 ) ;
morale - > set ( stack ) ;
//setting luck
luck = new MoraleLuckBox ( false ) ;
luck - > pos = genRect ( 42 , 42 , pos . x + 77 , pos . y + 189 ) ;
luck - > set ( stack ) ;
2010-05-02 21:20:26 +03:00
//luck and morale
int luck = 3 , morale = 3 ;
if ( stack )
{
//add modifiers
luck + = stack - > LuckVal ( ) ;
morale + = stack - > MoraleVal ( ) ;
2009-05-19 21:23:04 +03:00
}
2010-05-02 21:20:26 +03:00
blitAt ( graphics - > morale42 - > ourImages [ morale ] . bitmap , 24 , 189 , * bitmap ) ;
blitAt ( graphics - > luck42 - > ourImages [ luck ] . bitmap , 77 , 189 , * bitmap ) ;
}
CCreInfoWindow : : CCreInfoWindow ( int Cid , int Type , int creatureCount )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
const CCreature * cre = CGI - > creh - > creatures [ Cid ] ;
init ( cre , NULL , creatureCount ) ;
2009-05-19 21:23:04 +03:00
}
2010-05-02 21:20:26 +03:00
2009-05-19 21:23:04 +03:00
CCreInfoWindow : : ~ CCreInfoWindow ( )
{
delete anim ;
2010-07-15 06:04:57 +03:00
for ( int i = 0 ; i < upgResCost . size ( ) ; i + + )
delete upgResCost [ i ] ;
2009-05-19 21:23:04 +03:00
}
void CCreInfoWindow : : activate ( )
{
2010-05-02 21:20:26 +03:00
CIntObject : : activate ( ) ;
2009-05-19 21:23:04 +03:00
if ( ! type )
2009-08-11 19:05:33 +03:00
activateRClick ( ) ;
2009-05-19 21:23:04 +03:00
}
void CCreInfoWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
2009-08-11 19:05:33 +03:00
void CCreInfoWindow : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
if ( down )
return ;
close ( ) ;
}
void CCreInfoWindow : : dismissF ( )
{
dsm ( ) ;
close ( ) ;
}
void CCreInfoWindow : : keyPressed ( const SDL_KeyboardEvent & key )
{
}
void CCreInfoWindow : : deactivate ( )
{
if ( ! type )
2009-08-11 19:05:33 +03:00
deactivateRClick ( ) ;
2010-05-02 21:20:26 +03:00
CIntObject : : deactivate ( ) ;
2009-05-19 21:23:04 +03:00
}
void CLevelWindow : : close ( )
{
for ( int i = 0 ; i < comps . size ( ) ; i + + )
{
if ( comps [ i ] - > selected )
{
cb ( i ) ;
break ;
}
}
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
LOCPLINT - > showingDialog - > setn ( false ) ;
}
CLevelWindow : : CLevelWindow ( const CGHeroInstance * hero , int pskill , std : : vector < ui16 > & skills , boost : : function < void ( ui32 ) > & callback )
{
LOCPLINT - > showingDialog - > setn ( true ) ;
2009-11-29 04:46:30 +02:00
heroPortrait = hero - > portrait ;
2009-05-19 21:23:04 +03:00
cb = callback ;
for ( int i = 0 ; i < skills . size ( ) ; i + + )
{
comps . push_back ( new CSelectableComponent ( SComponent : : secskill44 , skills [ i ] , hero - > getSecSkillLevel ( skills [ i ] ) + 1 , boost : : bind ( & CLevelWindow : : selectionChanged , this , i ) ) ) ;
comps . back ( ) - > assignedKeys . insert ( SDLK_1 + i ) ;
}
2010-02-02 18:24:53 +02:00
SDL_Surface * hhlp = BitmapHandler : : loadBitmap ( " LVLUPBKG.bmp " ) ;
graphics - > blueToPlayersAdv ( hhlp , LOCPLINT - > playerID ) ;
bitmap = SDL_ConvertSurface ( hhlp , screen - > format , 0 ) ;
2009-05-19 21:23:04 +03:00
SDL_SetColorKey ( bitmap , SDL_SRCCOLORKEY , SDL_MapRGB ( bitmap - > format , 0 , 255 , 255 ) ) ;
2010-02-02 18:24:53 +02:00
SDL_FreeSurface ( hhlp ) ;
2009-05-19 21:23:04 +03:00
pos . x = screen - > w / 2 - bitmap - > w / 2 ;
pos . y = screen - > h / 2 - bitmap - > h / 2 ;
pos . w = bitmap - > w ;
pos . h = bitmap - > h ;
ok = new AdventureMapButton ( " " , " " , boost : : bind ( & CLevelWindow : : close , this ) , pos . x + 297 , pos . y + 413 , " IOKAY.DEF " , SDLK_RETURN ) ;
//draw window
char buf [ 100 ] , buf2 [ 100 ] ;
strcpy ( buf2 , CGI - > generaltexth - > allTexts [ 444 ] . c_str ( ) ) ; //%s has gained a level.
sprintf ( buf , buf2 , hero - > name . c_str ( ) ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( buf , 192 , 33 , FONT_MEDIUM , zwykly , bitmap ) ;
2009-05-19 21:23:04 +03:00
strcpy ( buf2 , CGI - > generaltexth - > allTexts [ 445 ] . c_str ( ) ) ; //%s is now a level %d %s.
sprintf ( buf , buf2 , hero - > name . c_str ( ) , hero - > level , hero - > type - > heroClass - > name . c_str ( ) ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( buf , 192 , 162 , FONT_MEDIUM , zwykly , bitmap ) ;
2009-05-19 21:23:04 +03:00
blitAt ( graphics - > pskillsm - > ourImages [ pskill ] . bitmap , 174 , 190 , bitmap ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( ( CGI - > generaltexth - > primarySkillNames [ pskill ] + " +1 " ) , 192 , 253 , FONT_MEDIUM , zwykly , bitmap ) ;
const Font * f = graphics - > fonts [ FONT_MEDIUM ] ;
std : : string text = CGI - > generaltexth - > allTexts [ 4 ] ;
int fontWidth = f - > getWidth ( text . c_str ( ) ) / 2 ;
int curx = bitmap - > w / 2 - ( skills . size ( ) * 44 + ( skills . size ( ) - 1 ) * ( 36 + fontWidth ) ) / 2 ;
2009-05-19 21:23:04 +03:00
for ( int i = 0 ; i < comps . size ( ) ; i + + )
{
comps [ i ] - > pos . x = curx + pos . x ;
comps [ i ] - > pos . y = 326 + pos . y ;
if ( i < ( comps . size ( ) - 1 ) )
{
2010-02-02 18:24:53 +02:00
curx + = 44 + 21 ; //skill width + margin to "or"
printAtMiddle ( text , curx , 346 , FONT_MEDIUM , zwykly , bitmap ) ;
curx + = fontWidth + 15 ;
2009-05-19 21:23:04 +03:00
}
}
if ( comps . size ( ) > 1 )
{
ok - > block ( true ) ;
}
else if ( comps . size ( ) = = 1 )
{
comps [ 0 ] - > select ( true ) ;
}
}
void CLevelWindow : : selectionChanged ( unsigned to )
{
if ( ok - > blocked )
ok - > block ( false ) ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
if ( i = = to )
comps [ i ] - > select ( true ) ;
else
comps [ i ] - > select ( false ) ;
}
CLevelWindow : : ~ CLevelWindow ( )
{
delete ok ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
delete comps [ i ] ;
SDL_FreeSurface ( bitmap ) ;
}
void CLevelWindow : : activate ( )
{
ok - > activate ( ) ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
comps [ i ] - > activate ( ) ;
}
void CLevelWindow : : deactivate ( )
{
ok - > deactivate ( ) ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
comps [ i ] - > deactivate ( ) ;
}
void CLevelWindow : : show ( SDL_Surface * to )
{
blitAt ( bitmap , pos . x , pos . y , to ) ;
2009-11-29 04:46:30 +02:00
blitAt ( graphics - > portraitLarge [ heroPortrait ] , 170 + pos . x , 66 + pos . y , to ) ;
2009-05-19 21:23:04 +03:00
ok - > show ( to ) ;
for ( int i = 0 ; i < comps . size ( ) ; i + + )
comps [ i ] - > show ( to ) ;
}
void CMinorResDataBar : : show ( SDL_Surface * to )
{
blitAt ( bg , pos . x , pos . y , to ) ;
char buf [ 30 ] ;
for ( int i = 0 ; i < 7 ; i + + )
{
SDL_itoa ( LOCPLINT - > cb - > getResourceAmount ( i ) , buf , 10 ) ;
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAtMiddle ( buf , pos . x + 50 + 76 * i , pos . y + pos . h / 2 , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
}
std : : vector < std : : string > temp ;
SDL_itoa ( LOCPLINT - > cb - > getDate ( 3 ) , buf , 10 ) ; temp . push_back ( std : : string ( buf ) ) ;
SDL_itoa ( LOCPLINT - > cb - > getDate ( 2 ) , buf , 10 ) ; temp . push_back ( buf ) ;
SDL_itoa ( LOCPLINT - > cb - > getDate ( 1 ) , buf , 10 ) ; temp . push_back ( buf ) ;
CSDL_Ext : : printAtMiddle ( CSDL_Ext : : processStr (
CGI - > generaltexth - > allTexts [ 62 ]
+ " : %s, "
+ CGI - > generaltexth - > allTexts [ 63 ]
+ " : %s, "
+ CGI - > generaltexth - > allTexts [ 64 ]
+ " : %s " , temp )
2010-02-02 18:24:53 +02:00
, pos . x + 545 + ( pos . w - 545 ) / 2 , pos . y + pos . h / 2 , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
}
CMinorResDataBar : : CMinorResDataBar ( )
{
bg = BitmapHandler : : loadBitmap ( " Z2ESBAR.bmp " ) ;
SDL_SetColorKey ( bg , SDL_SRCCOLORKEY , SDL_MapRGB ( bg - > format , 0 , 255 , 255 ) ) ;
graphics - > blueToPlayersAdv ( bg , LOCPLINT - > playerID ) ;
pos . x = 7 ;
pos . y = 575 ;
pos . w = bg - > w ;
pos . h = bg - > h ;
}
CMinorResDataBar : : ~ CMinorResDataBar ( )
{
SDL_FreeSurface ( bg ) ;
}
SDL_Surface * CCustomImgComponent : : getImg ( )
{
return bmp ;
}
CCustomImgComponent : : CCustomImgComponent ( Etype Type , int Subtype , int Val , SDL_Surface * sur , bool freeSur )
: bmp ( sur ) , free ( freeSur )
{
init ( Type , Subtype , Val ) ;
}
CCustomImgComponent : : ~ CCustomImgComponent ( )
{
if ( free )
SDL_FreeSurface ( bmp ) ;
}
2010-06-26 13:01:26 +03:00
CObjectListWindow : : CObjectListWindow ( const std : : vector < int > & _items , CPicture * titlePic , std : : string _title , std : : string _descr ,
boost : : function < void ( int ) > Callback , int initState ) : items ( _items ) , title ( _title ) , descr ( _descr ) , selected ( initState )
{
init = false ;
OBJ_CONSTRUCTION_CAPTURING_ALL ;
defActions = ACTIVATE | DEACTIVATE | UPDATE | SHOWALL | DISPOSE | SHARE_POS ;
used = LCLICK | KEYBOARD ;
onSelect = Callback ;
length = 9 ;
pos . x = ( screen - > w - 306 ) / 2 ;
pos . y = ( screen - > h - 468 ) / 2 ;
bg = new CPicture ( " TPGATE.pcx " ) ; //x=0, y=0
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
slider = new CSlider ( 277 , 120 , 256 , boost : : bind ( & CObjectListWindow : : moveList , this , _1 ) , length , items . size ( ) , 0 , false , 0 ) ;
ok = new AdventureMapButton ( " " , " " , boost : : bind ( & CObjectListWindow : : elementSelected , this ) , 15 , 402 , " IOKAY.DEF " , SDLK_RETURN ) ;
exit = new AdventureMapButton ( " " , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 228 , 402 , " ICANCEL.DEF " , SDLK_ESCAPE ) ;
pos . w = bg - > pos . w ;
pos . h = bg - > pos . h ;
titleImage = titlePic ;
titleImage - > pos . x = 153 + pos . x - titleImage - > pos . w / 2 ;
titleImage - > pos . y = 75 + pos . y - titleImage - > pos . h / 2 ;
for ( int i = 0 ; i < length ; i + + )
areas . push_back ( genRect ( 22 , 260 , pos . x + 15 , pos . y + 152 + i * 25 ) ) ; //rects for selecting\printing items
init = true ;
}
CObjectListWindow : : ~ CObjectListWindow ( )
{
delete titleImage ;
}
void CObjectListWindow : : elementSelected ( )
{
2010-06-30 22:27:35 +03:00
boost : : function < void ( int ) > toCall = onSelect ; //save
int where = items [ slider - > value ] ; //required variables
GH . popIntTotally ( this ) ; //then destroy window
toCall ( where ) ; //and send selected object
2010-06-26 13:01:26 +03:00
}
void CObjectListWindow : : moveList ( int which )
{
if ( init ) //TODO: is there a way to disable running this when CSlider is created?
showAll ( screen2 ) ;
}
void CObjectListWindow : : clickLeft ( tribool down , bool previousState )
{
if ( previousState & & ( ! down ) )
{
for ( int i = 0 ; i < areas . size ( ) ; i + + )
if ( slider - > value + i < items . size ( ) & & isItIn ( & areas [ i ] , GH . current - > motion . x , GH . current - > motion . y ) )
{ //check all areas to find element which was clicked
selected = i + slider - > value ;
showAll ( screen2 ) ;
return ;
}
}
}
void CObjectListWindow : : keyPressed ( const SDL_KeyboardEvent & key )
{
if ( key . state ! = SDL_PRESSED ) return ;
int sel = selected ;
switch ( key . keysym . sym )
{
case SDLK_UP :
sel - = 1 ;
break ;
case SDLK_DOWN :
sel + = 1 ;
break ;
case SDLK_PAGEUP :
sel - = length ;
break ;
case SDLK_PAGEDOWN :
sel + = length ;
break ;
case SDLK_HOME :
sel = 0 ;
break ;
case SDLK_END :
sel = slider - > amount ;
break ;
default :
return ;
}
2010-06-30 22:27:35 +03:00
if ( sel < - 1 ) //nothing was selected & list was moved up
return ;
2010-06-26 13:01:26 +03:00
if ( sel < 0 ) //start of list reached
sel = 0 ;
2010-06-30 22:27:35 +03:00
if ( sel > = slider - > amount ) //end of list reached
2010-06-26 13:01:26 +03:00
sel = slider - > amount - 1 ;
if ( sel > = items . size ( ) )
sel = items . size ( ) - 1 ;
if ( sel < slider - > value ) //need to move list up
slider - > moveTo ( sel ) ;
else
if ( sel > = slider - > value + length ) //move to bottom
slider - > moveTo ( sel - length + 1 ) ;
selected = sel ;
showAll ( screen2 ) ;
}
void CObjectListWindow : : show ( SDL_Surface * to )
{
}
void CObjectListWindow : : showAll ( SDL_Surface * to )
{
ok - > block ( ( selected < 0 ) ? 2 : 0 ) ;
CIntObject : : showAll ( to ) ;
CSDL_Ext : : printAtMiddle ( title , pos . x + 152 , pos . y + 27 , FONT_BIG , tytulowy , to ) ; //"castle gate"
CSDL_Ext : : printAtMiddle ( descr , pos . x + 145 , pos . y + 133 , FONT_SMALL , zwykly , to ) ; //"select destination"
titleImage - > showAll ( to ) ;
if ( selected > = slider - > value & & selected < slider - > value + length ) //if selected item is visible
{
SDL_Rect a = areas [ selected - slider - > value ] ;
CSDL_Ext : : drawBorder ( to , a . x , a . y , a . w , a . h , int3 ( 255 , 231 , 148 ) ) ;
CSDL_Ext : : drawBorder ( to , a . x - 1 , a . y - 1 , a . w + 2 , a . h + 2 , int3 ( 255 , 231 , 148 ) ) ; //border shoul be 2 pixels width
}
int position = slider - > value ;
for ( int i = 0 ; i < 9 & & i < items . size ( ) - position ; i + + )
CSDL_Ext : : printAtMiddle ( CGI - > mh - > map - > objects [ items [ i + position ] ] - > hoverName , pos . x + 145 , pos . y + 163 + 25 * i ,
FONT_SMALL , zwykly , to ) ; //print item names in list
}
2010-07-20 09:05:45 +03:00
CTradeWindow : : CTradeableItem : : CTradeableItem ( EType Type , int ID , bool Left , int Serial )
2009-05-19 21:23:04 +03:00
{
2010-05-26 12:47:53 +03:00
serial = Serial ;
2009-05-19 21:23:04 +03:00
left = Left ;
type = Type ;
id = ID ;
2010-07-20 09:05:45 +03:00
used = LCLICK | HOVER | RCLICK ;
downSelection = false ;
2009-05-19 21:23:04 +03:00
}
2010-07-20 09:05:45 +03:00
void CTradeWindow : : CTradeableItem : : showAll ( SDL_Surface * to )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
Point posToBitmap ;
Point posToSubCenter ;
2010-05-08 01:10:32 +03:00
switch ( type )
{
case RESOURCE :
2010-07-20 09:05:45 +03:00
posToBitmap = Point ( 19 , 9 ) ;
posToSubCenter = Point ( 36 , 57 ) ;
break ;
case CREATURE_PLACEHOLDER :
case CREATURE :
posToSubCenter = Point ( 29 , 76 ) ;
if ( downSelection )
posToSubCenter . y + = 5 ;
break ;
case PLAYER :
posToSubCenter = Point ( 31 , 76 ) ;
break ;
case ARTIFACT :
posToSubCenter = Point ( 18 , 57 ) ;
2010-05-08 01:10:32 +03:00
break ;
}
2010-07-20 09:05:45 +03:00
if ( SDL_Surface * hlp = getSurface ( ) )
blitAt ( hlp , pos + posToBitmap , to ) ;
printAtMiddleLoc ( subtitle , posToSubCenter , FONT_SMALL , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-20 09:05:45 +03:00
void CTradeWindow : : CTradeableItem : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
CTradeWindow * mw = static_cast < CTradeWindow * > ( parent ) ;
2009-05-19 21:23:04 +03:00
assert ( mw ) ;
2010-07-20 09:05:45 +03:00
if ( type = = ARTIFACT_PLACEHOLDER )
{
}
2009-05-19 21:23:04 +03:00
if ( down )
{
if ( left )
{
if ( mw - > hLeft ! = this )
mw - > hLeft = this ;
else
return ;
}
else
{
2009-09-09 09:04:42 +03:00
if ( mw - > hRight ! = this )
2009-05-19 21:23:04 +03:00
mw - > hRight = this ;
else
return ;
}
mw - > selectionChanged ( left ) ;
}
}
2010-07-20 09:05:45 +03:00
SDL_Surface * CTradeWindow : : CTradeableItem : : getSurface ( )
2009-05-19 21:23:04 +03:00
{
switch ( type )
{
2010-05-08 01:10:32 +03:00
case RESOURCE :
2009-05-19 21:23:04 +03:00
return graphics - > resources32 - > ourImages [ id ] . bitmap ;
2010-05-08 01:10:32 +03:00
case PLAYER :
return graphics - > flags - > ourImages [ id ] . bitmap ;
case ARTIFACT :
2009-05-19 21:23:04 +03:00
return graphics - > artDefs - > ourImages [ id ] . bitmap ;
2010-05-26 12:47:53 +03:00
case CREATURE :
return graphics - > bigImgs [ id ] ;
2009-05-19 21:23:04 +03:00
default :
return NULL ;
}
}
2010-07-20 09:05:45 +03:00
void CTradeWindow : : CTradeableItem : : showAllAt ( const Point & dstPos , const std : : string & customSub , SDL_Surface * to )
{
Rect oldPos = pos ;
std : : string oldSub = subtitle ;
downSelection = true ;
pos = dstPos ;
subtitle = customSub ;
showAll ( to ) ;
downSelection = false ;
pos = oldPos ;
subtitle = oldSub ;
}
void CTradeWindow : : CTradeableItem : : hover ( bool on )
{
if ( ! on )
{
GH . statusbar - > clear ( ) ;
return ;
}
switch ( type )
{
case CREATURE :
case CREATURE_PLACEHOLDER :
GH . statusbar - > print ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 481 ] ) % CGI - > creh - > creatures [ id ] - > namePl ) ) ;
break ;
case ARTIFACT_PLACEHOLDER :
if ( id < 0 )
GH . statusbar - > print ( CGI - > generaltexth - > zelp [ 582 ] . first ) ;
else
GH . statusbar - > print ( CGI - > arth - > artifacts [ id ] - > Name ( ) ) ;
break ;
}
}
void CTradeWindow : : CTradeableItem : : clickRight ( tribool down , bool previousState )
{
switch ( type )
{
case CREATURE :
case CREATURE_PLACEHOLDER :
//GH.statusbar->print(boost::str(boost::format(CGI->generaltexth->allTexts[481]) % CGI->creh->creatures[id]->namePl));
break ;
}
}
CTradeWindow : : CTradeWindow ( const IMarket * Market , const CGHeroInstance * Hero , EMarketMode Mode )
: market ( Market ) , hero ( Hero ) , hLeft ( NULL ) , hRight ( NULL ) , readyToTrade ( false ) , arts ( NULL )
{
type = BLOCK_ADV_HOTKEYS ;
mode = Mode ;
initTypes ( ) ;
}
void CTradeWindow : : initTypes ( )
{
switch ( mode )
{
case RESOURCE_RESOURCE :
itemsType [ 1 ] = RESOURCE ;
itemsType [ 0 ] = RESOURCE ;
break ;
case RESOURCE_PLAYER :
itemsType [ 1 ] = RESOURCE ;
itemsType [ 0 ] = PLAYER ;
break ;
case CREATURE_RESOURCE :
itemsType [ 1 ] = CREATURE ;
itemsType [ 0 ] = RESOURCE ;
break ;
case RESOURCE_ARTIFACT :
itemsType [ 1 ] = RESOURCE ;
itemsType [ 0 ] = ARTIFACT ;
break ;
case CREATURE_EXP :
itemsType [ 1 ] = CREATURE ;
itemsType [ 0 ] = CREATURE_PLACEHOLDER ;
break ;
case ARTIFACT_EXP :
itemsType [ 1 ] = ARTIFACT ;
itemsType [ 0 ] = ARTIFACT_PLACEHOLDER ;
break ;
}
}
void CTradeWindow : : initItems ( bool Left )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
std : : vector < int > * ids = getItemsIds ( Left ) ;
std : : vector < Rect > pos ;
int amount = - 1 ;
getPositionsFor ( pos , Left , itemsType [ Left ] ) ;
if ( Left | | ! ids )
amount = 7 ;
else
amount = ids - > size ( ) ;
2010-05-08 01:10:32 +03:00
if ( ids )
amin ( amount , ids - > size ( ) ) ;
2010-07-20 09:05:45 +03:00
for ( int j = 0 ; j < amount ; j + + )
2009-05-19 21:23:04 +03:00
{
2010-05-26 12:47:53 +03:00
int id = ( ids & & ids - > size ( ) > j ) ? ( * ids ) [ j ] : j ;
if ( id < 0 )
continue ;
2010-07-20 09:05:45 +03:00
CTradeableItem * hlp = new CTradeableItem ( itemsType [ Left ] , id , Left , j ) ;
hlp - > pos = pos [ j ] + hlp - > pos ;
items [ Left ] . push_back ( hlp ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-20 09:05:45 +03:00
initSubs ( Left ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-20 09:05:45 +03:00
std : : vector < int > * CTradeWindow : : getItemsIds ( bool Left )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
std : : vector < int > * ids = NULL ;
2010-06-27 19:03:01 +03:00
2010-07-20 09:05:45 +03:00
if ( Left )
{
switch ( itemsType [ 1 ] )
{
case CREATURE :
ids = new std : : vector < int > ;
for ( int i = 0 ; i < 7 ; i + + )
{
if ( const CCreature * c = hero - > getCreature ( i ) )
ids - > push_back ( c - > idNumber ) ;
else
ids - > push_back ( - 1 ) ;
}
break ;
}
}
else
{
switch ( itemsType [ 0 ] )
{
case PLAYER :
ids = new std : : vector < int > ;
for ( int i = 0 , found = 0 ; i < PLAYER_LIMIT ; i + + )
if ( i ! = LOCPLINT - > playerID & & LOCPLINT - > cb - > getPlayerStatus ( i ) = = PlayerState : : INGAME )
ids - > push_back ( i ) ;
break ;
case ARTIFACT :
ids = new std : : vector < int > ( market - > availableItemsIds ( mode ) ) ;
break ;
}
}
return ids ;
}
void CTradeWindow : : getPositionsFor ( std : : vector < Rect > & poss , bool Left , EType type ) const
{
if ( mode = = ARTIFACT_EXP & & ! Left )
{
//22 boxes, 5 in row, last row: two boxes centered
int h , w , x , y , dx , dy ;
h = w = 44 ;
x = 317 ;
y = 53 ;
dx = 54 ;
dy = 70 ;
for ( int i = 0 ; i < 4 ; i + + )
for ( int j = 0 ; j < 5 ; j + + )
poss + = Rect ( x + dx * j , y + dy * i , w , h ) ;
poss + = Rect ( x + dx * 2.5 , y + dy * 5 , w , h ) ;
poss + = Rect ( x + dx * 2.5 , y + dy * 5 , w , h ) ;
}
else
{
//seven boxes:
// X X X
// X X X
// X
int h , w , x , y , dx , dy ;
int leftToRightOffset ;
getBaseForPositions ( type , dx , dy , x , y , h , w , ! Left , leftToRightOffset ) ;
poss + = genRect ( h , w , x , y ) , genRect ( h , w , x + dx , y ) , genRect ( h , w , x + 2 * dx , y ) ,
genRect ( h , w , x , y + dy ) , genRect ( h , w , x + dx , y + dy ) , genRect ( h , w , x + 2 * dx , y + dy ) ,
genRect ( h , w , x + dx , y + 2 * dy ) ;
if ( ! Left )
BOOST_FOREACH ( Rect & r , poss )
r . x + = leftToRightOffset ;
}
}
void CTradeWindow : : initSubs ( bool Left )
{
BOOST_FOREACH ( CTradeableItem * t , items [ Left ] )
{
if ( Left )
{
switch ( itemsType [ 1 ] )
{
case CREATURE :
t - > subtitle = boost : : lexical_cast < std : : string > ( hero - > getAmount ( t - > serial ) ) ;
break ;
case RESOURCE :
t - > subtitle = boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > getResourceAmount ( t - > serial ) ) ;
break ;
}
}
else //right side
{
if ( itemsType [ 0 ] = = PLAYER )
{
t - > subtitle = CGI - > generaltexth - > capColors [ t - > id ] ;
}
else if ( hLeft ) //artifact, creature
{
int h1 , h2 ; //hlp variables for getting offer
market - > getOffer ( hLeft - > id , t - > id , h1 , h2 , mode ) ;
if ( t - > id ! = hLeft - > id | | mode ! = RESOURCE_RESOURCE ) //don't allow exchanging same resources
{
std : : ostringstream oss ;
oss < < h2 ;
if ( h1 ! = 1 )
oss < < " / " < < h1 ;
t - > subtitle = oss . str ( ) ;
}
else
t - > subtitle = CGI - > generaltexth - > allTexts [ 164 ] ; // n/a
}
else
t - > subtitle = " " ;
}
}
}
void CTradeWindow : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
if ( hRight )
CSDL_Ext : : drawBorder ( to , hRight - > pos . x - 1 , hRight - > pos . y - 1 , hRight - > pos . w + 2 , hRight - > pos . h + 2 , int3 ( 255 , 231 , 148 ) ) ;
if ( hLeft )
CSDL_Ext : : drawBorder ( to , hLeft - > pos . x - 1 , hLeft - > pos . y - 1 , hLeft - > pos . w + 2 , hLeft - > pos . h + 2 , int3 ( 255 , 231 , 148 ) ) ;
if ( readyToTrade )
{
hLeft - > showAllAt ( pos . topLeft ( ) + selectionOffset ( true ) , selectionSubtitle ( true ) , to ) ;
hRight - > showAllAt ( pos . topLeft ( ) + selectionOffset ( false ) , selectionSubtitle ( false ) , to ) ;
}
}
void CTradeWindow : : removeItems ( const std : : set < CTradeableItem * > & toRemove )
{
BOOST_FOREACH ( CTradeableItem * t , toRemove )
removeItem ( t ) ;
}
void CTradeWindow : : removeItem ( CTradeableItem * t )
{
if ( active )
t - > deactivate ( ) ;
items [ t - > left ] - = t ;
delChild ( t ) ;
if ( hRight = = t )
{
hRight = NULL ;
selectionChanged ( false ) ;
}
}
void CTradeWindow : : getEmptySlots ( std : : set < CTradeableItem * > & toRemove )
{
BOOST_FOREACH ( CTradeableItem * t , items [ 1 ] )
if ( ! hero - > getAmount ( t - > serial ) )
toRemove . insert ( t ) ;
}
void CTradeWindow : : setMode ( EMarketMode Mode )
{
CTradeWindow * nwindow = NULL ;
switch ( Mode )
{
case CREATURE_EXP :
case ARTIFACT_EXP :
nwindow = new CAltarWindow ( market , hero , Mode ) ;
break ;
default :
nwindow = new CMarketplaceWindow ( market , hero , Mode ) ;
break ;
}
GH . popIntTotally ( this ) ;
GH . pushInt ( nwindow ) ;
}
2010-05-08 01:10:32 +03:00
2010-07-20 09:05:45 +03:00
CMarketplaceWindow : : CMarketplaceWindow ( const IMarket * Market , const CGHeroInstance * Hero , EMarketMode Mode )
: CTradeWindow ( Market , Hero , Mode )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2010-05-08 01:10:32 +03:00
std : : string bgName ;
2010-06-27 19:03:01 +03:00
bool sliderNeeded = true ;
2010-05-08 01:10:32 +03:00
switch ( Mode )
{
case RESOURCE_RESOURCE :
bgName = " TPMRKRES.bmp " ;
break ;
2010-05-26 12:47:53 +03:00
2010-05-08 01:10:32 +03:00
case RESOURCE_PLAYER :
bgName = " TPMRKPTS.bmp " ;
break ;
2010-05-26 12:47:53 +03:00
case CREATURE_RESOURCE :
bgName = " TPMRKCRS.bmp " ;
break ;
2010-06-27 19:03:01 +03:00
case RESOURCE_ARTIFACT :
bgName = " TPMRKABS.bmp " ;
sliderNeeded = false ;
2010-07-20 09:05:45 +03:00
break ;
2010-05-08 01:10:32 +03:00
}
bg = new CPicture ( bgName ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
2010-07-20 09:05:45 +03:00
pos = bg - > center ( ) ;
2010-05-08 01:10:32 +03:00
2010-05-26 12:47:53 +03:00
if ( market - > o - > ID = = 99 | | market - > o - > ID = = 221 )
{
printAtMiddle ( CGI - > generaltexth - > allTexts [ 159 ] , 300 , 27 , FONT_BIG , tytulowy , * bg ) ; //title
}
else if ( mode = = CREATURE_RESOURCE )
{
if ( market - > o - > ID = = TOWNI_TYPE )
printAtMiddle ( CGI - > buildh - > buildings [ 6 ] [ 21 ] - > Name ( ) , 300 , 27 , FONT_BIG , tytulowy , * bg ) ; //title
else
printAtMiddle ( market - > o - > getHoverText ( ) , 300 , 27 , FONT_BIG , tytulowy , * bg ) ; //title
}
else
{
printAtMiddle ( CGI - > generaltexth - > allTexts [ 158 ] , 300 , 27 , FONT_BIG , tytulowy , * bg ) ; //trading post
}
2010-05-08 01:10:32 +03:00
2010-07-20 09:05:45 +03:00
initItems ( false ) ;
initItems ( true ) ;
2010-05-26 12:47:53 +03:00
2010-05-08 01:10:32 +03:00
ok = new AdventureMapButton ( " " , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 516 , 520 , " IOK6432.DEF " , SDLK_RETURN ) ;
2009-07-27 20:55:56 +03:00
ok - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2010-05-08 01:10:32 +03:00
deal = new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : makeDeal , this ) , 307 , 520 , " TPMRKB.DEF " ) ;
2010-06-27 19:03:01 +03:00
deal - > block ( true ) ;
//slider and buttons must be created after bg
if ( sliderNeeded )
{
slider = new CSlider ( 231 , 490 , 137 , 0 , 0 , 0 ) ;
slider - > moved = boost : : bind ( & CMarketplaceWindow : : sliderMoved , this , _1 ) ;
max = new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMax , this ) , 229 , 520 , " IRCBTNS.DEF " ) ;
max - > block ( true ) ;
}
else
{
slider = NULL ;
max = NULL ;
deal - > pos . x - = 38 ;
}
2010-05-08 01:10:32 +03:00
2010-05-26 12:47:53 +03:00
//left side
2010-05-08 01:10:32 +03:00
switch ( Mode )
{
case RESOURCE_RESOURCE :
2010-05-26 12:47:53 +03:00
case RESOURCE_PLAYER :
2010-06-27 19:03:01 +03:00
case RESOURCE_ARTIFACT :
2010-05-26 12:47:53 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 270 ] , 154 , 148 , FONT_SMALL , zwykly , * bg ) ; //kingdom res.
break ;
case CREATURE_RESOURCE :
printAtMiddle ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 272 ] ) % hero - > name ) , 152 , 102 , FONT_SMALL , zwykly , * bg ) ; //%s's Creatures
break ;
}
//right side
switch ( Mode )
{
case RESOURCE_RESOURCE :
case CREATURE_RESOURCE :
2010-06-27 19:03:01 +03:00
case RESOURCE_ARTIFACT :
2010-05-26 12:47:53 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 168 ] , 445 , 148 , FONT_SMALL , zwykly , * bg ) ; //available for trade
2010-05-08 01:10:32 +03:00
break ;
case RESOURCE_PLAYER :
2010-05-26 12:47:53 +03:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 169 ] , 445 , 55 , FONT_SMALL , zwykly , * bg ) ; //players
2010-05-08 01:10:32 +03:00
break ;
}
2009-05-19 21:23:04 +03:00
2010-05-26 12:47:53 +03:00
if ( printButtonFor ( RESOURCE_PLAYER ) )
new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMode , this , RESOURCE_PLAYER ) , 18 , 520 , " TPMRKBU1.DEF " ) ;
if ( printButtonFor ( RESOURCE_RESOURCE ) )
new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMode , this , RESOURCE_RESOURCE ) , 516 , 450 , " TPMRKBU5.DEF " ) ;
if ( printButtonFor ( CREATURE_RESOURCE ) )
2010-07-06 05:10:26 +03:00
new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMode , this , CREATURE_RESOURCE ) , 516 , 485 , " TPMRKBU4.DEF " ) ; //was y=450, changed to not overlap res-res in some conditions
if ( printButtonFor ( RESOURCE_ARTIFACT ) )
new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMode , this , RESOURCE_ARTIFACT ) , 18 , 450 , " TPMRKBU2.DEF " ) ;
if ( printButtonFor ( ARTIFACT_RESOURCE ) ) //unblock when support for art-res is ready
( new AdventureMapButton ( " " , " " , boost : : bind ( & CMarketplaceWindow : : setMode , this , RESOURCE_ARTIFACT ) , 18 , 485 , " TPMRKBU3.DEF " ) ) - > block ( true ) ; //was y=450, changed to not overlap res-res in some conditions
2010-05-26 12:47:53 +03:00
2009-05-19 21:23:04 +03:00
}
CMarketplaceWindow : : ~ CMarketplaceWindow ( )
{
2010-05-08 01:10:32 +03:00
hLeft = hRight = NULL ;
2010-07-20 09:05:45 +03:00
for ( int i = 0 ; i < items [ 1 ] . size ( ) ; i + + )
delChild ( items [ 1 ] [ i ] ) ;
for ( int i = 0 ; i < items [ 0 ] . size ( ) ; i + + )
delChild ( items [ 0 ] [ i ] ) ;
2010-05-08 01:10:32 +03:00
2010-07-20 09:05:45 +03:00
items [ 1 ] . clear ( ) ;
items [ 0 ] . clear ( ) ;
2010-05-08 01:10:32 +03:00
delChild ( bg ) ;
bg = NULL ;
2009-05-19 21:23:04 +03:00
}
2010-05-08 01:10:32 +03:00
2009-05-19 21:23:04 +03:00
void CMarketplaceWindow : : setMax ( )
{
slider - > moveTo ( slider - > amount ) ;
}
void CMarketplaceWindow : : makeDeal ( )
{
2010-06-27 19:03:01 +03:00
int sliderValue = 0 ;
if ( slider )
sliderValue = slider - > value ;
else
sliderValue = ! deal - > blocked ; //should always be 1
if ( ! sliderValue )
2010-05-26 12:47:53 +03:00
return ;
int leftIdToSend = - 1 ;
if ( mode = = CREATURE_RESOURCE )
leftIdToSend = hLeft - > serial ;
else
leftIdToSend = hLeft - > id ;
2010-06-27 19:03:01 +03:00
if ( mode ! = RESOURCE_ARTIFACT )
{
LOCPLINT - > cb - > trade ( market - > o , mode , leftIdToSend , hRight - > id , slider - > value * r1 , hero ) ;
slider - > moveTo ( 0 ) ;
}
else
{
LOCPLINT - > cb - > trade ( market - > o , mode , leftIdToSend , hRight - > id , r2 , hero ) ;
}
2009-05-19 21:23:04 +03:00
hLeft = NULL ;
2010-05-26 12:47:53 +03:00
hRight = NULL ;
2009-05-19 21:23:04 +03:00
selectionChanged ( true ) ;
}
void CMarketplaceWindow : : sliderMoved ( int to )
{
2010-05-26 12:47:53 +03:00
redraw ( ) ;
2009-05-19 21:23:04 +03:00
}
void CMarketplaceWindow : : selectionChanged ( bool side )
{
2010-05-26 12:47:53 +03:00
readyToTrade = ( hLeft & & hRight & & ( hLeft - > id ! = hRight - > id | | mode ! = RESOURCE_RESOURCE ) ) ;
if ( readyToTrade )
2009-05-19 21:23:04 +03:00
{
2010-05-26 12:47:53 +03:00
int newAmount = - 1 ;
market - > getOffer ( hLeft - > id , hRight - > id , r1 , r2 , mode ) ;
2010-07-20 09:05:45 +03:00
if ( itemsType [ 1 ] = = RESOURCE )
2010-05-26 12:47:53 +03:00
newAmount = LOCPLINT - > cb - > getResourceAmount ( hLeft - > id ) ;
2010-07-20 09:05:45 +03:00
else if ( itemsType [ 1 ] = = CREATURE )
2010-05-26 12:47:53 +03:00
newAmount = hero - > getAmount ( hLeft - > serial ) - ( hero - > Slots ( ) . size ( ) = = 1 & & hero - > needsLastStack ( ) ) ;
else
assert ( 0 ) ;
2010-06-27 19:03:01 +03:00
if ( slider )
{
slider - > setAmount ( newAmount / r1 ) ;
slider - > moveTo ( 0 ) ;
max - > block ( false ) ;
deal - > block ( false ) ;
}
else
{
deal - > block ( LOCPLINT - > cb - > getResourceAmount ( hLeft - > id ) < r1 ) ;
}
2009-05-19 21:23:04 +03:00
}
else
{
2010-06-27 19:03:01 +03:00
if ( slider )
{
max - > block ( true ) ;
slider - > setAmount ( 0 ) ;
slider - > moveTo ( 0 ) ;
}
2009-05-19 21:23:04 +03:00
deal - > block ( true ) ;
}
2010-06-27 19:03:01 +03:00
2010-07-20 09:05:45 +03:00
if ( side & & itemsType [ 0 ] ! = PLAYER ) //items[1] selection changed, recalculate offers
initSubs ( false ) ;
redraw ( ) ;
}
bool CMarketplaceWindow : : printButtonFor ( EMarketMode M ) const
{
return market - > allowsTrade ( M ) & & M ! = mode & & ( hero | | mode ! = CREATURE_RESOURCE & & mode ! = RESOURCE_ARTIFACT & & mode ! = ARTIFACT_RESOURCE ) ;
}
void CMarketplaceWindow : : garrisonChanged ( )
{
if ( mode ! = CREATURE_RESOURCE )
return ;
std : : set < CTradeableItem * > toRemove ;
getEmptySlots ( toRemove ) ;
removeItems ( toRemove ) ;
initSubs ( true ) ;
}
void CMarketplaceWindow : : artifactsChanged ( bool Left )
{
assert ( ! Left ) ;
if ( mode ! = RESOURCE_ARTIFACT )
return ;
std : : vector < int > available = market - > availableItemsIds ( mode ) ;
std : : set < CTradeableItem * > toRemove ;
BOOST_FOREACH ( CTradeableItem * t , items [ 0 ] )
if ( ! vstd : : contains ( available , t - > id ) )
toRemove . insert ( t ) ;
removeItems ( toRemove ) ;
}
std : : string CMarketplaceWindow : : selectionSubtitle ( bool Left ) const
{
if ( Left )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
assert ( itemsType [ 1 ] = = CREATURE | | itemsType [ 1 ] = = RESOURCE ) ;
int val = slider
? slider - > value * r1
: ( ( deal - > blocked ) ? 0 : r1 ) ;
return boost : : lexical_cast < std : : string > ( val ) ;
}
else
{
switch ( itemsType [ 0 ] )
2009-05-19 21:23:04 +03:00
{
2010-07-20 09:05:45 +03:00
case RESOURCE :
return boost : : lexical_cast < std : : string > ( slider - > value * r2 ) ;
case ARTIFACT :
return ( deal - > blocked ? " 0 " : " 1 " ) ;
case PLAYER :
return ( hRight ? CGI - > generaltexth - > capColors [ hRight - > id ] : " " ) ;
}
}
return " ??? " ;
}
2010-05-18 10:01:54 +03:00
2010-07-20 09:05:45 +03:00
Point CMarketplaceWindow : : selectionOffset ( bool Left ) const
{
if ( Left )
{
switch ( itemsType [ 1 ] )
{
case RESOURCE :
return Point ( 122 , 446 ) ;
case CREATURE :
return Point ( 128 , 450 ) ;
2009-05-19 21:23:04 +03:00
}
}
2010-07-20 09:05:45 +03:00
else
{
switch ( itemsType [ 0 ] )
{
case RESOURCE :
return Point ( 410 , 446 ) ;
case ARTIFACT :
return Point ( 425 , 447 ) ;
case PLAYER :
return Point ( 417 , 451 ) ;
}
}
assert ( 0 ) ;
return Point ( 0 , 0 ) ;
2009-05-19 21:23:04 +03:00
}
2010-07-20 09:05:45 +03:00
void CMarketplaceWindow : : resourceChanged ( int type , int val )
{
initSubs ( true ) ;
}
void CMarketplaceWindow : : getBaseForPositions ( EType type , int & dx , int & dy , int & x , int & y , int & h , int & w , bool Right , int & leftToRightOffset ) const
2010-05-08 01:10:32 +03:00
{
2010-05-26 12:47:53 +03:00
switch ( type )
2010-05-08 01:10:32 +03:00
{
2010-05-26 12:47:53 +03:00
case RESOURCE :
dx = 82 ;
dy = 79 ;
x = 39 ;
y = 180 ;
h = 66 ;
w = 74 ;
break ;
case PLAYER :
dx = 83 ;
dy = 118 ;
h = 64 ;
w = 58 ;
x = 44 ;
y = 83 ;
2010-05-08 01:10:32 +03:00
assert ( Right ) ;
2010-05-26 12:47:53 +03:00
break ;
case CREATURE : //45,123
x = 45 ;
y = 123 ;
w = 58 ;
h = 64 ;
dx = 83 ;
dy = 98 ;
assert ( ! Right ) ;
2010-07-20 09:05:45 +03:00
break ;
2010-06-27 19:03:01 +03:00
case ARTIFACT : //45,123
x = 342 - 288 ;
y = 181 ;
w = 44 ;
h = 44 ;
dx = 83 ;
dy = 79 ;
2010-07-20 09:05:45 +03:00
break ;
2010-05-08 01:10:32 +03:00
}
2010-05-26 12:47:53 +03:00
2010-07-20 09:05:45 +03:00
leftToRightOffset = 280 ;
}
CAltarWindow : : CAltarWindow ( const IMarket * Market , const CGHeroInstance * Hero /*= NULL*/ , EMarketMode Mode )
: CTradeWindow ( Market , Hero , Mode )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
bg = new CPicture ( Mode = = CREATURE_EXP ? " ALTARMON.bmp " : " ALTARART.bmp " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
pos = bg - > center ( ) ;
2010-05-26 12:47:53 +03:00
2010-07-20 09:05:45 +03:00
if ( Mode = = CREATURE_EXP )
{
printAtMiddle ( boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 272 ] ) % hero - > name ) , 155 , 30 , FONT_SMALL , tytulowy , * bg ) ; //%s's Creatures
printAtMiddle ( CGI - > generaltexth - > allTexts [ 479 ] , 450 , 30 , FONT_SMALL , tytulowy , * bg ) ; //Altar of Sacrifice
printAtMiddleWB ( CGI - > generaltexth - > allTexts [ 480 ] , 450 , 70 , FONT_SMALL , 45 , tytulowy , * bg ) ; //To sacrifice creatures, move them from your army on to the Altar and click Sacrifice
slider = new CSlider ( 231 , 481 , 137 , 0 , 0 , 0 ) ;
slider - > moved = boost : : bind ( & CAltarWindow : : sliderMoved , this , _1 ) ;
max = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 578 ] , boost : : bind ( & CSlider : : moveTo , slider , boost : : ref ( slider - > amount ) ) , 147 , 520 , " IRCBTNS.DEF " ) ;
sacrificedUnits . resize ( ARMY_SIZE , 0 ) ;
sacrificeAll = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 579 ] , boost : : bind ( & CAltarWindow : : SacrificeAll , this ) , 393 , 520 , " ALTARMY.DEF " ) ;
sacrificeBackpack = NULL ;
initItems ( true ) ;
mimicCres ( ) ;
}
else
{
printAtMiddle ( CGI - > generaltexth - > allTexts [ 477 ] , 450 , 34 , FONT_SMALL , tytulowy , * bg ) ; //Sacrifice artifacts for experience
printAtMiddle ( CGI - > generaltexth - > allTexts [ 478 ] , 302 , 423 , FONT_SMALL , tytulowy , * bg ) ; //%s's Creatures
sacrificeAll = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 571 ] , boost : : bind ( & CAltarWindow : : SacrificeAll , this ) , 393 , 520 , " ALTFILL.DEF " ) ;
sacrificeAll - > block ( ! hero - > artifacts . size ( ) & & ! hero - > artifWorn . size ( ) ) ;
sacrificeBackpack = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 570 ] , boost : : bind ( & CAltarWindow : : SacrificeBackpack , this ) , 147 , 520 , " ALTEMBK.DEF " ) ;
sacrificeBackpack - > block ( ! hero - > artifacts . size ( ) ) ;
BLOCK_CAPTURING ;
slider = NULL ;
max = NULL ;
arts = new CArtifactsOfHero ( Point ( - 267 , - 10 ) ) ;
arts - > commonInfo = new CArtifactsOfHero : : SCommonPart ;
arts - > commonInfo - > participants . insert ( arts ) ;
arts - > setHero ( Hero ) ;
arts - > recActions = 255 ;
addChild ( arts ) ;
initItems ( false ) ;
}
printAtMiddleWB ( CGI - > generaltexth - > allTexts [ 475 ] , 72 , 437 , FONT_SMALL , 17 , tytulowy , * bg ) ; //Experience needed to reach next level
printAtMiddleWB ( CGI - > generaltexth - > allTexts [ 476 ] , 72 , 505 , FONT_SMALL , 17 , tytulowy , * bg ) ; //Total experience on the Altar
new CGStatusBar ( 302 , 576 ) ;
ok = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 568 ] , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 516 , 520 , " IOK6432.DEF " , SDLK_RETURN ) ;
ok - > assignedKeys . insert ( SDLK_ESCAPE ) ;
deal = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 585 ] , boost : : bind ( & CAltarWindow : : makeDeal , this ) , 269 , 520 , " ALTSACR.DEF " ) ;
if ( /*Hero->getAlignment() != EVIL && */ Mode = = CREATURE_EXP )
new AdventureMapButton ( CGI - > generaltexth - > zelp [ 580 ] , boost : : bind ( & CTradeWindow : : setMode , this , ARTIFACT_EXP ) , 516 , 421 , " ALTART.DEF " ) ;
if ( /*Hero->getAlignment() != GOOD && */ Mode = = ARTIFACT_EXP )
new AdventureMapButton ( CGI - > generaltexth - > zelp [ 572 ] , boost : : bind ( & CTradeWindow : : setMode , this , CREATURE_EXP ) , 516 , 421 , " ALTSACC.DEF " ) ;
expPerUnit . resize ( ARMY_SIZE , 0 ) ;
getExpValues ( ) ;
expToLevel = new CLabel ( 73 , 475 , FONT_SMALL , CENTER ) ;
expOnAltar = new CLabel ( 73 , 543 , FONT_SMALL , CENTER ) ;
setExpToLevel ( ) ;
calcTotalExp ( ) ;
blockTrade ( ) ;
2010-05-08 01:10:32 +03:00
}
2010-07-20 09:05:45 +03:00
CAltarWindow : : ~ CAltarWindow ( )
2010-05-08 01:10:32 +03:00
{
2010-07-20 09:05:45 +03:00
2010-05-08 01:10:32 +03:00
}
2010-07-20 09:05:45 +03:00
void CAltarWindow : : getBaseForPositions ( EType type , int & dx , int & dy , int & x , int & y , int & h , int & w , bool Right , int & leftToRightOffset ) const
2010-05-26 12:47:53 +03:00
{
2010-07-20 09:05:45 +03:00
leftToRightOffset = 289 ;
x = 45 ;
y = 110 ;
w = 58 ;
h = 64 ;
dx = 83 ;
dy = 98 ;
2010-05-26 12:47:53 +03:00
}
2010-07-20 09:05:45 +03:00
void CAltarWindow : : sliderMoved ( int to )
2010-05-26 12:47:53 +03:00
{
2010-07-20 09:05:45 +03:00
sacrificedUnits [ hLeft - > serial ] = to ;
updateRight ( hRight ) ;
deal - > block ( ! to ) ;
calcTotalExp ( ) ;
redraw ( ) ;
}
void CAltarWindow : : makeDeal ( )
{
blockTrade ( ) ;
slider - > value = 0 ;
std : : vector < int > toSacrifice = sacrificedUnits ;
for ( int i = 0 ; i < toSacrifice . size ( ) ; i + + )
{
if ( toSacrifice [ i ] )
LOCPLINT - > cb - > trade ( market - > o , mode , i , 0 , toSacrifice [ i ] , hero ) ;
}
BOOST_FOREACH ( int & val , sacrificedUnits )
val = 0 ;
BOOST_FOREACH ( CTradeableItem * t , items [ 0 ] )
{
t - > type = CREATURE_PLACEHOLDER ;
t - > subtitle = " " ;
}
calcTotalExp ( ) ;
}
void CAltarWindow : : SacrificeAll ( )
{
BOOST_FOREACH ( CTradeableItem * t , items [ 1 ] )
sacrificedUnits [ t - > serial ] = hero - > getAmount ( t - > serial ) ;
sacrificedUnits [ items [ 1 ] . front ( ) - > serial ] - - ;
BOOST_FOREACH ( CTradeableItem * t , items [ 0 ] )
updateRight ( t ) ;
redraw ( ) ;
}
void CAltarWindow : : selectionChanged ( bool side )
{
if ( mode ! = CREATURE_EXP )
2010-05-26 12:47:53 +03:00
return ;
2010-07-20 09:05:45 +03:00
CTradeableItem * & selected = side ? hLeft : hRight ;
CTradeableItem * & theOther = side ? hRight : hLeft ;
2010-05-26 12:47:53 +03:00
2010-07-20 09:05:45 +03:00
theOther = * std : : find_if ( items [ ! side ] . begin ( ) , items [ ! side ] . end ( ) , boost : : bind ( & CTradeableItem : : serial , _1 ) = = selected - > serial ) ;
slider - > setAmount ( hero - > getAmount ( hLeft - > serial ) ) ;
slider - > block ( ! slider - > amount ) ;
slider - > value = sacrificedUnits [ hLeft - > serial ] ;
max - > block ( ! slider - > amount ) ;
readyToTrade = true ;
redraw ( ) ;
}
void CAltarWindow : : mimicCres ( )
{
std : : vector < Rect > positions ;
getPositionsFor ( positions , false , CREATURE ) ;
BOOST_FOREACH ( CTradeableItem * t , items [ 1 ] )
2010-05-26 12:47:53 +03:00
{
2010-07-20 09:05:45 +03:00
CTradeableItem * hlp = new CTradeableItem ( CREATURE_PLACEHOLDER , t - > id , false , t - > serial ) ;
hlp - > pos = positions [ t - > serial ] + hlp - > pos ;
items [ 0 ] . push_back ( hlp ) ;
2010-05-26 12:47:53 +03:00
}
}
2010-07-20 09:05:45 +03:00
Point CAltarWindow : : selectionOffset ( bool Left ) const
2010-06-27 19:03:01 +03:00
{
2010-07-20 09:05:45 +03:00
if ( Left )
return Point ( 150 , 421 ) ;
else
return Point ( 396 , 421 ) ;
}
std : : string CAltarWindow : : selectionSubtitle ( bool Left ) const
{
if ( Left & & slider & & hLeft )
return boost : : lexical_cast < std : : string > ( slider - > value ) ;
else if ( ! Left & & hRight )
return hRight - > subtitle ;
else
return " " ;
}
void CAltarWindow : : artifactsChanged ( bool left )
{
}
void CAltarWindow : : garrisonChanged ( )
{
if ( mode ! = CREATURE_EXP )
2010-06-27 19:03:01 +03:00
return ;
2010-07-20 09:05:45 +03:00
std : : set < CTradeableItem * > empty ;
getEmptySlots ( empty ) ;
2010-06-27 19:03:01 +03:00
2010-07-20 09:05:45 +03:00
BOOST_FOREACH ( CTradeableItem * t , empty )
2010-06-27 19:03:01 +03:00
{
2010-07-20 09:05:45 +03:00
removeItem ( * std : : find_if ( items [ 0 ] . begin ( ) , items [ 0 ] . end ( ) , boost : : bind ( & CTradeableItem : : serial , _1 ) = = t - > serial ) ) ;
removeItem ( t ) ;
2010-06-27 19:03:01 +03:00
}
2010-07-20 09:05:45 +03:00
initSubs ( true ) ;
getExpValues ( ) ;
}
void CAltarWindow : : getExpValues ( )
{
int dump ;
BOOST_FOREACH ( CTradeableItem * t , items [ 1 ] )
if ( t - > id > = 0 )
market - > getOffer ( t - > id , 0 , dump , expPerUnit [ t - > serial ] , CREATURE_EXP ) ;
}
void CAltarWindow : : calcTotalExp ( )
{
int val = 0 ;
for ( int i = 0 ; i < sacrificedUnits . size ( ) ; i + + )
{
val + = expPerUnit [ i ] * sacrificedUnits [ i ] ;
}
expOnAltar - > setTxt ( boost : : lexical_cast < std : : string > ( val ) ) ;
}
void CAltarWindow : : setExpToLevel ( )
{
expToLevel - > setTxt ( boost : : lexical_cast < std : : string > ( CGI - > heroh - > reqExp ( hero - > level + 1 ) - hero - > exp ) ) ;
}
void CAltarWindow : : blockTrade ( )
{
hLeft = hRight = NULL ;
readyToTrade = false ;
if ( slider )
{
slider - > block ( true ) ;
max - > block ( true ) ;
}
deal - > block ( true ) ;
}
void CAltarWindow : : updateRight ( CTradeableItem * toUpdate )
{
int val = sacrificedUnits [ toUpdate - > serial ] ;
toUpdate - > type = val ? CREATURE : CREATURE_PLACEHOLDER ;
toUpdate - > subtitle = val ? boost : : str ( boost : : format ( CGI - > generaltexth - > allTexts [ 122 ] ) % boost : : lexical_cast < std : : string > ( val * expPerUnit [ toUpdate - > serial ] ) ) : " " ; //%s exp
}
void CAltarWindow : : SacrificeBackpack ( )
{
2010-06-27 19:03:01 +03:00
}
2009-05-19 21:23:04 +03:00
CSystemOptionsWindow : : CSystemOptionsWindow ( const SDL_Rect & pos , CPlayerInterface * owner )
{
this - > pos = pos ;
2010-02-02 18:24:53 +02:00
SDL_Surface * hhlp = BitmapHandler : : loadBitmap ( " SysOpbck.bmp " , true ) ;
graphics - > blueToPlayersAdv ( hhlp , LOCPLINT - > playerID ) ;
background = SDL_ConvertSurface ( hhlp , screen - > format , 0 ) ;
SDL_SetColorKey ( background , SDL_SRCCOLORKEY , SDL_MapRGB ( background - > format , 0 , 255 , 255 ) ) ;
SDL_FreeSurface ( hhlp ) ;
2009-05-19 21:23:04 +03:00
//printing texts
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 568 ] , 242 , 32 , FONT_BIG , tytulowy , background ) ; //window title
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 569 ] , 122 , 64 , FONT_MEDIUM , tytulowy , background ) ; //hero speed
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 570 ] , 122 , 130 , FONT_MEDIUM , tytulowy , background ) ; //enemy speed
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 571 ] , 122 , 196 , FONT_MEDIUM , tytulowy , background ) ; //map scroll speed
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 20 ] , 122 , 262 , FONT_MEDIUM , tytulowy , background ) ; //video quality
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 394 ] , 122 , 347 , FONT_MEDIUM , tytulowy , background ) ; //music volume
CSDL_Ext : : printAtMiddle ( CGI - > generaltexth - > allTexts [ 395 ] , 122 , 412 , FONT_MEDIUM , tytulowy , background ) ; //effects volume
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 572 ] , 282 , 57 , FONT_MEDIUM , zwykly , background ) ; //show move path
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 573 ] , 282 , 89 , FONT_MEDIUM , zwykly , background ) ; //show hero reminder
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 574 ] , 282 , 121 , FONT_MEDIUM , zwykly , background ) ; //quick combat
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 575 ] , 282 , 153 , FONT_MEDIUM , zwykly , background ) ; //video subtitles
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 576 ] , 282 , 185 , FONT_MEDIUM , zwykly , background ) ; //town building outlines
CSDL_Ext : : printAt ( CGI - > generaltexth - > allTexts [ 577 ] , 282 , 217 , FONT_MEDIUM , zwykly , background ) ; //spell book animation
2009-05-19 21:23:04 +03:00
//setting up buttons
2009-12-11 06:52:51 +02:00
// load = new AdventureMapButton (CGI->generaltexth->zelp[321].first, CGI->generaltexth->zelp[321].second, boost::bind(&CSystemOptionsWindow::loadf, this), pos.x+246, pos.y+298, "SOLOAD.DEF", SDLK_l);
// std::swap(save->imgs[0][0], load->imgs[0][1]);
save = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 322 ] . first , CGI - > generaltexth - > zelp [ 322 ] . second , boost : : bind ( & CSystemOptionsWindow : : bsavef , this ) , pos . x + 357 , pos . y + 298 , " SOSAVE.DEF " , SDLK_s ) ;
2009-05-19 21:23:04 +03:00
std : : swap ( save - > imgs [ 0 ] [ 0 ] , save - > imgs [ 0 ] [ 1 ] ) ;
2009-12-11 06:52:51 +02:00
// restart = new AdventureMapButton (CGI->generaltexth->zelp[323].first, CGI->generaltexth->zelp[323].second, boost::bind(&CSystemOptionsWindow::bmainmenuf, this), pos.x+346, pos.y+357, "SORSTRT", SDLK_r);
// std::swap(save->imgs[0][0], restart->imgs[0][1]);
mainMenu = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 320 ] . first , CGI - > generaltexth - > zelp [ 320 ] . second , boost : : bind ( & CSystemOptionsWindow : : bmainmenuf , this ) , pos . x + 357 , pos . y + 357 , " SOMAIN.DEF " , SDLK_m ) ;
std : : swap ( mainMenu - > imgs [ 0 ] [ 0 ] , mainMenu - > imgs [ 0 ] [ 1 ] ) ;
quitGame = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 324 ] . first , CGI - > generaltexth - > zelp [ 324 ] . second , boost : : bind ( & CSystemOptionsWindow : : bquitf , this ) , pos . x + 246 , pos . y + 415 , " soquit.def " , SDLK_q ) ;
2009-05-19 21:23:04 +03:00
std : : swap ( quitGame - > imgs [ 0 ] [ 0 ] , quitGame - > imgs [ 0 ] [ 1 ] ) ;
2009-12-11 06:52:51 +02:00
backToMap = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 325 ] . first , CGI - > generaltexth - > zelp [ 325 ] . second , boost : : bind ( & CSystemOptionsWindow : : breturnf , this ) , pos . x + 357 , pos . y + 415 , " soretrn.def " , SDLK_RETURN ) ;
2009-05-19 21:23:04 +03:00
std : : swap ( backToMap - > imgs [ 0 ] [ 0 ] , backToMap - > imgs [ 0 ] [ 1 ] ) ;
2009-12-11 06:52:51 +02:00
backToMap - > assignedKeys . insert ( SDLK_ESCAPE ) ;
2009-05-19 21:23:04 +03:00
heroMoveSpeed = new CHighlightableButtonsGroup ( 0 ) ;
2009-10-23 04:20:16 +03:00
heroMoveSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 349 ] . second ) , CGI - > generaltexth - > zelp [ 349 ] . second , " sysopb1.def " , pos . x + 28 , pos . y + 77 , 1 ) ;
heroMoveSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 350 ] . second ) , CGI - > generaltexth - > zelp [ 350 ] . second , " sysopb2.def " , pos . x + 76 , pos . y + 77 , 2 ) ;
heroMoveSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 351 ] . second ) , CGI - > generaltexth - > zelp [ 351 ] . second , " sysopb3.def " , pos . x + 124 , pos . y + 77 , 4 ) ;
heroMoveSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 352 ] . second ) , CGI - > generaltexth - > zelp [ 352 ] . second , " sysopb4.def " , pos . x + 172 , pos . y + 77 , 8 ) ;
2009-07-18 06:13:13 +03:00
heroMoveSpeed - > select ( owner - > sysOpts . heroMoveSpeed , 1 ) ;
2009-07-26 14:42:00 +03:00
heroMoveSpeed - > onChange = boost : : bind ( & SystemOptions : : setHeroMoveSpeed , & owner - > sysOpts , _1 ) ;
2009-05-19 21:23:04 +03:00
mapScrollSpeed = new CHighlightableButtonsGroup ( 0 ) ;
2009-10-23 04:20:16 +03:00
mapScrollSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 357 ] . second ) , CGI - > generaltexth - > zelp [ 357 ] . second , " sysopb9.def " , pos . x + 28 , pos . y + 210 , 1 ) ;
mapScrollSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 358 ] . second ) , CGI - > generaltexth - > zelp [ 358 ] . second , " sysob10.def " , pos . x + 92 , pos . y + 210 , 2 ) ;
mapScrollSpeed - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 359 ] . second ) , CGI - > generaltexth - > zelp [ 359 ] . second , " sysob11.def " , pos . x + 156 , pos . y + 210 , 4 ) ;
2009-07-18 06:13:13 +03:00
mapScrollSpeed - > select ( owner - > sysOpts . mapScrollingSpeed , 1 ) ;
2009-07-26 14:42:00 +03:00
mapScrollSpeed - > onChange = boost : : bind ( & SystemOptions : : setMapScrollingSpeed , & owner - > sysOpts , _1 ) ;
2009-05-19 21:23:04 +03:00
musicVolume = new CHighlightableButtonsGroup ( 0 , true ) ;
for ( int i = 0 ; i < 10 ; + + i )
{
2009-10-23 04:20:16 +03:00
musicVolume - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 326 + i ] . second ) , CGI - > generaltexth - > zelp [ 326 + i ] . second , " syslb.def " , pos . x + 29 + 19 * i , pos . y + 359 , i * 11 ) ;
2009-05-19 21:23:04 +03:00
}
2009-05-22 07:14:59 +03:00
musicVolume - > select ( CGI - > musich - > getVolume ( ) , 1 ) ;
2009-07-26 14:42:00 +03:00
musicVolume - > onChange = boost : : bind ( & SystemOptions : : setMusicVolume , & owner - > sysOpts , _1 ) ;
2009-05-19 21:23:04 +03:00
effectsVolume = new CHighlightableButtonsGroup ( 0 , true ) ;
for ( int i = 0 ; i < 10 ; + + i )
{
2009-10-23 04:20:16 +03:00
effectsVolume - > addButton ( boost : : assign : : map_list_of ( 0 , CGI - > generaltexth - > zelp [ 336 + i ] . second ) , CGI - > generaltexth - > zelp [ 336 + i ] . second , " syslb.def " , pos . x + 29 + 19 * i , pos . y + 425 , i * 11 ) ;
2009-05-19 21:23:04 +03:00
}
2009-05-22 07:14:59 +03:00
effectsVolume - > select ( CGI - > soundh - > getVolume ( ) , 1 ) ;
2009-07-26 14:42:00 +03:00
effectsVolume - > onChange = boost : : bind ( & SystemOptions : : setSoundVolume , & owner - > sysOpts , _1 ) ;
2009-05-19 21:23:04 +03:00
}
CSystemOptionsWindow : : ~ CSystemOptionsWindow ( )
{
SDL_FreeSurface ( background ) ;
delete save ;
delete quitGame ;
delete backToMap ;
2009-11-01 03:15:16 +02:00
delete mainMenu ;
2009-05-19 21:23:04 +03:00
delete heroMoveSpeed ;
delete mapScrollSpeed ;
delete musicVolume ;
delete effectsVolume ;
}
2009-11-01 03:15:16 +02:00
void CSystemOptionsWindow : : pushSDLEvent ( int type , int usercode )
2009-10-26 07:39:30 +02:00
{
2009-11-01 03:15:16 +02:00
GH . popIntTotally ( this ) ;
2009-10-26 07:39:30 +02:00
SDL_Event event ;
2009-11-01 03:15:16 +02:00
event . type = type ;
event . user . code = usercode ; // not necessarily used
2009-10-26 07:39:30 +02:00
SDL_PushEvent ( & event ) ;
}
2009-05-19 21:23:04 +03:00
void CSystemOptionsWindow : : bquitf ( )
{
2009-11-01 03:15:16 +02:00
LOCPLINT - > showYesNoDialog ( CGI - > generaltexth - > allTexts [ 578 ] , std : : vector < SComponent * > ( ) , boost : : bind ( & CSystemOptionsWindow : : pushSDLEvent , this , SDL_QUIT , 0 ) , 0 , false ) ;
2009-05-19 21:23:04 +03:00
}
void CSystemOptionsWindow : : breturnf ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
2009-11-01 03:15:16 +02:00
void CSystemOptionsWindow : : bmainmenuf ( )
{
LOCPLINT - > showYesNoDialog ( CGI - > generaltexth - > allTexts [ 578 ] , std : : vector < SComponent * > ( ) , boost : : bind ( & CSystemOptionsWindow : : pushSDLEvent , this , SDL_USEREVENT , 2 ) , 0 , false ) ;
}
2009-05-19 21:23:04 +03:00
void CSystemOptionsWindow : : bsavef ( )
{
2009-09-07 05:29:44 +03:00
GH . popIntTotally ( this ) ;
2010-05-27 00:59:58 +03:00
GH . pushInt ( new CSavingScreen ( CPlayerInterface : : howManyPeople > 1 ) ) ;
2009-09-07 05:29:44 +03:00
/*using namespace boost::posix_time;
2009-05-19 21:23:04 +03:00
std : : ostringstream fnameStream ;
fnameStream < < second_clock : : local_time ( ) ;
std : : string fname = fnameStream . str ( ) ;
boost : : algorithm : : replace_all ( fname , " : " , " " ) ;
boost : : algorithm : : replace_all ( fname , " " , " - " ) ;
2009-09-07 05:29:44 +03:00
LOCPLINT - > showYesNoDialog ( " Do you want to save current game as " + fname , std : : vector < SComponent * > ( ) , boost : : bind ( & CCallback : : save , LOCPLINT - > cb , fname ) , boost : : bind ( & CSystemOptionsWindow : : activate , this ) , false ) ; */
2009-05-19 21:23:04 +03:00
}
void CSystemOptionsWindow : : activate ( )
{
save - > activate ( ) ;
quitGame - > activate ( ) ;
backToMap - > activate ( ) ;
2009-11-01 03:15:16 +02:00
mainMenu - > activate ( ) ;
2009-05-19 21:23:04 +03:00
heroMoveSpeed - > activate ( ) ;
mapScrollSpeed - > activate ( ) ;
musicVolume - > activate ( ) ;
effectsVolume - > activate ( ) ;
}
void CSystemOptionsWindow : : deactivate ( )
{
save - > deactivate ( ) ;
quitGame - > deactivate ( ) ;
backToMap - > deactivate ( ) ;
2009-11-01 03:15:16 +02:00
mainMenu - > deactivate ( ) ;
2009-05-19 21:23:04 +03:00
heroMoveSpeed - > deactivate ( ) ;
mapScrollSpeed - > deactivate ( ) ;
musicVolume - > deactivate ( ) ;
effectsVolume - > deactivate ( ) ;
}
void CSystemOptionsWindow : : show ( SDL_Surface * to )
{
SDL_BlitSurface ( background , NULL , to , & pos ) ;
save - > show ( to ) ;
quitGame - > show ( to ) ;
backToMap - > show ( to ) ;
2009-11-01 03:15:16 +02:00
mainMenu - > show ( to ) ;
2009-05-19 21:23:04 +03:00
heroMoveSpeed - > show ( to ) ;
mapScrollSpeed - > show ( to ) ;
musicVolume - > show ( to ) ;
effectsVolume - > show ( to ) ;
}
2010-07-09 02:03:27 +03:00
CTavernWindow : : CTavernWindow ( const CGObjectInstance * TavernObj )
: tavernObj ( TavernObj )
2009-05-19 21:23:04 +03:00
{
2010-07-09 02:03:27 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
std : : vector < const CGHeroInstance * > h = LOCPLINT - > cb - > getAvailableHeroes ( TavernObj ) ;
assert ( h . size ( ) = = 2 ) ;
h1 = new HeroPortrait ( selected , 0 , 72 , 299 , h [ 0 ] ) ;
h2 = new HeroPortrait ( selected , 1 , 162 , 299 , h [ 1 ] ) ;
if ( h [ 0 ] )
2009-05-19 21:23:04 +03:00
selected = 0 ;
else
selected = - 1 ;
2009-05-30 19:17:44 +03:00
oldSelected = - 1 ;
2010-02-02 18:24:53 +02:00
2010-07-09 02:03:27 +03:00
bg = new CPicture ( " TPTAVERN.bmp " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
pos = center ( bg - > pos ) ;
2010-02-02 18:24:53 +02:00
2010-07-09 02:03:27 +03:00
printAtMiddle ( CGI - > generaltexth - > jktexts [ 37 ] , 200 , 35 , FONT_BIG , tytulowy , * bg ) ;
printAtMiddle ( " 2500 " , 320 , 328 , FONT_SMALL , zwykly , * bg ) ;
2010-02-02 18:24:53 +02:00
// printAtMiddle(CGI->generaltexth->jktexts[38],146,283,FONT_BIG,tytulowy,bg); //what is this???
2010-07-09 02:03:27 +03:00
printAtMiddleWB ( LOCPLINT - > cb - > getTavernGossip ( tavernObj ) , 200 , 220 , FONT_SMALL , 50 , zwykly , * bg ) ;
bar = new CGStatusBar ( 8 , 478 , " APHLFTRT.bmp " , 380 ) ;
cancel = new AdventureMapButton ( CGI - > generaltexth - > tavernInfo [ 7 ] , " " , boost : : bind ( & CTavernWindow : : close , this ) , 310 , 428 , " ICANCEL.DEF " , SDLK_ESCAPE ) ;
recruit = new AdventureMapButton ( " " , " " , boost : : bind ( & CTavernWindow : : recruitb , this ) , 272 , 355 , " TPTAV01.DEF " , SDLK_RETURN ) ;
thiefGuild = new AdventureMapButton ( CGI - > generaltexth - > tavernInfo [ 5 ] , " " , boost : : bind ( & CTavernWindow : : thievesguildb , this ) , 22 , 428 , " TPTAV02.DEF " , SDLK_t ) ;
2009-05-19 21:23:04 +03:00
if ( LOCPLINT - > cb - > getResourceAmount ( 6 ) < 2500 ) //not enough gold
{
recruit - > hoverTexts [ 0 ] = CGI - > generaltexth - > tavernInfo [ 0 ] ; //Cannot afford a Hero
recruit - > block ( 2 ) ;
}
else if ( LOCPLINT - > cb - > howManyHeroes ( false ) > = 8 )
{
recruit - > hoverTexts [ 0 ] = CGI - > generaltexth - > tavernInfo [ 1 ] ; //Cannot recruit. You already have %d Heroes.
boost : : algorithm : : replace_first ( recruit - > hoverTexts [ 0 ] , " %d " , boost : : lexical_cast < std : : string > ( LOCPLINT - > cb - > howManyHeroes ( ) ) ) ;
recruit - > block ( 2 ) ;
}
else if ( LOCPLINT - > castleInt & & LOCPLINT - > castleInt - > town - > visitingHero )
{
recruit - > hoverTexts [ 0 ] = CGI - > generaltexth - > tavernInfo [ 2 ] ; //Cannot recruit. You already have a Hero in this town.
recruit - > block ( 2 ) ;
}
else
{
2010-07-09 02:03:27 +03:00
if ( ! h [ 0 ] )
2009-05-19 21:23:04 +03:00
recruit - > block ( 1 ) ;
}
2009-06-24 12:17:33 +03:00
# ifdef _WIN32
CGI - > videoh - > open ( " TAVERN.BIK " ) ;
2009-06-28 02:33:59 +03:00
# else
CGI - > videoh - > open ( " tavern.mjpg " , true , false ) ;
2009-06-24 12:17:33 +03:00
# endif
2009-05-19 21:23:04 +03:00
}
void CTavernWindow : : recruitb ( )
{
2010-07-09 02:03:27 +03:00
const CGHeroInstance * toBuy = ( selected ? h2 : h1 ) - > h ;
const CGObjectInstance * obj = tavernObj ;
2009-05-19 21:23:04 +03:00
close ( ) ;
2010-07-09 02:03:27 +03:00
LOCPLINT - > cb - > recruitHero ( obj , toBuy ) ;
2009-05-19 21:23:04 +03:00
}
2010-01-31 20:41:22 +02:00
void CTavernWindow : : thievesguildb ( )
{
2010-07-09 02:03:27 +03:00
GH . pushInt ( new CThievesGuildWindow ( tavernObj ) ) ;
2010-01-31 20:41:22 +02:00
}
2009-05-19 21:23:04 +03:00
CTavernWindow : : ~ CTavernWindow ( )
{
2009-06-24 12:17:33 +03:00
CGI - > videoh - > close ( ) ;
2009-05-19 21:23:04 +03:00
}
void CTavernWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
void CTavernWindow : : show ( SDL_Surface * to )
{
2010-07-09 02:03:27 +03:00
CIntObject : : show ( to ) ;
2009-05-19 21:23:04 +03:00
2010-07-09 02:03:27 +03:00
CGI - > videoh - > update ( pos . x + 70 , pos . y + 56 , to , true , false ) ;
2009-05-19 21:23:04 +03:00
if ( selected > = 0 )
{
2010-07-09 02:03:27 +03:00
HeroPortrait * sel = selected ? h2 : h1 ;
2009-05-30 19:17:44 +03:00
2009-06-10 23:48:55 +03:00
if ( selected ! = oldSelected & & ! recruit - > blocked )
{
// Selected hero just changed. Update RECRUIT button hover text if recruitment is allowed.
2009-05-30 19:17:44 +03:00
oldSelected = selected ;
recruit - > hoverTexts [ 0 ] = CGI - > generaltexth - > tavernInfo [ 3 ] ; //Recruit %s the %s
boost : : algorithm : : replace_first ( recruit - > hoverTexts [ 0 ] , " %s " , sel - > h - > name ) ;
boost : : algorithm : : replace_first ( recruit - > hoverTexts [ 0 ] , " %s " , sel - > h - > type - > heroClass - > name ) ;
}
2009-05-30 18:58:28 +03:00
2010-02-02 18:24:53 +02:00
printAtMiddleWB ( sel - > descr , pos . x + 146 , pos . y + 389 , FONT_SMALL , 40 , zwykly , to ) ;
2009-05-19 21:23:04 +03:00
CSDL_Ext : : drawBorder ( to , sel - > pos . x - 2 , sel - > pos . y - 2 , sel - > pos . w + 4 , sel - > pos . h + 4 , int3 ( 247 , 223 , 123 ) ) ;
}
}
2009-08-11 19:05:33 +03:00
void CTavernWindow : : HeroPortrait : : clickLeft ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
2010-07-09 02:03:27 +03:00
if ( previousState & & ! down & & h )
2009-05-19 21:23:04 +03:00
as ( ) ;
2009-08-11 19:05:33 +03:00
//ClickableL::clickLeft(down);
2009-05-19 21:23:04 +03:00
}
2009-11-28 21:55:40 +02:00
2009-08-11 19:05:33 +03:00
void CTavernWindow : : HeroPortrait : : clickRight ( tribool down , bool previousState )
2009-05-19 21:23:04 +03:00
{
2010-07-09 02:03:27 +03:00
if ( down & & h )
2009-05-19 21:23:04 +03:00
{
2010-02-20 15:24:38 +02:00
adventureInt - > heroWindow - > setHero ( h ) ;
GH . pushInt ( new CRClickPopupInt ( adventureInt - > heroWindow , false ) ) ;
2009-05-19 21:23:04 +03:00
}
}
2009-11-28 21:55:40 +02:00
2009-05-19 21:23:04 +03:00
CTavernWindow : : HeroPortrait : : HeroPortrait ( int & sel , int id , int x , int y , const CGHeroInstance * H )
2010-07-09 02:03:27 +03:00
: as ( sel , id ) , h ( H )
2009-05-19 21:23:04 +03:00
{
2010-07-09 02:03:27 +03:00
used = LCLICK | RCLICK | HOVER ;
2009-05-19 21:23:04 +03:00
h = H ;
pos . x = x ;
pos . y = y ;
pos . w = 58 ;
pos . h = 64 ;
2010-07-09 02:03:27 +03:00
2009-05-19 21:23:04 +03:00
if ( H )
{
hoverName = CGI - > generaltexth - > tavernInfo [ 4 ] ;
boost : : algorithm : : replace_first ( hoverName , " %s " , H - > name ) ;
2009-07-16 02:58:47 +03:00
int artifs = h - > artifWorn . size ( ) + h - > artifacts . size ( ) ;
for ( int i = 13 ; i < = 17 ; i + + ) //war machines and spellbook don't count
if ( vstd : : contains ( h - > artifWorn , i ) )
artifs - - ;
sprintf_s ( descr , sizeof ( descr ) , CGI - > generaltexth - > allTexts [ 215 ] . c_str ( ) ,
h - > name . c_str ( ) , h - > level , h - > type - > heroClass - > name . c_str ( ) , artifs ) ;
descr [ sizeof ( descr ) - 1 ] = ' \0 ' ;
2009-05-19 21:23:04 +03:00
}
2009-05-30 18:58:28 +03:00
2009-05-19 21:23:04 +03:00
}
void CTavernWindow : : HeroPortrait : : show ( SDL_Surface * to )
{
blitAt ( graphics - > portraitLarge [ h - > subID ] , pos , to ) ;
}
void CTavernWindow : : HeroPortrait : : hover ( bool on )
{
2009-08-11 19:05:33 +03:00
//Hoverable::hover(on);
2009-05-19 21:23:04 +03:00
if ( on )
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( hoverName ) ;
2009-05-19 21:23:04 +03:00
else
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
}
void CInGameConsole : : activate ( )
{
2009-08-11 19:05:33 +03:00
activateKeys ( ) ;
2009-05-19 21:23:04 +03:00
}
void CInGameConsole : : deactivate ( )
{
2009-08-11 19:05:33 +03:00
deactivateKeys ( ) ;
2009-05-19 21:23:04 +03:00
}
void CInGameConsole : : show ( SDL_Surface * to )
{
int number = 0 ;
std : : vector < std : : list < std : : pair < std : : string , int > > : : iterator > toDel ;
2009-06-09 06:53:29 +03:00
texts_mx . lock ( ) ;
2009-05-19 21:23:04 +03:00
for ( std : : list < std : : pair < std : : string , int > > : : iterator it = texts . begin ( ) ; it ! = texts . end ( ) ; + + it , + + number )
{
SDL_Color green = { 0 , 0xff , 0 , 0 } ;
Point leftBottomCorner ( 0 , screen - > h ) ;
if ( LOCPLINT - > battleInt )
{
leftBottomCorner = LOCPLINT - > battleInt - > pos . bottomLeft ( ) ;
}
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAt ( it - > first , leftBottomCorner . x + 50 , leftBottomCorner . y - texts . size ( ) * 20 - 80 + number * 20 , FONT_MEDIUM , green ) ;
2009-05-19 21:23:04 +03:00
if ( SDL_GetTicks ( ) - it - > second > defaultTimeout )
{
toDel . push_back ( it ) ;
}
}
for ( int it = 0 ; it < toDel . size ( ) ; + + it )
{
texts . erase ( toDel [ it ] ) ;
}
2009-06-09 06:53:29 +03:00
texts_mx . unlock ( ) ;
2009-05-19 21:23:04 +03:00
}
void CInGameConsole : : print ( const std : : string & txt )
{
2009-06-09 06:53:29 +03:00
texts_mx . lock ( ) ;
2009-10-18 17:39:53 +03:00
int lineLen = conf . go ( ) - > ac . outputLineLength ;
2009-06-09 06:53:29 +03:00
2009-10-18 17:39:53 +03:00
if ( txt . size ( ) < lineLen )
2009-05-19 21:23:04 +03:00
{
2009-10-18 17:39:53 +03:00
texts . push_back ( std : : make_pair ( txt , SDL_GetTicks ( ) ) ) ;
if ( texts . size ( ) > maxDisplayedTexts )
{
texts . pop_front ( ) ;
}
}
else
{
2009-12-02 00:14:25 +02:00
assert ( lineLen ) ;
2009-10-18 17:39:53 +03:00
for ( int g = 0 ; g < txt . size ( ) / lineLen + 1 ; + + g )
{
std : : string part = txt . substr ( g * lineLen , lineLen ) ;
if ( part . size ( ) = = 0 )
break ;
texts . push_back ( std : : make_pair ( part , SDL_GetTicks ( ) ) ) ;
if ( texts . size ( ) > maxDisplayedTexts )
{
texts . pop_front ( ) ;
}
}
2009-05-19 21:23:04 +03:00
}
2009-06-09 06:53:29 +03:00
texts_mx . unlock ( ) ;
2009-05-19 21:23:04 +03:00
}
void CInGameConsole : : keyPressed ( const SDL_KeyboardEvent & key )
{
if ( key . type ! = SDL_KEYDOWN ) return ;
if ( ! captureAllKeys & & key . keysym . sym ! = SDLK_TAB ) return ; //because user is not entering any text
switch ( key . keysym . sym )
{
case SDLK_TAB :
2009-08-27 11:04:32 +03:00
case SDLK_ESCAPE :
2009-05-19 21:23:04 +03:00
{
if ( captureAllKeys )
{
captureAllKeys = false ;
endEnteringText ( false ) ;
}
2009-08-27 11:04:32 +03:00
else if ( SDLK_TAB )
2009-05-19 21:23:04 +03:00
{
captureAllKeys = true ;
startEnteringText ( ) ;
}
break ;
}
case SDLK_RETURN : //enter key
{
if ( enteredText . size ( ) > 0 & & captureAllKeys )
{
captureAllKeys = false ;
endEnteringText ( true ) ;
}
break ;
}
case SDLK_BACKSPACE :
{
if ( enteredText . size ( ) > 1 )
{
enteredText . resize ( enteredText . size ( ) - 1 ) ;
enteredText [ enteredText . size ( ) - 1 ] = ' _ ' ;
refreshEnteredText ( ) ;
}
break ;
}
case SDLK_UP : //up arrow
{
2009-08-07 12:45:21 +03:00
if ( previouslyEntered . size ( ) = = 0 )
break ;
2009-05-19 21:23:04 +03:00
if ( prevEntDisp = = - 1 )
{
prevEntDisp = previouslyEntered . size ( ) - 1 ;
enteredText = previouslyEntered [ prevEntDisp ] + " _ " ;
refreshEnteredText ( ) ;
}
else if ( prevEntDisp > 0 )
{
- - prevEntDisp ;
enteredText = previouslyEntered [ prevEntDisp ] + " _ " ;
refreshEnteredText ( ) ;
}
break ;
}
case SDLK_DOWN : //down arrow
{
if ( prevEntDisp ! = - 1 & & prevEntDisp + 1 < previouslyEntered . size ( ) )
{
+ + prevEntDisp ;
enteredText = previouslyEntered [ prevEntDisp ] + " _ " ;
refreshEnteredText ( ) ;
}
else if ( prevEntDisp + 1 = = previouslyEntered . size ( ) ) //useful feature
{
prevEntDisp = - 1 ;
enteredText = " _ " ;
refreshEnteredText ( ) ;
}
break ;
}
default :
{
2009-10-18 17:39:53 +03:00
if ( enteredText . size ( ) > 0 & & enteredText . size ( ) < conf . go ( ) - > ac . inputLineLength )
2009-05-19 21:23:04 +03:00
{
if ( key . keysym . unicode < 0x80 & & key . keysym . unicode > 0 )
{
enteredText [ enteredText . size ( ) - 1 ] = ( char ) key . keysym . unicode ;
enteredText + = " _ " ;
refreshEnteredText ( ) ;
}
}
break ;
}
}
}
void CInGameConsole : : startEnteringText ( )
{
enteredText = " _ " ;
2010-02-20 15:24:38 +02:00
if ( GH . topInt ( ) = = adventureInt )
2009-05-19 21:23:04 +03:00
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( enteredText ) ;
2009-05-19 21:23:04 +03:00
}
else if ( LOCPLINT - > battleInt )
{
LOCPLINT - > battleInt - > console - > ingcAlter = enteredText ;
}
}
void CInGameConsole : : endEnteringText ( bool printEnteredText )
{
prevEntDisp = - 1 ;
if ( printEnteredText )
{
std : : string txt = enteredText . substr ( 0 , enteredText . size ( ) - 1 ) ;
LOCPLINT - > cb - > sendMessage ( txt ) ;
previouslyEntered . push_back ( txt ) ;
print ( txt ) ;
}
enteredText = " " ;
2010-02-20 15:24:38 +02:00
if ( GH . topInt ( ) = = adventureInt )
2009-05-19 21:23:04 +03:00
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > clear ( ) ;
2009-05-19 21:23:04 +03:00
}
else if ( LOCPLINT - > battleInt )
{
LOCPLINT - > battleInt - > console - > ingcAlter = " " ;
}
}
void CInGameConsole : : refreshEnteredText ( )
{
2010-02-20 15:24:38 +02:00
if ( GH . topInt ( ) = = adventureInt )
2009-05-19 21:23:04 +03:00
{
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( enteredText ) ;
2009-05-19 21:23:04 +03:00
}
else if ( LOCPLINT - > battleInt )
{
LOCPLINT - > battleInt - > console - > ingcAlter = enteredText ;
}
}
CInGameConsole : : CInGameConsole ( ) : prevEntDisp ( - 1 ) , defaultTimeout ( 10000 ) , maxDisplayedTexts ( 10 )
{
}
void CGarrisonWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-05-19 21:23:04 +03:00
}
void CGarrisonWindow : : activate ( )
{
quit - > activate ( ) ;
garr - > activate ( ) ;
}
void CGarrisonWindow : : deactivate ( )
{
quit - > deactivate ( ) ;
garr - > deactivate ( ) ;
}
void CGarrisonWindow : : show ( SDL_Surface * to )
{
blitAt ( bg , pos , to ) ;
quit - > show ( to ) ;
garr - > show ( to ) ;
2009-07-18 00:53:28 +03:00
blitAt ( graphics - > flags - > ourImages [ garr - > odown - > getOwner ( ) ] . bitmap , pos . x + 28 , pos . y + 124 , to ) ;
2009-05-19 21:23:04 +03:00
blitAt ( graphics - > portraitLarge [ static_cast < const CGHeroInstance * > ( garr - > odown ) - > portrait ] , pos . x + 29 , pos . y + 222 , to ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( CGI - > generaltexth - > allTexts [ 709 ] , pos . x + 275 , pos . y + 30 , FONT_BIG , tytulowy , to ) ;
2009-05-19 21:23:04 +03:00
}
2009-09-09 20:49:03 +03:00
CGarrisonWindow : : CGarrisonWindow ( const CArmedInstance * up , const CGHeroInstance * down , bool removableUnits )
2009-05-19 21:23:04 +03:00
{
bg = BitmapHandler : : loadBitmap ( " GARRISON.bmp " ) ;
SDL_SetColorKey ( bg , SDL_SRCCOLORKEY , SDL_MapRGB ( bg - > format , 0 , 255 , 255 ) ) ;
graphics - > blueToPlayersAdv ( bg , LOCPLINT - > playerID ) ;
pos . x = screen - > w / 2 - bg - > w / 2 ;
pos . y = screen - > h / 2 - bg - > h / 2 ;
pos . w = screen - > w ;
pos . h = screen - > h ;
2009-09-09 20:49:03 +03:00
garr = new CGarrisonInt ( pos . x + 92 , pos . y + 127 , 4 , Point ( 0 , 96 ) , bg , Point ( 93 , 127 ) , up , down , removableUnits ) ;
2009-09-09 09:04:42 +03:00
garr - > splitButtons . push_back ( new AdventureMapButton ( CGI - > generaltexth - > tcommands [ 3 ] , " " , boost : : bind ( & CGarrisonInt : : splitClick , garr ) , pos . x + 88 , pos . y + 314 , " IDV6432.DEF " ) ) ;
2009-05-19 21:23:04 +03:00
quit = new AdventureMapButton ( CGI - > generaltexth - > tcommands [ 8 ] , " " , boost : : bind ( & CGarrisonWindow : : close , this ) , pos . x + 399 , pos . y + 314 , " IOK6432.DEF " , SDLK_RETURN ) ;
}
CGarrisonWindow : : ~ CGarrisonWindow ( )
{
SDL_FreeSurface ( bg ) ;
delete quit ;
delete garr ;
}
IShowActivable : : IShowActivable ( )
{
type = 0 ;
}
2010-07-22 03:32:45 +03:00
CGarrisonHolder : : CGarrisonHolder ( )
2009-05-19 21:23:04 +03:00
{
type | = WITH_GARRISON ;
}
2010-07-22 03:32:45 +03:00
void CWindowWithGarrison : : updateGarrisons ( )
{
garr - > recreateSlots ( ) ;
}
2009-05-19 21:23:04 +03:00
void CRClickPopupInt : : show ( SDL_Surface * to )
{
inner - > show ( to ) ;
}
CRClickPopupInt : : CRClickPopupInt ( IShowActivable * our , bool deleteInt )
{
2009-10-22 05:41:09 +03:00
CGI - > curh - > hide ( ) ;
2009-05-19 21:23:04 +03:00
inner = our ;
delInner = deleteInt ;
}
CRClickPopupInt : : ~ CRClickPopupInt ( )
{
2009-06-10 23:48:55 +03:00
//workaround for hero window issue - if it's our interface, call dispose to properly reset it's state
//TODO? it might be better to rewrite hero window so it will bee newed/deleted on opening / closing (not effort-worthy now, but on some day...?)
2010-02-20 15:24:38 +02:00
if ( LOCPLINT & & inner = = adventureInt - > heroWindow )
adventureInt - > heroWindow - > dispose ( ) ;
2009-06-10 23:48:55 +03:00
2009-05-19 21:23:04 +03:00
if ( delInner )
delete inner ;
2009-10-22 05:41:09 +03:00
CGI - > curh - > show ( ) ;
2009-05-19 21:23:04 +03:00
}
2009-06-16 14:18:14 +03:00
2010-07-20 09:05:45 +03:00
CArtPlace : : CArtPlace ( const CArtifact * Art )
: marked ( false ) , ourArt ( Art )
2009-11-28 21:55:40 +02:00
{
}
2009-06-18 18:05:00 +03:00
void CArtPlace : : activate ( )
{
if ( ! active )
{
LRClickableAreaWTextComp : : activate ( ) ;
}
}
2009-11-28 21:55:40 +02:00
2009-08-11 19:05:33 +03:00
void CArtPlace : : clickLeft ( tribool down , bool previousState )
2009-06-18 18:05:00 +03:00
{
//LRClickableAreaWTextComp::clickLeft(down);
2009-11-28 21:55:40 +02:00
// If clicked on spellbook, open it only if no artifact is held at the moment.
2009-12-02 01:19:43 +02:00
if ( ourArt & & ! down & & previousState & & ! ourOwner - > commonInfo - > srcAOH )
2009-06-18 18:05:00 +03:00
{
if ( ourArt - > id = = 0 )
{
2010-07-21 13:20:32 +03:00
CSpellWindow * spellWindow = new CSpellWindow ( genRect ( 595 , 620 , ( conf . cc . resx - 620 ) / 2 , ( conf . cc . resy - 595 ) / 2 ) , ourOwner - > curHero , LOCPLINT , LOCPLINT - > battleInt ) ;
2009-08-07 01:36:51 +03:00
GH . pushInt ( spellWindow ) ;
2009-06-18 18:05:00 +03:00
}
}
2010-07-20 21:34:32 +03:00
2009-12-02 01:19:43 +02:00
if ( ! down & & previousState )
2009-06-18 18:05:00 +03:00
{
if ( ourArt & & ourArt - > id = = 0 )
return ; //this is handled separately
2010-07-20 21:34:32 +03:00
2009-12-02 01:19:43 +02:00
if ( ! ourOwner - > commonInfo - > srcAOH ) //nothing has been clicked
2009-06-18 18:05:00 +03:00
{
if ( ourArt ) //to prevent selecting empty slots (bugfix to what GrayFace reported)
{
2009-09-11 08:45:40 +03:00
if ( ourArt - > id = = 3 ) //catapult cannot be highlighted
{
std : : vector < SComponent * > catapult ( 1 , new SComponent ( SComponent : : artifact , 3 , 0 ) ) ;
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 312 ] , catapult ) ; //The Catapult must be equipped.
return ;
}
2009-11-28 21:55:40 +02:00
select ( ) ;
2009-06-18 18:05:00 +03:00
}
}
else //perform artifact substitution
{
2010-02-06 00:28:31 +02:00
if ( slotID > = 19 ) // Backpack destination.
2009-11-10 05:10:14 +02:00
{
2009-11-28 21:55:40 +02:00
const CArtifact * cur = ourOwner - > commonInfo - > srcArtifact ;
2009-09-11 08:45:40 +03:00
switch ( cur - > id )
{
case 3 :
//should not happen, catapult cannot be selected
2009-11-28 21:55:40 +02:00
assert ( cur - > id ! = 3 ) ;
2009-09-11 08:45:40 +03:00
break ;
case 4 : case 5 : case 6 :
{
std : : string text = CGI - > generaltexth - > allTexts [ 153 ] ;
boost : : algorithm : : replace_first ( text , " %s " , cur - > Name ( ) ) ;
LOCPLINT - > showInfoDialog ( text ) ;
}
break ;
default :
2009-11-28 21:55:40 +02:00
ourOwner - > commonInfo - > destAOH = ourOwner ;
ourOwner - > commonInfo - > destSlotID = slotID ;
2009-12-02 01:19:43 +02:00
ourOwner - > commonInfo - > destArtifact = NULL ;
2009-11-28 21:55:40 +02:00
2010-02-06 00:28:31 +02:00
// Correction for backpack position when src lies before dest.
ourOwner - > commonInfo - > destSlotID + =
( ourOwner - > commonInfo - > srcAOH = = ourOwner
& & ourOwner - > commonInfo - > srcSlotID > = 19
& & ourOwner - > commonInfo - > srcSlotID < = slotID ) ;
LOCPLINT - > cb - > swapArtifacts (
ourOwner - > commonInfo - > srcAOH - > curHero ,
ourOwner - > commonInfo - > srcSlotID ,
2009-11-06 04:26:25 +02:00
ourOwner - > curHero ,
2010-02-06 00:28:31 +02:00
ourOwner - > commonInfo - > destSlotID ) ;
2009-11-28 21:55:40 +02:00
2009-09-11 08:45:40 +03:00
break ;
}
2009-06-18 18:05:00 +03:00
}
//check if swap is possible
2009-12-02 01:19:43 +02:00
else if ( this - > fitsHere ( ourOwner - > commonInfo - > srcArtifact ) )
2009-06-18 18:05:00 +03:00
{
2009-11-28 21:55:40 +02:00
ourOwner - > commonInfo - > destAOH = ourOwner ;
ourOwner - > commonInfo - > destSlotID = slotID ;
2009-12-02 01:19:43 +02:00
ourOwner - > commonInfo - > destArtifact = ourArt ;
2009-06-18 18:05:00 +03:00
2010-02-08 23:17:22 +02:00
// Special case when the dest artifact can't be fit into the src slot.
2010-07-20 21:34:32 +03:00
CGI - > arth - > unequipArtifact ( ourOwner - > curHero - > artifWorn , slotID ) ;
2010-02-08 23:17:22 +02:00
const CArtifactsOfHero * srcAOH = ourOwner - > commonInfo - > srcAOH ;
ui16 srcSlotID = ourOwner - > commonInfo - > srcSlotID ;
2010-07-20 21:34:32 +03:00
if ( ourArt & & srcSlotID < 19 & & ! ourArt - > fitsAt ( srcAOH - > curHero - > artifWorn , srcSlotID ) )
{
2010-02-08 23:17:22 +02:00
// Put dest artifact into owner's backpack.
ourOwner - > commonInfo - > srcAOH = ourOwner ;
ourOwner - > commonInfo - > srcSlotID = ourOwner - > curHero - > artifacts . size ( ) + 19 ;
}
2010-02-06 00:28:31 +02:00
LOCPLINT - > cb - > swapArtifacts (
2010-02-08 23:17:22 +02:00
srcAOH - > curHero ,
srcSlotID ,
2010-02-06 00:28:31 +02:00
ourOwner - > curHero ,
slotID ) ;
2009-06-18 18:05:00 +03:00
}
}
}
}
2009-11-28 21:55:40 +02:00
2009-08-11 19:05:33 +03:00
void CArtPlace : : clickRight ( tribool down , bool previousState )
2009-06-18 18:05:00 +03:00
{
2010-07-20 21:34:32 +03:00
if ( down & & ourArt & & ! locked ( ) & & text . size ( ) ) //if there is no description or it's a lock, do nothing ;]
{
if ( slotID < 19 )
{
2010-02-27 03:05:39 +02:00
selectedNo = false ;
// If the artifact can be assembled, display dialog.
if ( ourArt - > constituentOf ! = NULL ) {
BOOST_FOREACH ( ui32 combination , * ourArt - > constituentOf ) {
if ( ourArt - > canBeAssembledTo ( ourOwner - > curHero - > artifWorn , combination ) ) {
LOCPLINT - > showArtifactAssemblyDialog (
ourArt - > id ,
combination ,
true ,
boost : : bind ( & CCallback : : assembleArtifacts , LOCPLINT - > cb , ourOwner - > curHero , slotID , true , combination ) ,
boost : : bind ( & CArtPlace : : userSelectedNo , this ) ) ;
if ( ! selectedNo )
return ;
}
}
}
2010-02-16 16:39:56 +02:00
2010-02-27 03:05:39 +02:00
// Otherwise if the artifact can be diasassembled, display dialog.
2010-07-20 21:34:32 +03:00
if ( ourArt - > constituents ! = NULL )
{
2010-02-27 03:05:39 +02:00
LOCPLINT - > showArtifactAssemblyDialog (
ourArt - > id ,
0 ,
false ,
boost : : bind ( & CCallback : : assembleArtifacts , LOCPLINT - > cb , ourOwner - > curHero , slotID , false , 0 ) ,
boost : : bind ( & CArtPlace : : userSelectedNo , this ) ) ;
if ( ! selectedNo )
2010-02-16 16:39:56 +02:00
return ;
}
}
2010-02-27 03:05:39 +02:00
// Lastly just show the artifact description.
LRClickableAreaWTextComp : : clickRight ( down , previousState ) ;
2010-02-16 16:39:56 +02:00
}
2009-06-18 18:05:00 +03:00
}
2009-11-28 21:55:40 +02:00
2010-02-27 03:05:39 +02:00
/**
* Helper function to catch when a user selects no in an artifact assembly dialog .
*/
void CArtPlace : : userSelectedNo ( )
{
selectedNo = true ;
}
2009-11-28 21:55:40 +02:00
/**
* Selects artifact slot so that the containing artifact looks like it ' s picked up .
*/
void CArtPlace : : select ( )
{
2010-02-08 23:17:22 +02:00
if ( locked ( ) )
return ;
2010-02-28 04:44:37 +02:00
int backpackCorrection = - ( slotID - 19 < ourOwner - > backpackPos ) ;
2009-11-28 21:55:40 +02:00
CGI - > curh - > dragAndDropCursor ( graphics - > artDefs - > ourImages [ ourArt - > id ] . bitmap ) ;
ourOwner - > commonInfo - > srcArtifact = ourArt ;
ourOwner - > commonInfo - > srcSlotID = slotID ;
ourOwner - > commonInfo - > srcAOH = ourOwner ;
2010-02-06 00:28:31 +02:00
// Temporarily remove artifact from hero.
2010-07-20 21:34:32 +03:00
if ( slotID < 19 )
CGI - > arth - > unequipArtifact ( ourOwner - > curHero - > artifWorn , slotID ) ;
else
ourOwner - > curHero - > artifacts . erase ( ourOwner - > curHero - > artifacts . begin ( ) + ( slotID - 19 ) ) ;
ourOwner - > markPossibleSlots ( ourArt ) ;
2010-05-16 15:34:48 +03:00
//ourOwner->curHero->recreateArtBonuses();
2010-02-06 00:28:31 +02:00
// Update the hero bonuses.
2010-07-21 22:50:15 +03:00
ourOwner - > updateParentWindow ( ) ;
2010-02-06 00:28:31 +02:00
2010-02-28 04:44:37 +02:00
if ( slotID > = 19 )
ourOwner - > scrollBackpack ( backpackCorrection ) ;
else
2009-11-28 21:55:40 +02:00
ourOwner - > eraseSlotData ( this , slotID ) ;
}
/**
2010-02-28 04:44:37 +02:00
* Deselects the artifact slot . FIXME : Not used . Maybe it should ?
2009-11-28 21:55:40 +02:00
*/
void CArtPlace : : deselect ( )
{
CGI - > curh - > dragAndDropCursor ( NULL ) ;
ourOwner - > unmarkSlots ( ) ;
}
2009-06-18 18:05:00 +03:00
void CArtPlace : : deactivate ( )
{
if ( active )
{
LRClickableAreaWTextComp : : deactivate ( ) ;
}
}
2009-11-28 21:55:40 +02:00
2009-06-18 18:05:00 +03:00
void CArtPlace : : show ( SDL_Surface * to )
{
2009-12-02 01:19:43 +02:00
if ( ourArt )
2009-06-18 18:05:00 +03:00
blitAt ( graphics - > artDefs - > ourImages [ ourArt - > id ] . bitmap , pos . x , pos . y , to ) ;
2009-12-02 01:19:43 +02:00
2009-11-28 21:55:40 +02:00
if ( marked & & active )
2009-06-18 18:05:00 +03:00
{
2009-11-28 21:55:40 +02:00
// Draw vertical bars.
2010-07-20 09:05:45 +03:00
for ( int i = 0 ; i < pos . h ; + + i )
{
2009-11-28 21:55:40 +02:00
CSDL_Ext : : SDL_PutPixelWithoutRefresh ( to , pos . x , pos . y + i , 240 , 220 , 120 ) ;
CSDL_Ext : : SDL_PutPixelWithoutRefresh ( to , pos . x + pos . w - 1 , pos . y + i , 240 , 220 , 120 ) ;
}
// Draw horizontal bars.
2010-07-20 09:05:45 +03:00
for ( int i = 0 ; i < pos . w ; + + i )
{
2009-11-28 21:55:40 +02:00
CSDL_Ext : : SDL_PutPixelWithoutRefresh ( to , pos . x + i , pos . y , 240 , 220 , 120 ) ;
CSDL_Ext : : SDL_PutPixelWithoutRefresh ( to , pos . x + i , pos . y + pos . h - 1 , 240 , 220 , 120 ) ;
2009-06-18 18:05:00 +03:00
}
}
}
2009-11-28 21:55:40 +02:00
2009-06-18 18:05:00 +03:00
bool CArtPlace : : fitsHere ( const CArtifact * art )
{
2009-11-28 21:55:40 +02:00
// You can place 'no artifact' anywhere.
2009-06-18 18:05:00 +03:00
if ( ! art )
2009-11-28 21:55:40 +02:00
return true ;
2009-12-30 17:33:28 +02:00
// Anything can but War Machines can be placed in backpack.
2010-02-08 23:17:22 +02:00
if ( slotID > = 19 )
2009-12-30 17:33:28 +02:00
return ! CGI - > arth - > isBigArtifact ( art - > id ) ;
2009-09-11 08:45:40 +03:00
2010-02-08 23:17:22 +02:00
return art - > fitsAt ( ourOwner - > curHero - > artifWorn , slotID ) ;
2009-06-18 18:05:00 +03:00
}
2009-11-28 21:55:40 +02:00
2009-06-18 18:05:00 +03:00
CArtPlace : : ~ CArtPlace ( )
{
deactivate ( ) ;
}
2010-01-28 18:15:46 +02:00
void HoverableArea : : hover ( bool on )
{
if ( on )
2010-02-15 08:54:57 +02:00
GH . statusbar - > print ( hoverText ) ;
else if ( GH . statusbar - > getCurrent ( ) = = hoverText )
GH . statusbar - > clear ( ) ;
2010-01-28 18:15:46 +02:00
}
2010-07-13 08:25:40 +03:00
HoverableArea : : HoverableArea ( )
2010-01-28 18:15:46 +02:00
{
2010-07-13 08:25:40 +03:00
used | = HOVER ;
2010-01-28 18:15:46 +02:00
}
2010-07-13 08:25:40 +03:00
HoverableArea : : ~ HoverableArea ( )
2010-01-28 18:15:46 +02:00
{
2009-06-18 18:05:00 +03:00
}
2009-08-11 19:05:33 +03:00
void LRClickableAreaWText : : clickLeft ( tribool down , bool previousState )
2009-06-18 18:05:00 +03:00
{
2009-08-11 19:05:33 +03:00
if ( ! down & & previousState )
2009-06-18 18:05:00 +03:00
{
2010-07-13 08:25:40 +03:00
LOCPLINT - > showInfoDialog ( text ) ;
2009-06-18 18:05:00 +03:00
}
}
2009-08-11 19:05:33 +03:00
void LRClickableAreaWText : : clickRight ( tribool down , bool previousState )
2009-06-18 18:05:00 +03:00
{
2010-03-21 00:17:19 +02:00
adventureInt - > handleRightClick ( text , down ) ;
2009-06-18 18:05:00 +03:00
}
2010-07-13 08:25:40 +03:00
LRClickableAreaWText : : LRClickableAreaWText ( )
2009-06-18 18:05:00 +03:00
{
2010-07-13 08:25:40 +03:00
used = LCLICK | RCLICK | HOVER ;
2009-06-18 18:05:00 +03:00
}
2010-07-13 08:25:40 +03:00
LRClickableAreaWText : : ~ LRClickableAreaWText ( )
2009-06-18 18:05:00 +03:00
{
}
2009-08-11 19:05:33 +03:00
void LRClickableAreaWTextComp : : clickLeft ( tribool down , bool previousState )
2009-06-18 18:05:00 +03:00
{
2009-08-11 19:05:33 +03:00
if ( ( ! down ) & & previousState )
2009-06-18 18:05:00 +03:00
{
2010-07-13 08:25:40 +03:00
std : : vector < SComponent * > comp ( 1 , new SComponent ( SComponent : : Etype ( baseType ) , type , bonusValue ) ) ;
LOCPLINT - > showInfoDialog ( text , comp ) ;
2009-06-18 18:05:00 +03:00
}
}
2010-07-22 03:32:45 +03:00
CHeroArea : : CHeroArea ( int x , int y , const CGHeroInstance * _hero ) : hero ( _hero )
{
used = LCLICK | RCLICK | HOVER ;
pos . x + = x ; pos . w = 58 ;
pos . y + = y ; pos . h = 64 ;
}
void CHeroArea : : clickLeft ( tribool down , bool previousState )
2010-02-04 17:50:59 +02:00
{
if ( ( ! down ) & & previousState & & hero )
LOCPLINT - > openHeroWindow ( hero ) ;
}
2010-07-22 03:32:45 +03:00
void CHeroArea : : clickRight ( tribool down , bool previousState )
2010-02-04 17:50:59 +02:00
{
if ( ( ! down ) & & previousState & & hero )
LOCPLINT - > openHeroWindow ( hero ) ;
}
2010-07-22 03:32:45 +03:00
void CHeroArea : : hover ( bool on )
{
if ( on & & hero )
GH . statusbar - > print ( hero - > hoverName ) ;
else
GH . statusbar - > clear ( ) ;
}
void CHeroArea : : showAll ( SDL_Surface * to )
{
blitAtLoc ( graphics - > portraitLarge [ hero - > portrait ] , 0 , 0 , to ) ;
}
2010-02-04 17:50:59 +02:00
void LRClickableAreaOpenTown : : clickLeft ( tribool down , bool previousState )
{
if ( ( ! down ) & & previousState & & town )
2010-02-28 12:01:36 +02:00
{
2010-02-04 17:50:59 +02:00
LOCPLINT - > openTownWindow ( town ) ;
2010-02-28 12:01:36 +02:00
LOCPLINT - > castleInt - > winMode = type ;
if ( type = = 2 )
LOCPLINT - > castleInt - > buildingClicked ( 10 ) ;
else if ( type = = 3 & & town - > fortLevel ( ) )
LOCPLINT - > castleInt - > buildingClicked ( 7 ) ;
}
2010-02-04 17:50:59 +02:00
}
void LRClickableAreaOpenTown : : clickRight ( tribool down , bool previousState )
{
if ( ( ! down ) & & previousState & & town )
2010-02-28 12:01:36 +02:00
LOCPLINT - > openTownWindow ( town ) ; //TODO: popup?
2010-02-04 17:50:59 +02:00
}
2010-07-20 21:34:32 +03:00
void CArtifactsOfHero : : SCommonPart : : reset ( )
2009-06-18 18:05:00 +03:00
{
2010-07-20 21:34:32 +03:00
destAOH = srcAOH = NULL ;
destArtifact = srcArtifact = NULL ;
destSlotID = srcSlotID = - 1 ;
2009-06-18 18:05:00 +03:00
}
void CArtifactsOfHero : : setHero ( const CGHeroInstance * hero )
{
2009-11-28 21:55:40 +02:00
// An update is made, rather than initialization.
2010-07-20 21:34:32 +03:00
if ( curHero & & curHero - > id = = hero - > id )
2010-07-20 09:05:45 +03:00
{
2010-07-20 21:34:32 +03:00
if ( curHero ! = hero )
{
delete curHero ;
2010-07-21 22:50:15 +03:00
hero = curHero = new CGHeroInstance ( * hero ) ;
2010-07-20 21:34:32 +03:00
}
2010-03-03 01:40:13 +02:00
2009-12-02 01:19:43 +02:00
// Compensate backpack pos if an artifact was insertad before it.
2009-11-28 21:55:40 +02:00
if ( commonInfo - > destSlotID > = 19 & & commonInfo - > destAOH = = this
& & commonInfo - > destSlotID - 19 < backpackPos )
{
backpackPos + + ;
}
2010-07-20 21:34:32 +03:00
if ( updateState & & commonInfo - > srcAOH = = this )
{
2010-02-06 00:28:31 +02:00
// A swap was made, make the replaced artifact the current selected.
2010-07-20 21:34:32 +03:00
if ( commonInfo - > destSlotID < 19 & & commonInfo - > destArtifact )
{
2010-02-06 00:28:31 +02:00
// Temporarily remove artifact from hero.
2010-07-20 21:34:32 +03:00
if ( commonInfo - > srcSlotID < 19 )
CGI - > arth - > unequipArtifact ( curHero - > artifWorn , commonInfo - > srcSlotID ) ;
else
curHero - > artifacts . erase ( curHero - > artifacts . begin ( ) + ( commonInfo - > srcSlotID - 19 ) ) ;
2010-07-21 22:50:15 +03:00
updateParentWindow ( ) ; //TODO: evil! but does the thing
2010-02-06 00:28:31 +02:00
// Source <- Dest
commonInfo - > srcArtifact = commonInfo - > destArtifact ;
// Reset destination parameters.
commonInfo - > destAOH = NULL ;
commonInfo - > destArtifact = NULL ;
commonInfo - > destSlotID = - 1 ;
2010-07-20 21:34:32 +03:00
CGI - > curh - > dragAndDropCursor ( graphics - > artDefs - > ourImages [ commonInfo - > srcArtifact - > id ] . bitmap ) ;
2010-02-06 00:28:31 +02:00
markPossibleSlots ( commonInfo - > srcArtifact ) ;
2010-07-20 09:05:45 +03:00
}
else if ( commonInfo - > destAOH ! = NULL )
{
2010-02-06 00:28:31 +02:00
// Reset all parameters.
2010-07-20 21:34:32 +03:00
commonInfo - > reset ( ) ;
2010-02-06 00:28:31 +02:00
CGI - > curh - > dragAndDropCursor ( NULL ) ;
unmarkSlots ( ) ;
}
2009-12-02 01:19:43 +02:00
}
2010-07-20 09:05:45 +03:00
}
else
{
2010-07-20 21:34:32 +03:00
commonInfo - > reset ( ) ;
2009-12-02 01:19:43 +02:00
}
2009-11-28 21:55:40 +02:00
2010-07-20 21:34:32 +03:00
if ( hero ! = curHero )
{
delete curHero ;
curHero = new CGHeroInstance ( * hero ) ;
}
2009-06-18 18:05:00 +03:00
2009-11-28 21:55:40 +02:00
if ( curHero - > artifacts . size ( ) > 0 )
backpackPos % = curHero - > artifacts . size ( ) ;
else
backpackPos = 0 ;
2009-06-18 18:05:00 +03:00
2009-12-02 01:19:43 +02:00
// Fill the slots for worn artifacts and backpack.
2009-06-18 18:05:00 +03:00
for ( int g = 0 ; g < 19 ; g + + )
2009-11-28 21:55:40 +02:00
setSlotData ( artWorn [ g ] , g ) ;
2009-12-02 01:19:43 +02:00
scrollBackpack ( 0 ) ;
2009-06-18 18:05:00 +03:00
2009-12-02 01:19:43 +02:00
//blocking scrolling if there is not enough artifacts to scroll
leftArtRoll - > block ( curHero - > artifacts . size ( ) < = backpack . size ( ) ) ;
rightArtRoll - > block ( curHero - > artifacts . size ( ) < = backpack . size ( ) ) ;
}
2009-11-28 21:55:40 +02:00
2009-06-18 18:05:00 +03:00
void CArtifactsOfHero : : dispose ( )
{
2010-07-20 21:34:32 +03:00
delNull ( curHero ) ;
2009-06-18 18:05:00 +03:00
}
void CArtifactsOfHero : : scrollBackpack ( int dir )
{
2009-11-28 21:55:40 +02:00
backpackPos + = dir ;
2010-07-20 21:34:32 +03:00
if ( curHero - > artifacts . size ( ) > 0 )
{
2009-12-02 01:19:43 +02:00
if ( backpackPos < 0 ) { // No guarantee of modulus behavior with negative operands.
do {
backpackPos + = curHero - > artifacts . size ( ) ;
} while ( backpackPos < 0 ) ;
} else {
backpackPos % = curHero - > artifacts . size ( ) ;
}
2009-11-28 21:55:40 +02:00
}
2009-06-18 18:05:00 +03:00
2009-11-28 21:55:40 +02:00
//set new data
2010-07-20 21:34:32 +03:00
for ( size_t s = 0 ; s < backpack . size ( ) ; + + s )
{
2009-12-02 01:19:43 +02:00
if ( s < curHero - > artifacts . size ( ) )
setSlotData ( backpack [ s ] , 19 + ( s + backpackPos ) % curHero - > artifacts . size ( ) ) ;
2009-06-18 18:05:00 +03:00
else
2009-12-02 01:19:43 +02:00
eraseSlotData ( backpack [ s ] , 19 + s ) ;
2009-11-28 21:55:40 +02:00
}
}
/**
* Marks possible slots where a given artifact can be placed , except backpack .
*
* @ param art Artifact checked against .
*/
void CArtifactsOfHero : : markPossibleSlots ( const CArtifact * art )
{
for ( std : : set < CArtifactsOfHero * > : : iterator it = commonInfo - > participants . begin ( ) ;
it ! = commonInfo - > participants . end ( ) ;
+ + it )
{
2010-07-20 21:34:32 +03:00
for ( int i = 0 ; i < ( * it ) - > artWorn . size ( ) ; i + + )
{
2009-11-28 21:55:40 +02:00
if ( ( * it ) - > artWorn [ i ] - > fitsHere ( art ) )
( * it ) - > artWorn [ i ] - > marked = true ;
2010-02-08 23:17:22 +02:00
else
( * it ) - > artWorn [ i ] - > marked = false ;
2009-11-28 21:55:40 +02:00
}
}
}
/**
* Unamarks all slots .
*/
void CArtifactsOfHero : : unmarkSlots ( )
{
for ( std : : set < CArtifactsOfHero * > : : iterator it = commonInfo - > participants . begin ( ) ;
it ! = commonInfo - > participants . end ( ) ;
+ + it )
{
2010-07-20 21:34:32 +03:00
for ( int i = 0 ; i < ( * it ) - > artWorn . size ( ) ; i + + )
{
2009-11-28 21:55:40 +02:00
( * it ) - > artWorn [ i ] - > marked = false ;
}
}
}
/**
* Assigns an artifacts to an artifact place depending on it ' s new slot ID .
*/
void CArtifactsOfHero : : setSlotData ( CArtPlace * artPlace , int slotID )
{
artPlace - > slotID = slotID ;
artPlace - > ourArt = curHero - > getArt ( slotID ) ;
2010-07-20 21:34:32 +03:00
if ( artPlace - > ourArt )
{
2009-11-28 21:55:40 +02:00
artPlace - > text = artPlace - > ourArt - > Description ( ) ;
2010-02-08 23:17:22 +02:00
if ( artPlace - > locked ( ) ) // Locks should appear as empty.
artPlace - > hoverText = CGI - > generaltexth - > allTexts [ 507 ] ;
else
artPlace - > hoverText = boost : : str ( boost : : format ( CGI - > generaltexth - > heroscrn [ 1 ] . c_str ( ) ) % artPlace - > ourArt - > Name ( ) . c_str ( ) ) ;
2010-07-20 21:34:32 +03:00
}
else
{
2009-11-28 21:55:40 +02:00
eraseSlotData ( artPlace , slotID ) ;
2009-06-18 18:05:00 +03:00
}
}
2009-11-28 21:55:40 +02:00
/**
* Makes given artifact slot appear as empty with a certain slot ID .
*/
void CArtifactsOfHero : : eraseSlotData ( CArtPlace * artPlace , int slotID )
{
artPlace - > slotID = slotID ;
artPlace - > ourArt = NULL ;
artPlace - > text = std : : string ( ) ;
artPlace - > hoverText = CGI - > generaltexth - > allTexts [ 507 ] ;
}
2010-07-20 09:05:45 +03:00
CArtifactsOfHero : : CArtifactsOfHero ( const Point & position ) :
2010-07-20 21:34:32 +03:00
backpackPos ( 0 ) , updateState ( false ) , commonInfo ( NULL ) , curHero ( NULL )
2009-06-18 18:05:00 +03:00
{
2010-07-20 21:34:32 +03:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2010-07-20 09:05:45 +03:00
pos + = position ;
2009-06-18 18:05:00 +03:00
artWorn . resize ( 19 ) ;
2009-06-19 15:10:36 +03:00
2010-07-20 21:34:32 +03:00
std : : vector < Rect > slotPos ;
slotPos + = genRect ( 44 , 44 , 509 , 30 ) , genRect ( 44 , 44 , 567 , 240 ) , genRect ( 44 , 44 , 509 , 80 ) ,
genRect ( 44 , 44 , 383 , 68 ) , genRect ( 44 , 44 , 564 , 183 ) , genRect ( 44 , 44 , 509 , 130 ) ,
genRect ( 44 , 44 , 431 , 68 ) , genRect ( 44 , 44 , 610 , 183 ) , genRect ( 44 , 44 , 515 , 295 ) ,
genRect ( 44 , 44 , 383 , 143 ) , genRect ( 44 , 44 , 399 , 194 ) , genRect ( 44 , 44 , 415 , 245 ) ,
genRect ( 44 , 44 , 431 , 296 ) , genRect ( 44 , 44 , 564 , 30 ) , genRect ( 44 , 44 , 610 , 30 ) ,
genRect ( 44 , 44 , 610 , 76 ) , genRect ( 44 , 44 , 610 , 122 ) , genRect ( 44 , 44 , 610 , 310 ) ,
genRect ( 44 , 44 , 381 , 296 ) ;
2009-12-02 01:19:43 +02:00
// Create slots for worn artifacts.
for ( int g = 0 ; g < 19 ; g + + )
{
artWorn [ g ] = new CArtPlace ( NULL ) ;
2010-07-20 21:34:32 +03:00
artWorn [ g ] - > pos = slotPos [ g ] + pos ;
2009-12-02 01:19:43 +02:00
artWorn [ g ] - > ourOwner = this ;
eraseSlotData ( artWorn [ g ] , g ) ;
}
// Create slots for the backpack.
for ( size_t s = 0 ; s < 5 ; + + s )
{
CArtPlace * add = new CArtPlace ( NULL ) ;
add - > ourOwner = this ;
add - > pos . x = pos . x + 403 + 46 * s ;
add - > pos . y = pos . y + 365 ;
add - > pos . h = add - > pos . w = 44 ;
eraseSlotData ( add , 19 + s ) ;
backpack . push_back ( add ) ;
}
2010-07-20 21:34:32 +03:00
leftArtRoll = new AdventureMapButton ( std : : string ( ) , std : : string ( ) , boost : : bind ( & CArtifactsOfHero : : scrollBackpack , this , - 1 ) , 379 , 364 , " hsbtns3.def " , SDLK_LEFT ) ;
rightArtRoll = new AdventureMapButton ( std : : string ( ) , std : : string ( ) , boost : : bind ( & CArtifactsOfHero : : scrollBackpack , this , + 1 ) , 632 , 364 , " hsbtns5.def " , SDLK_RIGHT ) ;
2009-06-18 18:05:00 +03:00
}
CArtifactsOfHero : : ~ CArtifactsOfHero ( )
{
2009-06-19 15:10:36 +03:00
dispose ( ) ;
2010-07-20 21:34:32 +03:00
CGI - > curh - > dragAndDropCursor ( NULL ) ;
2009-06-18 18:05:00 +03:00
}
2010-07-21 22:50:15 +03:00
void CArtifactsOfHero : : updateParentWindow ( )
{
if ( CHeroWindow * chw = dynamic_cast < CHeroWindow * > ( GH . topInt ( ) ) )
{
if ( updateState )
chw - > curHero = curHero ;
else
{
chw - > deactivate ( ) ;
chw - > setHero ( curHero ) ;
chw - > activate ( ) ;
}
}
else if ( CExchangeWindow * cew = dynamic_cast < CExchangeWindow * > ( GH . topInt ( ) ) )
{
//use our copy of hero to draw window
if ( cew - > heroInst [ 0 ] - > id = = curHero - > id )
cew - > heroInst [ 0 ] = curHero ;
else
cew - > heroInst [ 1 ] = curHero ;
if ( ! updateState )
{
cew - > deactivate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( cew - > heroInst ) ; + + g )
{
if ( cew - > heroInst [ g ] = = curHero )
{
cew - > artifs [ g ] - > setHero ( curHero ) ;
}
}
cew - > prepareBackground ( ) ;
cew - > activate ( ) ;
}
}
}
2009-06-16 14:18:14 +03:00
void CExchangeWindow : : close ( )
{
2009-08-07 01:36:51 +03:00
GH . popIntTotally ( this ) ;
2009-06-16 14:18:14 +03:00
}
void CExchangeWindow : : activate ( )
{
quit - > activate ( ) ;
2009-06-28 11:21:50 +03:00
garr - > activate ( ) ;
2009-06-18 18:05:00 +03:00
2010-02-04 17:50:59 +02:00
artifs [ 0 ] - > setHero ( heroInst [ 0 ] ) ;
2009-06-19 15:10:36 +03:00
artifs [ 0 ] - > activate ( ) ;
2010-02-04 17:50:59 +02:00
artifs [ 1 ] - > setHero ( heroInst [ 1 ] ) ;
2009-06-19 15:10:36 +03:00
artifs [ 1 ] - > activate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( secSkillAreas ) ; g + + )
{
for ( int b = 0 ; b < secSkillAreas [ g ] . size ( ) ; + + b )
{
secSkillAreas [ g ] [ b ] - > activate ( ) ;
}
}
for ( int b = 0 ; b < primSkillAreas . size ( ) ; + + b )
primSkillAreas [ b ] - > activate ( ) ;
2010-02-15 08:54:57 +02:00
GH . statusbar = ourBar ;
2009-06-19 15:10:36 +03:00
for ( int g = 0 ; g < ARRAY_COUNT ( questlogButton ) ; g + + )
questlogButton [ g ] - > activate ( ) ;
2009-06-26 18:41:19 +03:00
for ( int g = 0 ; g < ARRAY_COUNT ( morale ) ; g + + )
morale [ g ] - > activate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( luck ) ; g + + )
luck [ g ] - > activate ( ) ;
2010-02-01 01:30:47 +02:00
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( portrait ) ; g + + )
2010-02-01 01:30:47 +02:00
portrait [ g ] - > activate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( spellPoints ) ; g + + )
2010-02-01 01:30:47 +02:00
spellPoints [ g ] - > activate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( experience ) ; g + + )
2010-02-01 01:30:47 +02:00
experience [ g ] - > activate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( speciality ) ; g + + )
2010-02-01 01:30:47 +02:00
speciality [ g ] - > activate ( ) ;
2009-06-16 14:18:14 +03:00
}
void CExchangeWindow : : deactivate ( )
{
quit - > deactivate ( ) ;
2009-06-28 11:21:50 +03:00
garr - > deactivate ( ) ;
2009-06-18 18:05:00 +03:00
2009-06-19 15:10:36 +03:00
artifs [ 0 ] - > deactivate ( ) ;
artifs [ 1 ] - > deactivate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( secSkillAreas ) ; g + + )
{
for ( int b = 0 ; b < secSkillAreas [ g ] . size ( ) ; + + b )
{
secSkillAreas [ g ] [ b ] - > deactivate ( ) ;
}
}
for ( int b = 0 ; b < primSkillAreas . size ( ) ; + + b )
primSkillAreas [ b ] - > deactivate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( questlogButton ) ; g + + )
questlogButton [ g ] - > deactivate ( ) ;
2009-06-26 18:41:19 +03:00
for ( int g = 0 ; g < ARRAY_COUNT ( morale ) ; g + + )
morale [ g ] - > deactivate ( ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( luck ) ; g + + )
2010-02-01 01:30:47 +02:00
luck [ g ] - > deactivate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( portrait ) ; g + + )
2010-02-01 01:30:47 +02:00
portrait [ g ] - > deactivate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( spellPoints ) ; g + + )
2010-02-01 01:30:47 +02:00
spellPoints [ g ] - > deactivate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( experience ) ; g + + )
2010-02-01 01:30:47 +02:00
experience [ g ] - > deactivate ( ) ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( speciality ) ; g + + )
speciality [ g ] - > deactivate ( ) ;
2009-06-16 14:18:14 +03:00
}
void CExchangeWindow : : show ( SDL_Surface * to )
{
blitAt ( bg , pos , to ) ;
quit - > show ( to ) ;
//printing border around window
if ( screen - > w ! = 800 | | screen - > h ! = 600 )
CMessage : : drawBorder ( LOCPLINT - > playerID , to , 828 , 628 , pos . x - 14 , pos . y - 15 ) ;
2009-06-18 18:05:00 +03:00
2009-06-19 15:10:36 +03:00
artifs [ 0 ] - > show ( to ) ;
artifs [ 1 ] - > show ( to ) ;
ourBar - > show ( to ) ;
for ( int g = 0 ; g < ARRAY_COUNT ( secSkillAreas ) ; g + + )
{
questlogButton [ g ] - > show ( to ) ;
}
2009-06-28 11:21:50 +03:00
garr - > show ( to ) ;
2009-06-19 15:10:36 +03:00
}
void CExchangeWindow : : questlog ( int whichHero )
{
2009-11-28 21:55:40 +02:00
CGI - > curh - > dragAndDropCursor ( NULL ) ;
2009-06-16 14:18:14 +03:00
}
2009-06-28 16:49:39 +03:00
void CExchangeWindow : : prepareBackground ( )
2009-06-16 14:18:14 +03:00
{
2009-06-28 16:49:39 +03:00
if ( bg )
SDL_FreeSurface ( bg ) ;
2009-06-18 18:05:00 +03:00
2009-06-17 12:38:03 +03:00
SDL_Surface * bgtemp ; //loaded as 8bpp surface
bgtemp = BitmapHandler : : loadBitmap ( " TRADE2.BMP " ) ;
2009-06-19 15:10:36 +03:00
graphics - > blueToPlayersAdv ( bgtemp , heroInst [ 0 ] - > tempOwner ) ;
2009-06-17 12:38:03 +03:00
bg = SDL_ConvertSurface ( bgtemp , screen - > format , screen - > flags ) ; //to 24 bpp
SDL_FreeSurface ( bgtemp ) ;
//printing heroes' names and levels
std : : ostringstream os , os2 ;
2009-06-19 15:10:36 +03:00
os < < heroInst [ 0 ] - > name < < " , Level " < < heroInst [ 0 ] - > level < < " " < < heroInst [ 0 ] - > type - > heroClass - > name ;
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAtMiddle ( os . str ( ) , 147 , 25 , FONT_SMALL , zwykly , bg ) ;
2009-06-19 15:10:36 +03:00
os2 < < heroInst [ 1 ] - > name < < " , Level " < < heroInst [ 1 ] - > level < < " " < < heroInst [ 1 ] - > type - > heroClass - > name ;
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAtMiddle ( os2 . str ( ) , 653 , 25 , FONT_SMALL , zwykly , bg ) ;
2009-06-17 12:38:03 +03:00
2009-06-19 15:10:36 +03:00
//printing primary skills
2009-06-17 12:38:03 +03:00
CDefHandler * skilldef = CDefHandler : : giveDef ( " PSKIL32.DEF " ) ;
for ( int g = 0 ; g < 4 ; + + g )
{
2009-06-19 15:10:36 +03:00
//graphics
2009-06-17 12:38:03 +03:00
blitAt ( skilldef - > ourImages [ g ] . bitmap , genRect ( 32 , 32 , 385 , 19 + 36 * g ) , bg ) ;
}
2009-06-17 19:46:16 +03:00
2009-06-19 15:10:36 +03:00
CDefHandler * un32 = CDefHandler : : giveDef ( " UN32.DEF " ) ;
//heroes related thing
for ( int b = 0 ; b < ARRAY_COUNT ( heroInst ) ; b + + )
2009-06-17 19:46:16 +03:00
{
//printing primary skills' amounts
for ( int m = 0 ; m < 4 ; + + m )
{
std : : ostringstream primarySkill ;
2009-06-19 15:10:36 +03:00
primarySkill < < heroInst [ b ] - > getPrimSkillLevel ( m ) ;
2010-02-02 18:24:53 +02:00
CSDL_Ext : : printAtMiddle ( primarySkill . str ( ) , 352 + 93 * b , 35 + 36 * m , FONT_SMALL , zwykly , bg ) ;
2009-06-17 19:46:16 +03:00
}
//printing secondary skills
2009-06-19 15:10:36 +03:00
for ( int m = 0 ; m < heroInst [ b ] - > secSkills . size ( ) ; + + m )
2009-06-17 19:46:16 +03:00
{
2009-07-27 20:55:56 +03:00
blitAt ( graphics - > abils32 - > ourImages [ heroInst [ b ] - > secSkills [ m ] . first * 3 + heroInst [ b ] - > secSkills [ m ] . second + 2 ] . bitmap , genRect ( 32 , 32 , 32 + 36 * m + 454 * b , 88 ) , bg ) ;
2009-06-17 19:46:16 +03:00
}
2009-06-19 15:10:36 +03:00
2009-06-28 16:49:39 +03:00
//hero's specialty
blitAt ( un32 - > ourImages [ heroInst [ b ] - > subID ] . bitmap , 67 + 490 * b , 45 , bg ) ;
//experience
blitAt ( skilldef - > ourImages [ 4 ] . bitmap , 103 + 490 * b , 45 , bg ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( makeNumberShort ( heroInst [ b ] - > exp ) , 119 + 490 * b , 71 , FONT_SMALL , zwykly , bg ) ;
2009-06-28 16:49:39 +03:00
//mana points
blitAt ( skilldef - > ourImages [ 5 ] . bitmap , 139 + 490 * b , 45 , bg ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( makeNumberShort ( heroInst [ b ] - > mana ) , 155 + 490 * b , 71 , FONT_SMALL , zwykly , bg ) ;
2009-06-28 16:49:39 +03:00
//setting morale
2010-05-02 21:20:26 +03:00
blitAt ( graphics - > morale30 - > ourImages [ heroInst [ b ] - > MoraleVal ( ) + 3 ] . bitmap , 177 + 490 * b , 45 , bg ) ;
2009-06-28 16:49:39 +03:00
//setting luck
2010-05-02 21:20:26 +03:00
blitAt ( graphics - > luck30 - > ourImages [ heroInst [ b ] - > LuckVal ( ) + 3 ] . bitmap , 213 + 490 * b , 45 , bg ) ;
2009-06-28 16:49:39 +03:00
}
//printing portraits
blitAt ( graphics - > portraitLarge [ heroInst [ 0 ] - > portrait ] , 257 , 13 , bg ) ;
blitAt ( graphics - > portraitLarge [ heroInst [ 1 ] - > portrait ] , 485 , 13 , bg ) ;
delete un32 ;
delete skilldef ;
}
CExchangeWindow : : CExchangeWindow ( si32 hero1 , si32 hero2 ) : bg ( NULL )
{
char bufor [ 400 ] ;
heroInst [ 0 ] = LOCPLINT - > cb - > getHeroInfo ( hero1 , 2 ) ;
heroInst [ 1 ] = LOCPLINT - > cb - > getHeroInfo ( hero2 , 2 ) ;
2009-07-27 20:55:56 +03:00
prepareBackground ( ) ;
pos . x = screen - > w / 2 - bg - > w / 2 ;
pos . y = screen - > h / 2 - bg - > h / 2 ;
pos . w = screen - > w ;
pos . h = screen - > h ;
2010-07-20 09:05:45 +03:00
artifs [ 0 ] = new CArtifactsOfHero ( Point ( pos . x + - 334 , pos . y + 150 ) ) ;
2009-07-26 18:37:27 +03:00
artifs [ 0 ] - > commonInfo = new CArtifactsOfHero : : SCommonPart ;
2009-11-28 21:55:40 +02:00
artifs [ 0 ] - > commonInfo - > participants . insert ( artifs [ 0 ] ) ;
artifs [ 0 ] - > setHero ( heroInst [ 0 ] ) ;
2010-07-20 09:05:45 +03:00
artifs [ 1 ] = new CArtifactsOfHero ( Point ( pos . x + 96 , pos . y + 150 ) ) ;
2009-07-26 18:37:27 +03:00
artifs [ 1 ] - > commonInfo = artifs [ 0 ] - > commonInfo ;
2009-11-28 21:55:40 +02:00
artifs [ 1 ] - > commonInfo - > participants . insert ( artifs [ 1 ] ) ;
2009-06-28 16:49:39 +03:00
artifs [ 1 ] - > setHero ( heroInst [ 1 ] ) ;
//primary skills
for ( int g = 0 ; g < 4 ; + + g )
{
//primary skill's clickable areas
primSkillAreas . push_back ( new LRClickableAreaWTextComp ( ) ) ;
2010-02-01 01:22:25 +02:00
primSkillAreas [ g ] - > pos = genRect ( 32 , 140 , pos . x + 329 , pos . y + 19 + 36 * g ) ;
2009-06-28 16:49:39 +03:00
primSkillAreas [ g ] - > text = CGI - > generaltexth - > arraytxt [ 2 + g ] ;
primSkillAreas [ g ] - > type = g ;
2010-07-13 08:25:40 +03:00
primSkillAreas [ g ] - > bonusValue = - 1 ;
2010-02-01 01:30:47 +02:00
primSkillAreas [ g ] - > baseType = 0 ;
2010-02-01 01:22:25 +02:00
sprintf ( bufor , CGI - > generaltexth - > heroscrn [ 1 ] . c_str ( ) , CGI - > generaltexth - > primarySkillNames [ g ] . c_str ( ) ) ;
primSkillAreas [ g ] - > hoverText = std : : string ( bufor ) ;
2009-06-28 16:49:39 +03:00
}
//heroes related thing
for ( int b = 0 ; b < ARRAY_COUNT ( heroInst ) ; b + + )
{
2009-06-19 15:10:36 +03:00
//secondary skill's clickable areas
for ( int g = 0 ; g < heroInst [ b ] - > secSkills . size ( ) ; + + g )
{
2009-11-13 18:02:25 +02:00
int skill = heroInst [ b ] - > secSkills [ g ] . first ,
level = heroInst [ b ] - > secSkills [ g ] . second ; // <1, 3>
2009-06-19 15:10:36 +03:00
secSkillAreas [ b ] . push_back ( new LRClickableAreaWTextComp ( ) ) ;
secSkillAreas [ b ] [ g ] - > pos = genRect ( 32 , 32 , pos . x + 32 + g * 36 + b * 454 , pos . y + 88 ) ;
secSkillAreas [ b ] [ g ] - > baseType = 1 ;
2009-11-13 18:02:25 +02:00
secSkillAreas [ b ] [ g ] - > type = skill ;
2010-07-13 08:25:40 +03:00
secSkillAreas [ b ] [ g ] - > bonusValue = level ;
2009-11-13 18:02:25 +02:00
secSkillAreas [ b ] [ g ] - > text = CGI - > generaltexth - > skillInfoTexts [ skill ] [ level - 1 ] ;
2009-06-19 15:10:36 +03:00
2009-11-13 18:02:25 +02:00
sprintf ( bufor , CGI - > generaltexth - > heroscrn [ 21 ] . c_str ( ) , CGI - > generaltexth - > levels [ level - 1 ] . c_str ( ) , CGI - > generaltexth - > skillName [ skill ] . c_str ( ) ) ;
2009-06-19 15:10:36 +03:00
secSkillAreas [ b ] [ g ] - > hoverText = std : : string ( bufor ) ;
}
2010-02-01 01:30:47 +02:00
2010-07-22 03:32:45 +03:00
portrait [ b ] = new CHeroArea ( pos . x + 257 + 228 * b , pos . y + 13 , heroInst [ b ] ) ;
2010-02-01 01:30:47 +02:00
2010-02-01 01:22:25 +02:00
speciality [ b ] = new LRClickableAreaWText ( ) ;
speciality [ b ] - > pos = genRect ( 32 , 32 , pos . x + 69 + 490 * b , pos . y + 45 ) ;
2010-02-01 01:30:47 +02:00
speciality [ b ] - > hoverText = CGI - > generaltexth - > heroscrn [ 27 ] ;
speciality [ b ] - > text = CGI - > generaltexth - > hTxts [ heroInst [ b ] - > subID ] . longBonus ;
2010-02-01 01:22:25 +02:00
experience [ b ] = new LRClickableAreaWText ( ) ;
experience [ b ] - > pos = genRect ( 32 , 32 , pos . x + 105 + 490 * b , pos . y + 45 ) ;
2010-02-01 01:30:47 +02:00
experience [ b ] - > hoverText = CGI - > generaltexth - > heroscrn [ 9 ] ;
2010-02-01 01:22:25 +02:00
experience [ b ] - > text = CGI - > generaltexth - > allTexts [ 2 ] . c_str ( ) ;
boost : : replace_first ( experience [ b ] - > text , " %d " , boost : : lexical_cast < std : : string > ( heroInst [ b ] - > level ) ) ;
boost : : replace_first ( experience [ b ] - > text , " %d " , boost : : lexical_cast < std : : string > ( CGI - > heroh - > reqExp ( heroInst [ b ] - > level + 1 ) ) ) ;
2010-02-01 01:30:47 +02:00
boost : : replace_first ( experience [ b ] - > text , " %d " , boost : : lexical_cast < std : : string > ( heroInst [ b ] - > exp ) ) ;
2010-02-01 01:22:25 +02:00
spellPoints [ b ] = new LRClickableAreaWText ( ) ;
spellPoints [ b ] - > pos = genRect ( 32 , 32 , pos . x + 141 + 490 * b , pos . y + 45 ) ;
2010-02-01 01:30:47 +02:00
spellPoints [ b ] - > hoverText = CGI - > generaltexth - > heroscrn [ 22 ] ;
sprintf ( bufor , CGI - > generaltexth - > allTexts [ 205 ] . c_str ( ) , heroInst [ b ] - > name . c_str ( ) , heroInst [ b ] - > mana , heroInst [ b ] - > manaLimit ( ) ) ;
spellPoints [ b ] - > text = std : : string ( bufor ) ;
2009-06-19 15:10:36 +03:00
2009-06-26 18:41:19 +03:00
//setting morale
2010-07-13 08:25:40 +03:00
morale [ b ] = new MoraleLuckBox ( true ) ;
2009-06-26 18:41:19 +03:00
morale [ b ] - > pos = genRect ( 32 , 32 , pos . x + 177 + 490 * b , pos . y + 45 ) ;
2010-07-13 08:25:40 +03:00
morale [ b ] - > set ( heroInst [ b ] ) ;
2009-06-26 18:41:19 +03:00
//setting luck
2010-07-13 08:25:40 +03:00
luck [ b ] = new MoraleLuckBox ( false ) ;
2009-06-26 18:41:19 +03:00
luck [ b ] - > pos = genRect ( 32 , 32 , pos . x + 213 + 490 * b , pos . y + 45 ) ;
2010-07-13 08:25:40 +03:00
luck [ b ] - > set ( heroInst [ b ] ) ;
2009-06-17 19:46:16 +03:00
}
2009-06-17 12:38:03 +03:00
//buttons
2009-06-16 14:18:14 +03:00
quit = new AdventureMapButton ( CGI - > generaltexth - > tcommands [ 8 ] , " " , boost : : bind ( & CExchangeWindow : : close , this ) , pos . x + 732 , pos . y + 567 , " IOKAY.DEF " , SDLK_RETURN ) ;
2009-06-19 15:10:36 +03:00
questlogButton [ 0 ] = new AdventureMapButton ( CGI - > generaltexth - > heroscrn [ 0 ] , std : : string ( ) , boost : : bind ( & CExchangeWindow : : questlog , this , 0 ) , pos . x + 10 , pos . y + 44 , " hsbtns4.def " ) ;
questlogButton [ 1 ] = new AdventureMapButton ( CGI - > generaltexth - > heroscrn [ 0 ] , std : : string ( ) , boost : : bind ( & CExchangeWindow : : questlog , this , 1 ) , pos . x + 740 , pos . y + 44 , " hsbtns4.def " ) ;
//statusbar
ourBar = new CStatusBar ( pos . x + 3 , pos . y + 577 , " TSTATBAR.bmp " , 726 ) ;
2009-06-28 11:21:50 +03:00
//garrison interface
2009-09-11 08:45:40 +03:00
garr = new CGarrisonInt ( pos . x + 69 , pos . y + 131 , 4 , Point ( 418 , 0 ) , bg , Point ( 69 , 131 ) , heroInst [ 0 ] , heroInst [ 1 ] , true , true ) ;
2009-08-01 22:25:12 +03:00
2009-09-09 09:04:42 +03:00
garr - > splitButtons . push_back ( new AdventureMapButton ( CGI - > generaltexth - > tcommands [ 3 ] , " " , boost : : bind ( & CGarrisonInt : : splitClick , garr ) , pos . x + 10 , pos . y + 132 , " TSBTNS.DEF " ) ) ;
garr - > splitButtons . push_back ( new AdventureMapButton ( CGI - > generaltexth - > tcommands [ 3 ] , " " , boost : : bind ( & CGarrisonInt : : splitClick , garr ) , pos . x + 740 , pos . y + 132 , " TSBTNS.DEF " ) ) ;
2009-06-16 14:18:14 +03:00
}
CExchangeWindow : : ~ CExchangeWindow ( ) //d-tor
{
SDL_FreeSurface ( bg ) ;
delete quit ;
2009-07-26 18:37:27 +03:00
//warning: don't experiment with these =NULL lines, they prevent heap corruption!
delete artifs [ 0 ] - > commonInfo ;
artifs [ 0 ] - > commonInfo = NULL ;
2009-06-19 15:10:36 +03:00
delete artifs [ 0 ] ;
2009-07-26 18:37:27 +03:00
artifs [ 1 ] - > commonInfo = NULL ;
2009-06-19 15:10:36 +03:00
delete artifs [ 1 ] ;
2009-06-28 11:21:50 +03:00
delete garr ;
2009-06-19 15:10:36 +03:00
delete ourBar ;
for ( int g = 0 ; g < ARRAY_COUNT ( secSkillAreas ) ; g + + )
{
for ( int b = 0 ; b < secSkillAreas [ g ] . size ( ) ; + + b )
{
delete secSkillAreas [ g ] [ b ] ;
}
}
for ( int b = 0 ; b < primSkillAreas . size ( ) ; + + b )
{
delete primSkillAreas [ b ] ;
}
for ( int g = 0 ; g < ARRAY_COUNT ( questlogButton ) ; g + + )
{
delete questlogButton [ g ] ;
}
2009-06-26 18:41:19 +03:00
for ( int g = 0 ; g < ARRAY_COUNT ( morale ) ; g + + )
delete morale [ g ] ;
for ( int g = 0 ; g < ARRAY_COUNT ( luck ) ; g + + )
delete luck [ g ] ;
2010-02-01 01:30:47 +02:00
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( portrait ) ; g + + )
2010-02-01 01:30:47 +02:00
delete portrait [ g ] ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( spellPoints ) ; g + + )
2010-02-01 01:30:47 +02:00
delete spellPoints [ g ] ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( experience ) ; g + + )
2010-02-01 01:30:47 +02:00
delete experience [ g ] ;
2010-02-01 01:22:25 +02:00
for ( int g = 0 ; g < ARRAY_COUNT ( speciality ) ; g + + )
delete speciality [ g ] ;
2009-06-18 18:05:00 +03:00
}
2009-07-26 06:33:13 +03:00
void CShipyardWindow : : activate ( )
{
build - > activate ( ) ;
quit - > activate ( ) ;
}
void CShipyardWindow : : deactivate ( )
{
build - > deactivate ( ) ;
quit - > deactivate ( ) ;
}
void CShipyardWindow : : show ( SDL_Surface * to )
{
blitAt ( bg , pos , to ) ;
2010-02-13 06:47:31 +02:00
CSDL_Ext : : blit8bppAlphaTo24bpp ( graphics - > boatAnims [ boat ] - > ourImages [ 21 + frame + + / 8 % 8 ] . bitmap , NULL , to , & genRect ( 64 , 96 , pos . x + 110 , pos . y + 85 ) ) ;
2009-07-26 06:33:13 +03:00
build - > show ( to ) ;
quit - > show ( to ) ;
}
CShipyardWindow : : ~ CShipyardWindow ( )
{
delete build ;
delete quit ;
}
2009-06-18 18:05:00 +03:00
2010-02-13 06:47:31 +02:00
CShipyardWindow : : CShipyardWindow ( const std : : vector < si32 > & cost , int state , int boatType , const boost : : function < void ( ) > & onBuy )
2009-07-26 06:33:13 +03:00
{
2010-02-13 06:47:31 +02:00
boat = boatType ;
2009-07-26 06:33:13 +03:00
frame = 0 ;
SDL_Surface * bgtemp ; //loaded as 8bpp surface
bgtemp = BitmapHandler : : loadBitmap ( " TPSHIP.bmp " ) ;
pos . x = screen - > w / 2 - bgtemp - > w / 2 ;
pos . y = screen - > h / 2 - bgtemp - > h / 2 ;
pos . w = bgtemp - > w ;
pos . h = bgtemp - > h ;
SDL_SetColorKey ( bgtemp , SDL_SRCCOLORKEY , SDL_MapRGB ( bgtemp - > format , 0 , 255 , 255 ) ) ;
graphics - > blueToPlayersAdv ( bgtemp , LOCPLINT - > playerID ) ;
bg = SDL_ConvertSurface ( bgtemp , screen - > format , screen - > flags ) ; //to 24 bpp
SDL_FreeSurface ( bgtemp ) ;
bgtemp = BitmapHandler : : loadBitmap ( " TPSHIPBK.bmp " ) ;
blitAt ( bgtemp , 100 , 69 , bg ) ;
SDL_FreeSurface ( bgtemp ) ;
2009-08-17 20:19:09 +03:00
// Draw resource icons and costs.
std : : string goldCost = boost : : lexical_cast < std : : string > ( 1000 ) ;
2009-08-19 18:47:00 +03:00
std : : string woodCost = boost : : lexical_cast < std : : string > ( 10 ) ;
blitAt ( graphics - > resources32 - > ourImages [ 6 ] . bitmap , 100 , 244 , bg ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( goldCost . c_str ( ) , 118 , 294 , FONT_SMALL , zwykly , bg ) ;
2009-08-19 18:47:00 +03:00
blitAt ( graphics - > resources32 - > ourImages [ 0 ] . bitmap , 196 , 244 , bg ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( woodCost . c_str ( ) , 212 , 294 , FONT_SMALL , zwykly , bg ) ;
2009-08-17 20:19:09 +03:00
2009-07-26 06:33:13 +03:00
bool affordable = true ;
for ( int i = 0 ; i < cost . size ( ) ; i + + )
{
if ( cost [ i ] > LOCPLINT - > cb - > getResourceAmount ( i ) )
{
affordable = false ;
break ;
}
}
2009-08-07 01:36:51 +03:00
quit = new AdventureMapButton ( CGI - > generaltexth - > allTexts [ 599 ] , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , pos . x + 224 , pos . y + 312 , " ICANCEL.DEF " , SDLK_RETURN ) ;
build = new AdventureMapButton ( CGI - > generaltexth - > allTexts [ 598 ] , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , pos . x + 42 , pos . y + 312 , " IBY6432.DEF " , SDLK_RETURN ) ;
2009-07-26 06:33:13 +03:00
build - > callback + = onBuy ;
if ( ! affordable )
build - > block ( true ) ;
2010-02-02 18:24:53 +02:00
printAtMiddle ( CGI - > generaltexth - > jktexts [ 13 ] , 164 , 27 , FONT_BIG , tytulowy , bg ) ; //Build A New Ship
printAtMiddle ( CGI - > generaltexth - > jktexts [ 14 ] , 164 , 220 , FONT_MEDIUM , zwykly , bg ) ; //Resource cost:
2009-07-26 06:33:13 +03:00
}
2009-08-31 18:57:15 +03:00
2010-02-10 04:56:00 +02:00
CPuzzleWindow : : CPuzzleWindow ( const int3 & grailPos , float discoveredRatio )
2009-08-31 18:57:15 +03:00
: animCount ( 0 )
{
2010-02-18 16:09:16 +02:00
CDefHandler * arrows = CDefHandler : : giveDef ( " ADAG.DEF " ) ;
alphaTransform ( arrows - > ourImages [ 0 ] . bitmap ) ;
2009-08-31 18:57:15 +03:00
SDL_Surface * back = BitmapHandler : : loadBitmap ( " PUZZLE.BMP " , false ) ;
2009-09-05 13:23:29 +03:00
graphics - > blueToPlayersAdv ( back , LOCPLINT - > playerID ) ;
2009-08-31 18:57:15 +03:00
//make transparency black
back - > format - > palette - > colors [ 0 ] . b = back - > format - > palette - > colors [ 0 ] . r = back - > format - > palette - > colors [ 0 ] . g = 0 ;
//the rest
background = SDL_ConvertSurface ( back , screen - > format , back - > flags ) ;
SDL_FreeSurface ( back ) ;
pos = genRect ( background - > h , background - > w , ( conf . cc . resx - background - > w ) / 2 , ( conf . cc . resy - background - > h ) / 2 ) ;
quitb = new AdventureMapButton ( CGI - > generaltexth - > allTexts [ 599 ] , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , pos . x + 670 , pos . y + 538 , " IOK6432.DEF " , SDLK_RETURN ) ;
2009-09-05 13:23:29 +03:00
resdatabar = new CResDataBar ( " ZRESBAR.bmp " , pos . x + 3 , pos . y + 575 , 32 , 2 , 85 , 85 ) ;
2009-08-31 18:57:15 +03:00
resdatabar - > pos . x = pos . x + 3 ; resdatabar - > pos . y = pos . y + 575 ;
2010-02-18 16:09:16 +02:00
//printing necessary things to background
int3 moveInt = int3 ( 8 , 9 , 0 ) ;
2009-08-31 18:57:15 +03:00
CGI - > mh - > terrainRect
2010-02-20 15:24:38 +02:00
( grailPos - moveInt , adventureInt - > anim ,
& LOCPLINT - > cb - > getVisibilityMap ( ) , true , adventureInt - > heroAnim ,
2009-08-31 18:57:15 +03:00
background , & genRect ( 544 , 591 , 8 , 8 ) , 0 , 0 , true ) ;
2010-02-18 16:09:16 +02:00
//printing X sign
{
2010-03-01 20:45:18 +02:00
int x = 32 * moveInt . x - 16 ,
y = 32 * moveInt . y + 1 ;
2010-02-18 16:09:16 +02:00
if ( x < 0 | | y < 0 | | x > pos . w | | y > pos . h )
{
}
else
{
CSDL_Ext : : blit8bppAlphaTo24bpp ( arrows - > ourImages [ 0 ] . bitmap , NULL , background , & genRect ( 32 , 32 , x , y ) ) ;
}
}
delete arrows ;
2009-09-05 13:23:29 +03:00
int faction = LOCPLINT - > cb - > getStartInfo ( ) - > playerInfos [ LOCPLINT - > serialID ] . castle ;
2009-08-31 18:57:15 +03:00
std : : vector < SPuzzleInfo > puzzlesToPrint ;
for ( int g = 0 ; g < PUZZLES_PER_FACTION ; + + g )
{
2010-02-10 04:56:00 +02:00
if ( CGI - > heroh - > puzzleInfo [ faction ] [ g ] . whenUncovered > PUZZLES_PER_FACTION * discoveredRatio )
2009-08-31 18:57:15 +03:00
{
puzzlesToPrint . push_back ( CGI - > heroh - > puzzleInfo [ faction ] [ g ] ) ;
}
else
{
SDL_Surface * buf = BitmapHandler : : loadBitmap ( CGI - > heroh - > puzzleInfo [ faction ] [ g ] . filename ) ;
puzzlesToPullBack . push_back ( std : : make_pair ( buf , & CGI - > heroh - > puzzleInfo [ faction ] [ g ] ) ) ;
}
}
for ( int b = 0 ; b < puzzlesToPrint . size ( ) ; + + b )
{
SDL_Surface * puzzle = BitmapHandler : : loadBitmap ( puzzlesToPrint [ b ] . filename ) ;
blitAt ( puzzle , puzzlesToPrint [ b ] . x , puzzlesToPrint [ b ] . y , background ) ;
SDL_FreeSurface ( puzzle ) ;
}
}
CPuzzleWindow : : ~ CPuzzleWindow ( )
{
delete quitb ;
delete resdatabar ;
SDL_FreeSurface ( background ) ;
for ( int g = 0 ; g < puzzlesToPullBack . size ( ) ; + + g )
SDL_FreeSurface ( puzzlesToPullBack [ g ] . first ) ;
}
void CPuzzleWindow : : activate ( )
{
quitb - > activate ( ) ;
}
void CPuzzleWindow : : deactivate ( )
{
quitb - > deactivate ( ) ;
}
void CPuzzleWindow : : show ( SDL_Surface * to )
{
blitAt ( background , pos . x , pos . y , to ) ;
quitb - > show ( to ) ;
resdatabar - > draw ( to ) ;
//blitting disappearing puzzles
for ( int g = 0 ; g < 2 ; + + g )
if ( animCount ! = 255 )
+ + animCount ;
if ( animCount ! = 255 )
{
for ( int b = 0 ; b < puzzlesToPullBack . size ( ) ; + + b )
{
2009-09-05 13:23:29 +03:00
int xPos = puzzlesToPullBack [ b ] . second - > x + pos . x ,
yPos = puzzlesToPullBack [ b ] . second - > y + pos . y ;
2009-08-31 18:57:15 +03:00
SDL_Surface * from = puzzlesToPullBack [ b ] . first ;
SDL_SetAlpha ( from , SDL_SRCALPHA , 255 - animCount ) ;
blitAt ( from , xPos , yPos , to ) ;
}
}
//disappearing puzzles blitted
2009-09-05 13:23:29 +03:00
//printing border around window
if ( screen - > w ! = 800 | | screen - > h ! = 600 )
CMessage : : drawBorder ( LOCPLINT - > playerID , to , 828 , 628 , pos . x - 14 , pos . y - 15 ) ;
2009-08-31 18:57:15 +03:00
}
2009-09-21 12:00:33 +03:00
2010-07-03 15:00:53 +03:00
void CTransformerWindow : : CItem : : showAll ( SDL_Surface * to )
{
SDL_Surface * backgr = graphics - > bigImgs [ parent - > army - > getCreature ( id ) - > idNumber ] ;
blitAt ( backgr , pos . x , pos . y , to ) ;
printAtMiddle ( boost : : lexical_cast < std : : string > ( size ) , pos . x + 28 , pos . y + 76 , FONT_SMALL , zwykly , to ) ; //stack size
}
void CTransformerWindow : : CItem : : move ( )
{
if ( left )
pos . x + = 289 ;
else
pos . x - = 289 ;
left = ! left ;
}
void CTransformerWindow : : CItem : : clickLeft ( tribool down , bool previousState )
{
if ( previousState & & ( ! down ) )
{
move ( ) ;
parent - > showAll ( screen2 ) ;
}
}
CTransformerWindow : : CItem : : CItem ( CTransformerWindow * _parent , int _size , int _id ) :
parent ( _parent ) , id ( _id ) , size ( _size )
{
used = LCLICK ;
2010-07-20 09:05:45 +03:00
left = true ;
2010-07-03 15:00:53 +03:00
pos . w = 58 ;
pos . h = 64 ;
pos . x + = 45 + ( id % 3 ) * 83 + id / 6 * 83 ;
pos . y + = 109 + ( id / 3 ) * 98 ;
}
CTransformerWindow : : CItem : : ~ CItem ( )
{
}
void CTransformerWindow : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
printAtMiddleLoc ( CGI - > generaltexth - > allTexts [ 485 ] , 153 , 29 , FONT_SMALL , tytulowy , to ) ; //holding area
printAtMiddleLoc ( CGI - > generaltexth - > allTexts [ 486 ] , 153 + 295 , 29 , FONT_SMALL , tytulowy , to ) ; //transformer
printAtMiddleWBLoc ( CGI - > generaltexth - > allTexts [ 487 ] , 153 , 75 , FONT_MEDIUM , 32 , tytulowy , to ) ; //move creatures to create skeletons
printAtMiddleWBLoc ( CGI - > generaltexth - > allTexts [ 488 ] , 153 + 295 , 75 , FONT_MEDIUM , 32 , tytulowy , to ) ; //creatures here will become skeletons
}
void CTransformerWindow : : makeDeal ( )
{
for ( int i = 0 ; i < items . size ( ) ; i + + )
if ( ! items [ i ] - > left )
LOCPLINT - > cb - > trade ( town , CREATURE_UNDEAD , items [ i ] - > id , 0 , 0 , hero ) ;
}
void CTransformerWindow : : addAll ( )
{
for ( int i = 0 ; i < items . size ( ) ; i + + )
if ( items [ i ] - > left )
items [ i ] - > move ( ) ;
showAll ( screen2 ) ;
}
CTransformerWindow : : CTransformerWindow ( const CGHeroInstance * _hero , const CGTownInstance * _town ) : hero ( _hero ) , town ( _town )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
bg = new CPicture ( " SKTRNBK.PCX " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
2010-07-07 05:29:07 +03:00
pos = center ( bg - > pos ) ;
2010-07-03 15:00:53 +03:00
if ( hero )
army = hero ;
else
army = town ;
for ( int i = 0 ; i < 7 ; i + + )
if ( army - > getCreature ( i ) )
items . push_back ( new CItem ( this , army - > getAmount ( i ) , i ) ) ;
all = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 590 ] , boost : : bind ( & CTransformerWindow : : addAll , this ) , 146 , 416 , " ALTARMY.DEF " , SDLK_a ) ;
convert = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 591 ] , boost : : bind ( & CTransformerWindow : : makeDeal , this ) , 269 , 416 , " ALTSACR.DEF " , SDLK_RETURN ) ;
cancel = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 592 ] , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 392 , 416 , " ICANCEL.DEF " , SDLK_ESCAPE ) ;
2010-07-07 05:29:07 +03:00
bar = new CGStatusBar ( 304 , 469 ) ;
2010-07-03 15:00:53 +03:00
}
CTransformerWindow : : ~ CTransformerWindow ( )
{
}
2010-07-20 17:08:13 +03:00
void CUniversityWindow : : CItem : : clickLeft ( tribool down , bool previousState )
{
if ( previousState & & ( ! down ) )
{
if ( state ( ) ! = 2 )
return ;
CUnivConfirmWindow * win = new CUnivConfirmWindow ( parent , ID , LOCPLINT - > cb - > getResourceAmount ( 6 ) > = 2000 ) ;
GH . pushInt ( win ) ;
}
}
void CUniversityWindow : : CItem : : clickRight ( tribool down , bool previousState )
{
if ( down )
{
CInfoPopup * message = new CInfoPopup ( ) ;
message - > free = true ;
message - > bitmap = CMessage : : drawBoxTextBitmapSub
( LOCPLINT - > playerID ,
CGI - > generaltexth - > skillInfoTexts [ ID ] [ 0 ] ,
graphics - > abils82 - > ourImages [ ID * 3 + 3 ] . bitmap ,
CGI - > generaltexth - > skillName [ ID ] ) ;
message - > pos . x = screen - > w / 2 - message - > bitmap - > w / 2 ;
message - > pos . y = screen - > h / 2 - message - > bitmap - > h / 2 ;
GH . pushInt ( message ) ;
}
}
void CUniversityWindow : : CItem : : hover ( bool on )
{
if ( on )
GH . statusbar - > print ( CGI - > generaltexth - > skillName [ ID ] ) ;
else
GH . statusbar - > clear ( ) ;
}
int CUniversityWindow : : CItem : : state ( )
{
if ( parent - > hero - > getSecSkillLevel ( ID ) ) //hero know this skill
return 1 ;
if ( parent - > hero - > secSkills . size ( ) > = SKILL_PER_HERO ) //can't learn more skills
return 0 ;
2010-07-22 03:32:45 +03:00
if ( parent - > hero - > type - > heroClass - > proSec [ ID ] = = 0 ) //can't learn this skill (like necromancy for most of non-necros)
return 0 ;
2010-07-20 17:08:13 +03:00
/* if (LOCPLINT->cb->getResourceAmount(6) < 2000 )//no gold - allowed in H3, confirm button is blocked instead
return 0 ; */
return 2 ;
}
void CUniversityWindow : : CItem : : showAll ( SDL_Surface * to )
{
SDL_Surface * bar ;
switch ( state ( ) )
{
case 0 : bar = parent - > red ;
break ;
case 1 : bar = parent - > yellow ;
break ;
case 2 : bar = parent - > green ;
break ;
}
blitAtLoc ( bar , - 28 , - 22 , to ) ;
blitAtLoc ( bar , - 28 , 48 , to ) ;
printAtMiddleLoc ( CGI - > generaltexth - > skillName [ ID ] , 22 , - 13 , FONT_SMALL , zwykly , to ) ; //Name
printAtMiddleLoc ( CGI - > generaltexth - > levels [ 0 ] , 22 , 57 , FONT_SMALL , zwykly , to ) ; //Level(always basic)
CPicture : : showAll ( to ) ;
}
CUniversityWindow : : CItem : : CItem ( CUniversityWindow * _parent , int _ID , int X , int Y ) : ID ( _ID ) , parent ( _parent ) ,
CPicture ( graphics - > abils44 - > ourImages [ _ID * 3 + 3 ] . bitmap , X , Y , false )
{
used = LCLICK | RCLICK | HOVER ;
}
CUniversityWindow : : CUniversityWindow ( const CGHeroInstance * _hero , const IMarket * _market ) : hero ( _hero ) , market ( _market )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
bg = new CPicture ( " UNIVERS1.PCX " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
yellow = BitmapHandler : : loadBitmap ( " UNIVGOLD.PCX " ) ;
green = BitmapHandler : : loadBitmap ( " UNIVGREN.PCX " ) ; //bars
red = BitmapHandler : : loadBitmap ( " UNIVRED.PCX " ) ;
if ( market - > o - > ID = = 104 ) // this is adventure map university
{
SDL_Surface * titleImage = BitmapHandler : : loadBitmap ( " UNIVBLDG.PCX " ) ;
blitAtLoc ( titleImage , 232 - titleImage - > w / 2 , 76 - titleImage - > h / 2 , bg - > bg ) ;
SDL_FreeSurface ( titleImage ) ;
}
else if ( LOCPLINT - > castleInt & & LOCPLINT - > castleInt - > town - > subID = = 8 ) // this is town university
{
SDL_Surface * titleImage = LOCPLINT - > castleInt - > bicons - > ourImages [ 21 ] . bitmap ;
blitAtLoc ( titleImage , 232 - titleImage - > w / 2 , 76 - titleImage - > h / 2 , bg - > bg ) ;
}
else
tlog0 < < " Error: Image for university was not found! \n " ; //This should not happen
printAtMiddleWBLoc ( CGI - > generaltexth - > allTexts [ 603 ] , 232 , 153 , FONT_SMALL , 70 , zwykly , bg - > bg ) ; //Clerk speech
printAtMiddleLoc ( CGI - > generaltexth - > allTexts [ 602 ] , 231 , 26 , FONT_MEDIUM , tytulowy , bg - > bg ) ; //University
std : : vector < int > list = market - > availableItemsIds ( RESOURCE_SKILL ) ;
if ( list . size ( ) ! = 4 )
tlog0 < < " \t \t Incorrect size of available items vector! \n " ;
for ( int i = 0 ; i < list . size ( ) ; i + + ) //prepare clickable items
items . push_back ( new CItem ( this , list [ i ] , pos . x + 54 + i * 104 , pos . y + 234 ) ) ;
pos = center ( bg - > pos ) ;
cancel = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 632 ] ,
boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 200 , 313 , " IOKAY.DEF " , SDLK_RETURN ) ;
bar = new CGStatusBar ( 232 , 371 ) ;
}
CUniversityWindow : : ~ CUniversityWindow ( )
{
delete red ;
delete yellow ;
delete green ;
}
CUnivConfirmWindow : : CUnivConfirmWindow ( CUniversityWindow * PARENT , int SKILL , bool available ) : parent ( PARENT )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
bg = new CPicture ( " UNIVERS2.PCX " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
std : : string text = CGI - > generaltexth - > allTexts [ 608 ] ;
boost : : replace_first ( text , " %s " , CGI - > generaltexth - > levels [ 0 ] ) ;
boost : : replace_first ( text , " %s " , CGI - > generaltexth - > skillName [ SKILL ] ) ;
boost : : replace_first ( text , " %d " , " 2000 " ) ;
printAtMiddleWBLoc ( text , 230 , 163 , FONT_SMALL , 65 , zwykly , bg - > bg ) ; //Clerk speech
printAtMiddleLoc ( CGI - > generaltexth - > skillName [ SKILL ] , 230 , 37 , FONT_SMALL , zwykly , bg - > bg ) ; //Skill name
printAtMiddleLoc ( CGI - > generaltexth - > levels [ 1 ] , 230 , 107 , FONT_SMALL , zwykly , bg - > bg ) ; //Skill level
printAtMiddleLoc ( " 2000 " , 230 , 267 , FONT_SMALL , zwykly , bg - > bg ) ; //Cost
blitAtLoc ( graphics - > abils44 - > ourImages [ SKILL * 3 + 3 ] . bitmap , 211 , 51 , bg - > bg ) ; //skill
blitAtLoc ( graphics - > resources32 - > ourImages [ 6 ] . bitmap , 210 , 210 , bg - > bg ) ; //gold
pos = center ( bg - > pos ) ;
std : : string hoverText = CGI - > generaltexth - > allTexts [ 609 ] ;
boost : : replace_first ( hoverText , " %s " , CGI - > generaltexth - > levels [ 0 ] + " " + CGI - > generaltexth - > skillName [ SKILL ] ) ;
text = CGI - > generaltexth - > zelp [ 633 ] . second ;
boost : : replace_first ( text , " %s " , CGI - > generaltexth - > levels [ 0 ] ) ;
boost : : replace_first ( text , " %s " , CGI - > generaltexth - > skillName [ SKILL ] ) ;
boost : : replace_first ( text , " %d " , " 2000 " ) ;
confirm = new AdventureMapButton ( hoverText , text , boost : : bind ( & CUnivConfirmWindow : : makeDeal , this , SKILL ) ,
148 , 299 , " IBY6432.DEF " , SDLK_RETURN ) ;
confirm - > block ( ! available ) ;
cancel = new AdventureMapButton ( CGI - > generaltexth - > zelp [ 631 ] , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) ,
252 , 299 , " ICANCEL.DEF " , SDLK_ESCAPE ) ;
bar = new CGStatusBar ( 232 , 371 ) ;
}
void CUnivConfirmWindow : : makeDeal ( int skill )
{
LOCPLINT - > cb - > trade ( parent - > market - > o , RESOURCE_SKILL , 6 , skill , 1 , parent - > hero ) ;
GH . popIntTotally ( this ) ;
}
2010-07-22 03:32:45 +03:00
CHillFortWindow : : CHillFortWindow ( const CGHeroInstance * visitor , const CGObjectInstance * object ) :
hero ( visitor ) , fort ( object )
{
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
slotsCount = 7 ;
resources = CDefHandler : : giveDefEss ( " SMALRES.DEF " ) ;
bg = new CPicture ( " APHLFTBK.PCX " ) ;
bg - > colorizeAndConvert ( LOCPLINT - > playerID ) ;
printAtMiddleLoc ( fort - > hoverName , 325 , 32 , FONT_BIG , tytulowy , bg - > bg ) ; //Hill Fort
pos = center ( bg - > pos ) ;
heroPic = new CHeroArea ( 30 , 60 , hero ) ;
currState . resize ( slotsCount + 1 ) ;
costs . resize ( slotsCount ) ;
totalSumm . resize ( RESOURCE_QUANTITY ) ;
for ( int i = 0 ; i < slotsCount ; i + + )
{
currState [ i ] = getState ( i ) ;
upgrade [ i ] = new AdventureMapButton ( " " , " " , boost : : bind ( & CHillFortWindow : : makeDeal , this , i ) , 107 + i * 76 , 171 , getDefForSlot ( i ) ) ;
upgrade [ i ] - > block ( currState [ i ] = = - 1 ) ;
}
currState [ slotsCount ] = getState ( slotsCount ) ;
upgradeAll = new AdventureMapButton ( CGI - > generaltexth - > allTexts [ 432 ] , " " , boost : : bind ( & CHillFortWindow : : makeDeal , this , slotsCount ) , 30 , 231 , getDefForSlot ( slotsCount ) ) ;
quit = new AdventureMapButton ( " " , " " , boost : : bind ( & CGuiHandler : : popIntTotally , & GH , this ) , 294 , 275 , " IOKAY.DEF " , SDLK_RETURN ) ;
bar = new CGStatusBar ( 327 , 332 ) ;
}
BLOCK_CAPTURING ;
garr = new CGarrisonInt ( pos . x + 107 , pos . x + 84 , 18 , Point ( ) , bg - > bg , Point ( 107 , 60 ) , hero , NULL ) ;
updateGarrisons ( ) ;
}
CHillFortWindow : : ~ CHillFortWindow ( )
{
delete garr ;
}
void CHillFortWindow : : activate ( )
{
CIntObject : : activate ( ) ;
garr - > activate ( ) ;
GH . statusbar = bar ;
}
void CHillFortWindow : : deactivate ( )
{
CIntObject : : deactivate ( ) ;
garr - > deactivate ( ) ;
}
void CHillFortWindow : : updateGarrisons ( )
{
for ( int i = 0 ; i < RESOURCE_QUANTITY ; i + + )
totalSumm [ i ] = 0 ;
for ( int i = 0 ; i < slotsCount ; i + + )
{
costs [ i ] . clear ( ) ;
int newState = getState ( i ) ;
if ( newState ! = - 1 )
{
UpgradeInfo info = LOCPLINT - > cb - > getUpgradeInfo ( hero , i ) ;
if ( info . newID . size ( ) ) //we have upgrades here - update costs
for ( std : : set < std : : pair < int , int > > : : iterator it = info . cost [ 0 ] . begin ( ) ; it ! = info . cost [ 0 ] . end ( ) ; it + + )
{
costs [ i ] . insert ( * it ) ;
totalSumm [ it - > first ] + = it - > second ;
}
}
if ( currState [ i ] ! = newState ) //we need to update buttons
{
currState [ i ] = newState ;
upgrade [ i ] - > setDef ( getDefForSlot ( i ) , false , true ) ;
upgrade [ i ] - > block ( currState [ i ] = = - 1 ) ;
}
}
int newState = getState ( slotsCount ) ;
if ( currState [ slotsCount ] ! = newState )
{
currState [ slotsCount ] = newState ;
upgradeAll - > setDef ( getDefForSlot ( slotsCount ) , false , true ) ;
}
garr - > recreateSlots ( ) ;
}
void CHillFortWindow : : makeDeal ( int slot )
{
int offset = ( slot = = slotsCount ) ? 2 : 0 ;
switch ( currState [ slot ] )
{
case 0 :
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 314 + offset ] ,
std : : vector < SComponent * > ( ) , soundBase : : sound_todo ) ;
break ;
case 1 :
LOCPLINT - > showInfoDialog ( CGI - > generaltexth - > allTexts [ 315 + offset ] ,
std : : vector < SComponent * > ( ) , soundBase : : sound_todo ) ;
break ;
case 2 :
for ( int i = 0 ; i < slotsCount ; i + + )
if ( slot = = i | | ( slot = = slotsCount & & currState [ i ] = = 2 ) ) //this is activated slot or "upgrade all"
{
UpgradeInfo info = LOCPLINT - > cb - > getUpgradeInfo ( hero , i ) ;
LOCPLINT - > cb - > upgradeCreature ( hero , i , info . newID [ 0 ] ) ;
}
break ;
}
}
void CHillFortWindow : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
garr - > show ( to ) ;
for ( int i = 0 ; i < slotsCount ; i + + )
{
if ( currState [ i ] = = 0 | | currState [ i ] = = 2 )
{
if ( costs [ i ] . size ( ) ) //we have several elements
{
int curY = 128 ; //reverse iterator is used to display gold as first element
for ( std : : map < int , int > : : reverse_iterator rit = costs [ i ] . rbegin ( ) ; rit ! = costs [ i ] . rend ( ) ; rit + + )
{
blitAtLoc ( resources - > ourImages [ rit - > first ] . bitmap , 104 + 76 * i , curY , to ) ;
printToLoc ( boost : : lexical_cast < std : : string > ( rit - > second ) , 168 + 76 * i , curY + 16 , FONT_SMALL , zwykly , to ) ;
curY + = 20 ;
}
}
else //free upgrade - print gold image and "Free" text
{
blitAtLoc ( resources - > ourImages [ 6 ] . bitmap , 104 + 76 * i , 128 , to ) ;
printToLoc ( CGI - > generaltexth - > allTexts [ 344 ] , 168 + 76 * i , 144 , FONT_SMALL , zwykly , to ) ;
}
}
}
for ( int i = 0 ; i < RESOURCE_QUANTITY ; i + + )
{
if ( totalSumm [ i ] ) //this resource is used - display it
{
blitAtLoc ( resources - > ourImages [ i ] . bitmap , 104 + 76 * i , 237 , to ) ;
printToLoc ( boost : : lexical_cast < std : : string > ( totalSumm [ i ] ) , 166 + 76 * i , 253 , FONT_SMALL , zwykly , to ) ;
}
}
}
std : : string CHillFortWindow : : getDefForSlot ( int slot )
{
if ( slot = = slotsCount )
switch ( currState [ slot ] )
{
case - 1 :
case 0 : return " APHLF4R.DEF " ;
case 1 : return " APHLF4Y.DEF " ;
case 2 : return " APHLF4G.DEF " ;
}
else
switch ( currState [ slot ] )
{
case - 1 :
case 0 : return " APHLF1R.DEF " ;
case 1 : return " APHLF1Y.DEF " ;
case 2 : return " APHLF1G.DEF " ;
}
}
int CHillFortWindow : : getState ( int slot )
{
if ( slot = = slotsCount ) //"Upgrade all" slot
{
bool allUpgraded = true ; //All creatures are upgraded?
for ( int i = 0 ; i < slotsCount ; i + + )
allUpgraded & = currState [ i ] = = 1 | | currState [ i ] = = - 1 ;
if ( allUpgraded )
return 1 ;
for ( int i = 0 ; i < RESOURCE_QUANTITY ; i + + ) //if we need more resources
if ( LOCPLINT - > cb - > getResourceAmount ( i ) < totalSumm [ i ] )
return 0 ;
return 2 ;
}
if ( hero - > slotEmpty ( slot ) ) //no creature here
return - 1 ;
UpgradeInfo info = LOCPLINT - > cb - > getUpgradeInfo ( hero , slot ) ;
if ( ! info . newID . size ( ) ) //already upgraded
return 1 ;
for ( std : : set < std : : pair < int , int > > : : iterator it = info . cost [ 0 ] . begin ( ) ; it ! = info . cost [ 0 ] . end ( ) ; it + + )
if ( LOCPLINT - > cb - > getResourceAmount ( it - > first ) < it - > second * hero - > getAmount ( slot ) )
return 0 ;
return 2 ; //can upgrade
}
2010-01-31 20:41:22 +02:00
void CThievesGuildWindow : : activate ( )
{
2010-02-07 17:06:14 +02:00
CIntObject : : activate ( ) ;
2010-02-15 08:54:57 +02:00
GH . statusbar = statusBar ;
2010-01-31 20:41:22 +02:00
}
void CThievesGuildWindow : : show ( SDL_Surface * to )
{
blitAt ( background , pos . x , pos . y , to ) ;
statusBar - > show ( to ) ;
exitb - > show ( to ) ;
resdatabar - > show ( to ) ;
//showing border around window
if ( screen - > w ! = 800 | | screen - > h ! = 600 )
{
CMessage : : drawBorder ( LOCPLINT - > playerID , to , pos . w + 28 , pos . h + 28 , pos . x - 14 , pos . y - 15 ) ;
}
}
void CThievesGuildWindow : : bexitf ( )
{
GH . popIntTotally ( this ) ;
}
2010-02-01 19:51:33 +02:00
CThievesGuildWindow : : CThievesGuildWindow ( const CGObjectInstance * _owner )
: owner ( _owner )
2010-01-31 20:41:22 +02:00
{
2010-02-07 17:06:14 +02:00
OBJ_CONSTRUCTION_CAPTURING_ALL ;
2010-02-01 19:51:33 +02:00
SThievesGuildInfo tgi ; //info to be displayed
LOCPLINT - > cb - > getThievesGuildInfo ( tgi , owner ) ;
2010-02-07 17:06:14 +02:00
pos = center ( Rect ( 0 , 0 , 800 , 600 ) ) ; // Rect( (conf.cc.resx - 800) / 2, (conf.cc.resy - 600) / 2, 800, 600 );
2010-01-31 20:41:22 +02:00
//loading backround and converting to more bpp form
SDL_Surface * bg = background = BitmapHandler : : loadBitmap ( " TpRank.bmp " , false ) ;
background = newSurface ( bg - > w , bg - > h ) ;
blitAt ( bg , 0 , 0 , background ) ;
SDL_FreeSurface ( bg ) ;
2010-02-07 17:06:14 +02:00
exitb = new AdventureMapButton ( std : : string ( ) , std : : string ( ) , boost : : bind ( & CThievesGuildWindow : : bexitf , this ) , 748 , 556 , " HSBTNS.def " , SDLK_RETURN ) ;
2010-07-09 02:03:27 +03:00
statusBar = new CGStatusBar ( 3 , 555 , " TStatBar.bmp " , 742 ) ;
2010-01-31 20:41:22 +02:00
2010-02-04 20:40:40 +02:00
resdatabar = new CMinorResDataBar ( ) ;
2010-02-06 15:49:14 +02:00
resdatabar - > pos . x + = pos . x - 3 ;
2010-02-04 20:40:40 +02:00
resdatabar - > pos . y + = pos . y ;
static std : : vector < std : : list < ui8 > > SThievesGuildInfo : : * fields [ ] = { & SThievesGuildInfo : : numOfTowns , & SThievesGuildInfo : : numOfHeroes , & SThievesGuildInfo : : gold ,
& SThievesGuildInfo : : woodOre , & SThievesGuildInfo : : mercSulfCrystGems , & SThievesGuildInfo : : obelisks , & SThievesGuildInfo : : artifacts , & SThievesGuildInfo : : army ,
& SThievesGuildInfo : : income } ;
2010-01-31 20:41:22 +02:00
//printing texts & descriptions to background
for ( int g = 0 ; g < 12 ; + + g )
{
int y ;
2010-02-01 19:51:33 +02:00
if ( g = = 9 ) //best hero
2010-01-31 20:41:22 +02:00
{
y = 400 ;
}
2010-02-01 19:51:33 +02:00
else if ( g = = 10 ) //personality
2010-01-31 20:41:22 +02:00
{
y = 460 ;
}
2010-02-01 19:51:33 +02:00
else if ( g = = 11 ) //best monster
2010-01-31 20:41:22 +02:00
{
y = 510 ;
}
else
{
y = 52 + 32 * g ;
}
2010-02-01 07:45:44 +02:00
printAtMiddle ( CGI - > generaltexth - > jktexts [ 24 + g ] , 135 , y , FONT_MEDIUM , tytulowy , background ) ;
2010-01-31 20:41:22 +02:00
}
2010-02-01 19:51:33 +02:00
CDefHandler * strips = CDefHandler : : giveDef ( " PRSTRIPS.DEF " ) ;
2010-06-24 15:10:45 +03:00
static const std : : string colorToBox [ ] = { " PRRED.BMP " , " PRBLUE.BMP " , " PRTAN.BMP " , " PRGREEN.BMP " , " PRORANGE.BMP " , " PRPURPLE.BMP " , " PRTEAL.BMP " , " PRROSE.bmp " } ;
2010-02-01 19:51:33 +02:00
for ( int g = 0 ; g < tgi . playerColors . size ( ) ; + + g )
2010-01-31 20:41:22 +02:00
{
2010-02-01 19:51:33 +02:00
if ( g > 0 )
{
blitAt ( strips - > ourImages [ g - 1 ] . bitmap , 250 + 66 * g , 7 , background ) ;
}
2010-02-01 07:45:44 +02:00
printAtMiddle ( CGI - > generaltexth - > jktexts [ 16 + g ] , 283 + 66 * g , 20 , FONT_MEDIUM , tytulowy , background ) ;
2010-02-01 19:51:33 +02:00
SDL_Surface * box = BitmapHandler : : loadBitmap ( colorToBox [ tgi . playerColors [ g ] ] ) ;
blitAt ( box , 253 + 66 * g , 334 , background ) ;
SDL_FreeSurface ( box ) ;
2010-01-31 20:41:22 +02:00
}
2010-02-01 19:51:33 +02:00
delete strips ;
2010-02-04 20:40:40 +02:00
CDefHandler * flagPictures = CDefHandler : : giveDef ( " itgflags.def " ) ;
//printing flags
for ( int g = 0 ; g < ARRAY_COUNT ( fields ) ; + + g ) //by lines
{
for ( int b = 0 ; b < ( tgi . * fields [ g ] ) . size ( ) ; + + b ) //by places (1st, 2nd, ...)
{
std : : list < ui8 > players = ( tgi . * fields [ g ] ) [ b ] ; //get players with this place in this line
//std::sort(players.begin(), players.end());
int counter = 0 ;
for ( std : : list < ui8 > : : const_iterator it = players . begin ( ) ; it ! = players . end ( ) ; + + it )
{
int xpos = 259 + 66 * b + 12 * ( counter % 4 ) + 6 * ( counter / 4 ) ;
int ypos = 41 + 32 * g + 4 * ( counter / 4 ) ;
blitAt ( flagPictures - > ourImages [ * it ] . bitmap , xpos , ypos , background ) ;
counter + + ;
}
}
}
delete flagPictures ;
flagPictures = NULL ;
//printing best hero
int counter = 0 ;
2010-02-07 17:06:14 +02:00
for ( std : : map < ui8 , InfoAboutHero > : : const_iterator it = tgi . colorToBestHero . begin ( ) ; it ! = tgi . colorToBestHero . end ( ) ; + + it )
2010-02-04 20:40:40 +02:00
{
2010-02-28 14:39:38 +02:00
if ( it - > second . portrait > = 0 )
blitAt ( graphics - > portraitSmall [ it - > second . portrait ] , 260 + 66 * counter , 360 , background ) ;
2010-02-04 20:40:40 +02:00
counter + + ;
2010-02-07 19:56:06 +02:00
//printing stats
if ( it - > second . details )
{
for ( int i = 0 ; i < it - > second . details - > primskills . size ( ) ; + + i )
{
printAt ( CGI - > generaltexth - > allTexts [ 380 + i ] , 191 + 66 * counter , 394 + 11 * i , FONT_SMALL , zwykly , background ) ;
std : : ostringstream skill ;
skill < < it - > second . details - > primskills [ i ] ;
printTo ( skill . str ( ) , 244 + 66 * counter , 410 + 11 * i , FONT_SMALL , zwykly , background ) ;
}
}
2010-02-04 20:40:40 +02:00
}
2010-02-06 15:49:14 +02:00
//printing best creature
counter = 0 ;
for ( std : : map < ui8 , si32 > : : const_iterator it = tgi . bestCreature . begin ( ) ; it ! = tgi . bestCreature . end ( ) ; + + it )
{
2010-02-28 14:39:38 +02:00
if ( it - > second > = 0 )
blitAt ( graphics - > bigImgs [ it - > second ] , 255 + 66 * counter , 479 , background ) ;
2010-02-06 15:49:14 +02:00
counter + + ;
}
2010-02-07 19:56:06 +02:00
//printing personality
counter = 0 ;
for ( std : : map < ui8 , si8 > : : const_iterator it = tgi . personality . begin ( ) ; it ! = tgi . personality . end ( ) ; + + it )
{
int toPrint = 0 ;
if ( it - > second = = - 1 )
{
toPrint = 172 ;
}
else
{
toPrint = 168 + it - > second ;
}
printAtMiddle ( CGI - > generaltexth - > arraytxt [ toPrint ] , 283 + 66 * counter , 459 , FONT_SMALL , zwykly , background ) ;
counter + + ;
}
2010-01-31 20:41:22 +02:00
}
CThievesGuildWindow : : ~ CThievesGuildWindow ( )
{
SDL_FreeSurface ( background ) ;
2010-02-07 17:06:14 +02:00
// delete exitb;
// delete statusBar;
// delete resdatabar;
2010-01-31 20:41:22 +02:00
}
2010-07-13 08:25:40 +03:00
void MoraleLuckBox : : set ( const CBonusSystemNode * hero )
{
const int textId [ ] = { 62 , 88 } ; //eg %s \n\n\n {Current Luck Modifiers:}
const int noneTxtId [ ] = { 77 , 108 } ; //I don't know why we have separate "none" texts for luck and morale...
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 [ ] = { SComponent : : luck , SComponent : : morale } ;
const int hoverTextBase [ ] = { 7 , 4 } ;
const Bonus : : BonusType bonusType [ ] = { Bonus : : LUCK , Bonus : : MORALE } ;
int ( CBonusSystemNode : : * getValue [ ] ) ( ) const = { & CBonusSystemNode : : LuckVal , & CBonusSystemNode : : MoraleVal } ;
2010-01-31 20:41:22 +02:00
2010-07-13 08:25:40 +03:00
int mrlt = - 9 ;
TModDescr mrl ;
hero - > getModifiersWDescr ( mrl , bonusType [ morale ] ) ;
bonusValue = ( hero - > * getValue [ morale ] ) ( ) ;
mrlt = ( bonusValue > 0 ) - ( bonusValue < 0 ) ; //signum: -1 - bad luck / morale, 0 - neutral, 1 - good
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 ] ) ;
if ( ! mrl . size ( ) )
text + = CGI - > generaltexth - > arraytxt [ noneTxtId [ morale ] ] ;
else
for ( int it = 0 ; it < mrl . size ( ) ; it + + )
text + = " \n " + mrl [ it ] . second ;
}
2010-01-31 20:41:22 +02:00
2010-07-13 08:25:40 +03:00
void MoraleLuckBox : : showAll ( SDL_Surface * to )
{
CDefEssential * def = morale ? graphics - > morale42 : graphics - > luck42 ;
blitAt ( def - > ourImages [ bonusValue ] . bitmap , pos , to ) ;
}
2010-01-31 20:41:22 +02:00
2010-07-13 08:25:40 +03:00
MoraleLuckBox : : MoraleLuckBox ( bool Morale )
: morale ( Morale )
{
bonusValue = 0 ;
}
2010-01-31 20:41:22 +02:00
2010-07-13 08:25:40 +03:00
MoraleLuckBox : : ~ MoraleLuckBox ( )
2010-02-07 17:06:14 +02:00
{
2010-02-13 23:45:46 +02:00
}
2010-02-15 08:54:57 +02:00
void CLabel : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
2010-07-06 05:10:26 +03:00
std : : string * hlpText = NULL ; //if NULL, text field will be used
if ( ignoreLeadingWhitespace )
{
hlpText = new std : : string ( text ) ;
boost : : trim_left ( * hlpText ) ;
}
std : : string & toPrint = hlpText ? * hlpText : text ;
if ( ! toPrint . length ( ) )
2010-02-15 08:54:57 +02:00
return ;
static void ( * printer [ 3 ] ) ( const std : : string & , int , int , EFonts , SDL_Color , SDL_Surface * , bool ) = { & CSDL_Ext : : printAt , & CSDL_Ext : : printAtMiddle , & CSDL_Ext : : printTo } ; //array of printing functions
2010-07-06 05:10:26 +03:00
printer [ alignment ] ( toPrint , pos . x + textOffset . x , pos . y + textOffset . y , font , color , to , false ) ;
2010-02-15 08:54:57 +02:00
}
CLabel : : CLabel ( int x , int y , EFonts Font /*= FONT_SMALL*/ , EAlignment Align , const SDL_Color & Color /*= zwykly*/ , const std : : string & Text /*= ""*/ )
: font ( Font ) , color ( Color ) , text ( Text ) , alignment ( Align )
{
autoRedraw = true ;
pos . x + = x ;
pos . y + = y ;
pos . w = pos . h = 0 ;
bg = NULL ;
}
void CLabel : : setTxt ( const std : : string & Txt )
{
text = Txt ;
if ( autoRedraw )
{
if ( bg | | ! parent )
redraw ( ) ;
else
parent - > redraw ( ) ;
}
}
2010-07-06 05:10:26 +03:00
CTextBox : : CTextBox ( std : : string Text , const Rect & rect , int SliderStyle , EFonts Font /*= FONT_SMALL*/ , EAlignment Align /*= TOPLEFT*/ , const SDL_Color & Color /*= zwykly*/ )
: CLabel ( rect . x , rect . y , Font , Align , Color , Text ) , slider ( NULL ) , sliderStyle ( SliderStyle )
{
redrawParentOnScrolling = false ;
autoRedraw = false ;
pos . h = rect . h ;
pos . w = rect . w ;
assert ( Align = = TOPLEFT | | Align = = CENTER ) ; //TODO: support for other alignments
assert ( pos . w > = 80 ) ; //we need some space
setTxt ( Text ) ;
}
void CTextBox : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
const Font & f = * graphics - > fonts [ font ] ;
int dy = f . height ; //line height
int base_y = pos . y ;
if ( alignment = = CENTER )
2010-07-06 05:40:42 +03:00
base_y + = std : : max ( ( pos . h - maxH ) / 2 , 0 ) ;
2010-07-06 05:10:26 +03:00
int howManyLinesToPrint = slider ? slider - > capacity : lines . size ( ) ;
int firstLineToPrint = slider ? slider - > value : 0 ;
for ( int i = 0 ; i < howManyLinesToPrint ; i + + )
{
const std : : string & line = lines [ i + firstLineToPrint ] ;
2010-07-13 08:25:40 +03:00
if ( ! line . size ( ) ) continue ;
2010-07-06 05:10:26 +03:00
int x = pos . x ;
if ( alignment = = CENTER )
2010-07-06 05:40:42 +03:00
{
2010-07-06 05:10:26 +03:00
x + = ( pos . w - f . getWidth ( line . c_str ( ) ) ) / 2 ;
2010-07-06 05:40:42 +03:00
if ( slider )
x - = slider - > pos . w / 2 + 5 ;
}
2010-07-06 05:10:26 +03:00
2010-07-18 01:53:04 +03:00
if ( line [ 0 ] = = ' { ' & & line [ line . size ( ) - 1 ] = = ' } ' )
2010-07-13 08:25:40 +03:00
printAt ( line , x , base_y + i * dy , font , tytulowy , to ) ;
else
printAt ( line , x , base_y + i * dy , font , color , to ) ;
2010-07-06 05:10:26 +03:00
}
}
void CTextBox : : setTxt ( const std : : string & Txt )
{
recalculateLines ( Txt ) ;
CLabel : : setTxt ( Txt ) ;
}
void CTextBox : : sliderMoved ( int to )
{
2010-07-06 05:40:42 +03:00
if ( ! slider )
return ;
2010-07-06 05:10:26 +03:00
if ( redrawParentOnScrolling )
parent - > redraw ( ) ;
redraw ( ) ;
}
void CTextBox : : setBounds ( int limitW , int limitH )
{
pos . h = limitH ;
pos . w = limitW ;
recalculateLines ( text ) ;
}
void CTextBox : : recalculateLines ( const std : : string & Txt )
{
delChildNUll ( slider , true ) ;
lines . clear ( ) ;
const Font & f = * graphics - > fonts [ font ] ;
int lineHeight = f . height ;
int lineCapacity = pos . h / lineHeight ;
lines = CMessage : : breakText ( Txt , pos . w , font ) ;
if ( lines . size ( ) > lineCapacity ) //we need to add a slider
{
lines = CMessage : : breakText ( Txt , pos . w - 32 - 10 , font ) ;
OBJ_CONSTRUCTION_CAPTURING_ALL ;
slider = new CSlider ( pos . w - 32 , 0 , pos . h , boost : : bind ( & CTextBox : : sliderMoved , this , _1 ) , lineCapacity , lines . size ( ) , 0 , false , sliderStyle ) ;
if ( active )
slider - > activate ( ) ;
}
maxH = lineHeight * lines . size ( ) ;
maxW = 0 ;
BOOST_FOREACH ( const std : : string & line , lines )
amax ( maxW , f . getWidth ( line . c_str ( ) ) ) ;
}
2010-02-15 08:54:57 +02:00
void CGStatusBar : : print ( const std : : string & Text )
{
setTxt ( Text ) ;
}
void CGStatusBar : : clear ( )
{
setTxt ( " " ) ;
}
std : : string CGStatusBar : : getCurrent ( )
{
return text ;
}
CGStatusBar : : CGStatusBar ( int x , int y , EFonts Font /*= FONT_SMALL*/ , EAlignment Align , const SDL_Color & Color /*= zwykly*/ , const std : : string & Text /*= ""*/ )
: CLabel ( x , y , Font , Align , Color , Text )
{
init ( ) ;
}
2010-02-15 13:37:47 +02:00
CGStatusBar : : CGStatusBar ( CPicture * BG , EFonts Font /*= FONT_SMALL*/ , EAlignment Align /*= CENTER*/ , const SDL_Color & Color /*= zwykly*/ )
2010-02-15 08:54:57 +02:00
: CLabel ( BG - > pos . x , BG - > pos . y , Font , Align , Color , " " )
{
init ( ) ;
bg = BG ;
2010-07-06 05:10:26 +03:00
moveChild ( bg , bg - > parent , this ) ;
2010-02-15 08:54:57 +02:00
pos = bg - > pos ;
2010-07-09 02:03:27 +03:00
calcOffset ( ) ;
}
2010-02-15 08:54:57 +02:00
2010-07-09 02:03:27 +03:00
CGStatusBar : : CGStatusBar ( int x , int y , std : : string name /*="ADROLLVR.bmp"*/ , int maxw /*=-1*/ )
: CLabel ( x , y , FONT_SMALL , CENTER )
{
OBJ_CONSTRUCTION_CAPTURING_ALL ;
init ( ) ;
bg = new CPicture ( name ) ;
pos = bg - > pos ;
if ( maxw < pos . w )
2010-02-15 08:54:57 +02:00
{
2010-07-09 02:03:27 +03:00
amin ( pos . w , maxw ) ;
bg - > srcRect = new Rect ( 0 , 0 , maxw , pos . h ) ;
2010-02-15 08:54:57 +02:00
}
2010-07-09 02:03:27 +03:00
calcOffset ( ) ;
2010-02-15 08:54:57 +02:00
}
CGStatusBar : : ~ CGStatusBar ( )
{
GH . statusbar = oldStatusBar ;
}
void CGStatusBar : : show ( SDL_Surface * to )
{
}
void CGStatusBar : : init ( )
{
oldStatusBar = GH . statusbar ;
GH . statusbar = this ;
}
2010-07-09 02:03:27 +03:00
void CGStatusBar : : calcOffset ( )
{
switch ( alignment )
{
case CENTER :
textOffset = Point ( pos . w / 2 , pos . h / 2 ) ;
break ;
case BOTTOMRIGHT :
textOffset = Point ( pos . w , pos . h ) ;
break ;
}
}
2010-02-15 08:54:57 +02:00
CTextInput : : CTextInput ( const Rect & Pos , const Point & bgOffset , const std : : string & bgName , const CFunctionList < void ( const std : : string & ) > & CB )
2010-02-16 18:35:24 +02:00
: cb ( CB )
2010-02-15 08:54:57 +02:00
{
2010-02-16 18:35:24 +02:00
focus = false ;
2010-02-15 08:54:57 +02:00
pos + = Pos ;
OBJ_CONSTRUCTION ;
bg = new CPicture ( bgName , bgOffset . x , bgOffset . y ) ;
used = LCLICK | KEYBOARD ;
2010-02-15 13:37:47 +02:00
giveFocus ( ) ;
2010-02-15 08:54:57 +02:00
}
CTextInput : : CTextInput ( const Rect & Pos , SDL_Surface * srf )
{
2010-02-16 18:35:24 +02:00
focus = false ;
2010-02-15 08:54:57 +02:00
pos + = Pos ;
OBJ_CONSTRUCTION ;
bg = new CPicture ( Pos , 0 , true ) ;
Rect hlp = Pos ;
SDL_BlitSurface ( srf , & hlp , * bg , NULL ) ;
pos . w = bg - > pos . w ;
pos . h = bg - > pos . h ;
bg - > pos = pos ;
used = LCLICK | KEYBOARD ;
2010-02-15 13:37:47 +02:00
giveFocus ( ) ;
2010-02-15 08:54:57 +02:00
}
void CTextInput : : showAll ( SDL_Surface * to )
{
CIntObject : : showAll ( to ) ;
2010-02-15 13:37:47 +02:00
const std : : string toPrint = focus ? text + " _ " : text ;
CSDL_Ext : : printAt ( toPrint , pos . x , pos . y , FONT_SMALL , zwykly , to ) ;
2010-02-15 08:54:57 +02:00
}
void CTextInput : : clickLeft ( tribool down , bool previousState )
{
2010-02-15 13:37:47 +02:00
if ( down & & ! focus )
giveFocus ( ) ;
2010-02-15 08:54:57 +02:00
}
void CTextInput : : keyPressed ( const SDL_KeyboardEvent & key )
{
2010-02-16 18:35:24 +02:00
if ( ! focus | | key . state ! = SDL_PRESSED )
return ;
if ( key . keysym . sym = = SDLK_TAB )
{
moveFocus ( ) ;
2010-07-21 13:09:29 +03:00
GH . breakEventHandling ( ) ;
2010-02-16 18:35:24 +02:00
return ;
}
2010-02-15 08:54:57 +02:00
switch ( key . keysym . sym )
{
case SDLK_BACKSPACE :
if ( text . size ( ) )
text . resize ( text . size ( ) - 1 ) ;
break ;
default :
char c = key . keysym . unicode ; //TODO 16-/>8
static const std : : string forbiddenChars = " <>: \" / \\ |?* " ; //if we are entering a filename, some special characters won't be allowed
if ( ! vstd : : contains ( forbiddenChars , c ) & & std : : isprint ( c ) )
text + = c ;
break ;
}
redraw ( ) ;
cb ( text ) ;
}
void CTextInput : : setText ( const std : : string & nText , bool callCb )
{
text = nText ;
redraw ( ) ;
if ( callCb )
cb ( text ) ;
}
2010-02-15 13:37:47 +02:00
CTextInput : : ~ CTextInput ( )
2010-02-16 18:35:24 +02:00
{
}
CFocusable : : CFocusable ( )
{
focusables . push_back ( this ) ;
}
CFocusable : : ~ CFocusable ( )
2010-02-15 13:37:47 +02:00
{
if ( inputWithFocus = = this )
inputWithFocus = NULL ;
2010-02-16 18:35:24 +02:00
focusables - = this ;
}
void CFocusable : : giveFocus ( )
2010-02-15 13:37:47 +02:00
{
if ( inputWithFocus )
{
inputWithFocus - > focus = false ;
inputWithFocus - > redraw ( ) ;
}
focus = true ;
inputWithFocus = this ;
redraw ( ) ;
}
2010-02-16 18:35:24 +02:00
void CFocusable : : moveFocus ( )
{
std : : list < CFocusable * > : : iterator i = vstd : : find ( focusables , this ) ,
ourIt = i ;
for ( i + + ; i ! = ourIt ; i + + )
{
if ( i = = focusables . end ( ) )
i = focusables . begin ( ) ;
if ( ( * i ) - > active )
{
( * i ) - > giveFocus ( ) ;
break ; ;
}
}
2010-07-06 05:10:26 +03:00
}