summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_WholeInventory.cpp
blob: 3ee047239d30249a296cb9da52c40023289b6bbb (plain) (blame)
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
#include "cPacket_WholeInventory.h"
#include "../cItem.h"
#include "../cInventory.h"
#include "../cWindow.h"

cPacket_WholeInventory::cPacket_WholeInventory( const cPacket_WholeInventory & a_Clone )
{
	m_PacketID = E_INVENTORY_WHOLE;
	m_WindowID = a_Clone.m_WindowID;
	m_Count = a_Clone.m_Count;
	m_Items = new cItem[m_Count];
	memcpy( m_Items, a_Clone.m_Items, sizeof(cItem)*m_Count );
}

cPacket_WholeInventory::cPacket_WholeInventory( cInventory* a_Inventory )
{
	m_PacketID = E_INVENTORY_WHOLE;
	m_WindowID = 0;
	m_Count = a_Inventory->c_NumSlots;
	m_Items = new cItem[m_Count];
	memcpy( m_Items, a_Inventory->GetSlots(), sizeof(cItem)*m_Count );
}

cPacket_WholeInventory::cPacket_WholeInventory( cWindow* a_Window )
{
	m_PacketID = E_INVENTORY_WHOLE;
	m_WindowID = (char)a_Window->GetWindowID();
	m_Count = (short)a_Window->GetNumSlots();
	m_Items = new cItem[m_Count];
	memcpy( m_Items, a_Window->GetSlots(), sizeof(cItem)*m_Count );
}

cPacket_WholeInventory::~cPacket_WholeInventory()
{
	delete [] m_Items;
}

bool cPacket_WholeInventory::Send(cSocket & a_Socket)
{
	unsigned int TotalSize = c_Size;

	for(int i = 0; i < m_Count; i++)
	{
		if( m_Items[i].m_ItemID > -1 )
			TotalSize+=3;
		TotalSize+=2;
	}

	char* Message = new char[TotalSize];

	unsigned int i = 0;
	AppendByte		( (char)m_PacketID,			Message, i );
	AppendByte		( m_WindowID,				Message, i );
	AppendShort		( m_Count,				Message, i );
	for(int j = 0; j < m_Count; j++)
	{
		AppendShort		( (short)m_Items[j].m_ItemID,	Message, i );
		if( m_Items[j].m_ItemID > -1 )
		{
			AppendByte	( m_Items[j].m_ItemCount,	Message, i );
			AppendShort	( m_Items[j].m_ItemHealth,	Message, i );
		}
	}

	bool RetVal = !cSocket::IsSocketError( SendData( a_Socket, Message, TotalSize, 0 ) );
	delete [] Message;
	return RetVal;
}