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"
|
|
|
|
#include "../World.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockIceHandler :
|
|
|
|
public cBlockHandler
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockIceHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-10-01 14:08:15 -07:00
|
|
|
// No pickups
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
virtual void OnDestroyed(cWorld * a_World, int a_X, int a_Y, int a_Z) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-10-01 14:08:15 -07:00
|
|
|
// TODO: Ice destroyed with air below it should turn into air instead of water
|
2012-07-15 13:36:34 -07:00
|
|
|
a_World->FastSetBlock(a_X, a_Y, a_Z, E_BLOCK_STATIONARY_WATER, 8);
|
2012-10-01 14:08:15 -07:00
|
|
|
// This is called later than the real destroying of this ice block
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
2012-10-01 14:08:15 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|