2017-09-21 00:10:26 -07:00
|
|
|
#..
|
2018-01-11 02:07:37 -08:00
|
|
|
This File contains actions for making actions and compile-time actions and some helper
|
|
|
|
functions to make that easier.
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make compile-time actions:
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-10 20:45:03 -08:00
|
|
|
lua> ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
nomsu:define_compile_action("compile %actions to %lua", \(!! code location !!), function(\%actions, \%lua)
|
|
|
|
local signature = {};
|
|
|
|
for i, action in ipairs(\%actions.value) do signature[i] = action:get_src(); end
|
|
|
|
local stubs = nomsu:get_stubs_from_signature(signature);
|
|
|
|
local stub_args = nomsu:get_args_from_signature(signature);
|
|
|
|
local arg_set = {};
|
|
|
|
for i, arg in ipairs(stub_args[1]) do arg_set[arg] = true; end
|
|
|
|
if \%lua.type == "Text" then
|
|
|
|
error("Invalid type for 'compile % to %', expected a dict with expr/statements, but got text.", 0);
|
|
|
|
end
|
|
|
|
local body_lua = nomsu:tree_to_lua(\%lua);
|
|
|
|
local body_code = body_lua.statements or ("return "..body_lua.expr..";");
|
|
|
|
local undeclared_locals = {};
|
|
|
|
for i, body_local in ipairs(body_lua.locals or {}) do
|
|
|
|
if not arg_set[body_local] then
|
|
|
|
table.insert(undeclared_locals, body_local);
|
2018-01-24 01:38:05 -08:00
|
|
|
end
|
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
if #undeclared_locals > 0 then
|
|
|
|
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code;
|
2018-01-09 14:59:06 -08:00
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
local lua_fn_args = table.concat(stub_args[1], ", ");
|
|
|
|
local def_tree = nomsu.compilestack[#nomsu.compilestack];
|
|
|
|
local code_location = ("%s:%s,%s"):format(def_tree.filename, def_tree.start, def_tree.stop);
|
|
|
|
return {statements=([[
|
|
|
|
nomsu:define_compile_action(]]..repr(signature)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
|
|
|
]]..body_code.."\\n"..[[
|
|
|
|
end);
|
|
|
|
]])};
|
|
|
|
end);
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make actions
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
|
|
|
compile [action %actions %body] to:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
local signature = {};
|
|
|
|
for i, action in ipairs(\%actions.value) do signature[i] = action:get_src(); end
|
|
|
|
local stubs = nomsu:get_stubs_from_signature(signature);
|
|
|
|
local stub_args = nomsu:get_args_from_signature(signature);
|
|
|
|
local arg_set = {};
|
|
|
|
for i, arg in ipairs(stub_args[1]) do arg_set[arg] = true; end
|
2018-01-08 18:53:57 -08:00
|
|
|
local body_lua = nomsu:tree_to_lua(\%body);
|
2018-01-23 19:22:20 -08:00
|
|
|
local body_code = body_lua.statements or ("return "..body_lua.expr..";");
|
2018-01-23 19:28:53 -08:00
|
|
|
local undeclared_locals = {};
|
|
|
|
for i, body_local in ipairs(body_lua.locals or {}) do
|
2018-01-25 17:34:49 -08:00
|
|
|
if not arg_set[body_local] then
|
2018-01-23 19:28:53 -08:00
|
|
|
table.insert(undeclared_locals, body_local);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #undeclared_locals > 0 then
|
|
|
|
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code;
|
2018-01-23 19:22:20 -08:00
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
local lua_fn_args = table.concat(stub_args[1], ", ");
|
|
|
|
local def_tree = nomsu.compilestack[#nomsu.compilestack];
|
|
|
|
local code_location = ("%s:%s,%s"):format(def_tree.filename, def_tree.start, def_tree.stop);
|
|
|
|
return {statements=[[
|
|
|
|
nomsu:define_action(]]..repr(signature)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
|
|
|
]]..body_code.."\\n"..[[
|
|
|
|
end);
|
|
|
|
]]};
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2018-01-11 01:19:03 -08:00
|
|
|
# Macro to make nomsu macros:
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
|
|
|
compile [parse %shorthand as %longhand] to:
|
2018-01-25 17:34:49 -08:00
|
|
|
lua> ".."
|
|
|
|
local signature = {};
|
|
|
|
for i, action in ipairs(\%shorthand.value) do signature[i] = action:get_src(); end
|
|
|
|
local stubs = nomsu:get_stubs_from_signature(signature);
|
|
|
|
local stub_args = nomsu:get_args_from_signature(signature);
|
|
|
|
local lua_fn_args = table.concat(stub_args[1], ", ");
|
2018-01-19 17:29:44 -08:00
|
|
|
local template;
|
|
|
|
if \%longhand.type == "Block" then
|
2018-01-25 17:34:49 -08:00
|
|
|
local lines = {};
|
|
|
|
for i, line in ipairs(\%longhand.value) do lines[i] = nomsu:dedent(line:get_src()); end
|
|
|
|
template = repr(table.concat(lines, "\\n"));
|
2018-01-19 17:29:44 -08:00
|
|
|
else
|
2018-01-25 17:34:49 -08:00
|
|
|
template = repr(nomsu:dedent(\%longhand:get_src()));
|
2018-01-08 18:53:57 -08:00
|
|
|
end
|
2018-01-10 20:45:03 -08:00
|
|
|
local replacements = {};
|
2018-01-25 17:34:49 -08:00
|
|
|
for i, a in ipairs(stub_args[1]) do replacements[i] = a.."="..a; end
|
2018-01-10 20:45:03 -08:00
|
|
|
replacements = "{"..table.concat(replacements, ", ").."}";
|
2018-01-25 17:34:49 -08:00
|
|
|
local def_tree = nomsu.compilestack[#nomsu.compilestack];
|
|
|
|
local code_location = ("%s:%s,%s"):format(def_tree.filename, def_tree.start, def_tree.stop);
|
|
|
|
return {statements=[[
|
|
|
|
nomsu:define_compile_action(]]..repr(signature)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
|
|
|
local template = nomsu:parse(]]..template..[[, ]]..repr(def_tree.filename)..[[);
|
|
|
|
local replacement = nomsu:tree_with_replaced_vars(template, ]]..replacements..[[);
|
|
|
|
return nomsu:tree_to_lua(replacement);
|
|
|
|
end);
|
|
|
|
]]};
|
2017-12-11 17:53:23 -08:00
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
action [remove action %stub]:
|
2017-11-01 19:59:44 -07:00
|
|
|
lua> ".."
|
2018-02-06 22:06:39 -08:00
|
|
|
local fn = ACTIONS[\%stub];
|
2018-01-12 19:27:59 -08:00
|
|
|
local metadata = ACTION_METADATA[fn];
|
|
|
|
for i=#metadata.aliases,1,-1 do
|
|
|
|
metadata.arg_orders[metadata.aliases[i]] = nil;
|
|
|
|
table.remove(metadata.aliases, i);
|
2017-12-13 16:29:15 -08:00
|
|
|
end
|
2018-02-06 22:06:39 -08:00
|
|
|
ACTIONS[\%stub] = nil;
|
2017-11-01 19:59:44 -07:00
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
|
|
|
action [%tree as lua]:
|
2018-01-25 17:34:49 -08:00
|
|
|
=lua "nomsu:tree_to_lua(\%tree)"
|
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
action [%tree as lua expr]:
|
2018-01-25 17:34:49 -08:00
|
|
|
lua> ".."
|
|
|
|
local lua = nomsu:tree_to_lua(\%tree);
|
|
|
|
if lua.locals or not lua.expr then
|
|
|
|
error("Invalid thing to convert to lua expr: "..\%tree:get_src());
|
|
|
|
end
|
|
|
|
return lua.expr;
|
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
action [%tree as lua statements]:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
|
|
|
local lua = nomsu:tree_to_lua(\%tree);
|
2018-01-25 17:34:49 -08:00
|
|
|
local code = lua.statements or (lua.expr..";");
|
|
|
|
if lua.locals then
|
|
|
|
code = "local "..table.concat(lua.locals, ", ")..";\\n"..code;
|
|
|
|
end
|
|
|
|
return code;
|
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
action [%tree as value]:
|
2018-01-10 20:45:03 -08:00
|
|
|
=lua "nomsu:tree_to_value(\%tree)"
|
2018-01-25 17:34:49 -08:00
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-25 17:34:49 -08:00
|
|
|
compile [%tree's source code, %tree' source code] to {expr:"\(%tree as lua expr):get_src()"}
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2018-01-25 17:34:49 -08:00
|
|
|
compile [repr %obj] to {expr:"repr(\(%obj as lua expr))"}
|
|
|
|
compile [type of %obj] to {expr:"type(\(%obj as lua expr))"}
|
2018-01-10 20:45:03 -08:00
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-26 20:20:12 -08:00
|
|
|
compile [nomsu] to {expr:"nomsu"}
|
|
|
|
compile [%var as lua identifier] to {expr:"nomsu:var_to_lua_identifier(\(%var as lua expr))"}
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
action [action %names metadata]:
|
2018-02-06 22:06:39 -08:00
|
|
|
=lua "ACTION_METADATA[ACTIONS[\%names]]"
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# Get the source code for a function
|
2018-01-31 15:31:06 -08:00
|
|
|
action [help %action]:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-12 19:27:59 -08:00
|
|
|
local metadata = \(action %action metadata);
|
|
|
|
if not metadata then
|
2018-01-26 15:02:09 -08:00
|
|
|
print("Action not found: "..repr(\%action));
|
2017-12-13 16:29:15 -08:00
|
|
|
else
|
2018-01-26 15:02:09 -08:00
|
|
|
print(metadata.src or "<unknown source code>");
|
2017-12-13 16:29:15 -08:00
|
|
|
end
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Compiler tools
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-26 20:20:12 -08:00
|
|
|
compile [run %code] to {expr: "nomsu:run(\(%code as lua expr), '\(!! code location !!)')"}
|
|
|
|
parse [enable debugging] as: lua> "nomsu.debug = true;"
|
|
|
|
parse [disable debugging] as: lua> "nomsu.debug = false;"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
2018-02-06 22:06:39 -08:00
|
|
|
immediately:
|
|
|
|
compile [show lua %block] to:
|
|
|
|
lua> ".."
|
|
|
|
local \%lua = nomsu:tree_to_lua(\%block);
|
|
|
|
return {statements = "print("..repr(\%lua.statements or \%lua.expr)..");"};
|
|
|
|
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
|
|
|
compile [say %message] to:
|
2018-01-25 17:34:49 -08:00
|
|
|
lua> ".."
|
|
|
|
if \%message.type == "Text" then
|
2018-01-26 15:02:09 -08:00
|
|
|
return {statements="print("..\(%message as lua expr)..");"};
|
2018-01-25 17:34:49 -08:00
|
|
|
else
|
2018-01-26 15:02:09 -08:00
|
|
|
return {statements="print(stringify("..\(%message as lua expr).."));"};
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Return
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-25 17:34:49 -08:00
|
|
|
#.. Return statement is wrapped in a do..end block because Lua is unhappy if you
|
|
|
|
put code after a return statement, unless you wrap it in a block.
|
|
|
|
compile [return] to {statements:"do return; end"}
|
|
|
|
compile [return %return_value] to {statements:"do return \(%return_value as lua expr); end"}
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Error functions
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-26 20:20:12 -08:00
|
|
|
compile [barf] to {statements:"error(nil, 0);"}
|
2018-01-25 17:34:49 -08:00
|
|
|
compile [barf %msg] to {statements:"error(\(%msg as lua expr), 0);"}
|
2018-01-31 15:31:06 -08:00
|
|
|
compile [assume %condition] to:
|
2018-01-26 20:20:12 -08:00
|
|
|
lua> "local \%assumption = 'Assumption failed: '..\%condition:get_src();"
|
|
|
|
return {..}
|
|
|
|
statements:".."
|
|
|
|
if not \(%condition as lua expr) then
|
|
|
|
error(\(repr %assumption), 0);
|
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
compile [assume %condition or barf %msg] to {..}
|
2018-01-26 20:20:12 -08:00
|
|
|
statements:".."
|
|
|
|
if not \(%condition as lua expr) then
|
|
|
|
error(\(%msg as lua expr), 0);
|
|
|
|
end
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Literals
|
2018-01-31 15:31:06 -08:00
|
|
|
immediately:
|
2018-01-25 17:34:49 -08:00
|
|
|
compile [yes] to {expr:"true"}
|
|
|
|
compile [no] to {expr:"false"}
|
|
|
|
compile [nothing, nil, null] to {expr:"nil"}
|
2018-01-11 18:51:21 -08:00
|
|
|
|