@Override public void avatarPursue() { if (Me.getBoss() != Me) { throw new IllegalStateException("this quest is only for RONIN"); } avatarConsole() .showChoices( "Choose new master", Me, Me.myShire().getCensus().toArray(), SubjectiveType.RESPECT_ORDER, new Calc.Listener() { @Override public void call(Object arg) { Clan clan = (Clan) arg; if (clan == Me && Me.myOrder() == null) { Order.createBy(Me); success(Me); } else { Me.join(clan); success(clan); } } }); }
@Override public void pursue() { final Clan currBoss = Me.getBoss(); if (currBoss != Me) { success(currBoss); Me.addReport(GobLog.findSomeone(currBoss, "same old master")); return; } if (attemptsLeft-- > 0) { Clan candidate = Me.myShire().getRandOfCensus(); final double resp = Me.FB.randomValueInPriority().compare(Me, candidate, Me); if (Me != candidate && !Me.isSomeBossOf(candidate)) { Double d = respectMemo.get(candidate); if (d == null) { respectMemo.put(candidate, resp); } else { respectMemo.put(candidate, resp + d); } } } else { Clan bestClan = null; double max = 0; for (Clan c : respectMemo.keySet()) { double d = respectMemo.get(c); if (d > max) { max = d; bestClan = c; } } if (max > 0) { Me.join( bestClan); // TODO boss should be able to reject (cuz minions cost money) ... in that // case just offer service? success(bestClan); Me.addReport(GobLog.findSomeone(bestClan, "new master")); } else { if (Me.myOrder() == null) { Order.createBy(Me); success(Me); Me.addReport(GobLog.createOrder(false)); } else { success(); Me.addReport(GobLog.createOrder(true)); } } } }
@Override public void pursue() { if (Me == Me.getBoss()) { replaceAndDoNewQuest(Me, new FindNewMaster(Me)); return; } // test if respect still strong (THIS STUFF SHOULD BE DONE BY WISEMAN) // double resp = Me.conversation(Me.getBoss()); // if (resp < 0 && AGPmain.rand.nextInt(17) > Me.useBeh(M_.PATIENCE)) { // // desert ? // } Ministry proposedMinistry = getMinistryProposal(Me); Service proposedService = proposedMinistry.getService(); // first inquire if proposedMinistry can pay more than current job if (Me.getJob() != Job.NOBLE && proposedService.estimateProfit(Me) > Me.getAvgIncome()) { Me.setJob(proposedMinistry); } Me.MB.finishQ(); if (proposedMinistry == Job.NOBLE) { return; } // TODO causes infinite loop if Allegiance is your only value. find something else for here proposedService.doit(Me); // do it even if it's not your job... this is ALLEGIANCE Quest }