summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemMap.h
blob: 2dbbb3dc054feae9d418ec39b9e6407fb459e81f (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

// ItemMap.h





#pragma once

#include "../Entities/Entity.h"
#include "../Item.h"





class cItemMapHandler :
	public cItemHandler
{
	typedef cItemHandler super;

	static const unsigned int DEFAULT_RADIUS = 128;
	
public:
	cItemMapHandler() :
		super(E_ITEM_MAP)
	{
	}

	virtual void OnUpdate(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item)
	{
		cMap * Map = a_World->GetMapManager().GetMapData((unsigned)a_Item.m_ItemDamage);

		if (Map == nullptr)
		{
			return;
		}

		Map->UpdateRadius(*a_Player, DEFAULT_RADIUS);

		Map->UpdateClient(a_Player);
	}
} ;