2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
|
|
|
|
|
|
|
###
|
2019-01-14 15:42:48 -08:00
|
|
|
This file defines a Read-Evaluate-Print-Loop (REPL) for Nomsu
|
|
|
|
|
|
|
|
use "consolecolor"
|
|
|
|
use "filesystem"
|
|
|
|
use "commandline"
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-01-15 15:53:31 -08:00
|
|
|
external:
|
|
|
|
(help) means:
|
|
|
|
say ("
|
2019-02-06 15:33:10 -08:00
|
|
|
This is the Nomsu v\($(NOMSU VERSION), joined with ".") interactive console.
|
2019-01-15 15:53:31 -08:00
|
|
|
You can type in Nomsu code here and hit 'enter' twice to run it.
|
|
|
|
To exit, type 'exit' or 'quit' and hit enter twice.
|
|
|
|
")
|
2019-03-14 16:30:43 -07:00
|
|
|
|
2019-01-23 15:36:09 -08:00
|
|
|
(tutorial) means:
|
|
|
|
(use "tools/tutorial").run_with {.extras = []}
|
|
|
|
exit
|
|
|
|
|
2019-01-14 15:42:48 -08:00
|
|
|
command line program with $args:
|
|
|
|
say ("
|
|
|
|
|
2019-02-06 15:33:10 -08:00
|
|
|
\(bright)\(underscore)Welcome to the Nomsu v\($(NOMSU VERSION), joined with ".") interactive console!\
|
2019-01-14 15:42:48 -08:00
|
|
|
..\(reset color)
|
|
|
|
press 'enter' twice to run a command
|
2019-01-23 15:36:09 -08:00
|
|
|
type 'tutorial' to run the tutorial
|
2019-01-14 15:42:48 -08:00
|
|
|
|
|
|
|
")
|
2019-03-14 16:30:43 -07:00
|
|
|
|
2019-03-20 15:55:57 -07:00
|
|
|
### Best way I know of to detect the number of return values and only
|
2019-01-23 15:36:09 -08:00
|
|
|
print if it's >0:
|
|
|
|
(say results of (*extra arguments*)) means:
|
|
|
|
$N = (select "#" (*extra arguments*))
|
2019-03-14 16:30:43 -07:00
|
|
|
if ($N == 0): return
|
2019-03-20 15:55:57 -07:00
|
|
|
for $ in (1 to $N):
|
2019-01-23 15:36:09 -08:00
|
|
|
$ret = (select $ (*extra arguments*))
|
|
|
|
if ($ret is "Text"):
|
|
|
|
$ret = (quote $ret)
|
|
|
|
say "\$ret"
|
2019-03-14 16:30:43 -07:00
|
|
|
|
2019-01-14 15:42:48 -08:00
|
|
|
repeat:
|
|
|
|
say (bright (yellow ">> ")) inline
|
|
|
|
$buff = []
|
|
|
|
repeat:
|
|
|
|
say (bright) inline
|
|
|
|
$line = ($io.read "*L")
|
|
|
|
say (reset color) inline
|
|
|
|
if (($line == "\n") or (not $line)):
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$buff > 0):
|
|
|
|
### clear the line
|
2019-01-29 16:16:45 -08:00
|
|
|
if $(COLOR ENABLED):
|
|
|
|
say "\027[1A\027[2K" inline
|
2019-01-14 15:42:48 -08:00
|
|
|
go to (run buffer)
|
|
|
|
$buff, add ($line, with "\t" -> " ")
|
|
|
|
say (dim (yellow ".. ")) inline
|
|
|
|
--- (run buffer) ---
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$buff == 0): stop
|
2019-01-14 15:42:48 -08:00
|
|
|
$buff = ($buff, joined)
|
|
|
|
spoof file $buff
|
|
|
|
try:
|
|
|
|
$tree = ($buff parsed)
|
|
|
|
..if it fails with $err:
|
|
|
|
say $err
|
|
|
|
do next
|
|
|
|
|
|
|
|
unless $tree:
|
|
|
|
do next
|
2019-03-14 16:30:43 -07:00
|
|
|
|
2019-02-05 15:45:27 -08:00
|
|
|
if ($tree.type == "Comment"):
|
|
|
|
say (dim "Comment:\($tree.1)")
|
|
|
|
do next
|
2019-03-14 16:30:43 -07:00
|
|
|
|
|
|
|
if ($tree.type != "FileChunks"): $tree = [$tree]
|
2019-01-14 15:42:48 -08:00
|
|
|
for $chunk in $tree:
|
|
|
|
try:
|
|
|
|
$lua = ($chunk as lua)
|
|
|
|
..if it fails with $err: say $err
|
|
|
|
|
|
|
|
unless $lua:
|
|
|
|
do next
|
|
|
|
|
2019-03-20 15:55:57 -07:00
|
|
|
### TODO: this is a bit hacky, it just defaults variables to global
|
2019-01-14 15:42:48 -08:00
|
|
|
so that stuff mostly works across multiple lines. It would be
|
|
|
|
nicer if local variables actually worked.
|
|
|
|
$lua, remove free vars
|
2019-01-23 15:36:09 -08:00
|
|
|
if (load "return \($lua, text)"):
|
|
|
|
$lua, prepend "return "
|
2019-03-14 16:30:43 -07:00
|
|
|
|
2019-01-14 15:42:48 -08:00
|
|
|
try:
|
2019-01-23 15:36:09 -08:00
|
|
|
say results of (run $lua)
|
2019-03-14 16:30:43 -07:00
|
|
|
..if it fails with $err: say $err
|