aboutsummaryrefslogtreecommitdiffstats
path: root/day2/part2.forth
diff options
context:
space:
mode:
Diffstat (limited to 'day2/part2.forth')
-rw-r--r--day2/part2.forth19
1 files changed, 19 insertions, 0 deletions
diff --git a/day2/part2.forth b/day2/part2.forth
new file mode 100644
index 0000000..2dc6b13
--- /dev/null
+++ b/day2/part2.forth
@@ -0,0 +1,19 @@
+create outcomes 3 , 4 , 8 , 1 , 5 , 9 , 2 , 6 , 7 , ( AX-Z, BX-Z, CX-Z )
+
+: next-rpc ( fd -- outcome )
+ pad 4 rot read-line throw ( read next line from file )
+ swap 3 = and if ( if read complete round )
+ pad c@ 65 - 3 * ( calculate ABC outcomes index )
+ pad 2 + c@ 88 - + ( add XYZ offset )
+ cells outcomes + @ ( lookup score for the round )
+ else false then ; ( false if end-of-file )
+
+: all-rpcs ( fd -- total-score )
+ 0 begin ( start with zero score )
+ over next-rpc ( read next hand )
+ dup if + true then ( add to score if not EOF )
+ 0= until nip ;
+
+s" input" r/o open-file throw all-rpcs . cr ( play all rounds in input )
+bye
+