2012-10-01 14:08:15 -07:00
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
2012-10-01 14:08:15 -07:00
|
|
|
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "BlockHandler.h"
|
2012-09-23 10:19:34 -07:00
|
|
|
#include "../UI/Window.h"
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "../Player.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
2012-09-20 06:25:54 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockWorkbenchHandler:
|
|
|
|
public cBlockHandler
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-10-03 01:52:11 -07:00
|
|
|
cBlockWorkbenchHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockHandler(a_BlockType)
|
2012-07-16 12:20:37 -07:00
|
|
|
{
|
|
|
|
}
|
2012-07-15 13:36:34 -07:00
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
2013-01-11 20:46:01 -08: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 12:20:37 -07:00
|
|
|
{
|
2012-09-20 06:25:54 -07:00
|
|
|
cWindow * Window = new cCraftingWindow(a_BlockX, a_BlockY, a_BlockZ);
|
2012-07-16 12:20:37 -07:00
|
|
|
a_Player->OpenWindow(Window);
|
|
|
|
}
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
virtual bool IsUseable(void) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-11 05:01:34 -07:00
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 05:01:34 -07:00
|
|
|
{
|
|
|
|
return "step.wood";
|
|
|
|
}
|
2012-10-01 14:08:15 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|