X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/01b1aacdc09e8f681cb2f0e3896d9b0679d6be24..2c6153373f927d948a74b283ebb16330af8ee49a:/test/chimaera.sod diff --git a/test/chimaera.sod b/test/chimaera.sod index 644bb74..b30248c 100644 --- a/test/chimaera.sod +++ b/test/chimaera.sod @@ -3,47 +3,52 @@ * A simple SOD module for testing. */ -code c : includes { +code c: includes { #include #include "chimaera.h" } -code h : includes { +code h: includes { #include "sod.h" } [nick = nml, link = SodObject] -class Animal : SodObject { +class Animal: SodObject { int tickles = 0; [combination = progn] void tickle(); [role = before] void nml.tickle() { me->nml.tickles++; } } -class Lion : Animal { +class Lion: Animal { void bite() { puts("Munch!"); } void nml.tickle() { Lion_bite(me); } } -class Goat : Animal { +class Goat: Animal { void butt() { puts("Bonk!"); } void nml.tickle() { Goat_butt(me); } } -class Serpent : Animal { +class Serpent: Animal { + int limit = 2; + void hiss() { puts("Sssss!"); } void bite() { puts("Nom!"); } void nml.tickle() { - if (SERPENT__CONV_NML(me)->nml.tickles <= 2) Serpent_hiss(me); - else Serpent_bite(me); + if (SERPENT__CONV_NML(me)->nml.tickles <= me->serpent.limit) + Serpent_hiss(me); + else + Serpent_bite(me); } } [nick = sir, link = Animal] -class Chimaera : Lion, Goat, Serpent { +class Chimaera: Lion, Goat, Serpent { + serpent.limit = 1; } -code c : user { +code c: user { /*----- Main driver code --------------------------------------------------*/ static void tickle_animal(Animal *a) @@ -77,25 +82,25 @@ static void provoke_serpent(Serpent *s) int main(void) { { - SOD_DECL(Lion, l); + SOD_DECL(Lion, l, NO_KWARGS); provoke_lion(l); tickle_animal(LION__CONV_NML(l)); } { - SOD_DECL(Goat, g); + SOD_DECL(Goat, g, NO_KWARGS); provoke_goat(g); tickle_animal(GOAT__CONV_NML(g)); } { - SOD_DECL(Serpent, s); + SOD_DECL(Serpent, s, NO_KWARGS); provoke_serpent(s); tickle_animal(SERPENT__CONV_NML(s)); } { - SOD_DECL(Chimaera, c); + SOD_DECL(Chimaera, c, NO_KWARGS); provoke_lion(CHIMAERA__CONV_LION(c)); provoke_goat(CHIMAERA__CONV_GOAT(c)); provoke_serpent(CHIMAERA__CONV_SERPENT(c));