2009-02-20 15:06:20 +02:00
# ifndef __CPLAYERINTERFACE_H__
# define __CPLAYERINTERFACE_H__
# include "global.h"
# include "CGameInterface.h"
# include "SDL_framerate.h"
# include <map>
# include <list>
2009-03-21 19:22:16 +02:00
# include <algorithm>
2009-02-20 15:06:20 +02:00
# ifdef __GNUC__
# define sprintf_s snprintf
# endif
2009-03-21 19:22:16 +02:00
# ifdef max
# undef max
# endif
# ifdef min
# undef min
# endif
2009-04-15 17:03:31 +03:00
/*
* CPlayerInterface . h , 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
*
*/
2009-02-20 15:06:20 +02:00
class CDefEssential ;
class AdventureMapButton ;
class CHighlightableButtonsGroup ;
class CDefHandler ;
struct HeroMoveDetails ;
class CDefEssential ;
class CGHeroInstance ;
class CAdvMapInt ;
class CCastleInterface ;
class CBattleInterface ;
class CStack ;
class SComponent ;
class CCreature ;
struct SDL_Surface ;
struct CPath ;
class CCreatureAnimation ;
class CSelectableComponent ;
class CCreatureSet ;
class CGObjectInstance ;
class CSlider ;
struct UpgradeInfo ;
template < typename T > struct CondSh ;
2009-04-03 18:55:26 +03:00
class CInGameConsole ;
2009-04-14 15:47:09 +03:00
class CGarrisonInt ;
2009-02-20 15:06:20 +02:00
namespace boost
{
class mutex ;
class recursive_mutex ;
} ;
struct Point
{
int x , y ;
//constructors
Point ( ) { } ;
Point ( int X , int Y )
: x ( X ) , y ( Y )
{ } ;
Point ( const int3 & a )
: x ( a . x ) , y ( a . y )
{ }
2009-03-22 18:04:46 +02:00
Point operator + ( const Point & b ) const
2009-02-20 15:06:20 +02:00
{
return Point ( x + b . x , y + b . y ) ;
}
2009-02-20 21:19:52 +02:00
Point & operator + = ( const Point & b )
{
x + = b . x ;
y + = b . y ;
return * this ;
}
2009-03-22 18:04:46 +02:00
Point operator - ( const Point & b ) const
2009-02-20 15:06:20 +02:00
{
return Point ( x + b . x , y + b . y ) ;
}
2009-02-20 21:19:52 +02:00
Point & operator - = ( const Point & b )
{
x - = b . x ;
y - = b . y ;
return * this ;
}
2009-03-22 18:04:46 +02:00
bool operator < ( const Point & b ) const //product order
2009-02-20 15:06:20 +02:00
{
return x < b . x & & y < b . y ;
}
} ;
struct Rect : public SDL_Rect
{
2009-03-22 18:04:46 +02:00
Rect ( ) //default c-tor
2009-02-20 15:06:20 +02:00
{
x = y = w = h = - 1 ;
}
2009-03-22 18:04:46 +02:00
Rect ( int X , int Y , int W , int H ) //c-tor
2009-02-20 15:06:20 +02:00
{
x = X ;
y = Y ;
w = W ;
h = H ;
2009-03-21 19:22:16 +02:00
}
2009-03-22 18:04:46 +02:00
Rect ( const SDL_Rect & r ) //c-tor
2009-02-20 15:06:20 +02:00
{
x = r . x ;
y = r . y ;
w = r . w ;
h = r . h ;
2009-03-21 19:22:16 +02:00
}
2009-03-22 18:04:46 +02:00
bool isIn ( int qx , int qy ) const //determines if given point lies inside rect
2009-02-11 19:03:30 +02:00
{
if ( qx > x & & qx < x + w & & qy > y & & qy < y + h )
return true ;
2009-02-20 15:06:20 +02:00
return false ;
}
2009-03-22 18:04:46 +02:00
bool isIn ( const Point & q ) const //determines if given point lies inside rect
2009-02-20 15:06:20 +02:00
{
return isIn ( q . x , q . y ) ;
}
2009-03-22 18:04:46 +02:00
Point topLeft ( ) const //top left corner of this rect
2009-02-20 15:06:20 +02:00
{
return Point ( x , y ) ;
}
2009-03-22 18:04:46 +02:00
Point topRight ( ) const //top right corner of this rect
2009-03-21 19:22:16 +02:00
{
return Point ( x + w , y ) ;
}
2009-03-22 18:04:46 +02:00
Point bottomLeft ( ) const //bottom left corner of this rect
2009-03-21 19:22:16 +02:00
{
return Point ( x , y + h ) ;
}
2009-03-22 18:04:46 +02:00
Point bottomRight ( ) const //bottom right corner of this rect
2009-02-20 15:06:20 +02:00
{
return Point ( x + w , y + h ) ;
}
2009-03-22 18:04:46 +02:00
Rect operator + ( const Rect & p ) const //moves this rect by p's rect position
2009-02-20 15:06:20 +02:00
{
return Rect ( x + p . x , y + p . y , w , h ) ;
}
2009-03-22 18:04:46 +02:00
Rect operator + ( const Point & p ) const //moves this rect by p's point position
2009-02-20 15:06:20 +02:00
{
return Rect ( x + p . x , y + p . y , w , h ) ;
}
2009-03-22 18:04:46 +02:00
Rect & operator = ( const Rect & p ) //assignment operator
{
x = p . x ;
y = p . y ;
w = p . w ;
h = p . h ;
return * this ;
}
Rect & operator + = ( const Rect & p ) //works as operator+
2009-02-20 15:06:20 +02:00
{
x + = p . x ;
y + = p . y ;
return * this ;
}
2009-03-21 19:22:16 +02:00
Rect operator & ( const Rect & p ) const //rect intersection
{
2009-03-22 18:04:46 +02:00
bool intersect = true ;
if ( p . topLeft ( ) . y < y & & p . bottomLeft ( ) . y < y ) //rect p is above *this
{
intersect = false ;
}
else if ( p . topLeft ( ) . y > y + h & & p . bottomLeft ( ) . y > y + h ) //rect p is below *this
{
intersect = false ;
}
else if ( p . topLeft ( ) . x > x + w & & p . topRight ( ) . x > x + w ) //rect p is on the right hand side of this
{
intersect = false ;
}
else if ( p . topLeft ( ) . x < x & & p . topRight ( ) . x < x ) //rect p is on the left hand side of this
{
intersect = false ;
}
2009-03-21 19:22:16 +02:00
if ( intersect )
{
Rect ret ;
ret . x = std : : max ( this - > x , p . x ) ;
ret . y = std : : max ( this - > y , p . y ) ;
Point bR ; //bottomRight point of returned rect
bR . x = std : : min ( this - > w + this - > x , p . w + p . x ) ;
bR . y = std : : min ( this - > h + this - > y , p . h + p . y ) ;
ret . w = bR . x - ret . x ;
ret . h = bR . y - ret . y ;
return ret ;
}
else
{
return Rect ( ) ;
}
}
2009-02-20 15:06:20 +02:00
} ;
class IShowable
{
public :
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) = 0 ;
virtual void showAll ( SDL_Surface * to )
{
show ( to ) ;
}
2009-05-07 20:20:41 +03:00
virtual ~ IShowable ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class IStatusBar
{
public :
virtual ~ IStatusBar ( ) { } ; //d-tor
virtual void print ( const std : : string & text ) = 0 ; //prints text and refreshes statusbar
virtual void clear ( ) = 0 ; //clears statusbar and refreshes
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) = 0 ; //shows statusbar (with current text)
2009-03-22 18:04:46 +02:00
virtual std : : string getCurrent ( ) = 0 ; //returns currently displayed text
2009-02-20 15:06:20 +02:00
} ;
class IActivable
{
public :
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
2009-05-07 20:20:41 +03:00
virtual ~ IActivable ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class IShowActivable : public IShowable , public IActivable
{
public :
2009-04-14 15:47:09 +03:00
enum { WITH_GARRISON = 1 } ;
int type ; //bin flags using etype
IShowActivable ( ) ;
2009-05-07 20:20:41 +03:00
virtual ~ IShowActivable ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CWindowWithGarrison : public IShowActivable
{
public :
CGarrisonInt * garr ;
CWindowWithGarrison ( ) ;
} ;
2009-02-20 15:06:20 +02:00
class CMainInterface : public IShowActivable
{
public :
IShowActivable * subInt ;
} ;
class CIntObject //interface object
{
public :
2009-03-22 18:04:46 +02:00
Rect pos ; //position of object on the screen
int ID ; //object uniqe ID, rarely (if at all) used
2009-02-20 15:06:20 +02:00
//virtual bool isIn(int x, int y)
//{
// return pos.isIn(x,y);
//}
2009-03-22 18:04:46 +02:00
virtual ~ CIntObject ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CSimpleWindow : public IShowActivable , public virtual CIntObject
2009-02-20 15:06:20 +02:00
{
public :
2009-05-07 20:20:41 +03:00
SDL_Surface * bitmap ; //background
2009-03-22 18:04:46 +02:00
CIntObject * owner ; //who made this window
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
CSimpleWindow ( ) : bitmap ( NULL ) , owner ( NULL ) { } ; //c-tor
virtual ~ CSimpleWindow ( ) ; //d-tor
2009-04-14 15:47:09 +03:00
void activate ( ) { } ;
void deactivate ( ) { } ;
2009-02-20 15:06:20 +02:00
} ;
class CButtonBase : public virtual CIntObject , public IShowable , public IActivable //basic buttton class
{
public :
2009-03-22 18:04:46 +02:00
int bitmapOffset ; //TODO: comment me
int type ; //advmapbutton=2 //TODO: comment me
bool abs ; //TODO: comment me
bool active ; //if true, this button is active and can be pressed
bool notFreeButton ; //TODO: comment me
2009-02-20 15:06:20 +02:00
CIntObject * ourObj ; // "owner"
2009-03-22 18:04:46 +02:00
int state ; //TODO: comment me
std : : vector < std : : vector < SDL_Surface * > > imgs ; //images for this button
int curimg ; //curently displayed image from imgs
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
2009-03-22 18:04:46 +02:00
CButtonBase ( ) ; //c-tor
virtual ~ CButtonBase ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class ClickableL : public virtual CIntObject //for left-clicks
{
public :
2009-03-22 18:04:46 +02:00
bool pressedL ; //for determining if object is L-pressed
ClickableL ( ) ; //c-tor
2009-05-07 20:20:41 +03:00
virtual ~ ClickableL ( ) ; //{};//d-tor
2009-02-20 15:06:20 +02:00
virtual void clickLeft ( boost : : logic : : tribool down ) = 0 ;
virtual void activate ( ) ;
virtual void deactivate ( ) ;
} ;
class ClickableR : public virtual CIntObject //for right-clicks
{
public :
2009-03-22 18:04:46 +02:00
bool pressedR ; //for determining if object is R-pressed
ClickableR ( ) ; //c-tor
2009-05-07 20:20:41 +03:00
virtual ~ ClickableR ( ) ; //{};//d-tor
2009-02-20 15:06:20 +02:00
virtual void clickRight ( boost : : logic : : tribool down ) = 0 ;
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
} ;
class Hoverable : public virtual CIntObject
{
public :
2009-04-03 18:55:26 +03:00
Hoverable ( ) : hovered ( false ) { } //c-tor
2009-03-22 18:04:46 +02:00
virtual ~ Hoverable ( ) ; //{}; //d-tor
bool hovered ; //for determining if object is hovered
2009-02-20 15:06:20 +02:00
virtual void hover ( bool on ) = 0 ;
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
} ;
class KeyInterested : public virtual CIntObject
2009-04-03 18:55:26 +03:00
{
2009-02-20 15:06:20 +02:00
public :
2009-04-03 18:55:26 +03:00
bool captureAllKeys ; //if true, only this object should get info about pressed keys
KeyInterested ( ) : captureAllKeys ( false ) { }
2009-05-07 20:20:41 +03:00
virtual ~ KeyInterested ( ) ; //{};//d-tor
2009-02-20 15:06:20 +02:00
virtual void keyPressed ( const SDL_KeyboardEvent & key ) = 0 ;
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
} ;
2009-05-07 20:20:41 +03:00
//class for binding keys to left mouse button clicks
//classes wanting use it should have it as one of their base classes
2009-02-20 15:06:20 +02:00
class KeyShortcut : public KeyInterested , public ClickableL
{
public :
std : : set < int > assignedKeys ;
2009-03-22 18:04:46 +02:00
KeyShortcut ( ) { } ; //c-tor
KeyShortcut ( int key ) { assignedKeys . insert ( key ) ; } ; //c-tor
KeyShortcut ( std : : set < int > Keys ) : assignedKeys ( Keys ) { } ; //c-tor
virtual void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
2009-02-20 15:06:20 +02:00
} ;
class MotionInterested : public virtual CIntObject
{
public :
bool strongInterest ; //if true - report all mouse movements, if not - only when hovered
MotionInterested ( ) { strongInterest = false ; } ;
2009-05-07 20:20:41 +03:00
virtual ~ MotionInterested ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
virtual void mouseMoved ( const SDL_MouseMotionEvent & sEvent ) = 0 ;
virtual void activate ( ) = 0 ;
virtual void deactivate ( ) = 0 ;
} ;
class TimeInterested : public virtual CIntObject
{
public :
2009-03-22 18:04:46 +02:00
virtual ~ TimeInterested ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
int toNextTick ;
virtual void tick ( ) = 0 ;
virtual void activate ( ) ;
virtual void deactivate ( ) ;
} ;
2009-04-03 18:55:26 +03:00
2009-02-20 15:06:20 +02:00
class CInfoWindow : public CSimpleWindow //text + comp. + ok button
{ //window able to delete its components when closed
public :
bool delComps ; //whether comps will be deleted
std : : vector < AdventureMapButton * > buttons ;
std : : vector < SComponent * > components ;
virtual void close ( ) ;
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void deactivate ( ) ;
2009-05-01 19:14:29 +03:00
CInfoWindow ( std : : string text , int player , int charperline , const std : : vector < SComponent * > & comps , std : : vector < std : : pair < std : : string , CFunctionList < void ( ) > > > & Buttons , bool delComps ) ; //c-tor
2009-03-22 18:04:46 +02:00
CInfoWindow ( ) ; //c-tor
~ CInfoWindow ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class CSelWindow : public CInfoWindow //component selection window
2009-03-22 18:04:46 +02:00
{ //warning - this window deletes its components by closing!
2009-02-20 15:06:20 +02:00
public :
void selectionChange ( unsigned to ) ;
2009-04-11 04:32:50 +03:00
void madeChoice ( ) ; //looks for selected component and calls callback
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 ) ; //c-tor
2009-03-22 18:04:46 +02:00
CSelWindow ( ) { } ; //c-tor
//notification - this class inherits important destructor from CInfoWindow
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CRClickPopup : public IShowActivable , public ClickableR //popup displayed on R-click
2009-02-20 15:06:20 +02:00
{
public :
virtual void activate ( ) ;
virtual void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
virtual void close ( ) ;
2009-02-20 15:06:20 +02:00
void clickRight ( boost : : logic : : tribool down ) ;
2009-03-22 18:04:46 +02:00
virtual ~ CRClickPopup ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CRClickPopupInt : public CRClickPopup //popup displayed on R-click
{
public :
IShowActivable * inner ;
bool delInner ;
void show ( SDL_Surface * to ) ;
2009-05-07 20:20:41 +03:00
CRClickPopupInt ( IShowActivable * our , bool deleteInt ) ; //c-tor
2009-04-14 15:47:09 +03:00
virtual ~ CRClickPopupInt ( ) ; //d-tor
} ;
2009-02-20 15:06:20 +02:00
class CInfoPopup : public CRClickPopup
{
public :
2009-03-22 18:04:46 +02:00
bool free ; //TODO: comment me
SDL_Surface * bitmap ; //popup background
CInfoPopup ( SDL_Surface * Bitmap , int x , int y , bool Free = false ) ; //c-tor
2009-02-20 15:06:20 +02:00
void close ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
CInfoPopup ( ) { free = false ; bitmap = NULL ; } //default c-tor
~ CInfoPopup ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
2009-03-22 18:04:46 +02:00
class SComponent : public ClickableR //common popup window component
2009-02-20 15:06:20 +02:00
{
public :
enum Etype
{
primskill , secskill , resource , creature , artifact , experience , secskill44 , spell , morale , luck
2009-03-22 18:04:46 +02:00
} type ; //component type
int subtype ; //TODO: comment me
int val ; //TODO: comment me
2009-02-20 15:06:20 +02:00
std : : string description ; //r-click
2009-03-22 18:04:46 +02:00
std : : string subtitle ; //TODO: comment me
2009-02-20 15:06:20 +02:00
void init ( Etype Type , int Subtype , int Val ) ;
2009-03-22 18:04:46 +02:00
SComponent ( Etype Type , int Subtype , int Val ) ; //c-tor
SComponent ( const Component & c ) ; //c-tor
SComponent ( ) { } ; //c-tor
virtual ~ SComponent ( ) { } ; //d-tor
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
void clickRight ( boost : : logic : : tribool down ) ; //call-in
2009-02-20 15:06:20 +02:00
virtual SDL_Surface * getImg ( ) ;
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
virtual void activate ( ) ;
virtual void deactivate ( ) ;
} ;
class CCustomImgComponent : public SComponent
{
public :
2009-03-22 18:04:46 +02:00
SDL_Surface * bmp ; //our image
2009-04-14 13:46:42 +03:00
bool free ; //should surface be freed on delete
2009-02-20 15:06:20 +02:00
SDL_Surface * getImg ( ) ;
2009-03-22 18:04:46 +02:00
CCustomImgComponent ( Etype Type , int Subtype , int Val , SDL_Surface * sur , bool freeSur ) ; //c-tor
~ CCustomImgComponent ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class CSelectableComponent : public SComponent , public KeyShortcut
{
public :
2009-03-22 18:04:46 +02:00
bool selected ; //if true, this component is selected
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
bool customB ; //TODO: comment me
2009-02-20 15:06:20 +02:00
SDL_Surface * border , * myBitmap ;
2009-03-22 18:04:46 +02:00
boost : : function < void ( ) > onSelect ; //function called on selection change
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
void clickLeft ( boost : : logic : : tribool down ) ; //call-in
2009-02-20 15:06:20 +02:00
void init ( SDL_Surface * Border ) ;
2009-03-22 18:04:46 +02:00
CSelectableComponent ( Etype Type , int Sub , int Val , boost : : function < void ( ) > OnSelect = 0 , SDL_Surface * Border = NULL ) ; //c-tor
CSelectableComponent ( const Component & c , boost : : function < void ( ) > OnSelect = 0 , SDL_Surface * Border = NULL ) ; //c-tor
~ CSelectableComponent ( ) ; //d-tor
2009-04-14 15:47:09 +03:00
virtual void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void deactivate ( ) ;
void select ( bool on ) ;
2009-03-22 18:04:46 +02:00
SDL_Surface * getImg ( ) ; //returns myBitmap
2009-02-20 15:06:20 +02:00
} ;
class CGarrisonInt ;
class CGarrisonSlot : public ClickableL , public ClickableR , public Hoverable
{
public :
CGarrisonInt * owner ;
2009-03-22 18:04:46 +02:00
const CCreature * creature ; //creature in slot
int count ; //number of creatures
2009-02-20 15:06:20 +02:00
int upg ; //0 - up garrison, 1 - down garrison
2009-03-22 18:04:46 +02:00
bool active ; //TODO: comment me
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
virtual void hover ( bool on ) ; //call-in
2009-02-20 15:06:20 +02:00
const CArmedInstance * getObj ( ) ;
void clickRight ( boost : : logic : : tribool down ) ;
void clickLeft ( boost : : logic : : tribool down ) ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
CGarrisonSlot ( CGarrisonInt * Owner , int x , int y , int IID , int Upg = 0 , const CCreature * Creature = NULL , int Count = 0 ) ;
2009-05-07 20:20:41 +03:00
~ CGarrisonSlot ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class CGarrisonInt : public CIntObject
{
public :
2009-03-22 18:04:46 +02:00
int interx , intery ; //intervals between slots
CGarrisonSlot * highlighted ; //choosen slot
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
SDL_Surface * & sur ; //TODO: comment me
int offx , offy , p2 ; //TODO: comment me
2009-02-20 15:06:20 +02:00
bool ignoreEvent , update , active , splitting , pb ;
2009-03-22 18:04:46 +02:00
const CCreatureSet * set1 ; //top set of creatures
const CCreatureSet * set2 ; //bottom set of creatures
2009-02-20 15:06:20 +02:00
2009-05-07 20:20:41 +03:00
std : : vector < CGarrisonSlot * > * sup , * sdown ; //slots of upper and lower garrison
const CArmedInstance * oup , * odown ; //upper and lower garrisons (heroes or towns)
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void activeteSlots ( ) ;
void deactiveteSlots ( ) ;
void deleteSlots ( ) ;
void createSlots ( ) ;
void recreateSlots ( ) ;
2009-03-22 18:04:46 +02:00
void splitClick ( ) ; //handles click on split button
void splitStacks ( int am2 ) ; //TODO: comment me
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
CGarrisonInt ( int x , int y , int inx , int iny , SDL_Surface * & pomsur , int OX , int OY , const CArmedInstance * s1 , const CArmedInstance * s2 = NULL ) ; //c-tor
~ CGarrisonInt ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class CPlayerInterface : public CGameInterface
{
public :
//minor interfaces
2009-03-22 18:04:46 +02:00
CondSh < bool > * showingDialog ; //indicates if dialog box is displayed
2009-04-14 15:47:09 +03:00
boost : : recursive_mutex * pim ;
bool makingTurn ; //if player is already making his turn
//TODO: exclude to some kind Settings struct
2009-03-22 18:04:46 +02:00
int heroMoveSpeed ; //speed of player's hero movement
2009-02-20 15:06:20 +02:00
void setHeroMoveSpeed ( int newSpeed ) { heroMoveSpeed = newSpeed ; } //set for the member above
2009-03-22 18:04:46 +02:00
int mapScrollingSpeed ; //map scrolling speed
2009-02-20 15:06:20 +02:00
void setMapScrollingSpeed ( int newSpeed ) { mapScrollingSpeed = newSpeed ; } //set the member above
2009-04-14 15:47:09 +03:00
2009-03-22 18:04:46 +02:00
SDL_Event * current ; //current event
2009-04-14 15:47:09 +03:00
//CMainInterface *curint;
2009-02-20 15:06:20 +02:00
CAdvMapInt * adventureInt ;
2009-04-14 15:47:09 +03:00
CCastleInterface * castleInt ; //NULL if castle window isn't opened
CBattleInterface * battleInt ; //NULL if no battle
2009-04-03 18:55:26 +03:00
CInGameConsole * cingconsole ;
2009-04-14 15:47:09 +03:00
FPSmanager * mainFPSmng ; //to keep const framerate
IStatusBar * statusbar ; //current statusbar - will be used to show hover tooltips
CCallback * cb ; //to communicate with engine
const BattleAction * curAction ; //during the battle - action currently performed by active stack (or NULL)
std : : list < CInfoWindow * > dialogs ; //queue of dialogs awaiting to be shown (not currently shown!)
std : : list < IShowActivable * > listInt ; //list of interfaces - front=foreground; back = background (includes adventure map, window interfaces, all kind of active dialogs, and so on)
void totalRedraw ( ) ; //forces total redraw (using showAll)
void popInt ( IShowActivable * top ) ; //removes given interface from the top and activates next
void popIntTotally ( IShowActivable * top ) ; //deactivates, deletes, removes given interface from the top and activates next
void pushInt ( IShowActivable * newInt ) ; //deactivate old top interface, activates this one and pushes to the top
void popInts ( int howMany ) ; //pops one or more interfaces - deactivates top, deletes and removes given number of interfaces, activates new front
IShowActivable * topInt ( ) ; //returns top interface
2009-03-09 21:40:43 +02:00
2009-02-20 15:06:20 +02:00
//GUI elements
std : : list < ClickableL * > lclickable ;
std : : list < ClickableR * > rclickable ;
std : : list < Hoverable * > hoverable ;
std : : list < KeyInterested * > keyinterested ;
std : : list < MotionInterested * > motioninterested ;
std : : list < TimeInterested * > timeinterested ;
std : : vector < IShowable * > objsToBlit ;
//overloaded funcs from CGameInterface
void buildChanged ( const CGTownInstance * town , int buildingID , int what ) ; //what: 1 - built, 2 - demolished
void garrisonChanged ( const CGObjectInstance * obj ) ;
2009-05-07 20:20:41 +03:00
void heroArtifactSetChanged ( const CGHeroInstance * hero ) ;
2009-02-20 15:06:20 +02:00
void heroCreated ( const CGHeroInstance * hero ) ;
void heroGotLevel ( const CGHeroInstance * hero , int pskill , std : : vector < ui16 > & skills , boost : : function < void ( ui32 ) > & callback ) ;
void heroInGarrisonChange ( const CGTownInstance * town ) ;
void heroKilled ( const CGHeroInstance * hero ) ;
void heroMoved ( const HeroMoveDetails & details ) ;
void heroPrimarySkillChanged ( const CGHeroInstance * hero , int which , int val ) ;
void heroManaPointsChanged ( const CGHeroInstance * hero ) ;
void heroMovePointsChanged ( const CGHeroInstance * hero ) ;
void heroVisitsTown ( const CGHeroInstance * hero , const CGTownInstance * town ) ;
void receivedResource ( int type , int val ) ;
2009-04-30 17:59:30 +03:00
void showInfoDialog ( const std : : string & text , const std : : vector < Component * > & components , int soundID ) ;
2009-04-11 04:32:50 +03:00
//void showSelDialog(const std::string &text, const std::vector<Component*> &components, ui32 askID);
//void showYesNoDialog(const std::string &text, const std::vector<Component*> &components, ui32 askID);
2009-04-30 17:59:30 +03:00
void showBlockingDialog ( const std : : string & text , const std : : vector < Component > & components , ui32 askID , int soundID , bool selection , bool cancel ) ; //Show a dialog, player must take decision. If selection then he has to choose between one of given components, if cancel he is allowed to not choose. After making choice, CCallback::selectionMade should be called with number of selected component (1 - n) or 0 for cancel (if allowed) and askID.
2009-04-12 03:58:41 +03:00
void showGarrisonDialog ( const CArmedInstance * up , const CGHeroInstance * down , boost : : function < void ( ) > & onEnd ) ;
2009-05-07 20:20:41 +03:00
void tileHidden ( const std : : set < int3 > & pos ) ; //called when given tiles become hidden under fog of war
void tileRevealed ( const std : : set < int3 > & pos ) ; //called when fog of war disappears from given tiles
2009-02-20 15:06:20 +02:00
void yourTurn ( ) ;
void availableCreaturesChanged ( const CGTownInstance * town ) ;
void heroBonusChanged ( const CGHeroInstance * hero , const HeroBonus & bonus , bool gain ) ; //if gain hero received bonus, else he lost it
2009-04-21 01:57:07 +03:00
void requestRealized ( PackageApplied * pa ) ;
2009-04-03 18:55:26 +03:00
void serialize ( COSer < CSaveFile > & h , const int version ) ; //saving
2009-03-28 20:46:20 +02:00
void serialize ( CISer < CLoadFile > & h , const int version ) ; //loading
2009-02-20 15:06:20 +02:00
//for battles
void actionFinished ( const BattleAction * action ) ; //occurs AFTER action taken by active stack or by the hero
void actionStarted ( const BattleAction * action ) ; //occurs BEFORE action taken by active stack or by the hero
BattleAction activeStack ( int stackID ) ; //called when it's turn of that stack
void battleAttack ( BattleAttack * ba ) ; //stack performs attack
2009-03-22 18:04:46 +02:00
void battleEnd ( BattleResult * br ) ; //end of battle
2009-04-14 15:47:09 +03:00
//void battleResultQuited();
2009-02-20 15:06:20 +02:00
void battleNewRound ( int round ) ; //called at the beggining of each turn, round=-1 is the tactic phase, round=0 is the first "normal" turn
2009-03-31 23:47:53 +03:00
void battleStackMoved ( int ID , int dest , int distance , bool end ) ;
2009-02-20 15:06:20 +02:00
void battleSpellCasted ( SpellCasted * sc ) ;
2009-03-21 18:03:07 +02:00
void battleStacksEffectsSet ( SetStackEffect & sse ) ; //called when a specific effect is set to stacks
2009-03-21 14:49:58 +02:00
void battleStacksAttacked ( std : : set < BattleStackAttacked > & bsa ) ;
2009-02-20 15:06:20 +02:00
void battleStart ( CCreatureSet * army1 , CCreatureSet * army2 , int3 tile , CGHeroInstance * hero1 , CGHeroInstance * hero2 , bool side ) ; //called by engine when battle starts; side=0 - left, side=1 - right
void battlefieldPrepared ( int battlefieldType , std : : vector < CObstacle * > obstacles ) ; //called when battlefield is prepared, prior the battle beginning
//-------------//
2009-05-07 20:20:41 +03:00
bool shiftPressed ( ) const ; //determines if shift key is pressed (left or right or both)
2009-02-20 15:06:20 +02:00
void redrawHeroWin ( const CGHeroInstance * hero ) ;
void updateWater ( ) ;
2009-03-22 18:04:46 +02:00
void showComp ( SComponent comp ) ; //TODO: comment me
2009-02-20 15:06:20 +02:00
void openTownWindow ( const CGTownInstance * town ) ; //shows townscreen
void openHeroWindow ( const CGHeroInstance * hero ) ; //shows hero window with given hero
SDL_Surface * infoWin ( const CGObjectInstance * specific ) ; //specific=0 => draws info about selected town/hero
void handleEvent ( SDL_Event * sEvent ) ;
void handleKeyDown ( SDL_Event * sEvent ) ;
void handleKeyUp ( SDL_Event * sEvent ) ;
void handleMouseMotion ( SDL_Event * sEvent ) ;
void init ( ICallback * CB ) ;
2009-03-22 18:04:46 +02:00
int3 repairScreenPos ( int3 pos ) ; //returns position closest to pos we can center screen on
2009-04-30 17:59:30 +03:00
void showInfoDialog ( const std : : string & text , const std : : vector < SComponent * > & components , int soundID ) ;
2009-04-14 15:47:09 +03:00
void showYesNoDialog ( const std : : string & text , const std : : vector < SComponent * > & components , CFunctionList < void ( ) > onYes , CFunctionList < void ( ) > onNo , bool DelComps ) ; //deactivateCur - whether current main interface should be deactivated; delComps - if components will be deleted on window close
2009-04-21 01:57:07 +03:00
bool moveHero ( const CGHeroInstance * h , CPath path ) ;
2009-02-20 15:06:20 +02:00
CPlayerInterface ( int Player , int serial ) ; //c-tor
~ CPlayerInterface ( ) ; //d-tor
2009-03-28 20:46:20 +02:00
//////////////////////////////////////////////////////////////////////////
template < typename Handler > void serializeTempl ( Handler & h , const int version ) ;
2009-02-20 15:06:20 +02:00
} ;
2009-03-28 20:46:20 +02:00
2009-02-20 15:06:20 +02:00
class CStatusBar
: public CIntObject , public IStatusBar
{
public :
SDL_Surface * bg ; //background
int middlex , middley ; //middle of statusbar
std : : string current ; //text currently printed
CStatusBar ( int x , int y , std : : string name = " ADROLLVR.bmp " , int maxw = - 1 ) ; //c-tor
~ CStatusBar ( ) ; //d-tor
void print ( const std : : string & text ) ; //prints text and refreshes statusbar
void clear ( ) ; //clears statusbar and refreshes
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ; //shows statusbar (with current text)
2009-03-22 18:04:46 +02:00
std : : string getCurrent ( ) ; //getter for current
2009-02-20 15:06:20 +02:00
} ;
class CList
: public ClickableL , public ClickableR , public Hoverable , public KeyInterested , public virtual CIntObject , public MotionInterested
{
public :
2009-03-22 18:04:46 +02:00
SDL_Surface * bg ; //background bitmap
CDefHandler * arrup , * arrdo ; //button arrows for scrolling list
2009-02-20 15:06:20 +02:00
SDL_Surface * empty , * selection ;
SDL_Rect arrupp , arrdop ; //positions of arrows
int posw , posh ; //position width/height
int selected , //id of selected position, <0 if none
from ;
2009-03-22 18:04:46 +02:00
const int SIZE ; //size of list
2009-02-20 15:06:20 +02:00
boost : : logic : : tribool pressed ; //true=up; false=down; indeterminate=none
2009-03-22 18:04:46 +02:00
CList ( int Size = 5 ) ; //c-tor
2009-02-20 15:06:20 +02:00
void clickLeft ( boost : : logic : : tribool down ) ;
void activate ( ) ;
void deactivate ( ) ;
2009-03-22 18:04:46 +02:00
virtual void mouseMoved ( const SDL_MouseMotionEvent & sEvent ) = 0 ; //call-in
2009-02-20 15:06:20 +02:00
virtual void genList ( ) = 0 ;
virtual void select ( int which ) = 0 ;
2009-04-14 15:47:09 +03:00
virtual void draw ( SDL_Surface * to ) = 0 ;
2009-02-20 15:06:20 +02:00
} ;
class CHeroList
: public CList
{
public :
2009-03-22 18:04:46 +02:00
CDefHandler * mobile , * mana ; //mana and movement indicators
2009-02-20 15:06:20 +02:00
std : : vector < std : : pair < const CGHeroInstance * , CPath * > > items ;
int posmobx , posporx , posmanx , posmoby , pospory , posmany ;
2009-03-22 18:04:46 +02:00
CHeroList ( int Size ) ; //c-tor
int getPosOfHero ( const CArmedInstance * h ) ; //hero's position on list
2009-02-20 15:06:20 +02:00
void genList ( ) ;
2009-03-22 18:04:46 +02:00
void select ( int which ) ; //call-in
void mouseMoved ( const SDL_MouseMotionEvent & sEvent ) ; //call-in
void clickLeft ( boost : : logic : : tribool down ) ; //call-in
void clickRight ( boost : : logic : : tribool down ) ; //call-in
void hover ( bool on ) ; //call-in
void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
2009-03-20 20:51:48 +02:00
void updateHList ( const CGHeroInstance * toRemove = NULL ) ; //removes specific hero from the list or recreates it
2009-02-20 15:06:20 +02:00
void updateMove ( const CGHeroInstance * which ) ; //draws move points bar
2009-03-22 18:04:46 +02:00
void redrawAllOne ( int which ) ; //not imeplemented
2009-04-14 15:47:09 +03:00
void draw ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void init ( ) ;
} ;
class CTownList
: public CList
{
public :
2009-03-22 18:04:46 +02:00
boost : : function < void ( ) > fun ; //function called on selection change
std : : vector < const CGTownInstance * > items ; //towns on list
2009-02-20 15:06:20 +02:00
int posporx , pospory ;
2009-03-22 18:04:46 +02:00
CTownList ( int Size , int x , int y , std : : string arrupg , std : : string arrdog ) ; //c-tor
~ CTownList ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
void genList ( ) ;
2009-03-22 18:04:46 +02:00
void select ( int which ) ; //call-in
void mouseMoved ( const SDL_MouseMotionEvent & sEvent ) ; //call-in
void clickLeft ( boost : : logic : : tribool down ) ; //call-in
void clickRight ( boost : : logic : : tribool down ) ; //call-in
void hover ( bool on ) ; //call-in
void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
2009-04-14 15:47:09 +03:00
void draw ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
} ;
class CCreaturePic //draws picture with creature on background, use nextFrame=true to get animation
{
public :
2009-03-22 18:04:46 +02:00
CCreature * c ; //which creature's picture
2009-04-14 13:46:42 +03:00
bool big ; //big => 100x130; !big => 100x120
2009-03-22 18:04:46 +02:00
CCreatureAnimation * anim ; //displayed animation
CCreaturePic ( CCreature * cre , bool Big = true ) ; //c-tor
~ CCreaturePic ( ) ; //d-tor
int blitPic ( SDL_Surface * to , int x , int y , bool nextFrame ) ; //prints creature on screen
SDL_Surface * getPic ( bool nextFrame ) ; //returns frame of animation
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CRecrutationWindow : public IShowActivable , public ClickableL , public ClickableR
2009-02-20 15:06:20 +02:00
{
public :
struct creinfo
{
SDL_Rect pos ;
2009-03-22 18:04:46 +02:00
CCreaturePic * pic ; //creature's animation
2009-02-20 15:06:20 +02:00
int ID , amount ; //creature ID and available amount
std : : vector < std : : pair < int , int > > res ; //res_id - cost_per_unit
} ;
std : : vector < int > amounts ; //how many creatures we can afford
2009-03-22 18:04:46 +02:00
std : : vector < creinfo > creatures ; //recruitable creatures
2009-02-20 15:06:20 +02:00
boost : : function < void ( int , int ) > recruit ; //void (int ID, int amount) <-- call to recruit creatures
2009-03-22 18:04:46 +02:00
CSlider * slider ; //for selecting amount
2009-02-20 15:06:20 +02:00
AdventureMapButton * max , * buy , * cancel ;
2009-03-22 18:04:46 +02:00
SDL_Surface * bitmap ; //background
2009-02-20 15:06:20 +02:00
CStatusBar * bar ;
int which ; //which creature is active
void close ( ) ;
void Max ( ) ;
void Buy ( ) ;
void Cancel ( ) ;
void sliderMoved ( int to ) ;
void clickLeft ( boost : : logic : : tribool down ) ;
void clickRight ( boost : : logic : : tribool down ) ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
CRecrutationWindow ( const std : : vector < std : : pair < int , int > > & Creatures , const boost : : function < void ( int , int ) > & Recruit ) ; //creatures - pairs<creature_ID,amount> //c-tor
~ CRecrutationWindow ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CSplitWindow : public IShowActivable , public KeyInterested , public ClickableL
2009-02-20 15:06:20 +02:00
{
public :
CGarrisonInt * gar ;
CSlider * slider ;
2009-03-22 18:04:46 +02:00
CCreaturePic * anim ; //creature's animation
2009-02-20 15:06:20 +02:00
AdventureMapButton * ok , * cancel ;
2009-03-22 18:04:46 +02:00
SDL_Surface * bitmap ; //background
int a1 , a2 , c ; //TODO: comment me
2009-05-07 20:20:41 +03:00
bool which ; //which creature is selected
2009-03-27 01:05:40 +02:00
int last ; //0/1/2 - at least one creature must be in the src/dst/both stacks; -1 - no restrictions
2009-02-20 15:06:20 +02:00
2009-03-27 01:05:40 +02:00
CSplitWindow ( int cid , int max , CGarrisonInt * Owner , int Last = - 1 , int val = 0 ) ; //c-tor; val - initial amount of second stack
2009-03-22 18:04:46 +02:00
~ CSplitWindow ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void split ( ) ;
void close ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
void clickLeft ( boost : : logic : : tribool down ) ; //call-in
void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
2009-02-20 15:06:20 +02:00
void sliderMoved ( int to ) ;
} ;
2009-04-14 15:47:09 +03:00
class CCreInfoWindow : public IShowActivable , public KeyInterested , public ClickableR
2009-02-20 15:06:20 +02:00
{
public :
2009-04-14 15:47:09 +03:00
//bool active; //TODO: comment me
2009-02-20 15:06:20 +02:00
int type ; //0 - rclick popup; 1 - normal window
2009-03-22 18:04:46 +02:00
SDL_Surface * bitmap ; //background
2009-05-07 20:20:41 +03:00
char anf ; //animation counter
2009-02-20 15:06:20 +02:00
std : : string count ; //creature count in text format
2009-05-07 20:20:41 +03:00
boost : : function < void ( ) > dsm ; //dismiss button callback
CCreaturePic * anim ; //related creature's animation
CCreature * c ; //related creature
2009-02-20 15:06:20 +02:00
std : : vector < SComponent * > upgResCost ; //cost of upgrade (if not possible then empty)
AdventureMapButton * dismiss , * upgrade , * ok ;
2009-03-22 18:04:46 +02:00
CCreInfoWindow ( int Cid , int Type , int creatureCount , StackState * State , boost : : function < void ( ) > Upg , boost : : function < void ( ) > Dsm , UpgradeInfo * ui ) ; //c-tor
~ CCreInfoWindow ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void close ( ) ;
2009-03-22 18:04:46 +02:00
void clickRight ( boost : : logic : : tribool down ) ; //call-in
2009-02-20 15:06:20 +02:00
void dismissF ( ) ;
2009-03-22 18:04:46 +02:00
void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
2009-02-20 15:06:20 +02:00
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
} ;
2009-04-14 15:47:09 +03:00
class CLevelWindow : public IShowActivable , public CIntObject
2009-02-20 15:06:20 +02:00
{
public :
int heroType ;
2009-03-22 18:04:46 +02:00
SDL_Surface * bitmap ; //background
2009-02-20 15:06:20 +02:00
std : : vector < CSelectableComponent * > comps ; //skills to select
AdventureMapButton * ok ;
boost : : function < void ( ui32 ) > cb ;
void close ( ) ;
2009-03-22 18:04:46 +02:00
CLevelWindow ( const CGHeroInstance * hero , int pskill , std : : vector < ui16 > & skills , boost : : function < void ( ui32 ) > & callback ) ; //c-tor
~ CLevelWindow ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void deactivate ( ) ;
void selectionChanged ( unsigned to ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
} ;
class CMinorResDataBar : public IShowable , public CIntObject
{
public :
2009-03-22 18:04:46 +02:00
SDL_Surface * bg ; //background bitmap
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
CMinorResDataBar ( ) ; //c-tor
~ CMinorResDataBar ( ) ; //d-tor
2009-02-20 15:06:20 +02:00
} ;
class CMarketplaceWindow : public IShowActivable , public CIntObject
{
public :
class CTradeableItem : public ClickableL
{
public :
int type ; //0 - res, 1 - artif big, 2 - artif small, 3 - player flag
int id ;
bool left ;
CFunctionList < void ( ) > callback ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void clickLeft ( boost : : logic : : tribool down ) ;
SDL_Surface * getSurface ( ) ;
CTradeableItem ( int Type , int ID , bool Left ) ;
} ;
2009-03-22 18:04:46 +02:00
SDL_Surface * bg ; //background
2009-02-20 15:06:20 +02:00
std : : vector < CTradeableItem * > left , right ;
2009-03-22 18:04:46 +02:00
std : : vector < std : : string > rSubs ; //offer caption
2009-02-20 15:06:20 +02:00
CTradeableItem * hLeft , * hRight ; //highlighted items (NULL if no highlight)
int mode , //0 - res<->res; 1 - res<->plauer; 2 - buy artifact; 3 - sell artifact
2009-05-07 20:20:41 +03:00
r1 , r2 ; //suggested amounts of traded resources
2009-02-20 15:06:20 +02:00
AdventureMapButton * ok , * max , * deal ;
2009-05-07 20:20:41 +03:00
CSlider * slider ; //for choosing amount to be exchanged
2009-02-20 15:06:20 +02:00
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
void setMax ( ) ;
void sliderMoved ( int to ) ;
void makeDeal ( ) ;
void selectionChanged ( bool side ) ; //true == left
2009-03-22 18:04:46 +02:00
CMarketplaceWindow ( int Mode = 0 ) ; //c-tor
~ CMarketplaceWindow ( ) ; //d-tor
void setMode ( int mode ) ; //mode setter
2009-02-20 15:06:20 +02:00
void clear ( ) ;
} ;
class CSystemOptionsWindow : public IShowActivable , public CIntObject
{
private :
SDL_Surface * background ; //background of window
2009-03-28 02:38:48 +02:00
AdventureMapButton * load , * save , * restart , * mainMenu , * quitGame , * backToMap ; //load, restart and main menu are not used yet
2009-02-20 15:06:20 +02:00
CHighlightableButtonsGroup * heroMoveSpeed ;
CHighlightableButtonsGroup * mapScrollSpeed ;
2009-05-06 13:14:48 +03:00
CHighlightableButtonsGroup * musicVolume , * effectsVolume ;
2009-02-20 15:06:20 +02:00
public :
CSystemOptionsWindow ( const SDL_Rect & pos , CPlayerInterface * owner ) ; //c-tor
~ CSystemOptionsWindow ( ) ; //d-tor
2009-03-28 02:38:48 +02:00
//functions bound to buttons
void bsavef ( ) ; //save game
2009-02-20 15:06:20 +02:00
void bquitf ( ) ; //quit game
void breturnf ( ) ; //return to game
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
} ;
class CTavernWindow : public IShowActivable , public CIntObject
{
public :
class HeroPortrait : public ClickableL , public ClickableR , public Hoverable
{
public :
std : : string hoverName ;
vstd : : assigner < int , int > as ;
const CGHeroInstance * h ;
void activate ( ) ;
void deactivate ( ) ;
void clickLeft ( boost : : logic : : tribool down ) ;
void clickRight ( boost : : logic : : tribool down ) ;
void hover ( bool on ) ;
HeroPortrait ( int & sel , int id , int x , int y , const CGHeroInstance * H ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-03-22 18:04:46 +02:00
} h1 , h2 ; //recruitable heroes
2009-02-20 15:06:20 +02:00
2009-03-22 18:04:46 +02:00
SDL_Surface * bg ; //background
2009-05-07 20:20:41 +03:00
CStatusBar * bar ; //tavern's internal status bar
2009-02-20 15:06:20 +02:00
int selected ; //0 (left) or 1 (right)
AdventureMapButton * thiefGuild , * cancel , * recruit ;
CTavernWindow ( const CGHeroInstance * H1 , const CGHeroInstance * H2 , const std : : string & gossip ) ; //c-tor
~ CTavernWindow ( ) ; //d-tor
void recruitb ( ) ;
void close ( ) ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-02-20 15:06:20 +02:00
} ;
2009-04-03 18:55:26 +03:00
class CInGameConsole : public IShowActivable , public KeyInterested
{
private :
std : : list < std : : pair < std : : string , int > > texts ; //<text to show, time of add>
2009-04-05 17:37:14 +03:00
std : : vector < std : : string > previouslyEntered ; //previously entered texts, for up/down arrows to work
int prevEntDisp ; //displayed entry from previouslyEntered - if none it's -1
2009-04-03 18:55:26 +03:00
int defaultTimeout ; //timeout for new texts (in ms)
int maxDisplayedTexts ; //hiw many texts can be displayed simultaneously
public :
std : : string enteredText ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-04-04 22:26:41 +03:00
void print ( const std : : string & txt ) ;
2009-04-03 18:55:26 +03:00
void keyPressed ( const SDL_KeyboardEvent & key ) ; //call-in
void startEnteringText ( ) ;
void endEnteringText ( bool printEnteredText ) ;
2009-04-04 22:26:41 +03:00
void refreshEnteredText ( ) ;
2009-04-03 18:55:26 +03:00
CInGameConsole ( ) ; //c-tor
} ;
2009-04-14 15:47:09 +03:00
class CGarrisonWindow : public CWindowWithGarrison , public CIntObject
2009-04-12 03:58:41 +03:00
{
public :
2009-05-07 20:20:41 +03:00
SDL_Surface * bg ; //background surface
2009-04-12 03:58:41 +03:00
AdventureMapButton * split , * quit ;
void close ( ) ;
void activate ( ) ;
void deactivate ( ) ;
2009-04-14 15:47:09 +03:00
void show ( SDL_Surface * to ) ;
2009-05-07 20:20:41 +03:00
CGarrisonWindow ( const CArmedInstance * up , const CGHeroInstance * down ) ; //c-tor
~ CGarrisonWindow ( ) ; //d-tor
2009-04-12 03:58:41 +03:00
} ;
2009-02-20 15:06:20 +02:00
extern CPlayerInterface * LOCPLINT ;
# endif // __CPLAYERINTERFACE_H__