diff options
| author | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
|---|---|---|
| committer | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
| commit | b691c43c44ff180d10e7d4a9afc83b98551ff586 (patch) | |
| tree | 3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h | |
| parent | def8cb415354ac390b7e89052a50605285f1aca9 (diff) | |
Initial commit
Diffstat (limited to 'Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h')
| -rw-r--r-- | Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h b/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h new file mode 100644 index 00000000..aadd2bbb --- /dev/null +++ b/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Direction_SPU.h @@ -0,0 +1,32 @@ +#pragma once + +class Direction +{ +public: + static const int UNDEFINED = -1; + static const int SOUTH = 0; + static const int WEST = 1; + static const int NORTH = 2; + static const int EAST = 3; + + static const int STEP_X[]; + static const int STEP_Z[]; + + // for [direction] it gives [tile-face] + static int DIRECTION_FACING[]; + + // for [facing] it gives [direction] + static int FACING_DIRECTION[]; + + // for [direction] it gives [opposite direction] + static int DIRECTION_OPPOSITE[]; + + // for [direction] it gives [90 degrees clockwise direction] + static int DIRECTION_CLOCKWISE[]; + + // for [direction] it gives [90 degrees counter-clockwise direction] + static int DIRECTION_COUNTER_CLOCKWISE[]; + + // for [direction][world-facing] it gives [tile-facing] + static int RELATIVE_DIRECTION_FACING[4][6]; +};
\ No newline at end of file |
