2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file defines some common math literals and functions
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
use "core/text.nom"
|
|
|
|
use "core/operators.nom"
|
|
|
|
use "core/control_flow.nom"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Literals:
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [infinity, inf] to: Lua value "math.huge"
|
|
|
|
compile [not a number, NaN, nan] to: Lua value "(0/0)"
|
|
|
|
compile [pi, Pi, PI] to: Lua value "math.pi"
|
|
|
|
compile [tau, Tau, TAU] to: Lua value "(2*math.pi)"
|
|
|
|
compile [golden ratio] to: Lua value "((1+math.sqrt(5))/2)"
|
|
|
|
compile [e] to: Lua value "math.exp(1)"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Functions:
|
2018-06-06 14:19:45 -07:00
|
|
|
compile [% as a number, % as number] to: Lua value "tonumber(\(% as lua expr))"
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [absolute value %, | % |, abs %] to: Lua value "math.abs(\(% as lua expr))"
|
|
|
|
compile [square root %, square root of %, √%, sqrt %] to: Lua value "math.sqrt(\(% as lua expr))"
|
|
|
|
compile [sine %, sin %] to: Lua value "math.sin(\(% as lua expr))"
|
|
|
|
compile [cosine %, cos %] to: Lua value "math.cos(\(% as lua expr))"
|
|
|
|
compile [tangent %, tan %] to: Lua value "math.tan(\(% as lua expr))"
|
|
|
|
compile [arc sine %, asin %] to: Lua value "math.asin(\(% as lua expr))"
|
|
|
|
compile [arc cosine %, acos %] to: Lua value "math.acos(\(% as lua expr))"
|
|
|
|
compile [arc tangent %, atan %] to: Lua value "math.atan(\(% as lua expr))"
|
2018-05-24 14:57:24 -07:00
|
|
|
compile [arc tangent %y / %x, atan2 %y %x] to: Lua value "math.atan2(\(%y as lua expr), \(%x as lua expr))"
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [hyperbolic sine %, sinh %] to: Lua value "math.sinh(\(% as lua expr))"
|
|
|
|
compile [hyperbolic cosine %, cosh %] to: Lua value "math.cosh(\(% as lua expr))"
|
|
|
|
compile [hyperbolic tangent %, tanh %] to: Lua value "math.tanh(\(% as lua expr))"
|
|
|
|
compile [e^%, exp %] to: Lua value "math.exp(\(% as lua expr))"
|
|
|
|
compile [natural log %, ln %, log %] to: Lua value "math.log(\(% as lua expr))"
|
|
|
|
compile [log % base %base, log_%base %, log base %base %] to: Lua value "math.log(\(% as lua expr), \(%base as lua expr))"
|
|
|
|
compile [floor %] to: Lua value "math.floor(\(% as lua expr))"
|
|
|
|
compile [ceiling %, ceil %] to: Lua value "math.ceil(\(% as lua expr))"
|
|
|
|
compile [round %, % rounded] to: Lua value "math.floor(\(% as lua expr) + .5)"
|
2018-04-25 16:30:49 -07:00
|
|
|
action [%n to the nearest %rounder]
|
2018-01-11 18:51:21 -08:00
|
|
|
=lua "(\%rounder)*math.floor((\%n / \%rounder) + .5)"
|
|
|
|
|
|
|
|
# Any/all/none
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [all of %items, all %items] to
|
2018-01-26 20:20:12 -08:00
|
|
|
unless: (%items' "type") is "List"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "utils.all(\(%items as lua expr))"
|
2018-01-26 20:20:12 -08:00
|
|
|
%clauses <- []
|
2018-06-04 17:56:09 -07:00
|
|
|
for % in %items
|
2018-05-15 20:32:22 -07:00
|
|
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "(\(%clauses joined with " and "))"
|
2018-01-11 18:51:21 -08:00
|
|
|
parse [not all of %items, not all %items] as: not (all of %items)
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [any of %items, any %items] to
|
2018-01-26 20:20:12 -08:00
|
|
|
unless: (%items' "type") is "List"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "utils.any(\(%items as lua expr))"
|
2018-01-26 20:20:12 -08:00
|
|
|
%clauses <- []
|
2018-06-04 17:56:09 -07:00
|
|
|
for % in %items
|
2018-05-15 20:32:22 -07:00
|
|
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "(\(%clauses joined with " or "))"
|
2018-01-11 18:51:21 -08:00
|
|
|
parse [none of %items, none %items] as: not (any of %items)
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [sum of %items, sum %items] to
|
2018-01-26 20:20:12 -08:00
|
|
|
unless: (%items' "type") is "List"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "utils.sum(\(%items as lua expr))"
|
2018-01-26 20:20:12 -08:00
|
|
|
%clauses <- []
|
2018-06-04 17:56:09 -07:00
|
|
|
for % in %items
|
2018-05-15 20:32:22 -07:00
|
|
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "(\(%clauses joined with " + "))"
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [product of %items, product %items] to
|
2018-01-26 20:20:12 -08:00
|
|
|
unless: (%items' "type") is "List"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "utils.product(\(%items as lua expr))"
|
2018-01-26 20:20:12 -08:00
|
|
|
%clauses <- []
|
2018-06-04 17:56:09 -07:00
|
|
|
for % in %items
|
2018-05-15 20:32:22 -07:00
|
|
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
2018-04-19 17:23:44 -07:00
|
|
|
return: Lua value "(\(%clauses joined with " * "))"
|
2018-04-25 16:30:49 -07:00
|
|
|
action [avg of %items, average of %items]
|
2018-01-12 16:33:11 -08:00
|
|
|
=lua "(utils.sum(\%items)/#\%items)"
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [min of %items, smallest of %items, lowest of %items] to
|
|
|
|
Lua value "utils.min(\(%items as lua expr))"
|
|
|
|
compile [max of %items, biggest of %items, largest of %items, highest of %items] to
|
|
|
|
Lua value "utils.max(\(%items as lua expr))"
|
2018-05-27 18:28:23 -07:00
|
|
|
parse [min of %items by %item = %value_expr] as
|
|
|
|
result of
|
|
|
|
<- {%best:nil, %best_key:nil}
|
|
|
|
for %item in %items
|
|
|
|
%key <- %value_expr
|
|
|
|
if: (%best = (nil)) or (%key < %best_key)
|
|
|
|
<- {%best:%item, %best_key:%key}
|
|
|
|
return %best
|
|
|
|
parse [max of %items by %item = %value_expr] as
|
|
|
|
result of
|
|
|
|
<- {%best:nil, %best_key:nil}
|
|
|
|
for %item in %items
|
|
|
|
%key <- %value_expr
|
|
|
|
if: (%best = (nil)) or (%key > %best_key)
|
|
|
|
<- {%best:%item, %best_key:%key}
|
|
|
|
return %best
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Random functions
|
2018-04-25 16:30:49 -07:00
|
|
|
action [seed random with %]
|
2018-01-11 18:51:21 -08:00
|
|
|
lua> ".."
|
|
|
|
math.randomseed(\%);
|
2018-01-16 01:44:50 -08:00
|
|
|
for i=1,20 do math.random(); end
|
2018-01-11 18:51:21 -08:00
|
|
|
parse [seed random] as: seed random with (=lua "os.time()")
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [random number, random, rand] to: Lua value "math.random()"
|
|
|
|
compile [random int %n, random integer %n, randint %n] to: Lua value "math.random(\(%n as lua expr))"
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [random from %low to %high, random number from %low to %high, rand %low %high] to
|
2018-04-25 17:43:48 -07:00
|
|
|
Lua value "math.random(\(%low as lua expr), \(%high as lua expr))"
|
2018-04-25 16:30:49 -07:00
|
|
|
action [random choice from %elements, random choice %elements, random %elements]
|
2018-01-11 18:51:21 -08:00
|
|
|
=lua "\%elements[math.random(#\%elements)]"
|