This commit is contained in:
Bruce Hill 2018-01-03 01:04:21 -08:00
parent cfee75b21b
commit cd4196d365
4 changed files with 12 additions and 12 deletions

View File

@ -66,15 +66,15 @@ lua> ".."
rule [remove rule %stub] =: rule [remove rule %stub] =:
lua> ".." lua> ".."
local def = nomsu.defs[\(%stub)]; local def = nomsu.defs[\%stub];
for _, alias in ipairs(def.aliases) do for _, alias in ipairs(def.aliases) do
nomsu.defs[alias] = false; nomsu.defs[alias] = false;
end end
rule [%tree as lua] =: rule [%tree as lua] =:
=lua "nomsu:tree_to_lua(\(%tree))" =lua "nomsu:tree_to_lua(\%tree)"
rule [%tree as value] =: rule [%tree as value] =:
=lua "nomsu:tree_to_value(\(%tree), vars)" =lua "nomsu:tree_to_value(\%tree, vars)"
compile [repr %obj] to: compile [repr %obj] to:
"nomsu:repr(\(%obj as lua))" "nomsu:repr(\(%obj as lua))"
compile [indented %obj] to: compile [indented %obj] to:
@ -91,7 +91,7 @@ parse [lua do> %block] as:
rule [%tree as lua statement] =: rule [%tree as lua statement] =:
lua do> ".." lua do> ".."
local _,statement = nomsu:tree_to_lua(\(%tree)); local _,statement = nomsu:tree_to_lua(\%tree);
return statement; return statement;
rule [%tree as lua statements] =: rule [%tree as lua statements] =:
lua do> ".." lua do> ".."

View File

@ -63,7 +63,7 @@ lua do> ".."
end end
nomsu:defmacro("%a "..nomsu_alias.." %b", (function(nomsu, vars) nomsu:defmacro("%a "..nomsu_alias.." %b", (function(nomsu, vars)
return "("..nomsu:tree_to_lua(vars.a).." "..op.." "..nomsu:tree_to_lua(vars.b)..")"; return "("..nomsu:tree_to_lua(vars.a).." "..op.." "..nomsu:tree_to_lua(vars.b)..")";
end), [["(\\%a ]]..op..[[ \\(%b))"]]); end), [["(\\%a ]]..op..[[ \\%b)"]]);
end end
# TODO: implement OR, XOR, AND for multiple operands # TODO: implement OR, XOR, AND for multiple operands

View File

@ -43,7 +43,7 @@ compile [random int %n, random integer %n, randint %n] to: "math.random(\(%n as
compile [random from %low to %high, random number from %low to %high, rand %low %high] to: compile [random from %low to %high, random number from %low to %high, rand %low %high] to:
"math.random(\(%low as lua), \(%high as lua))" "math.random(\(%low as lua), \(%high as lua))"
rule [random choice from %elements, random choice %elements, random %elements] =: rule [random choice from %elements, random choice %elements, random %elements] =:
=lua "\(%elements)[math.random(#\(%elements))]" =lua "\%elements[math.random(#\%elements)]"
# Math functions # Math functions
compile [% as number] to: "tonumber(\(% as lua))" compile [% as number] to: "tonumber(\(% as lua))"
@ -66,7 +66,7 @@ compile [log % base %base] to: "math.log(\(% as lua), \(%base as lua))"
compile [floor %] to: "math.floor(\(% as lua))" compile [floor %] to: "math.floor(\(% as lua))"
compile [round %, % rounded] to: "math.floor(\(% as lua) + .5)" compile [round %, % rounded] to: "math.floor(\(% as lua) + .5)"
rule [%n rounded to the nearest %rounder] =: rule [%n rounded to the nearest %rounder] =:
=lua "(\(%rounder))*math.floor(\(%n)/\(%rounder) + .5)" =lua "(\%rounder)*math.floor((\%n / \%rounder) + .5)"
compile [tau] to: "(2*math.pi)" compile [tau] to: "(2*math.pi)"
compile [pi] to: "math.pi" compile [pi] to: "math.pi"
compile [e] to: "math.e" compile [e] to: "math.e"
@ -78,7 +78,7 @@ compile [product of %items, product %items] to: "nomsu.utils.product(\(%items as
compile [all of %items] to: "nomsu.utils.all(\(%items as lua))" compile [all of %items] to: "nomsu.utils.all(\(%items as lua))"
compile [any of %items] to: "nomsu.utils.any(\(%items as lua))" compile [any of %items] to: "nomsu.utils.any(\(%items as lua))"
rule [avg of %items, average of %items] =: rule [avg of %items, average of %items] =:
=lua "(nomsu.utils.sum(\(%items))/#\(%items))" =lua "(nomsu.utils.sum(\%items)/#\%items)"
compile [min of %items, smallest of %items, lowest of %items] to: compile [min of %items, smallest of %items, lowest of %items] to:
"nomsu.utils.min(\(%items as lua))" "nomsu.utils.min(\(%items as lua))"
compile [max of %items, biggest of %items, largest of %items, highest of %items] to: compile [max of %items, biggest of %items, largest of %items, highest of %items] to:
@ -95,8 +95,8 @@ compile [max of %items by %value_expr] to: ".."
end) end)
compile [sort %items] to: "table.sort(\(%items as lua))" compile [sort %items] to: "table.sort(\(%items as lua))"
rule [sort %items by %key] =: =lua ".." rule [sort %items by %key] =: =lua ".."
nomsu.utils.sort(\(%items), function(x) nomsu.utils.sort(\%items, function(x)
return (\(%key))(nomsu, {['']=x}); return (\%key)(nomsu, {['']=x});
end) end)
# String utilities # String utilities

View File

@ -28,14 +28,14 @@ compile [with %assignments %action] to code:
Invalid format for 'with' statement. List entries must have the form %var = (value) Invalid format for 'with' statement. List entries must have the form %var = (value)
%value = (%tokens -> 3) %value = (%tokens -> 3)
add {i=%i, var=%var, value=%value} to %data add {i=%i, var=%var, value=%value} to %data
%foo = (..) %setup = (..)
join (..) join (..)
"local old_value\(%->"i") = \((%->"var") as lua); \((%->"var") as lua) = \((%->"value") as lua);" "local old_value\(%->"i") = \((%->"var") as lua); \((%->"var") as lua) = \((%->"value") as lua);"
..for all %data ..for all %data
..with glue "\n " ..with glue "\n "
".." ".."
do do
\(%foo) \%setup
local fell_through = false; local fell_through = false;
local ok, ret1, ret2 = pcall(function(nomsu, vars) local ok, ret1, ret2 = pcall(function(nomsu, vars)
\(%action as lua statements); \(%action as lua statements);