From b7e661e778024efc6ccdc47774bc7dfbd3eeb081 Mon Sep 17 00:00:00 2001 From: sejo Date: Wed, 1 Sep 2021 16:52:57 -0500 Subject: [PATCH] octal equivalence --- src/choreutics.gmo | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/choreutics.gmo b/src/choreutics.gmo index 79794d8..15f89c5 100644 --- a/src/choreutics.gmo +++ b/src/choreutics.gmo @@ -92,6 +92,32 @@ when using a right limb: * dabbing: quick, light, straight (backward high left) * flicking: quick, light, roundabout (backward, high, right) +### octal encoding + +possible encoding in {octal}: + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
namedynamicsbinaryoct and dec
pressingslow, strong, straight0000
wringingslow, strong, roundabout0011
glidingslow, light, straight0102
floatingslow, light, roundabout0113
punchingquick, strong, straight1004
slashingquick, strong, roundabout1015
dabbingquick, light, straight1106
flickingquick, light, roundabout1117
+ +& * pressing/pushing: slow, strong, straight (binary: 000, octal: 0) +& * wringing/pulling: slow, strong, roundabout (binary: 001, octal 1) +& * gliding: slow, light, straight (binary: 010, octal 2) +& * floating: slow, light, roundabout (binary: 011, octal 3) +& * punching: quick, strong, straight (binary: 100, octal 4) +& * slashing: quick, strong, roundabout (binary: 101, octal 5) +& * dabbing: quick, light, straight (binary: 110, octal 6) +& * flicking: quick, light, roundabout (binary: 111, octal 7) + + # TODO * add tables