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-01-31 15:31:06 -08: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-04-19 17:23:44 -07:00
|
|
|
compile [%text with %sub instead of %patt, %text s/%patt/%sub] to
|
|
|
|
Lua value "((\(%text as lua expr)):gsub(\(%patt as lua expr), \(%sub as lua expr)))"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-01-26 20:20:12 -08:00
|
|
|
# TODO: figure out whether indent/dedent should affect first line
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [indented %text, %text indented] to: Lua value "((\%text):gsub('\\n','\\n'..(' ')))"
|
|
|
|
compile [dedented %obj, %obj dedented] to: Lua value "nomsu:dedent(\(%obj as lua expr))"
|
|
|
|
compile [%text indented %n times] to: Lua value "((\%text):gsub('\\n','\\n'..(' '):rep(\%n)))"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
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
|
|
|
|
local lua = "'"..e.."'";
|
2018-04-19 17:23:44 -07:00
|
|
|
nomsu:define_compile_action(name, \(!! code location !!), function(tree) return Lua.Value(tree.source, lua); end);
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
|
|
|
local colors = {
|
|
|
|
["reset color"]="\\\\27[0m", bright="\\\\27[1m", dim="\\\\27[2m", underscore="\\\\27[4m",
|
|
|
|
blink="\\\\27[5m", inverse="\\\\27[7m", hidden="\\\\27[8m",
|
|
|
|
|
|
|
|
black="\\\\27[30m", red="\\\\27[31m", green="\\\\27[32m", yellow="\\\\27[33m", blue="\\\\27[34m",
|
|
|
|
magenta="\\\\27[35m", cyan="\\\\27[36m", white="\\\\27[37m",
|
|
|
|
|
|
|
|
["on black"]="\\\\27[40m", ["on red"]="\\\\27[41m", ["on green"]="\\\\27[42m", ["on yellow"]="\\\\27[43m",
|
|
|
|
["on blue"]="\\\\27[44m", ["on magenta"]="\\\\27[45m", ["on cyan"]="\\\\27[46m", ["on white"]="\\\\27[47m",
|
|
|
|
};
|
|
|
|
for name, c in pairs(colors) do
|
|
|
|
local color = "'"..c.."'";
|
|
|
|
local reset = "'"..colors["reset color"].."'";
|
2018-04-19 17:23:44 -07:00
|
|
|
nomsu:define_compile_action(name, \(!! code location !!), function(tree) return Lua.Value(tree.source, color); end);
|
2018-04-13 15:29:16 -07:00
|
|
|
nomsu:define_compile_action(name.." %", \(!! code location !!), function(\%)
|
2018-04-19 17:23:44 -07:00
|
|
|
return Lua.Value(tree.source, color, "..", nomsu:tree_to_lua(\%), "..", reset);
|
2018-01-25 17:34:49 -08:00
|
|
|
end);
|
|
|
|
end
|
2018-01-11 18:51:21 -08:00
|
|
|
end
|
|
|
|
|