2014-07-05 12:58:42 +03:00
# pragma once
2014-07-15 10:14:49 +03:00
//#include "CComponent.h"
# include "MiscWidgets.h"
2014-07-05 12:58:42 +03:00
/*
* CArtifactHolder . 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
*
*/
class CArtifactsOfHero ;
class CAnimImage ;
2014-08-03 14:16:19 +03:00
class CButton ;
2014-07-05 12:58:42 +03:00
2014-07-14 17:19:44 +03:00
struct ArtifactLocation ;
2014-07-05 12:58:42 +03:00
class CArtifactHolder
{
public :
CArtifactHolder ( ) ;
virtual void artifactRemoved ( const ArtifactLocation & artLoc ) = 0 ;
virtual void artifactMoved ( const ArtifactLocation & artLoc , const ArtifactLocation & destLoc ) = 0 ;
virtual void artifactDisassembled ( const ArtifactLocation & artLoc ) = 0 ;
virtual void artifactAssembled ( const ArtifactLocation & artLoc ) = 0 ;
} ;
class CWindowWithArtifacts : public CArtifactHolder
{
public :
std : : vector < CArtifactsOfHero * > artSets ;
2015-10-12 15:47:10 +02:00
void artifactRemoved ( const ArtifactLocation & artLoc ) override ;
void artifactMoved ( const ArtifactLocation & artLoc , const ArtifactLocation & destLoc ) override ;
void artifactDisassembled ( const ArtifactLocation & artLoc ) override ;
void artifactAssembled ( const ArtifactLocation & artLoc ) override ;
2014-07-05 12:58:42 +03:00
} ;
2016-11-04 18:54:09 +02:00
class CArtPlace : public LRClickableAreaWTextComp
2014-07-05 12:58:42 +03:00
{
2016-11-04 18:54:09 +02:00
protected :
2014-07-05 12:58:42 +03:00
CAnimImage * image ;
2016-11-04 18:54:09 +02:00
virtual void createImage ( ) = 0 ;
public :
const CArtifactInstance * ourArt ; // should be changed only with setArtifact()
CArtPlace ( Point position , const CArtifactInstance * Art = nullptr ) ; //c-tor
void clickLeft ( tribool down , bool previousState ) override ;
void clickRight ( tribool down , bool previousState ) override ;
virtual void setArtifact ( const CArtifactInstance * art ) = 0 ;
} ;
class CCommanderArtPlace : public CArtPlace
{
protected :
2016-11-06 14:02:00 +02:00
const CGHeroInstance * commanderOwner ;
ArtifactPosition commanderSlotID ;
2016-11-04 18:54:09 +02:00
void createImage ( ) override ;
2016-11-06 14:02:00 +02:00
void returnArtToHeroCallback ( ) ;
2016-11-04 18:54:09 +02:00
public :
2016-11-06 14:02:00 +02:00
CCommanderArtPlace ( Point position , const CGHeroInstance * commanderOwner , ArtifactPosition artSlot , const CArtifactInstance * Art = nullptr ) ; //c-tor
2016-11-04 18:54:09 +02:00
void clickLeft ( tribool down , bool previousState ) override ;
void clickRight ( tribool down , bool previousState ) override ;
virtual void setArtifact ( const CArtifactInstance * art ) override ;
} ;
/// Artifacts can be placed there. Gets shown at the hero window
class CHeroArtPlace : public CArtPlace
{
2014-07-05 12:58:42 +03:00
CAnimImage * selection ;
2016-11-04 18:54:09 +02:00
void createImage ( ) override ;
2014-07-05 12:58:42 +03:00
public :
// consider these members as const - change them only with appropriate methods e.g. lockSlot()
bool locked ;
bool picked ;
bool marked ;
ArtifactPosition slotID ; //Arts::EPOS enum + backpack starting from Arts::BACKPACK_START
void lockSlot ( bool on ) ;
void pickSlot ( bool on ) ;
void selectSlot ( bool on ) ;
CArtifactsOfHero * ourOwner ;
2016-11-04 18:54:09 +02:00
CHeroArtPlace ( Point position , const CArtifactInstance * Art = nullptr ) ; //c-tor
2015-10-12 15:47:10 +02:00
void clickLeft ( tribool down , bool previousState ) override ;
void clickRight ( tribool down , bool previousState ) override ;
2016-11-04 18:54:09 +02:00
void select ( ) ;
void deselect ( ) ;
2015-10-12 15:47:10 +02:00
void showAll ( SDL_Surface * to ) override ;
2014-07-05 12:58:42 +03:00
bool fitsHere ( const CArtifactInstance * art ) const ; //returns true if given artifact can be placed here
void setMeAsDest ( bool backpackAsVoid = true ) ;
2016-11-04 18:54:09 +02:00
void setArtifact ( const CArtifactInstance * art ) override ;
2016-01-23 14:20:51 +02:00
static bool askToAssemble ( const CArtifactInstance * art , ArtifactPosition slot ,
const CGHeroInstance * hero ) ;
2014-07-05 12:58:42 +03:00
} ;
/// Contains artifacts of hero. Distincts which artifacts are worn or backpacked
class CArtifactsOfHero : public CIntObject
{
const CGHeroInstance * curHero ;
2016-01-23 14:20:51 +02:00
2016-11-04 18:54:09 +02:00
std : : map < ArtifactPosition , CHeroArtPlace * > artWorn ;
2016-01-23 14:20:51 +02:00
2016-11-04 18:54:09 +02:00
std : : vector < CHeroArtPlace * > backpack ; //hero's visible backpack (only 5 elements!)
2014-07-05 12:58:42 +03:00
int backpackPos ; //number of first art visible in backpack (in hero's vector)
public :
struct SCommonPart
{
struct Artpos
{
ArtifactPosition slotID ;
const CArtifactsOfHero * AOH ;
const CArtifactInstance * art ;
Artpos ( ) ;
void clear ( ) ;
2016-11-04 18:54:09 +02:00
void setTo ( const CHeroArtPlace * place , bool dontTakeBackpack ) ;
2014-07-05 12:58:42 +03:00
bool valid ( ) ;
bool operator = = ( const ArtifactLocation & al ) const ;
} src , dst ;
std : : set < CArtifactsOfHero * > participants ; // Needed to mark slots.
void reset ( ) ;
2016-08-30 06:05:31 +02:00
} ;
std : : shared_ptr < SCommonPart > commonInfo ; //when we have more than one CArtifactsOfHero in one window with exchange possibility, we use this (eg. in exchange window); to be provided externally
2014-07-05 12:58:42 +03:00
bool updateState ; // Whether the commonInfo should be updated on setHero or not.
2014-08-03 14:16:19 +03:00
CButton * leftArtRoll , * rightArtRoll ;
2014-07-05 12:58:42 +03:00
bool allowedAssembling ;
std : : multiset < const CArtifactInstance * > artifactsOnAltar ; //artifacts id that are technically present in backpack but in GUI are moved to the altar - they'll be omitted in backpack slots
2016-11-04 18:54:09 +02:00
std : : function < void ( CHeroArtPlace * ) > highlightModeCallback ; //if set, clicking on art place doesn't pick artifact but highlights the slot and calls this function
2014-07-05 12:58:42 +03:00
void realizeCurrentTransaction ( ) ; //calls callback with parameters stored in commonInfo
void artifactMoved ( const ArtifactLocation & src , const ArtifactLocation & dst ) ;
void artifactRemoved ( const ArtifactLocation & al ) ;
void artifactAssembled ( const ArtifactLocation & al ) ;
void artifactDisassembled ( const ArtifactLocation & al ) ;
2016-11-04 18:54:09 +02:00
CHeroArtPlace * getArtPlace ( int slot ) ; //may return null
2014-07-05 12:58:42 +03:00
void setHero ( const CGHeroInstance * hero ) ;
const CGHeroInstance * getHero ( ) const ;
void dispose ( ) ; //free resources not needed after closing windows and reset state
void scrollBackpack ( int dir ) ; //dir==-1 => to left; dir==1 => to right
void safeRedraw ( ) ;
void markPossibleSlots ( const CArtifactInstance * art ) ;
void unmarkSlots ( bool withRedraw = true ) ; //unmarks slots in all visible AOHs
void unmarkLocalSlots ( bool withRedraw = true ) ; //unmarks slots in that particular AOH
2016-11-04 18:54:09 +02:00
void setSlotData ( CHeroArtPlace * artPlace , ArtifactPosition slotID ) ;
2014-07-05 12:58:42 +03:00
void updateWornSlots ( bool redrawParent = true ) ;
void updateSlot ( ArtifactPosition i ) ;
2016-11-04 18:54:09 +02:00
void eraseSlotData ( CHeroArtPlace * artPlace , ArtifactPosition slotID ) ;
2014-07-05 12:58:42 +03:00
CArtifactsOfHero ( const Point & position , bool createCommonPart = false ) ;
//Alternative constructor, used if custom artifacts positioning required (Kingdom interface)
2016-11-04 18:54:09 +02:00
CArtifactsOfHero ( std : : map < ArtifactPosition , CHeroArtPlace * > ArtWorn , std : : vector < CHeroArtPlace * > Backpack ,
2014-08-03 14:16:19 +03:00
CButton * leftScroll , CButton * rightScroll , bool createCommonPart = false ) ;
2014-07-05 12:58:42 +03:00
~ CArtifactsOfHero ( ) ; //d-tor
void updateParentWindow ( ) ;
2016-11-04 18:54:09 +02:00
friend class CHeroArtPlace ;
2014-07-05 12:58:42 +03:00
} ;