From df7823280c2ef3096581741a3412b9b721a7e616 Mon Sep 17 00:00:00 2001 From: "admin@omencraft.com" Date: Thu, 10 Nov 2011 02:05:51 +0000 Subject: Added code for doors. Doors now place correctly but opening them is buggy and I need to change the current opening code to use bitwise operators. git-svn-id: http://mc-server.googlecode.com/svn/trunk@85 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cDoors.h | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 source/cDoors.h (limited to 'source/cDoors.h') diff --git a/source/cDoors.h b/source/cDoors.h new file mode 100644 index 000000000..a05bdd06e --- /dev/null +++ b/source/cDoors.h @@ -0,0 +1,57 @@ +#pragma once + +class cDoors //tolua_export +{ //tolua_export +public: + static char RotationToMetaData( float a_Rotation ) //tolua_export + { //tolua_export + a_Rotation += 90 + 45; // So its not aligned with axis + if( a_Rotation > 360.f ) a_Rotation -= 360.f; + if( a_Rotation >= 0.f && a_Rotation < 90.f ) + return 0x0; + else if( a_Rotation >= 180 && a_Rotation < 270 ) + return 0x2; + else if( a_Rotation >= 90 && a_Rotation < 180 ) + return 0x1; + else + return 0x3; + } //tolua_export + + static char ChangeStateMetaData( char MetaData ) //tolua_export + { //tolua_export + if ( (int)MetaData == 0 ) { //todo, condense this code. lol + return 0x4; + } else if ( (int)MetaData == 1 ) { + return 0x5; + } else if ( (int)MetaData == 2 ) { + return 0x6; + } else if ( (int)MetaData == 3 ) { + return 0x7; + } else if ( (int)MetaData == 4 ) { + return 0x0; + } else if ( (int)MetaData == 5 ) { + return 0x1; + } else if ( (int)MetaData == 6 ) { + return 0x2; + } else if ( (int)MetaData == 7 ) { + return 0x3; + } else if ( (int)MetaData == 8 ) { + return 0x12; + } else if ( (int)MetaData == 9 ) { + return 0x13; + } else if ( (int)MetaData == 10 ) { + return 0x14; + } else if ( (int)MetaData == 11 ) { + return 0x15; + } else if ( (int)MetaData == 12 ) { + return 0x8; + } else if ( (int)MetaData == 13 ) { + return 0x9; + } else if ( (int)MetaData == 14 ) { + return 0x10; + } else if ( (int)MetaData == 15 ) { + return 0x11; + } + } //tolua_export + +}; //tolua_export \ No newline at end of file -- cgit v1.2.3