forked from AkadenTK/superwarp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
superwarp.lua
952 lines (851 loc) · 37 KB
/
superwarp.lua
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
--[[
Copyright © 2019, Akaden of Asura
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Superwarp nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
--[[
Special thanks to those that have helped with specific areas of Superwarp:
Waypoint currency calculations: Ivaar, Thorny
Same-Zone warp data collection: Kenshi
Escha domain elvorseal packets: Ivaar
Unlocked warp point data packs: Ivaar
Menu locked state reset functs: Ivaar
Fuzzy matching logic for zones: Lili
]]
_addon.name = 'superwarp'
_addon.author = 'Akaden'
_addon.version = '0.97.6'
_addon.commands = {'sw','superwarp'}
require('tables')
require('logger')
require('functions')
packets = require('packets')
require('coroutine')
config = require('config')
resources = require('resources')
require('sendall')
require('fuzzyfind')
maps = require('map/maps')
warp_list = T{}
for k, map in pairs(maps) do
warp_list:append(map.short_name)
end
sub_zone_aliases = {
['e'] = 'Entrance',
['ah'] = 'Auction House',
['auction'] = 'Auction House',
['mh'] = 'Mog House',
['mog'] = 'Mog House',
['house'] = 'Mog House',
['fs'] = 'Frontier Station',
['ed'] = 'Enigmatic Device',
}
local defaults = {
debug = false,
send_all_delay = 0.4, -- delay (seconds) between each character
max_retries = 6, -- max retries for loading NPCs.
retry_delay = 2, -- delay (seconds) between retries
simulated_response_time = 0, -- response time (seconds) for selecting a single menu item. Note this can happen multiple times per warp.
simulated_response_variation = 0, -- random variation (seconds) from the base simulated_response_time in either direction (+ or -)
default_packet_wait_timeout = 5, -- timeout (seconds) for waiting on a packet response before continuing on.
enable_same_zone_teleport = true, -- enable teleporting between points in the same zone. This is the default behavior in-game. Turning it off will look different than teleporting manually.
enable_fast_retry_on_interrupt = false, -- after an event skip event, attempt a fast-retry that doesn't wait for packets or delay.
use_tabs_at_survival_guides = false, -- use tabs instead of gil at survival guides.
stop_autorun_before_warp = true, -- stop autorunning before using any warp system or subcommand
command_before_warp = '', -- inject this windower command before using any warp system or subcommand
command_delay_on_arrival = 5, -- delay before running command_on_arrival
command_on_arrival = '', -- inject this windower command on arriving at the next location.
target_npc = true, -- locally target the warp/subcommand npc.
simulate_client_lock = false, -- lock the local client during a warp/subcommand, simulating menu behavior.
send_all_order_mode = 'melast', -- order modes: melast, mefirst, alphabetical
chat_log_use = 'log', -- log messages to 'log', 'console', or 'none'. If debug is on, it will always log to the chat log
}
local settings = config.load(defaults)
-- bounds checks.
if settings.send_all_delay < 0 then
settings.send_all_delay = 0
end
if settings.send_all_delay > 5 then
settings.send_all_delay = 5
end
if settings.max_retries < 1 then
settings.max_retries = 1
end
if settings.max_retries > 20 then
settings.max_retries = 20
end
if settings.retry_delay < 1 then
settings.retry_delay = 1
end
if settings.retry_delay > 10 then
settings.retry_delay = 10
end
if settings.simulated_response_time < 0 then
settings.simulated_response_time = 0
end
if settings.simulated_response_time > 5 then
settings.simulated_response_time = 5
end
if settings.default_packet_wait_timeout < 1 then
settings.default_packet_wait_timeout = 1
end
if settings.default_packet_wait_timeout > 10 then
settings.default_packet_wait_timeout = 10
end
config.save(settings)
local state = {
loop_count = nil,
fast_retry = false,
debug_stack = T{},
client_lock = false,
}
function log(msg)
if settings.chat_log_use == 'log' or settings.debug then
windower.add_to_chat(207, 'superwarp: '..msg)
elseif settings.chat_log_use == 'console' then
print('superwarp: '..msg)
end
end
function debug(msg)
if settings.debug then
log('debug: '..msg)
else
state.debug_stack:append('debug: '..msg)
end
end
function has_bit(data, x)
return data:unpack('q', math.floor(x/8)+1, x%8+1)
end
local function get_keys(t)
local keys = T{}
for k, v in pairs(t) do
keys:append(k)
end
return keys
end
local function order_participants(participants)
local player = windower.ffxi.get_player().name
if settings.send_all_order_mode ~= 'alphabetical' then
participants:delete(player)
end
table.sort(participants)
if settings.send_all_order_mode == 'melast' then
participants:append(player)
elseif settings.send_all_order_mode == 'mefirst' then
participants = T{player}:extend(participants)
end
return participants
end
local function get_party_members(local_members)
local members = T{}
for k, v in pairs(windower.ffxi.get_party()) do
if type(v) == 'table' then
if local_members:contains(v.name) then
members:append(v.name)
end
end
end
return members
end
function wiggle_value(value, variation)
return math.max(0, value + (math.random() * 2 * variation - variation))
end
--- resolve sub-zone target aliases (ah -> auction house, etc.)
local function resolve_sub_zone_aliases(raw)
if raw == nil then return nil end
if type(raw) == 'number' then return raw end
local raw_lower = raw:lower()
if sub_zone_aliases[raw_lower] then return sub_zone_aliases[raw_lower] end
return raw
end
local function resolve_shortcuts(t, selection)
if selection.shortcut == nil then return selection end
return resolve_shortcuts(t, t[selection.shortcut])
end
local function resolve_warp(map_name, zone, sub_zone)
if settings.shortcuts and settings.shortcuts[map_name] then
local shortcut_map = settings.shortcuts[map_name][zone]
if shortcut_map ~= nil then
if shortcut_map.sub_zone ~= nil then
debug("found custom shortcut: "..zone.." -> "..shortcut_map.zone.." "..shortcut_map.sub_zone)
sub_zone = tostring(shortcut_map.sub_zone)
else
debug("found custom shortcut: "..zone.." -> "..shortcut_map.zone)
end
zone = shortcut_map.zone
end
end
local closest_zone_name, closest_zone_value = fmatch(zone, get_keys(maps[map_name].warpdata))
if closest_zone_name and closest_zone_value >= 3 and closest_zone_value >= #zone then
debug('Search success. Term="'..zone..'", nearest match="'..(closest_zone_name or nil)..'", value='..(closest_zone_value or '-1'))
local zone_map = maps[map_name].warpdata[closest_zone_name]
if type(zone_map) == 'table' and not (zone_map.index or zone_map.shortcut) then
if sub_zone ~= nil then
local closest_sub_zone_name = fmatch(sub_zone, get_keys(zone_map))
local sub_zone_map = zone_map[closest_sub_zone_name]
if sub_zone_map then
sub_zone_map = resolve_shortcuts(zone_map, sub_zone_map)
if sub_zone_map.index then
debug('found warp index: '..closest_zone_name..'/'..closest_sub_zone_name..' ('..sub_zone_map.index..')')
return sub_zone_map, closest_zone_name..' - '..closest_sub_zone_name
else
log("Found closest sub-zone, but index is not specified.")
return nil
end
else
log('Found zone ('..closest_zone_name..'), but not sub zone: "'..sub_zone..'"')
return nil
end
else
if settings.favorites and settings.favorites[map_name] then
local favorite_result = settings.favorites[map_name][get_fuzzy_name(closest_zone_name)]
if favorite_result then
local fr = tostring(resolve_sub_zone_aliases(favorite_result))
local sub_zone_map = zone_map[fr]
if sub_zone_map then
sub_zone_map = resolve_shortcuts(zone_map, sub_zone_map)
debug('Found zone ('..closest_zone_name..'), but no sub-zone listed, using favorite ('..fr..')')
return sub_zone_map, closest_zone_name..' - '..fr.." (F)"
end
end
--for fz, fsz in pairs(settings.favorites[map_name]) do
-- if get_fuzzy_name(fz) == get_fuzzy_name(closest_zone_name) then
-- for sz, sub_zone_map in pairs(zone_map) do
-- if sz == tostring(resolve_sub_zone_aliases(fsz)) then
-- if sub_zone_map.shortcut then
-- if zone_map[sub_zone_map.shortcut] and type(zone_map[sub_zone_map.shortcut]) == 'table' then
-- debug ('found shortcut: '..sub_zone_map.shortcut)
-- sub_zone_map = zone_map[sub_zone_map.shortcut]
-- end
-- end
-- debug('Found zone ('..closest_zone_name..'), but no sub-zone listed, using favorite ('..sz..')')
-- return sub_zone_map, closest_zone_name..' - '..sz.." (F)"
-- end
-- end
-- end
--end
end
for sz, sub_zone_map in pairs(zone_map) do
if sub_zone_map.shortcut then
if zone_map[sub_zone_map.shortcut] and type(zone_map[sub_zone_map.shortcut]) == 'table' then
debug ('found shortcut: '..sub_zone_map.shortcut)
sub_zone_map = zone_map[sub_zone_map.shortcut]
end
end
debug('Found zone ('..closest_zone_name..'), but no sub-zone listed, using first ('..sz..')')
return sub_zone_map, closest_zone_name..' - '..sz
end
end
else
debug("Found zone settings. No sub-zones defined.")
return zone_map, closest_zone_name
end
else
log('Search returned no matches: '..zone)
debug('Failed search. Term="'..zone..'", nearest match="'..(closest_zone_name or nil)..'", value='..(closest_zone_value or '-1'))
return nil
end
end
function poke_npc(id, index)
local first_poke = true
while id and index and current_activity and not current_activity.caught_poke do
current_activity.poked_npc_index = index
current_activity.poked_npc_id = id
if not first_poke then
if state.loop_count > 0 then
state.loop_count = state.loop_count - 1
log("Timed out waiting for response from the poke. Retrying...")
else
log("Timed out waiting for response from the poke.")
current_activity = nil
return
end
end
debug("poke npc: "..tostring(id)..' '..tostring(index))
first_poke = false
local packet = packets.new('outgoing', 0x01A, {
["Target"]=id,
["Target Index"]=index,
["Category"]=0,
["Param"]=0,
["_unknown1"]=0})
packets.inject(packet)
coroutine.sleep(settings.default_packet_wait_timeout)
end
end
function set_target(index)
local player = windower.ffxi.get_mob_by_target('me')
local target = windower.ffxi.get_mob_by_index(index)
if not (player and target) then return end
packets.inject(packets.new('incoming', 0x58, {
['Player'] = player.id,
['Target'] = target.id,
['Player Index'] = player.index,
}))
end
function client_lock(target_index)
state.client_lock = not (not target_index)
local data, ts = windower.packets.last_incoming(0x37)
local p = packets.parse('incoming', data)
if state.client_lock then
set_target(tonumber(target_index))
p['_flags3'] = bit.bor(p['_flags3'], 2)
else
p['_flags3'] = bit.band(p['_flags3'], bit.bnot(2))
end
packets.inject(p)
end
local function distance_sqd(a, b)
local dx, dy = b.x-a.x, b.y-a.y
return dy*dy + dx*dx
end
function get_fuzzy_name(name)
return tostring(name):lower():gsub("%s", ""):gsub("%p", "")
end
local function find_npc(needles)
local target_npc = nil
local distance = nil
local p = windower.ffxi.get_mob_by_target("me")
for i, v in pairs(windower.ffxi.get_mob_array()) do
local d = distance_sqd(windower.ffxi.get_mob_by_index(i), p)
for i, needle in ipairs(needles) do
if v.valid_target and (not target_npc or d < distance) and string.find(get_fuzzy_name(v.name), "^"..get_fuzzy_name(needle)) then
target_npc = v
distance = d
end
end
end
return target_npc, distance
end
-- Thanks to Ivaar for these two:
function general_release()
windower.packets.inject_incoming(0x052, string.char(0,0,0,0,0,0,0,0))
windower.packets.inject_incoming(0x052, string.char(0,0,0,0,1,0,0,0))
end
function release(menu_id)
windower.packets.inject_incoming(0x052, 'ICHC':pack(0,2,menu_id,0))
windower.packets.inject_incoming(0x052, string.char(0,0,0,0,1,0,0,0)) -- likely not needed
end
local function reset(quiet)
client_lock()
if last_npc ~= nil and last_menu ~= nil then
general_release()
release(last_menu)
local packet = packets.new('outgoing', 0x05B)
packet["Target"]=last_npc
packet["Option Index"]="0"
packet["_unknown1"]="16384"
packet["Target Index"]=last_npc_index
packet["Automated Message"]=false
packet["_unknown2"]=0
packet["Zone"]=windower.ffxi.get_info()['zone']
packet["Menu ID"]=last_menu
packets.inject(packet)
last_activity = activity
if current_activity then
current_activity.canceled = true
end
current_activity = nil
last_npc = nil
last_npc_index = nil
last_menu = nil
if not quiet then
log('Should be reset now. Please try again. If still locked, try a second reset.')
end
else
general_release()
last_npc = nil
last_npc_index = nil
last_menu = nil
current_activity = nil
if not quiet then
log('No warp scheduled.')
end
end
end
local function handle_before_warp()
if settings.stop_autorun_before_warp then
debug('stopping autorun before warp')
--windower.ffxi.follow() -- with no index, stops auto following.
windower.ffxi.run(false) -- stop autorun
end
if settings.command_before_warp and type(settings.command_before_warp) == 'string' and settings.command_before_warp ~= '' then
debug('running command before warp: '..settings.command_before_warp)
windower.send_command(settings.command_before_warp)
end
if (settings.target_npc or settings.simulate_client_lock) and current_activity and current_activity.npc then
set_target(current_activity.npc.index)
coroutine.sleep(0.2) -- give target time to work.
end
if settings.simulate_client_lock and current_activity and current_activity.npc then
client_lock(current_activity.npc.index)
end
end
local function handle_on_arrival()
if settings.command_on_arrival and type(settings.command_on_arrival) == 'string' and settings.command_on_arrival ~= '' then
debug('running command on arrival: '..settings.command_on_arrival)
windower.send_command(settings.command_on_arrival)
end
end
local function do_warp(map_name, zone, sub_zone)
local map = maps[map_name]
local warp_settings, display_name = resolve_warp(map_name, zone, sub_zone)
if warp_settings and warp_settings.index then
local npc, dist = find_npc(map.npc_names.warp)
if not npc then
if state.loop_count > 0 then
log('No ' .. map.npc_plural .. ' found! Retrying...')
state.loop_count = state.loop_count - 1
do_warp:schedule(settings.retry_delay, map_name, zone, sub_zone)
else
log('No ' .. map.npc_plural .. ' found!')
end
elseif dist > 6^2 then
if state.loop_count > 0 then
log(npc.name .. ' found, but too far! Retrying...')
state.loop_count = state.loop_count - 1
do_warp:schedule(settings.retry_delay, map_name, zone, sub_zone)
else
log(npc.name .. ' found, but too far!')
end
elseif (warp_settings.npc == nil or warp_settings.npc == npc.index) and warp_settings.zone == windower.ffxi.get_info()['zone'] then
log("You are already at "..display_name.."! Teleport canceled.")
state.loop_count = 0
elseif npc.id and npc.index then
current_activity = {type=map_name, npc=npc, activity_settings=warp_settings, zone=zone, sub_zone=sub_zone}
handle_before_warp()
log('Warping via ' .. npc.name .. ' to '..display_name..'.')
poke_npc(npc.id, npc.index)
end
else
state.loop_count = 0
end
end
local function do_sub_cmd(map_name, sub_cmd, args)
local map = maps[map_name]
local npc, dist = find_npc(map.npc_names[sub_cmd])
if not npc then
if state.loop_count > 0 then
log('No '..map.npc_plural..' found! Retrying...')
state.loop_count = state.loop_count - 1
do_sub_cmd:schedule(settings.retry_delay, map_name, sub_cmd, args)
else
log('No '..map.npc_plural..' found!')
end
elseif dist > 6^2 then
if state.loop_count > 0 then
log(npc.name..' found, but too far! Retrying...')
state.loop_count = state.loop_count - 1
do_sub_cmd:schedule(settings.retry_delay, map_name, sub_cmd, args)
else
log(npc.name..' found, but too far!')
end
elseif npc and npc.id and npc.index and dist <= 6^2 then
current_activity = {type=map_name, sub_cmd=sub_cmd, args=args, npc=npc}
handle_before_warp()
poke_npc(npc.id, npc.index)
end
end
local function do_find_missing_destinations(map_name, args)
local map = maps[map_name]
local npc, dist = find_npc(map.npc_names.warp)
if not npc then
if state.loop_count > 0 then
log('No '..map.npc_plural..' found! Retrying...')
state.loop_count = state.loop_count - 1
do_find_missing_destinations:schedule(settings.retry_delay, map_name, args)
else
log('No '..map.npc_plural..' found!')
end
elseif dist > 6^2 then
if state.loop_count > 0 then
log(npc.name..' found, but too far! Retrying...')
state.loop_count = state.loop_count - 1
do_find_missing_destinations:schedule(settings.retry_delay, map_name, args)
else
log(npc.name..' found, but too far!')
end
elseif npc and npc.id and npc.index and dist <= 6^2 then
local max_results = 999999
if #args > 0 then
max_results = tonumber(args[1]) or 999999
end
current_activity = {type=map_name, find_missing=true, missing_max=max_results, args=args, npc=npc}
poke_npc(npc.id, npc.index)
end
end
local function handle_warp(warp, args, fast_retry, retries_remaining)
warp = warp:lower()
if retries_remaining == nil then
state.loop_count = settings.max_retries
else
state.loop_count = retries_remaining
end
state.fast_retry = fast_retry
-- because I can't stop typing "hp warp X" because I've been trained.
if args[1]:lower() == 'warp' or args[1]:lower() == 'w' then args:remove(1) end
local all = S{'all','a','@all'}:contains(args[1]:lower())
local party = S{'party','p','@party'}:contains(args[1]:lower())
if all or party then
args:remove(1)
local participants = nil
if all then
participants = get_participants()
elseif party then
participants = get_party_members(get_participants())
end
participants = order_participants(participants)
debug('sending warp to all: '..participants:concat(', '))
send_all(warp..' '..args:concat(' '), settings.send_all_delay, participants)
return
end
if args[1]:lower() == 'missing' then
args:remove(1)
for key,map in pairs(maps) do
if map.short_name == warp then
do_find_missing_destinations(key, args)
return
end
end
return
end
state.current_warp = warp
state.current_args = args:copy()
for key,map in pairs(maps) do
if map.short_name == warp then
local sub_cmd = nil
if map.sub_commands then
for sc, fn in pairs(map.sub_commands) do
if sc:lower() == args[1]:lower() then
sub_cmd = sc
end
end
end
if sub_cmd then
args:remove(1)
do_sub_cmd(key, sub_cmd, args)
return
else
local sub_zone_target = nil
if map.sub_zone_targets then
local target_candidate = resolve_sub_zone_aliases(args:last())
if map.sub_zone_targets:contains(target_candidate:lower()) then
sub_zone_target = target_candidate
args:remove(args:length())
end
end
local zone = windower.ffxi.get_info().zone
local zone_target = args:concat(' ')
if zone_target == '' then
zone_target = resources.zones[zone].en
end
if map.auto_select_zone and map.auto_select_zone(zone) then
zone_target = map.auto_select_zone(zone)
end
if map.auto_select_sub_zone and map.auto_select_sub_zone(zone) then
sub_zone_target = map.auto_select_sub_zone(zone)
end
do_warp(key, zone_target, sub_zone_target)
return
end
end
end
end
local function received_warp_command(cmd, args)
if current_activity ~= nil then
log('Superwarp is currently busy. To cancel the last request try "//sw cancel"')
else
state.debug_stack = T{}
handle_warp(cmd, args)
end
end
windower.register_event('addon command', function(...)
local args = T{...}
local cmd = args[1]
args:remove(1)
for i,v in pairs(args) do args[i]=windower.convert_auto_trans(args[i]) end
local item = table.concat(args," "):lower()
if warp_list:contains(cmd:lower()) then
received_warp_command(cmd, args)
elseif cmd == 'cancel' then
reset()
if args[1] and args[1]:lower() == 'all' then
windower.send_ipc_message('reset')
end
elseif cmd == 'reset' then
reset()
if args[1] and args[1]:lower() == 'all' then
windower.send_ipc_message('reset')
end
elseif cmd == 'debug' then
settings.debug = not settings.debug
log('Debug is now '..tostring(settings.debug))
settings:save()
if settings.debug then
for _, m in ipairs(state.debug_stack) do
log(m)
end
end
else
for key, map in pairs(maps) do
log(map.help_text)
end
end
end)
-- handle direct hp/wp/sg commands
windower.register_event('unhandled command', function(cmd, ...)
local args = T{...}
for i,v in pairs(args) do args[i]=windower.convert_auto_trans(args[i]) end
if warp_list:contains(cmd:lower()) then
received_warp_command(cmd, args)
end
end)
function receive_send_all(msg)
local args = msg:split(' ')
local cmd = args[1]
args:remove(1)
if cmd == 'reset' then
reset()
elseif warp_list:contains(cmd) then
received_warp_command(cmd, args)
end
end
local function perform_next_action()
if current_activity and current_activity.running and current_activity.action_queue and current_activity.action_index > 0 then
local current_action = current_activity.action_queue[current_activity.action_index]
if current_action == nil then
debug("all actions complete")
if last_action and last_action.expecting_zone then
debug("expecting zone")
-- we're going to zone.
expecting_zone = true
else
state.client_lock = false
-- not zoning. Just run the command now + delay
handle_on_arrival:schedule(math.max(0, settings.command_delay_on_arrival))
end
last_activity = current_activity
state.loop_count = 0
current_activity = nil
last_action = nil
elseif not state.fast_retry and current_action.wait_packet then
debug("waiting for packet 0x"..current_action.wait_packet:hex().." for action "..tostring(current_activity.action_index)..' '..(current_action.description or ''))
current_action.wait_start = os.time()
if not current_action.timeout then
current_action.timeout = settings.default_packet_wait_timeout
end
local fn = function(s, ca, i, p, d)
if ca and ca.action_index == i and not ca.canceled then
debug("timed out waiting for packet 0x"..p:hex().." for action "..tostring(i)..' '..(d or ''))
if s.loop_count > 0 then
reset(true)
log("Timed out waiting for response from the menu. Retrying...")
handle_warp:schedule(settings.retry_delay, s.current_warp, s.current_args, false, s.loop_count - 1)
else
reset(true)
log("Timed out waiting for response from the menu.")
end
end
end
fn:schedule(current_action.timeout, state, current_activity, current_activity.action_index, current_action.wait_packet, current_action.description)
elseif not state.fast_retry and current_action.delay and current_action.delay > 0 then
debug("delaying action "..tostring(current_activity.action_index)..' '..(current_action.description or '')..' for '.. current_action.delay..'s...')
local delay_seconds = current_action.delay
current_action.delay = nil
last_action = current_action
perform_next_action:schedule(delay_seconds)
elseif current_action.packet then
-- just a packet, inject it.
debug("injecting packet "..tostring(current_activity.action_index)..' '..(current_action.description or ''))
packets.inject(current_action.packet)
current_activity.action_index = current_activity.action_index + 1
if current_action.message then
log(current_action.message)
end
last_action = current_action
perform_next_action()
elseif current_action.fn ~= nil then
-- has a function, pass along params.
debug("performing action "..tostring(current_activity.action_index)..' '..(current_action.description or ''))
continue = current_action.fn(current_action.incoming_packet)
current_activity.action_index = current_activity.action_index + 1
if current_action.message then
log(current_action.message)
end
last_action = current_action
if continue then
perform_next_action()
else
reset(true)
if state.loop_count > 0 then
log("Teleport aborted. Retrying...")
handle_warp:schedule(settings.retry_delay, state.current_warp, state.current_args, false, state.loop_count - 1)
end
end
end
end
end
-- Handle menu interraction.
windower.register_event('incoming chunk',function(id,data,modified,injected,blocked)
if current_activity and current_activity.action_queue and current_activity.running then
local current_action = current_activity.action_queue[current_activity.action_index]
if current_action and current_action.wait_packet and current_action.wait_packet == id then
debug("received packet 0x"..id:hex().." for action "..tostring(current_activity.action_index)..' '..(current_action.description or ''))
current_action.wait_packet = nil
current_action.incoming_packet = packets.parse('incoming',data)
perform_next_action()
end
end
if id == 0x37 and not injected and state.client_lock then
local p = packets.parse('incoming', data)
p['_flags3'] = bit.bor(p['_flags3'], 2)
return packets.build(p)
end
if id == 0x052 and current_activity and current_activity.running then
local message_type = data:unpack('b4', 5)
if message_type == 2 then
if state.loop_count > 0 then
if settings.enable_fast_retry_on_interrupt then
log("Detected event-skip. Retrying (fast)...")
handle_warp:schedule(0.1, state.current_warp, state.current_args, true, state.loop_count - 1)
else
log("Detected event-skip. Retrying...")
handle_warp:schedule(0.1, state.current_warp, state.current_args, false, state.loop_count - 1)
end
end
end
end
if id == 0x034 or id == 0x032 then
local p = packets.parse('incoming', data)
if current_activity and not current_activity.running then
current_activity.caught_poke = true
local zone = windower.ffxi.get_info()['zone']
local map = maps[current_activity.type]
if current_activity.poked_npc_id ~= p["NPC"] or current_activity.poked_npc_index ~= p["NPC Index"] then
log("Incorrect npc detected. Canceling action.")
last_activity = current_activity
state.loop_count = 0
current_activity = nil
return false
end
last_menu = p["Menu ID"]
last_npc = p["NPC"]
last_npc_index = p["NPC Index"]
--debug("recorded reset params: "..last_menu.." "..last_npc)
if current_activity.find_missing then
debug("Finding missing destinations")
if map.missing then
local missing, err = map.missing(map.warpdata, zone, p)
if err then
log("Error: "..err)
elseif missing ~= nil then
if #missing > 0 then
log("You are missing these "..map.long_name.." destinations: ")
for i=1, math.min(#missing, current_activity.missing_max) do
log(missing[i] or 'nil')
end
if #missing > current_activity.missing_max then
log("..and "..(#missing-current_activity.missing_max)..' more...')
end
else
log("You are not missing any destinations.")
end
else
log("An unknown error occurred when finding missing destinations.")
end
end
-- reset
reset:schedule(0.1, true)
return true
end
local validation_message = nil
if map.validate then validation_message = map.validate(p["Menu ID"], zone, current_activity) end
if validation_message ~= nil then
log("WARNING: "..validation_message.." Canceling action.")
last_activity = current_activity
state.loop_count = 0
current_activity = nil
reset(true)
return true
end
current_activity.action_queue = nil
current_activity.action_index = 1
if current_activity.sub_cmd then
debug("building "..current_activity.type.." sub_command actions: "..current_activity.sub_cmd)
current_activity.action_queue = map.sub_commands[current_activity.sub_cmd](current_activity, zone, p, settings)
else
debug("building "..current_activity.type.." warp actions...")
current_activity.action_queue = map.build_warp_packets(current_activity, zone, p, settings)
end
if current_activity.action_queue and type(current_activity.action_queue) == 'table' then
-- startup actions.
current_activity.running = true
perform_next_action:schedule(0)
return true
else
log("No action required.")
last_activity = current_activity
state.loop_count = 0
current_activity = nil
return false
end
end
end
end)
windower.register_event('outgoing chunk',function(id,data,modified,injected,blocked)
if id == 0x01A and not injected and current_activity and not current_activity.canceled then
-- USER poked something and we were in the middle of something.
-- we can't cancel that poke. The client is execting it already. We MUST cancel the current task.
log('Detected user interaction. Canceling current warp...')
reset(true)
coroutine.sleep(1)
return false
end
end)
windower.register_event('zone change',function(id,data,modified,injected,blocked)
state.client_lock = false
if expecting_zone then
handle_on_arrival:schedule(math.max(0, settings.command_delay_on_arrival))
end
expecting_zone = false
end)
-- debugging
windower.register_event('outgoing chunk',function(id,data,modified,injected,blocked)
if id == 0x05C then
--if not injected then
-- print(data:hex())
--end
--local p = packets.parse('outgoing', data)
--local t = windower.ffxi.get_mob_by_index(p['Target Index'])
--debug("out 0x05C: "..t.name..", menu:"..tostring(p['Menu ID'])..", zone:"..tostring(p['Zone'])..", x:"..string.format('%0.3f', p['X'])..", z:"..string.format('%0.3f', p['Z'])..", y:"..string.format('%0.3f', p['Y'])..", _u1:"..tostring(p['_unknown1'])..", _u3:"..tostring(p['_unknown3']))
elseif id == 0x05B then
--print(data:unpack('b7b4b3b7b8', 9))
--local p = packets.parse('outgoing', data)
--local t = windower.ffxi.get_mob_by_index(p['Target Index'])
--debug("out 0x05B: "..t.name.." oi:"..tostring(p['Option Index']).." _u1:"..tostring(p['_unknown1']).." _u2:"..tostring(p['_unknown2']).." menu:"..tostring(p['Menu ID']).." auto:"..tostring(p['Automated Message']))
end
end)
windower.register_event('unload', function()
if windower.ffxi.get_info().logged_in then
reset(true)
end
end)