aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/UIScene_DLCOffersMenu.h
blob: c5fcac7e5bf6db6b3601e9c1be29c66b7ee410dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#pragma once

#include "UIScene.h"

class UIScene_DLCOffersMenu : public UIScene
{
private:
	enum EControls
	{
		eControl_OffersList,
	};

	bool m_bIsSD;
	bool m_bHasPurchased;
	bool m_bIsSelected;

	UIControl_DLCList m_buttonListOffers;
	UIControl_Label m_labelOffers, m_labelPriceTag, m_labelXboxStore;
	UIControl_HTMLLabel m_labelHTMLSellText;
	UIControl_BitmapIcon m_bitmapIconOfferImage;
	UIControl m_Timer;
	UI_BEGIN_MAP_ELEMENTS_AND_NAMES(UIScene)
		UI_MAP_ELEMENT( m_buttonListOffers, "OffersList")
		UI_MAP_ELEMENT( m_labelOffers, "OffersList_Title")
		UI_MAP_ELEMENT( m_labelPriceTag, "PriceTag")
		UI_MAP_ELEMENT( m_labelHTMLSellText, "HTMLSellText")
		UI_MAP_ELEMENT( m_bitmapIconOfferImage, "DLCIcon" )
		UI_MAP_ELEMENT( m_Timer, "Timer")

		if(m_loadedResolution == eSceneResolution_1080)
		{
			UI_MAP_ELEMENT( m_labelXboxStore, "XboxLabel" )
		}
	UI_END_MAP_ELEMENTS_AND_NAMES()
public:
	UIScene_DLCOffersMenu(int iPad, void *initData, UILayer *parentLayer);
	~UIScene_DLCOffersMenu();
	static int ExitDLCOffersMenu(void *pParam,int iPad,C4JStorage::EMessageResult result);

	virtual EUIScene getSceneType() { return eUIScene_DLCOffersMenu;}
	virtual void tick();
	virtual void updateTooltips();

protected:
	// TODO: This should be pure virtual in this class
	virtual wstring getMoviePath();

public:
	// INPUT
	virtual void handleInput(int iPad, int key, bool repeat, bool pressed, bool released, bool &handled);

	virtual void handlePress(F64 controlId, F64 childId);
	virtual void handleSelectionChanged(F64 selectedId);
	virtual void handleFocusChange(F64 controlId, F64 childId);
	virtual void handleTimerComplete(int id);
#ifdef __PS3__
	virtual void HandleDLCInstalled();
#endif

#ifdef _XBOX_ONE
	virtual void HandleDLCLicenseChange();
#endif

private:
#ifdef _DURANGO
	void GetDLCInfo( int iOfferC, bool bUpdateOnly=false );
	void UpdateTooltips(MARKETPLACE_CONTENTOFFER_INFO& xOffer);
	bool UpdateDisplay(MARKETPLACE_CONTENTOFFER_INFO& xOffer);

	static int OrderSortFunction(const void* a, const void* b);

	bool m_bIgnorePress;
	bool m_bDLCRequiredIsRetrieved;
	DLC_INFO *m_pNoImageFor_DLC;

	typedef struct  
	{
		unsigned int uiContentIndex;
		unsigned int uiSortIndex;
	}
	SORTINDEXSTRUCT;

	vector <wstring>m_vIconRetrieval;
	bool m_bSelectionChanged;

#endif

	bool m_bProductInfoShown;
	int m_iProductInfoIndex;
	int m_iCurrentDLC;
	int m_iTotalDLC;
	bool m_bAddAllDLCButtons;
#if defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
	std::vector<SonyCommerce::ProductInfo>*m_pvProductInfo;
#endif
};