aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2017-09-29 22:04:03 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2017-09-29 22:04:03 -0700
commite2bbbfe1611f12b33692af175d661fa25b2cc616 (patch)
tree1554068e8702612cbd86c4898059babe6b3e96dd /examples
parent723a4c38710e24ef82c2142d126e6cec48091494 (diff)
More stuff is working more better.
Diffstat (limited to 'examples')
-rw-r--r--examples/sample_game.nom138
1 files changed, 66 insertions, 72 deletions
diff --git a/examples/sample_game.nom b/examples/sample_game.nom
index 15d86f9..3f9d6bc 100644
--- a/examples/sample_game.nom
+++ b/examples/sample_game.nom
@@ -3,7 +3,6 @@ require "lib/permissions.nom"
require "lib/secrets.nom"
require "lib/plurals.nom"
-
# Users:
with secrets:
secret %users =: lua expr ".."
@@ -11,18 +10,14 @@ with secrets:
| {by_name=function(self, key) return "User<"..key..">" end,
| add=function(self, key) self[key] = self:by_name(key) end}
|})
- rule [find user %name] =:
+ rule (find user %name; @%name) =:
lua expr "secrets.users:by_name(vars.name) or nomsu:error('Failed to find user: '..tostring(vars.name))"
- rule [add user %name] =:
+ rule (add user %name) =:
lua expr "secrets.users:add(vars.name)"
- macro [@%name_block] =:
- %name_str =: lua expr "vars.name_block.value.value.src"
- ".."
- |nomsu:call("find user %", \repr %name_str\)
- rule [everybody, everyone] =:
+ rule (everybody; everyone) =:
(%entry's "key") for %entry in (entries in (secret %users))
- rule [rules that change users] =: ["add user %"]
+ rule (rules that change users) =: ["add user %"]
# Inventory:
with secrets:
@@ -33,57 +28,55 @@ with secrets:
| return t
|end})
- rule [inventory] =:
- dict (..)
- [%inv's "key", dict (%entry for %entry in (entries in (%inv's "value")))]
- ..for %inv in (entries in (secret %inventory))
+ rule (inventory) =: dict:
+ [%inv's "key", dict (%entry for %entry in (entries in (%inv's "value")))]
+ ..for %inv in (entries in (secret %inventory))
- rule [%person's inventory] =:
+ rule (%person's inventory) =:
dict (%entry for %entry in (entries in ((secret %inventory)->%person)))
- rule [%person's stock of %item] =:
+ rule (%person's stock of %item) =:
%item =: canonicalize %item
((%person's inventory)->%item) or 0
- rule [%person's stock of %item as str] =:
+ rule (%person's stock of %item as str) =:
%item =: canonicalize %item
%count =: %person's stock of %item
".."
- |\%count\ \(singular %item) if (%count == 1) else (plural %item)\
+ |\(%count) \((singular %item) if (%count == 1) else (plural %item))
- rule [give %person %count %item] =:
+ rule (give %person %count %item) =:
%item =: canonicalize %item
(%person's inventory)-> %item =: (%person's stock of %item) + %count
- rule [give %person %count %item from %donor] =:
+ rule (give %person %count %item from %donor) =:
%item =: canonicalize %item
if ((%donor's stock of %item) < %count):
say ".."
- |\%donor\ does not have enough \%item\ to transfer
+ |\(%donor) does not have enough \(%item) to transfer
..else:
(%person's inventory)->%item =: (%person's stock of %item) + %count
(%donor's inventory)->%item =: (%donor's stock of %item) - %count
- rule [%person has %item, %person has a %item, %person has an %item] =:
+ rule (%person has %item; %person has a %item; %person has an %item) =:
(%person's stock of %item) > 0
- rule [rules that change the inventory] =: [..]
+ rule (rules that change the inventory) =: [..]
"give % % %", "give % % % from %"
- rule [rules that view the inventory] =: [..]
+ rule (rules that view the inventory) =: [..]
"inventory", "%'s inventory", "%'s stock of %", "%'s stock of % as str"
-rule [you] =:
+rule (you) =:
lua expr "(nomsu.you or 'Anonymous')"
-rule [make %person %action, make %person do %action] =:
- lua block ".."
- |do
- | local old_you = nomsu.you
- | nomsu.you = vars.person
- | ret = vars.action(nomsu, vars)
- | nomsu.you = old_you
- |end
+rule (make %person %action; make %person do %action) =:
+ lua code ".."
+ |local old_you = nomsu.you
+ |nomsu.you = vars.person
+ do %action
+ lua code ".."
+ |nomsu.you = old_you
say "===================================================="
say " NEW GAME"
@@ -91,27 +84,26 @@ say "===================================================="
# Unanimity for proposals
with secrets:
- rule [pending proposal] =:
+ rule (pending proposal) =:
secret %pending
- rule [propose source %src] =:
+ rule (propose source %src) =:
if (secret %pending):
error "A proposal is already pending."
secret %pending =: %src
secret %approvals =: []
say ".."
|Proposal:
- |\%src\
+ |\(%src)
- macro block [propose %action] =:
- %source =: source code from tree %action
- ".."
- |nomsu:call("propose source %", \repr %source\)
+ parse (propose %action) as:
+ propose source:
+ source code from tree \%action
- rule [with everyone's approval do %action] =:
+ rule (with everyone's approval do %action) =:
run %action
- rule [mark %who as approving] =:
+ rule (mark %who as approving) =:
if (not (pending proposal)):
say "No action pending"
return
@@ -128,32 +120,31 @@ with secrets:
secret %pending =: nil
secret %approvals =: nil
- rule [mark %who as rejecting] =:
+ rule (mark %who as rejecting) =:
secret %pending =: nil
secret %approvals =: nil
- rule [approve, vote yes, vote yea] =:
+ rule (approve; vote yes; vote yea) =:
mark (you) as approving
- rule [reject, vote no, vote nay, veto, disapprove] =:
+ rule (reject; vote no; vote nay; veto; disapprove) =:
mark (you) as rejecting
restrict "with everyone's approval do %" to within "mark % as approving"
restrict "mark % as approving" to within "approve"
restrict "mark % as rejecting" to within "reject"
-rule [join] =:
+rule (join) =:
add user (you)
say ".."
- |Welcome to the game, \you\!
+ |Welcome to the game, \(you)!
restrict (rules that change users) to within "join"
-restrict (..)
- flatten [..]
- ["rule % = %", "make % %", "restrict % to within %"]
- (rules that change the inventory)
+restrict: flatten [..]
+ ["rule % = %", "make % %", "restrict % to within %"]
+ (rules that change the inventory)
..to within "with everyone's approval do %"
say "Rule making is now restricted"
@@ -176,7 +167,7 @@ propose:
approve
propose:
- rule [fart] =:
+ rule (fart) =:
say "poot"
say "fart should have been defined"
approve
@@ -185,7 +176,7 @@ fart
propose:
with secrets:
- rule [open election %candidates %action] =:
+ rule (open election %candidates %action) =:
if (secret %candidates):
error "An election is already in progress."
..else:
@@ -194,82 +185,85 @@ propose:
secret %action =: %action
secret %winner =: nil
- rule [close the election] =:
+ rule (close the election) =:
secret %candidates =: nil
secret %votes =: nil
secret %action =: nil
secret %winner =: nil
- rule [votes for %candidate] =:
+ rule (votes for %candidate) =:
%votes =: []
for %entry in (entries in (secret %votes)):
if ((%entry's "value") == %candidate):
add (%entry's "key") to %votes
%votes
- rule [after winning a fair election do %action] =:
+ rule (after winning a fair election do %action) =:
do %action
- rule [the winner] =: secret %winner
+ rule (the winner) =: secret %winner
- rule [vote for %candidate] =:
+ rule (vote for %candidate) =:
for %c in (secret %candidates):
if (%c == %candidate):
go to %candidate-is-legit
error ".."
- |Invalid candidate: \%candidate\
+ |Invalid candidate: \(%candidate)
-> %candidate-is-legit
(secret %votes)->(you) =: %candidate
%vote-percent =: (number of (votes for %candidate)) / (number of (everyone))
say ".."
- |Vote cast. \%candidate\ now has \100 * %vote-percent\% of the votes.
+ |Vote cast. \(%candidate) now has \(100 * %vote-percent)% of the votes.
if (%vote-percent > 0.5):
secret %winner =: %candidate
after winning a fair election do (secret %action)
close the election
- rule [rules that change the election] =: [..]
+ rule (rules that change the election) =: [..]
"open election %", "close the election", "vote for %"
- rule [rules that view the election] =: [..]
+ rule (rules that view the election) =: [..]
"votes for %"
approve
propose:
- rule [as bill %action] =:
+ rule (_as bill %action) =:
if ((you) == "Anonymous"):
make "bill" do %action
..else:
say ".."
- |Who do you think you are, \you\?
- allow ["as bill %"] to use ["make % %"]
+ |Who do you think you are, \(you)?
+ parse (as bill %) as (_as bill \%)
+ allow ["_as bill %"] to use ["make % %"]
approve
as bill: join
propose:
- rule [as dave %action] =:
+ rule (_as dave %action) =:
if ((you) == "Anonymous"):
make "dave" do %action
..else:
say ".."
- |Who do you think you are, \you\?
- allow ["as dave %"] to use ["make % %"]
+ |Who do you think you are, \(you)?
+ parse (as dave %) as (_as dave \%)
+ allow ["_as dave %"] to use ["make % %"]
approve
as bill: approve
as dave: join
propose:
- rule [declare war] =: say "WAR!!!"
+ rule (declare war) =: say "WAR!!!"
with secrets:
secret %president =: nil
- rule [elect president from %candidates] =:
+ rule (elect president from %candidates) =:
open election %candidates:
- say ".."|Hail to the chief: \the winner\
+ say ".."
+ |Hail to the chief: \(the winner)
secret %president =: the winner
- rule [as the president do %action] =: do %action
+ rule (as the president do %action) =: do %action
restrict "declare war" to within "as the president do %"
approve
@@ -284,7 +278,7 @@ as dave:
declare war
propose:
- rule [take a shit] =: say "shit taken."
+ rule (take a shit) =: say "shit taken."
approve
as bill: approve