aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotList.cpp
blob: 7e51c88509ce32b7b72db44e8373b4217d49ca13 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#include "stdafx.h"

#include "..\..\..\Minecraft.World\AbstractContainerMenu.h"

#include "XUI_Ctrl_SlotItemListItem.h"
#include "XUI_Ctrl_SlotList.h"


//--------------------------------------------------------------------------------------
// Name: CXuiCtrlSlotList::OnInit
// Desc: Message handler for XM_INIT
//--------------------------------------------------------------------------------------
HRESULT CXuiCtrlSlotList::OnInit( XUIMessageInit* pInitData, BOOL& bHandled )
{
	slotCount = 0;

	return S_OK;
}

HRESULT CXuiCtrlSlotList::OnDestroy()
{
	return S_OK;
}

HRESULT CXuiCtrlSlotList::OnKeyDown(XUIMessageInput *pInputData, BOOL& bHandled)
{
	if( pInputData->dwKeyCode == VK_PAD_DPAD_LEFT ||
		pInputData->dwKeyCode == VK_PAD_DPAD_RIGHT ||
		pInputData->dwKeyCode == VK_PAD_DPAD_UP ||
		pInputData->dwKeyCode == VK_PAD_DPAD_DOWN ||
		pInputData->dwKeyCode == VK_PAD_LTRIGGER ||
		pInputData->dwKeyCode == VK_PAD_RTRIGGER)
	{
		HXUIOBJ parent;
		HRESULT hr;
		hr = XuiElementGetParent( m_hObj, &parent );

		XUIMessage message;
		XUIMessageInput messageInput;
	
		XuiMessageInput( &message, &messageInput, XUI_KEYDOWN, pInputData->dwKeyCode, pInputData->wch, pInputData->dwFlags, pInputData->UserIndex );

		if (HRESULT_SUCCEEDED(hr))
		{
			hr = XuiBubbleMessage(parent, &message);

			if (message.bHandled)
			{
				bHandled = TRUE;
			}
		}
	}

	return S_OK;
}

void CXuiCtrlSlotList::SetData(int m_iPad, AbstractContainerMenu* menu, int rows, int columns, int startIndex /*= 0*/, int endIndex /*= 0*/)
{
	assert( startIndex >= 0 && startIndex < menu->getSize() );
	assert( endIndex <= menu->getSize() );

	if( startIndex < 0 )
	{
		startIndex = 0;
	}
	else if( startIndex > menu->getSize() )
	{
		startIndex = menu->getSize();
	}
	
	if( endIndex == 0 )
	{
		endIndex = startIndex + (rows * columns);
	}

	if( endIndex > menu->getSize() )
	{
		endIndex = menu->getSize();
	}

	if( startIndex > endIndex )
	{
		endIndex = startIndex;
	}

	assert( (rows * columns) == (endIndex - startIndex) );

	this->rows = rows;
	this->columns = columns;

	this->startIndex = startIndex;

	this->slotCount = rows * columns;

	InsertItems( 0, slotCount );
	
	for(int i = 0; i < slotCount; i++)
	{		
		CXuiCtrlSlotItemListItem* slotControl;
		GetCXuiCtrlSlotItem(i, &slotControl);

		slotControl->SetSlot( slotControl->m_hObj, menu->getSlot( i + startIndex ) );

		slotControl->SetUserIndex( slotControl->m_hObj,  m_iPad );

		slotControl = NULL;
	}
}

HRESULT CXuiCtrlSlotList::OnGetItemCountAll( XUIMessageGetItemCount *pGetItemCountData, BOOL& bHandled )
{
	// We don't need to look at the type of request. The message map
	// has already filtered out a request to retrieve all items.
	pGetItemCountData->cItems = slotCount;
	bHandled = TRUE;

	return( S_OK );
}

HRESULT CXuiCtrlSlotList::OnGetItemCountMaxLines( XUIMessageGetItemCount *pGetItemCountData, BOOL& bHandled )
{
	// We don't need to look at the type of request. The message map
	// has already filtered out a request to retrieve max lines.
	pGetItemCountData->cItems = rows;
	bHandled = TRUE;

	return( S_OK );
}

HRESULT CXuiCtrlSlotList::OnGetItemCountMaxPerLine( XUIMessageGetItemCount *pGetItemCountData, BOOL& bHandled )
{
	// We don't need to look at the type of request. The message map
	// has already filtered out a request to retrieve max per line.
	pGetItemCountData->cItems = columns;
	bHandled = TRUE;

	return( S_OK );
}

int CXuiCtrlSlotList::GetCurrentColumn()
{
	int currentItemIndex = GetCurSel();

	return currentItemIndex % columns;
}

int CXuiCtrlSlotList::GetCurrentRow()
{
	int currentItemIndex = GetCurSel();

	return (currentItemIndex/columns) % rows;
}

// Return the index in the menu object
int CXuiCtrlSlotList::GetCurrentIndex()
{
	int currentSelected = GetCurSel();
	return currentSelected + this->startIndex;
}

void CXuiCtrlSlotList::SetCurrentSlot(int row, int column)
{
	if( row >= rows )
	{
		row = rows - 1;
	}
	else if ( row < 0 )
	{
		row = 0;
	}
	if( column >= columns )
	{
		column = columns - 1;
	}
	else if ( column < 0 )
	{
		column = 0;
	}
	int newSlot = ( row * columns ) + column;
	SetCurSel( newSlot );
}

void CXuiCtrlSlotList::SetEntrySlot(int row, int column, XUI_CONTROL_NAVIGATE direction)
{
	// The direction is the direction in which we are leaving the previous control to get to here
	// So a Navigate up means we want to start at the bottom of ourself
	switch( direction )
	{
	case XUI_CONTROL_NAVIGATE_UP:
		{
			row = rows - 1;
			break;
		}
	case XUI_CONTROL_NAVIGATE_DOWN:
		{
			row = 0;
			break;
		}
	case XUI_CONTROL_NAVIGATE_LEFT:
	case XUI_CONTROL_NAVIGATE_TABBACKWARD:
		{
			column = columns - 1;
			break;
		}
	case XUI_CONTROL_NAVIGATE_RIGHT:
	case XUI_CONTROL_NAVIGATE_TABFORWARD:
		{
			column = 0;
			break;
		}
	}
	SetCurrentSlot( row, column );
}

void CXuiCtrlSlotList::Clicked()
{
	CXuiCtrlSlotItemListItem* slot;
	GetCXuiCtrlSlotItem( GetCurSel() , &slot);

	// To get the press animation
	slot->Press();
}

void CXuiCtrlSlotList::GetCXuiCtrlSlotItem(int itemIndex, CXuiCtrlSlotItemListItem** CXuiCtrlSlotItem)
{
	HXUIOBJ itemControl = this->GetItemControl(itemIndex);
	VOID *pObj;
	XuiObjectFromHandle( itemControl, &pObj );
	*CXuiCtrlSlotItem = (CXuiCtrlSlotItemListItem *)pObj;
}