summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-04-07 13:45:04 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2019-04-18 20:57:17 +0100
commitd1b759d3ed8bddefb5748f00d7133de321d943c6 (patch)
tree919425036676b686b3f79a87ce65aae8166cd9f5 /scripts
parentStrongly type helper functions (diff)
downloadtoy-d1b759d3ed8bddefb5748f00d7133de321d943c6.zip
Rename is helper function
Prevents groovy evaluating something else
Diffstat (limited to 'scripts')
-rw-r--r--scripts/toy.groovy78
1 files changed, 39 insertions, 39 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index 3bef835..6c54368 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -206,7 +206,7 @@ return new Object() {
void setPermission(String i, boolean v) { setProp("permission.$i", v) }
void givePermission(String i) { setPermission(i, true) }
void revokePermission(String i) { setPermission(i, false) }
- boolean is(String i) { loadBoolean("toy.state.$i") == true }
+ boolean stateIs(String i) { loadBoolean("toy.state.$i") == true }
void set(String i, boolean s) { save("toy.state.$i", s) }
boolean positioned(String i) { ("toy.position") == i }
int getPunish() { loadInteger("toy.punishment") ?: 0 }
@@ -273,7 +273,7 @@ return new Object() {
def sessionAborted = null;
def sessionToys = [:];
def gagText = { t, p ->
- if (!is(GAGGED)) return t.toString();
+ if (!stateIs(GAGGED)) return t.toString();
return t.split(/\s+/)
.collect {
'm' * getRandom((int)Math.max(1.0, it.length() * 1.0)) +
@@ -319,7 +319,7 @@ return new Object() {
Collections.shuffle(tags);
switch (tags[0]) {
case ASS:
- if (!is(GAGGED))
+ if (!stateIs(GAGGED))
return compose([
["Come closer,", "Don't be shy,"],
["kiss it!", "two kisses on each cheek."]]);
@@ -332,14 +332,14 @@ return new Object() {
["You know what this is for?", "Good boys get rewards, bad ones getting a beating.", "Would you like your ass a darker shade?"]]);
break;
case BOOTS:
- if (is(GAGGED))
+ if (stateIs(GAGGED))
return compose([
["I know you'd like to worship them.", "Too bad that tongue can't be put to good use."]]);
else
return compose([
["Get down there, worship my boots.", "See any dirt on my boots? Maybe you should lick them clean!"]]);
case PUSSY:
- if (is(GAGGED))
+ if (stateIs(GAGGED))
return compose([
["I know you'd like to pleasure me.", "Too bad that tongue can't be put to good use."]]);
else
@@ -382,7 +382,7 @@ return new Object() {
playBackgroundSound(null);
};
def expose = { imageSpec ->
- if (!is(NAKED)) {
+ if (!stateIs(NAKED)) {
present(imageSpec, [
["Get that cock out, toy;", "Let's see that cock of mine."],
["I want to torment it.", "It's playtime!"]]);
@@ -669,8 +669,8 @@ return new Object() {
};
// Pre-tease
def preRelease = {
- if (!is(CHASTE)) return;
- if (!is(NAKED)) {
+ if (!stateIs(CHASTE)) return;
+ if (!stateIs(NAKED)) {
present([DRESSED], [
["Reach down... and through your clothes...", "Stay clothed,"],
["rub that chastity device...", "run your hand around that locked cock..."],
@@ -706,7 +706,7 @@ return new Object() {
showButtonGT("Thank you, ${dommeTitle()}", "ok", 80, 1);
};
def preEdge = {
- if (is(CHASTE)) return;
+ if (stateIs(CHASTE)) return;
expose([DRESSED]);
harden([DRESSED]);
edge(4, [DRESSED]);
@@ -716,7 +716,7 @@ return new Object() {
wait(getRandom(5) + 5);
};
def preGag = {
- if (is(GAGGED)) return 1.2;
+ if (stateIs(GAGGED)) return 1.2;
if (!has(BALLGAG)) return;
present([DRESSED], [
["Go fetch your gag, toy...", "Bring me your gag, toy..."],
@@ -736,7 +736,7 @@ return new Object() {
return 1.2;
};
def clamps = {
- if (is(CLAMPED)) return;
+ if (stateIs(CLAMPED)) return;
if (!has(CLAMPS)) return;
present([DRESSED],
likes(PAIN) ? [
@@ -770,7 +770,7 @@ return new Object() {
};
def preClamps = {
if (!has(CLAMPS)) return;
- if (is(CLAMPED)) {
+ if (stateIs(CLAMPED)) {
clampsShow();
}
else {
@@ -780,7 +780,7 @@ return new Object() {
return 1.8;
};
def preCollar = {
- if (is(COLLARED)) return 1.1;
+ if (stateIs(COLLARED)) return 1.1;
if (!has(COLLAR)) return;
present([DRESSED], [
["You look underdressed, toy.", "A toy without a collar doesn't look right."],
@@ -795,7 +795,7 @@ return new Object() {
return 1.1;
};
def preStrip = { imageSpec = [DRESSED] ->
- if (is(NAKED)) return 1.1;
+ if (stateIs(NAKED)) return 1.1;
present(imageSpec, [
["Clothes off!", "Get naked, slut!"]]);
wait(10);
@@ -814,12 +814,12 @@ return new Object() {
// Post
def postEdge = {
- if (is(CHASTE)) return;
+ if (stateIs(CHASTE)) return;
if (!can(EDGE)) return;
edge(6, [TEASE]);
};
def postCum = {
- if (is(CHASTE)) return;
+ if (stateIs(CHASTE)) return;
present([TEASE], [
["How about I let you cum?", "Maybe I should let you cum."],
["Would you like that?", "Let some of that frustration out?"]]);
@@ -831,7 +831,7 @@ return new Object() {
}
};
def chastity = { pre ->
- if (is(CHASTE)) return;
+ if (stateIs(CHASTE)) return;
if (!has(CHASTITY)) return;
if (pre) {
present([DRESSED,TEASE], [
@@ -870,7 +870,7 @@ return new Object() {
}
def postChastity = {
chastity(false);
- if (is(CHASTE) && (getPermission(PERM_CHASTE) == null ||
+ if (stateIs(CHASTE) && (getPermission(PERM_CHASTE) == null ||
(getPermission(PERM_CHASTE) == false && getProp(PERM_CHASTE_ASK, loadI, 0) < getTime() - (DAY * 30)))) {
present([DRESSED,TEASE], [
["Now I have you locked up,", "Now my cock is secured away,"],
@@ -1187,13 +1187,13 @@ return new Object() {
};
def playClamps = {
if (!has(CLAMPS)) return;
- if (!is(CLAMPED)) clamps();
+ if (!stateIs(CLAMPED)) clamps();
clampsShow();
return clampPulls(3 + getRandom(10));
};
def intClamps = {
if (!has(CLAMPS)) return;
- if (!is(CLAMPED)) return;
+ if (!stateIs(CLAMPED)) return;
clampsShow();
return clampPulls(getRandom(5));
};
@@ -1230,7 +1230,7 @@ return new Object() {
return null;
};
def removeToy = { toy, imageSpec ->
- if (!is(toy)) return;
+ if (!stateIs(toy)) return;
def toyName = stateToyName(toy);
present(imageSpec, [
["OK,"],
@@ -1301,14 +1301,14 @@ return new Object() {
'postChastity': postChastity
];
def sessionPlay = {
- if (is(CHASTE)) sessionToys[CHASTITY] = getTime();
+ if (stateIs(CHASTE)) sessionToys[CHASTITY] = getTime();
def playScope = [
'randRange': { min, max -> randRange(min, max) },
'currentPunishment': { getPunish() },
'sessionAborted': { return sessionAborted },
'can': { return can(it) },
'has': { return has(it) },
- 'is': { return is(it) },
+ 'is': { return stateIs(it) },
'likes': { return likes(it) },
'punishMultiple': (float)1.0,
'prop': load('toy') ?: [:]
@@ -1361,7 +1361,7 @@ return new Object() {
'activities': activityList
];
final eval = { expr -> Eval.me('toy', playScope, expr.toString()) };
- if (is("DEBUG")) {
+ if (stateIs("DEBUG")) {
// Check everything in DOMME evaluates and resolves
final checkIsFunc = { group, name ->
if (!name) return;
@@ -1416,7 +1416,7 @@ return new Object() {
postChastity();
}
wait(getRandom(10) + 5);
- def toys = TOYTOYS.findAll { t -> is(t) };
+ def toys = TOYTOYS.findAll { t -> stateIs(t) };
Collections.shuffle(toys);
if (toys) {
if (!goodToy) {
@@ -1436,7 +1436,7 @@ return new Object() {
}
};
}
- if (is(NAKED)) {
+ if (stateIs(NAKED)) {
if (goodToy && getRandom(1)) {
present([DRESSED], [
["Put some clothes back on.", "Cover yourself up!"]]);
@@ -1522,7 +1522,7 @@ return new Object() {
dress([[LINGERIE,nTITS]]);
if (rt && sessionSummon([LINGERIE,nTITS])) {
preStrip([LINGERIE,nTITS]);
- def toys = TOYTOYS.findAll { t -> is(t) };
+ def toys = TOYTOYS.findAll { t -> stateIs(t) };
Collections.shuffle(toys);
toys.each { removeToy(it, [LINGERIE,nTITS]) };
present([LINGERIE,nTITS], [
@@ -1536,7 +1536,7 @@ return new Object() {
removeEvent(REDRESS);
set(NAKED, false);
// Assume toy will release himself
- TOYTOYS.findAll { t -> is(t) }.each {
+ TOYTOYS.findAll { t -> stateIs(t) }.each {
removeEvent("$RELEASEFROM-$it");
set(it, false);
};
@@ -1685,10 +1685,10 @@ return new Object() {
["I'm not going to like this, am I?", "There is no way this ends well for you."],
["Out with it.", "Let me hear it."]]);
def opts = [ ];
- if (is(CHASTE)) {
+ if (stateIs(CHASTE)) {
opts.push([lbl: "Freed from chastity", act: confessChastityRelease]);
}
- if (!is(CHASTE)) {
+ if (!stateIs(CHASTE)) {
opts.push([lbl: "Stroked", act: confessStroked]);
}
opts.push([ lbl: "Nothing listed (phew!)", act: null ]);
@@ -1765,14 +1765,14 @@ return new Object() {
[ "Will you be good while I'm gone?", "You will behave as I expect?" ]]);
wait(10);
postChastity();
- def toys = TOYTOYS.findAll { t -> is(t) };
+ def toys = TOYTOYS.findAll { t -> stateIs(t) };
Collections.shuffle(toys);
toys.each { removeToy(it, [DRESSED,nTEASE]) };
present([DRESSED,TEASE], [
[ "Back later!", "See you soon, toy" ]]);
wait(5);
}
- else if (has(CHASTITY) && !is(CHASTE)) {
+ else if (has(CHASTITY) && !stateIs(CHASTE)) {
leaveNote("I want you in chastity until I return!", CHASTE);
}
DOMME = loadDomme(OWNER);
@@ -1860,7 +1860,7 @@ return new Object() {
def setupShowState = {
show(
[CHASTE, COLLARED, CUFFED, CLAMPED, GAGGED, NAKED].collect {
- def v = is(it);
+ def v = stateIs(it);
return "$it: $v\n".capitalize()
}.join());
showButton("OK");
@@ -1947,7 +1947,7 @@ return new Object() {
}
}
else {
- if (is("DEBUG")) {
+ if (stateIs("DEBUG")) {
def timeStr = localTimeOf(e.event.time).format(soonFormatter);
show("$e.name: $timeStr -> ${e.event.func}(${e.event.arg})");
}
@@ -1962,23 +1962,23 @@ return new Object() {
[ lbl: "Calendar", act: setupShowCalendar ],
[ lbl: "Confess", act: confess ],
];
- if (is("DEBUG")) {
+ if (stateIs("DEBUG")) {
opts.push([ lbl: "Status", act: setupShowState ]);
opts.push([ lbl: "Play", act: playEvent, arg: true ]);
opts.push([ lbl: "Activity", act: playActivity ]);
}
- if (is(NAKED)) {
+ if (stateIs(NAKED)) {
opts.push([ lbl: "May I wear clothes", act: requestClothes ]);
}
- TOYTOYS.findAll { is(it) }.each {
+ TOYTOYS.findAll { stateIs(it) }.each {
opts.push([ lbl: "May I be un-$it".toString(), act: requestRelease, arg: it ]);
};
opts.push([ lbl: "Back", act: null ]);
- def opt = getSelectedValue(is("DEBUG") ? DOMME : "Yes, toy?", opts.collect { it.lbl });
+ def opt = getSelectedValue(stateIs("DEBUG") ? DOMME : "Yes, toy?", opts.collect { it.lbl });
def act = opts[opt].act;
if (act)
act(opts[opt].arg);
- else if (is("DEBUG"))
+ else if (stateIs("DEBUG"))
return "toy";
}
addAvail(clickTime);