Files
cuberite-2a/source/Piston.h
T

71 lines
921 B
C++
Raw Normal View History

#pragma once
2013-03-09 14:35:43 +00:00
// fwd: World.h
class cWorld;
class cPiston
{
public:
2013-03-09 14:35:43 +00:00
cPiston(cWorld * a_World);
2013-03-09 14:35:43 +00:00
static NIBBLETYPE RotationPitchToMetaData(double a_Rotation, double a_Pitch)
{
2013-03-09 14:35:43 +00:00
if (a_Pitch >= 50)
{
return 0x1;
}
2013-03-09 14:35:43 +00:00
else if (a_Pitch <= -50)
{
return 0x0;
}
else
{
a_Rotation += 90 + 45; // So its not aligned with axis
2013-03-09 14:35:43 +00:00
if (a_Rotation > 360)
{
2013-03-09 14:35:43 +00:00
a_Rotation -= 360;
}
2013-03-09 14:35:43 +00:00
if ((a_Rotation >= 0) && (a_Rotation < 90))
{
return 0x4;
}
else if ((a_Rotation >= 180) && (a_Rotation < 270))
{
return 0x5;
}
else if ((a_Rotation >= 90) && (a_Rotation < 180))
{
return 0x2;
}
else
{
return 0x3;
}
}
}
void ExtendPiston( int, int, int );
void RetractPiston( int, int, int );
2013-03-09 14:35:43 +00:00
cWorld * m_World;
private:
void ChainMove( int, int, int, char, unsigned short * );
unsigned short FirstPassthroughBlock( int, int, int, char );
2013-03-09 14:35:43 +00:00
} ;