2009-02-20 15:06:20 +02:00
# ifndef __CPLAYERINTERFACE_H__
# define __CPLAYERINTERFACE_H__
2009-05-20 13:08:56 +03:00
# include "../global.h"
# include "../CGameInterface.h"
2009-02-20 15:06:20 +02:00
# 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 ;
2009-07-03 22:57:14 +03:00
struct TryMoveHero ;
2009-02-20 15:06:20 +02:00
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-05-19 21:23:04 +03:00
class CInGameConsole ;
union SDL_Event ;
class IStatusBar ;
class CInfoWindow ;
class IShowActivable ;
class ClickableL ;
class ClickableR ;
class Hoverable ;
class KeyInterested ;
class MotionInterested ;
class TimeInterested ;
class IShowable ;
2009-02-20 15:06:20 +02:00
namespace boost
{
class mutex ;
class recursive_mutex ;
} ;
2009-07-18 06:13:13 +03:00
struct SystemOptions
{
ui8 heroMoveSpeed ; //speed of player's hero movement
//TODO: enemy hero speed
ui8 mapScrollingSpeed ; //map scrolling speed
ui8 musicVolume , soundVolume ;
//TODO: rest of system options
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & heroMoveSpeed & mapScrollingSpeed & musicVolume & soundVolume ;
}
SystemOptions ( )
{
heroMoveSpeed = 2 ;
mapScrollingSpeed = 2 ;
musicVolume = 88 ;
soundVolume = 88 ;
}
void setHeroMoveSpeed ( int newSpeed ) ; //set for the member above
void setMapScrollingSpeed ( int newSpeed ) ; //set the member above
void setMusicVolume ( int newVolume ) ;
void setSoundVolume ( int newVolume ) ;
void settingsChanged ( ) ; //updates file with "default" settings for next running of application
void apply ( ) ;
} ;
extern SystemOptions GDefaultOptions ; //defined and inited in CMT.cpp, stores default settings loaded with application
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
2009-07-18 06:13:13 +03:00
SystemOptions sysOpts ;
2009-04-14 15:47:09 +03:00
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
FPSmanager * mainFPSmng ; //to keep const framerate
2009-08-07 01:36:51 +03:00
CInGameConsole * cingconsole ;
2009-04-14 15:47:09 +03:00
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!)
2009-08-07 01:36:51 +03:00
2009-03-09 21:40:43 +02:00
2009-06-11 20:21:06 +03:00
std : : vector < const CGHeroInstance * > wanderingHeroes ; //our heroes on the adventure map (not the garrisoned ones)
void recreateWanderingHeroes ( ) ;
const CGHeroInstance * getWHero ( int pos ) ; //returns NULL if position is not valid
2009-02-20 15:06:20 +02:00
//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 ) ;
2009-07-03 22:57:14 +03:00
void heroMoved ( const TryMoveHero & details ) ;
2009-08-16 18:39:18 +03:00
void heroPrimarySkillChanged ( const CGHeroInstance * hero , int which , si64 val ) ;
2009-02-20 15:06:20 +02:00
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-07-26 13:43:22 +03:00
void showRecruitmentDialog ( const CGDwelling * dwelling , const CArmedInstance * dst , int level ) ;
2009-07-26 06:33:13 +03:00
void showShipyardDialog ( const IShipyard * obj ) ; //obj may be town or shipyard;
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-07-26 06:33:13 +03:00
void newObject ( const CGObjectInstance * obj ) ;
2009-02-20 15:06:20 +02:00
void yourTurn ( ) ;
2009-07-26 13:43:22 +03:00
void availableCreaturesChanged ( const CGDwelling * town ) ;
2009-02-20 15:06:20 +02:00
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-06-16 14:18:14 +03:00
void heroExchangeStarted ( si32 hero1 , si32 hero2 ) ;
2009-08-13 04:03:11 +03:00
void centerView ( int3 pos , int focusTime ) ;
2009-07-30 15:49:45 +03:00
void objectPropertyChanged ( const SetObjectProperty * sop ) ;
2009-08-04 02:53:18 +03:00
void objectRemoved ( const CGObjectInstance * obj ) ;
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-05-12 06:35:51 +03:00
void battleSpellCast ( SpellCast * 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-08-06 08:08:17 +03:00
void battleStacksHealedRes ( const std : : vector < std : : pair < ui32 , ui32 > > & healedStacks ) ; //called when stacks are healed / resurrected
2009-08-06 17:02:21 +03:00
void battleNewStackAppeared ( int stackID ) ; //not called at the beginning of a battle or by resurrection; called eg. when elemental is summoned
2009-08-19 13:59:42 +03:00
void battleObstaclesRemoved ( const std : : set < si32 > & removedObstacles ) ; //called when a certain set of obstacles is removed from batlefield; IDs of them are given
2009-02-20 15:06:20 +02:00
//-------------//
2009-08-04 02:53:18 +03:00
void heroKilled ( const CGHeroInstance * hero ) ;
2009-07-21 02:34:06 +03:00
void waitWhileDialog ( ) ;
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 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-07-26 06:33:13 +03:00
void showInfoDialog ( const std : : string & text , const std : : vector < SComponent * > & components = std : : vector < SComponent * > ( ) , int soundID = 0 ) ;
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
extern CPlayerInterface * LOCPLINT ;
# endif // __CPLAYERINTERFACE_H__