From 425da65ed46061303604610bb539d6495b2b1f3f Mon Sep 17 00:00:00 2001 From: anon5 Date: Mon, 21 Jun 2021 18:47:26 +0000 Subject: Add high-level protocol (de)serialization --- nodebox.go | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 nodebox.go (limited to 'nodebox.go') diff --git a/nodebox.go b/nodebox.go new file mode 100644 index 0000000..46d704c --- /dev/null +++ b/nodebox.go @@ -0,0 +1,39 @@ +package mt + +type Box [2]Vec + +type NodeBoxType uint8 + +const ( + CubeBox NodeBoxType = iota + FixedBox + MountedBox + LeveledBox + ConnectedBox + maxBox +) + +type DirBoxes struct { + Top, Bot []Box + Front, Left, Back, Right []Box +} + +type NodeBox struct { + //mt:const uint8(6) + + Type NodeBoxType + //mt:assert %s.Type < maxBox + + //mt:if %s.Type == MountedBox + WallTop, WallBot, WallSides Box + //mt:end + + //mt:if t := %s.Type; t == FixedBox || t == LeveledBox || t == ConnectedBox + Fixed []Box + //mt:end + + //mt:if %s.Type == ConnectedBox + ConnDirs, DiscoDirs DirBoxes + DiscoAll, DiscoSides []Box + //mt:end +} -- cgit v1.2.3