2017-09-21 00:10:26 -07:00
|
|
|
require "lib/metaprogramming.nom"
|
2017-10-09 20:17:38 -07:00
|
|
|
require "lib/utils.nom"
|
2017-09-21 00:10:26 -07:00
|
|
|
require "lib/control_flow.nom"
|
|
|
|
require "lib/operators.nom"
|
|
|
|
|
|
|
|
# List/dict functions:
|
|
|
|
|
|
|
|
# Indexing
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [..]
|
|
|
|
%index st in %list, %index nd in %list, %index rd in %list
|
|
|
|
%index th in %list, %index in %list
|
2017-09-28 17:49:15 -07:00
|
|
|
..as: %list -> %index
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [..]
|
|
|
|
%index st to last in %list, %index nd to last in %list, %index rd to last in %list
|
2017-09-21 00:10:26 -07:00
|
|
|
%index th to last in %list
|
2017-09-28 17:49:15 -07:00
|
|
|
..to: "nomsu.utils.nth_to_last(\(%list as lua), \(%index as lua))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [first in %list, first %list] as: 1 st in %list
|
|
|
|
parse [last in %list, last %list] as: 1 st to last in %list
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Dict iteration convenience function. This could also be accomplished with: for all (entries in %dict): ...
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [for %key -> %value in %dict %body] to code: ".."
|
|
|
|
|do;
|
|
|
|
| for k, v in pairs(\(%dict as lua)) do;
|
|
|
|
| \(%key as lua), \(%value as lua) = k, v;
|
|
|
|
| \(%body as lua statements)
|
|
|
|
| end;
|
|
|
|
|end;
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Membership testing
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [%item is in %list, %list contains %item, %list has %item] =:
|
2017-09-21 00:10:26 -07:00
|
|
|
for %key -> %value in %list:
|
|
|
|
if (%key == %item): return (yes)
|
|
|
|
return (no)
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [..]
|
|
|
|
%item isn't in %list, %item is not in %list
|
|
|
|
%list doesn't contain %item, %list does not contain %item
|
|
|
|
%list doesn't have %item, %list does not have %item
|
2017-09-21 00:10:26 -07:00
|
|
|
..=:
|
|
|
|
for %key -> %value in %list:
|
|
|
|
if (%key == %item): return (no)
|
|
|
|
return (yes)
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [%list has key %index, %list has index %index] to: ".."
|
|
|
|
|((\(%list as lua))[\(%index as lua)] ~= nil)
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [..]
|
|
|
|
%list doesn't have key %index, %list does not have key %index
|
|
|
|
%list doesn't have index %index, %list does not have index %index
|
|
|
|
..to: "((\(%list as lua))[\(%index as lua)] ~= nil)"
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [length of %list, size of %list, size %list, number of %list, len %list] to:
|
2017-09-28 17:49:15 -07:00
|
|
|
"nomsu.utils.size(\(%list as lua))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Chained lookup
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [%list ->* %indices] to:
|
2017-09-21 02:33:04 -07:00
|
|
|
assert ((%indices's "type") == "List") ".."
|
2017-09-28 17:49:15 -07:00
|
|
|
|Expected List for chained lookup, not \(%indices's "type")
|
2017-10-02 17:21:22 -07:00
|
|
|
%ret = "\(%list as lua)"
|
2017-09-21 02:33:04 -07:00
|
|
|
for %index in (%indices's "value"):
|
2017-10-02 17:21:22 -07:00
|
|
|
%ret join= "[\(%index as lua)]"
|
2017-09-28 17:49:15 -07:00
|
|
|
"\(%ret)"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Assignment
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [..]
|
|
|
|
%list's %index = %new_value, %index st in %list = %new_value, %index nd in %list = %new_value
|
|
|
|
%index rd in %list = %new_value, %index th in %list = %new_value, %index in %list = %new_value
|
2017-09-21 00:10:26 -07:00
|
|
|
%list -> %index = %new_value
|
2017-09-28 17:49:15 -07:00
|
|
|
..to code:
|
2017-10-02 19:00:58 -07:00
|
|
|
"(\(%list as lua))[\(%index as lua)] = \(%new_value as lua);"
|
2017-10-02 17:21:22 -07:00
|
|
|
|
|
|
|
compile [append %item to %list, add %item to %list] to:
|
2017-09-28 17:49:15 -07:00
|
|
|
"table.insert(\(%list as lua), \(%item as lua))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-11 20:32:31 -07:00
|
|
|
compile [pop from %list, remove last from %list] to:
|
|
|
|
"table.remove(\(%list as lua))"
|
|
|
|
|
|
|
|
compile [remove index %index from %list] to:
|
|
|
|
"table.remove(\(%list as lua), \(%index as lua))"
|
|
|
|
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [flatten %lists] =:
|
|
|
|
%flat = []
|
2017-09-21 00:10:26 -07:00
|
|
|
for %list in %lists:
|
|
|
|
for %item in %list:
|
|
|
|
add %item to %flat
|
|
|
|
%flat
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [dict %items] =:
|
|
|
|
%dict = []
|
2017-09-21 00:10:26 -07:00
|
|
|
for %pair in %items:
|
2017-10-02 17:21:22 -07:00
|
|
|
%dict -> (%pair -> 1) = (%pair -> 2)
|
2017-09-21 02:33:04 -07:00
|
|
|
%dict
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [entries in %dict] =:
|
|
|
|
%entries = []
|
2017-09-28 17:49:15 -07:00
|
|
|
for %k -> %v in %dict:
|
|
|
|
add (dict [["key",%k],["value",%v]]) to %entries
|
|
|
|
%entries
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [keys in %dict] =:
|
|
|
|
%keys = []
|
2017-09-28 17:49:15 -07:00
|
|
|
for %k -> %v in %dict: add %k to %keys
|
|
|
|
%keys
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [values in %dict] =:
|
|
|
|
%values = []
|
2017-09-28 17:49:15 -07:00
|
|
|
for %k -> %v in %dict: add %v to %values
|
|
|
|
%values
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# List Comprehension
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [%expression for %var in %iterable] to:
|
2017-09-21 00:10:26 -07:00
|
|
|
assert ((%var's "type") == "Var") ".."
|
2017-09-28 17:49:15 -07:00
|
|
|
|List comprehension has the wrong type for the loop variable. Expected Var, but got: \(%var's "type")
|
2017-09-21 00:10:26 -07:00
|
|
|
".."
|
2017-10-02 17:21:22 -07:00
|
|
|
|(function(game, vars);
|
|
|
|
| local comprehension = {};
|
|
|
|
| for i,value in ipairs(\(%iterable as lua)) do;
|
|
|
|
| \(%var as lua) = value;
|
|
|
|
| comprehension[i] = \(%expression as lua);
|
|
|
|
| end;
|
|
|
|
| return comprehension;
|
2017-09-21 00:10:26 -07:00
|
|
|
|end)(game, setmetatable({}, {__index=vars}))
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [%expression for all %iterable] as: %expression for % in %iterable
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-09 20:17:38 -07:00
|
|
|
rule [%items sorted] =:
|
|
|
|
%copy = (% for all %items)
|
|
|
|
sort %copy
|
|
|
|
%copy
|
|
|
|
rule [%items sorted by %key] =:
|
|
|
|
%copy = (% for all %items)
|
|
|
|
sort %copy by %key
|
|
|
|
%copy
|
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# TODO: maybe make a generator/coroutine?
|
|
|
|
|
|
|
|
#.. Dict comprehensions can be accomplished okay by doing:
|
2017-09-24 20:20:27 -07:00
|
|
|
dict ([new_key using (%'s "key"), new_value using (%'s "value")] for all (entries in %dict))
|
2017-09-21 00:10:26 -07:00
|
|
|
or something similar
|
|
|
|
# TODO: fix compiler bugs
|
|
|
|
pass
|