-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAA_DruidsCircle.java
More file actions
523 lines (401 loc) · 13.6 KB
/
AA_DruidsCircle.java
File metadata and controls
523 lines (401 loc) · 13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
import java.util.*;
/**
* Kills Druids at the Druidic Circle and banks at Falador West Bank.
* <p>
* Required:
* Start script at Druids or Falador West Bank and have sleeping bag in inventory.
* <p>
* Optional Parameters:
* -a,--alt <altName>
* -f,--fightmode <controlled|attack|strength|defense> (default strength)
* <p>
* Notes:
* Specifying names of alts will enable spawn synchronization between accounts via PM.
* Alt accounts need to have each other added as friends.
* Replace any spaces in an rsn with an underscore _.
* e.g. -f attack -a bot02 -a bot03
* <p>
*
* @Author Chomp
*/
public class AA_DruidsCircle extends AA_Script {
private static final Coordinate COORDINATE_LOAD_SOUTH_MEMBERS_GATE = new Coordinate(346, 479);
private static final Coordinate COORDINATE_LOAD_NORTH_MEMBERS_GATE = new Coordinate(326, 544);
private static final Coordinate COORDINATE_LOAD_FALADOR = new Coordinate(324, 512);
private static final int[] ITEM_IDS_LOOT = new int[]{10, 31, 32, 34, 41, 42, 220, 165, 435, 436, 437, 438, 439, 440, 441, 442, 443, 566};
private static final int[] ITEM_IDS_PREMIUM_LOOT = new int[]{41, 42, 220, 438, 439, 440, 441, 442, 443, 566};
private static final int NPC_ID_DRUID = 200;
private static final int NPC_XP_DRUID = 78;
private static final int MAXIMUM_FATIGUE = 99;
private static final int MAXIMUM_DISTANCE_FROM_OBJECT = 18;
private final int[] loot = new int[3];
private final Map<Integer, Spawn> spawnMap = new HashMap<>();
private final Map<Integer, Integer> premiumLoot = new TreeMap<>();
private String[] alts;
private Spawn nextSpawn;
private Iterator<Map.Entry<Integer, Spawn>> syncDataIterator;
private String syncPlayerName;
private long startTime;
private double initialCombatXp;
private long gateTimeout;
private long syncRequestTimeout;
private int playerX;
private int playerY;
private boolean syncWithAlt;
public AA_DruidsCircle(final Extension extension) {
super(extension);
}
@Override
public void init(final String parameters) {
if (!hasInventoryItem(ITEM_ID_SLEEPING_BAG)) {
throw new IllegalStateException("Sleeping bag missing from inventory.");
}
if (!parameters.isEmpty()) {
List<String> alts = null;
final String[] args = parameters.split(" ");
for (int i = 0; i < args.length; i++) {
switch (args[i].toLowerCase()) {
case "-a":
case "--alt":
if (alts == null) {
alts = new ArrayList<>();
}
final String altName = args[++i].replace('_', ' ');
if (!isFriend(altName)) {
addFriend(altName);
}
alts.add(altName);
break;
case "-f":
case "--fightmode":
combatStyle = CombatStyle.valueOf(args[++i].toUpperCase());
break;
default:
throw new IllegalArgumentException("Error: malformed parameters. Try again ...");
}
}
if (alts != null) {
this.alts = alts.toArray(new String[0]);
}
}
setCombatStyle(combatStyle.getIndex());
initialCombatXp = getTotalCombatXp();
startTime = System.currentTimeMillis();
}
@Override
public int main() {
playerX = getX();
playerY = getY();
if (bot.getCombatStyle() != combatStyle.getIndex()) setCombatStyle(combatStyle.getIndex());
return getInventoryCount() == MAX_INV_SIZE || isBanking() ? bank() : kill();
}
@Override
public void onServerMessage(final String message) {
if (message.endsWith("gate") || message.endsWith("shut") || message.endsWith("open")) {
gateTimeout = 0L;
} else {
super.onServerMessage(message);
}
}
private int bank() {
if (Area.BANK.contains(playerX, playerY)) {
if (!isBanking()) {
return openBank();
}
for (int index = 0; index < getInventoryCount(); index++) {
final int itemId = getInventoryId(index);
if (!inArray(ITEM_IDS_LOOT, itemId)) {
continue;
}
deposit(itemId, getInventoryCount(itemId));
return SLEEP_ONE_TICK;
}
updateBankLoot();
closeBank();
return SLEEP_ONE_SECOND;
}
if (playerX <= Object.MEMBERS_GATE.coordinate.getX()) {
if (playerY >= COORDINATE_LOAD_FALADOR.getY()) {
if (distanceTo(Object.BANK_DOORS.coordinate.getX(), Object.BANK_DOORS.coordinate.getY()) <= MAXIMUM_DISTANCE_FROM_OBJECT &&
getObjectIdFromCoords(Object.BANK_DOORS.coordinate.getX(), Object.BANK_DOORS.coordinate.getY()) == Object.BANK_DOORS.id) {
atObject(Object.BANK_DOORS.coordinate.getX(), Object.BANK_DOORS.coordinate.getY());
return SLEEP_ONE_SECOND;
}
walkTo(Object.BANK_DOORS.coordinate.getX() + 1, Object.BANK_DOORS.coordinate.getY());
return SLEEP_ONE_TICK;
}
walkTo(COORDINATE_LOAD_FALADOR.getX(), COORDINATE_LOAD_FALADOR.getY());
return SLEEP_ONE_TICK;
}
if (playerY >= COORDINATE_LOAD_SOUTH_MEMBERS_GATE.getY()) {
if (System.currentTimeMillis() <= gateTimeout) {
return 0;
}
atObject(Object.MEMBERS_GATE.coordinate.getX(), Object.MEMBERS_GATE.coordinate.getY());
gateTimeout = System.currentTimeMillis() + TIMEOUT_FIVE_SECONDS;
return 0;
}
walkTo(COORDINATE_LOAD_SOUTH_MEMBERS_GATE.getX(), COORDINATE_LOAD_SOUTH_MEMBERS_GATE.getY());
return SLEEP_ONE_TICK;
}
private int kill() {
if (Area.DRUIDS.contains(playerX, playerY)) {
return combatCycle();
}
if (playerX > Object.MEMBERS_GATE.coordinate.getX()) {
if (!spawnMap.isEmpty()) {
resetSpawns();
if (alts != null) {
resetSync();
}
}
walkTo(Area.DRUIDS.lowerBoundingCoordinate.getX(), Area.DRUIDS.lowerBoundingCoordinate.getY());
return SLEEP_ONE_TICK;
}
if (playerY <= COORDINATE_LOAD_NORTH_MEMBERS_GATE.getY()) {
if (distanceTo(Object.MEMBERS_GATE.coordinate.getX(), Object.MEMBERS_GATE.coordinate.getY()) <= MAXIMUM_DISTANCE_FROM_OBJECT) {
if (System.currentTimeMillis() <= gateTimeout) {
return 0;
}
atObject(Object.MEMBERS_GATE.coordinate.getX(), Object.MEMBERS_GATE.coordinate.getY());
gateTimeout = System.currentTimeMillis() + TIMEOUT_FIVE_SECONDS;
return 0;
}
walkTo(Object.MEMBERS_GATE.coordinate.getX(), Object.MEMBERS_GATE.coordinate.getY());
return SLEEP_ONE_TICK;
}
if (Area.BANK.contains(playerX, playerY) &&
getObjectIdFromCoords(Object.BANK_DOORS.coordinate.getX(), Object.BANK_DOORS.coordinate.getY()) == Object.BANK_DOORS.id) {
atObject(Object.BANK_DOORS.coordinate.getX(), Object.BANK_DOORS.coordinate.getY());
return SLEEP_ONE_SECOND;
}
walkTo(COORDINATE_LOAD_NORTH_MEMBERS_GATE.getX(), COORDINATE_LOAD_NORTH_MEMBERS_GATE.getY());
return SLEEP_ONE_TICK;
}
private void updateBankLoot() {
for (final int itemId : ITEM_IDS_PREMIUM_LOOT) {
final int bankCount = bankCount(itemId);
if (bankCount == 0) {
continue;
}
premiumLoot.put(itemId, bankCount);
}
}
private int combatCycle() {
if (inCombat()) {
if (syncWithAlt) {
return syncWithAlt();
}
return 0;
}
if (getFatigue() >= MAXIMUM_FATIGUE) {
return sleep();
}
final int[] druid = getNpcById(NPC_ID_DRUID);
if (druid[0] != -1) {
attackNpc(druid[0]);
return SLEEP_ONE_TICK;
}
updateLoot();
if (loot[0] != -1) {
pickupItem(loot[0], loot[1], loot[2]);
return SLEEP_ONE_TICK;
}
if (nextSpawn == null) {
return 0;
}
final Coordinate spawnCoordinate = nextSpawn.getCoordinate();
if (playerX != spawnCoordinate.getX() || playerY != spawnCoordinate.getY()) {
if (alts != null && isSpawnCoordinateOccupied(spawnCoordinate)) {
nextSpawn.setTimestamp(System.currentTimeMillis());
nextSpawn = getOldestSpawn();
return 0;
}
walkTo(spawnCoordinate.getX(), spawnCoordinate.getY());
return SLEEP_ONE_TICK;
}
if (syncWithAlt) {
return syncWithAlt();
}
return 0;
}
private void resetSpawns() {
spawnMap.clear();
nextSpawn = null;
}
private void resetSync() {
syncWithAlt = false;
syncPlayerName = null;
syncDataIterator = null;
}
private int syncWithAlt() {
if (syncDataIterator.hasNext()) {
final Map.Entry<Integer, Spawn> entry = syncDataIterator.next();
final int serverIndex = entry.getKey();
final Spawn spawn = entry.getValue();
final Coordinate coordinate = spawn.getCoordinate();
final long timestamp = spawn.getTimestamp();
sendPrivateMessage(String.format("%d,%d,%d,%d", serverIndex, coordinate.getX(), coordinate.getY(), timestamp), syncPlayerName);
return SLEEP_ONE_TICK;
}
resetSync();
return 0;
}
private void updateLoot() {
loot[0] = -1;
int currentDistance = Integer.MAX_VALUE;
for (int index = 0; index < getGroundItemCount(); index++) {
final int groundItemId = getGroundItemId(index);
if (!inArray(ITEM_IDS_LOOT, groundItemId)) {
continue;
}
final int groundItemX = getItemX(index);
final int groundItemY = getItemY(index);
if (!Area.DRUIDS.contains(groundItemX, groundItemY)) {
continue;
}
final int distance = distanceTo(groundItemX, groundItemY);
if (distance < currentDistance) {
loot[0] = groundItemId;
loot[1] = groundItemX;
loot[2] = groundItemY;
currentDistance = distance;
}
}
}
private boolean isSpawnCoordinateOccupied(final Coordinate spawnCoordinate) {
for (int index = 0; index < bot.getPlayerCount(); index++) {
final String playerName = getPlayerName(index);
if (isAnAlt(playerName) &&
getPlayerX(index) == spawnCoordinate.getX() &&
getPlayerY(index) == spawnCoordinate.getY()) {
return true;
}
}
return false;
}
private Spawn getOldestSpawn() {
if (spawnMap.isEmpty()) {
return null;
}
return spawnMap.values().stream().sorted().findFirst().get();
}
private boolean isAnAlt(final String playerName) {
for (final String alt : alts) {
if (alt.equalsIgnoreCase(playerName)) {
return true;
}
}
return false;
}
@Override
public void paint() {
int y = PAINT_OFFSET_Y;
drawString("@yel@Druids Circle", PAINT_OFFSET_X, y, 1, 0);
drawString(String.format("@yel@Runtime: @whi@%s", toDuration(startTime)),
PAINT_OFFSET_X, y += PAINT_OFFSET_Y_INCREMENT, 1, 0);
final double xpGained = getTotalCombatXp() - initialCombatXp;
drawString(String.format("@yel@Xp: @whi@%s @cya@(@whi@%s xp@cya@/@whi@hr@cya@)",
DECIMAL_FORMAT.format(xpGained), toUnitsPerHour((int) xpGained, startTime)),
PAINT_OFFSET_X, y += PAINT_OFFSET_Y_INCREMENT * 2, 1, 0);
final int kills = (int) xpGained / NPC_XP_DRUID;
drawString(String.format("@yel@Kills: @whi@%d @cya@(@whi@%s per@cya@/@whi@hr@cya@)",
kills, toUnitsPerHour(kills, startTime)),
PAINT_OFFSET_X, y += PAINT_OFFSET_Y_INCREMENT, 1, 0);
if (premiumLoot.isEmpty()) return;
drawString("", PAINT_OFFSET_X, y += PAINT_OFFSET_Y_INCREMENT, 1, 0);
for (final Map.Entry<Integer, Integer> entry : premiumLoot.entrySet()) {
drawString(String.format("@gre@%s: @whi@%d", getItemNameId(entry.getKey()), entry.getValue()),
PAINT_OFFSET_X, y += PAINT_OFFSET_Y_INCREMENT, 1, 0);
}
}
@Override
public void onPrivateMessage(final String message, final String playerName, final boolean moderator, final boolean administrator) {
if (alts == null || !isAnAlt(playerName)) {
return;
}
if (message.equalsIgnoreCase("sync")) {
if (syncWithAlt || spawnMap.isEmpty()) {
return;
}
syncWithAlt = true;
syncPlayerName = playerName;
syncDataIterator = new HashMap<>(spawnMap).entrySet().iterator();
} else {
final String[] syncData = message.split(",");
final int serverIndex = Integer.parseInt(syncData[0]);
if (spawnMap.containsKey(serverIndex)) {
return;
}
final Coordinate coordinate = new Coordinate(Integer.parseInt(syncData[1]), Integer.parseInt(syncData[2]));
final Spawn spawn = new Spawn(coordinate, Long.parseLong(syncData[3]));
spawnMap.put(serverIndex, spawn);
nextSpawn = getOldestSpawn();
}
}
@Override
public void onNpcSpawned(final java.lang.Object npc) {
final int npcId = bot.getNpcId(npc);
if (npcId != NPC_ID_DRUID) {
return;
}
if (spawnMap.isEmpty() && alts != null) {
requestSyncWithAlt();
}
final int npcX = bot.getMobLocalX(npc) + bot.getAreaX();
final int npcY = bot.getMobLocalY(npc) + bot.getAreaY();
if (!Area.DRUIDS.contains(npcX, npcY)) {
return;
}
final int serverIndex = bot.getMobServerIndex(npc);
final Spawn spawn = spawnMap.get(serverIndex);
if (spawn != null) {
spawn.getCoordinate().set(npcX, npcY);
spawn.setTimestamp(System.currentTimeMillis());
} else {
spawnMap.put(serverIndex, new Spawn(new Coordinate(npcX, npcY), System.currentTimeMillis()));
}
nextSpawn = getOldestSpawn();
}
private void requestSyncWithAlt() {
if (System.currentTimeMillis() <= syncRequestTimeout) {
return;
}
for (final String alt : alts) {
sendPrivateMessage("sync", alt);
}
syncRequestTimeout = System.currentTimeMillis() + (TIMEOUT_TEN_SECONDS * 6);
}
private enum Area implements RSArea {
DRUIDS(new Coordinate(350, 451), new Coordinate(375, 472)),
BANK(new Coordinate(328, 549), new Coordinate(334, 557));
private final Coordinate lowerBoundingCoordinate;
private final Coordinate upperBoundingCoordinate;
Area(final Coordinate lowerBoundingCoordinate, final Coordinate upperBoundingCoordinate) {
this.lowerBoundingCoordinate = lowerBoundingCoordinate;
this.upperBoundingCoordinate = upperBoundingCoordinate;
}
public Coordinate getLowerBoundingCoordinate() {
return lowerBoundingCoordinate;
}
public Coordinate getUpperBoundingCoordinate() {
return upperBoundingCoordinate;
}
}
private enum Object implements RSObject {
MEMBERS_GATE(137, new Coordinate(341, 487)),
BANK_DOORS(64, new Coordinate(327, 552));
private final int id;
private final Coordinate coordinate;
Object(final int id, final Coordinate coordinate) {
this.id = id;
this.coordinate = coordinate;
}
public int getId() {
return id;
}
public Coordinate getCoordinate() {
return coordinate;
}
}
}