2018-07-15 19:41:22 -07:00
|
|
|
#!/usr/bin/env nomsu -V1
|
2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file contains some definitions of text escape sequences, including ANSI console
|
|
|
|
color codes.
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text functions
|
2018-04-25 16:30:49 -07:00
|
|
|
action [%texts joined with %glue]
|
2018-01-11 18:51:21 -08:00
|
|
|
lua> ".."
|
2018-01-24 13:13:03 -08:00
|
|
|
local text_bits = {}
|
|
|
|
for i,bit in ipairs(\%texts) do text_bits[i] = stringify(bit) end
|
|
|
|
return table.concat(text_bits, \%glue)
|
|
|
|
parse [joined %texts, %texts joined] as: %texts joined with ""
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [capitalized %text, %text capitalized] to
|
|
|
|
Lua value "((\(%text as lua expr)):gsub('%l', string.upper, 1))"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-06-27 10:22:58 -07:00
|
|
|
compile [%text with %sub instead of %patt, %text with %patt replaced by %sub, %text s/%patt / %sub] to
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua value "((\(%text as lua expr)):gsub(\(%patt as lua expr), \(%sub as lua expr)))"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-06-14 21:59:25 -07:00
|
|
|
action [lines in %text, lines of %text]
|
|
|
|
lua> ".."
|
2018-06-15 00:40:36 -07:00
|
|
|
local result = list{}
|
2018-06-14 21:59:25 -07:00
|
|
|
for line in (\%text):gmatch('[^\n]+') do
|
|
|
|
result[#result+1] = line
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
|
2018-07-09 17:13:40 -07:00
|
|
|
compile [for %match where %text matches %patt %body] to
|
|
|
|
Lua ".."
|
|
|
|
for \(%match as lua expr) in \(%text as lua expr):gmatch(\(%patt as lua expr)) do
|
|
|
|
\(%body as lua statements)
|
|
|
|
\(compile as: === next %match ===)
|
|
|
|
end
|
|
|
|
\(compile as: === stop %match ===)
|
|
|
|
|
|
|
|
compile [%expr for %match where %text matches %patt] to
|
|
|
|
Lua value ".."
|
|
|
|
(function()
|
|
|
|
local ret = list{}
|
|
|
|
for \(%match as lua expr) in \(%text as lua expr):gmatch(\(%patt as lua expr)) do
|
|
|
|
ret[#ret+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end)()
|
|
|
|
|
2018-07-11 14:13:43 -07:00
|
|
|
compile [%text matches %pattern] to
|
|
|
|
Lua value "(\(%text as lua expr):match(\(%pattern as lua expr)) and true or false)"
|
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text literals
|
2018-01-25 17:34:49 -08:00
|
|
|
lua> ".."
|
|
|
|
do
|
|
|
|
local escapes = {
|
|
|
|
nl="\\\\n", newline="\\\\n", tab="\\\\t", bell="\\\\a", cr="\\\\r", ["carriage return"]="\\\\r",
|
|
|
|
backspace="\\\\b", ["form feed"]="\\\\f", formfeed="\\\\f", ["vertical tab"]="\\\\v",
|
|
|
|
};
|
|
|
|
for name, e in pairs(escapes) do
|
2018-06-14 21:59:25 -07:00
|
|
|
local lua = "'"..e.."'"
|
2018-06-18 15:44:29 -07:00
|
|
|
nomsu.COMPILE_ACTIONS[name] = (function(nomsu, tree) return LuaCode.Value(tree.source, lua) end)
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
2018-01-11 18:51:21 -08:00
|
|
|
end
|
|
|
|
|