aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJulien Dessaux2021-10-04 23:47:22 +0200
committerJulien Dessaux2021-10-04 23:47:22 +0200
commit9e29dd5678d463426d224ad50014a37b04ff34cc (patch)
tree114dfe6e65f720b00cb4039bccf1ca8288e06779 /src
parentCosmetics (diff)
downloadnimfunge98-9e29dd5678d463426d224ad50014a37b04ff34cc.tar.gz
nimfunge98-9e29dd5678d463426d224ad50014a37b04ff34cc.tar.bz2
nimfunge98-9e29dd5678d463426d224ad50014a37b04ff34cc.zip
Implemented Funge-98 IO procedures
Diffstat (limited to 'src')
-rw-r--r--src/defaultIO.nim40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/defaultIO.nim b/src/defaultIO.nim
new file mode 100644
index 0000000..52bcb83
--- /dev/null
+++ b/src/defaultIO.nim
@@ -0,0 +1,40 @@
+import strformat
+
+## We keep the last input char to handle a pain point in the funge-98 spec :
+## when reading from the decimal input you need to read until you encounter a
+## non numeric char, but not drop it
+var defaultInputLastChar: ref int
+
+var stdIoUnbuffered = false
+
+proc defaultCharacterInput*(): int =
+ if defaultInputLastChar != nil:
+ result = defaultInputLastChar[]
+ defaultInputLastChar = nil
+ return result
+ if not stdIoUnbuffered:
+ setStdIoUnbuffered()
+ stdIoUnbuffered = true
+ return stdin.readChar().int()
+
+proc defaultDecimalInput*(): int =
+ while true: # First we need to find the next numeric char
+ let c = defaultCharacterInput()
+ if c >= int('0') and c <= int('9'):
+ result = c - int('0')
+ break
+ while true: # then we read until we encounter a non numeric char
+ let c = defaultCharacterInput()
+ if c >= int('0') and c <= int('9'):
+ result = result * 10 + c - int('0')
+ else:
+ new(defaultInputLastChar)
+ defaultInputLastChar[] = c
+ break
+ return result
+
+proc defaultCharacterOutput*(v: int) =
+ discard stdout.writeChars(@[v.char()], 0, 1)
+
+proc defaultDecimalOutput*(v: int) =
+ stdout.write(&"{v}")