2012-10-01 17:08:15 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
2012-10-01 17:08:15 -04:00
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "BlockHandler.h"
|
2012-09-23 13:19:34 -04:00
|
|
|
#include "../UI/Window.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Player.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-09-20 09:25:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockWorkbenchHandler:
|
|
|
|
public cBlockHandler
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-10-03 04:52:11 -04:00
|
|
|
cBlockWorkbenchHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockHandler(a_BlockType)
|
2012-07-16 15:20:37 -04:00
|
|
|
{
|
|
|
|
}
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
virtual void OnUse(cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override
|
2012-07-16 15:20:37 -04:00
|
|
|
{
|
2012-09-20 09:25:54 -04:00
|
|
|
cWindow * Window = new cCraftingWindow(a_BlockX, a_BlockY, a_BlockZ);
|
2012-07-16 15:20:37 -04:00
|
|
|
a_Player->OpenWindow(Window);
|
|
|
|
}
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual bool IsUseable(void) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-11 08:01:34 -04:00
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 08:01:34 -04:00
|
|
|
{
|
|
|
|
return "step.wood";
|
|
|
|
}
|
2012-10-01 17:08:15 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|