Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

54
LINES

< > BotCompany Repo | #1002561 // Again Bot (LIVE)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1850L/12K/40K).

!752

// TODO: When in a dialog, this should be prioritized by dispatcher

static new Map<S, Status> statusMap; // key = dialog id

p {
  load("statusMap");
}

static abstract class Status {
  abstract S answer(S s);
}

static class AgainThis extends Status {
  S q;
  *() {}
  *(S *q) {}
  
  S answer(S s) {
    status(null); // always forget question after one line
    
    if (isYes(s)) exceptionToUser {
      ret quote(q) + " >> " + askSelf(q);
    } else if (isNo(s))
      ret "OK";
    null;
  }
}

static void status(Status s) {
  if (s == null)
    statusMap.remove(getDialogID());
  else
    statusMap.put(getDialogID(), s);
  save("statusMap");
}

answer {
  if "again" {
    Map last = last(getDialog());
    if (last == null)
      ret "Again what?";
    else {
      S q = getString(last, "question");
      status(new AgainThis(q));
      ret "Again this? >> " + q;
    }
  }
  
  Status status = statusMap.get(getDialogID());
  if (status != null)
    ret status.answer(s);
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1002561
Snippet name: Again Bot (LIVE)
Eternal ID of this version: #1002561/1
Text MD5: 9b6dfb66da736203c5520192e6e52f2d
Transpilation MD5: d52d3e88c4b46e485819aca29721bfe5
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-03-03 03:09:41
Source code size: 1047 bytes / 54 lines
Pitched / IR pitched: No / No
Views / Downloads: 557 / 990
Referenced in: [show references]