forked from lorand-ffxi/lor_libs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlor_exec.lua
More file actions
122 lines (111 loc) · 5.04 KB
/
lor_exec.lua
File metadata and controls
122 lines (111 loc) · 5.04 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
--[[
Functions for executing semi-arbitrary code from the chat window. Formerly part of info/info_share.lua
Author: Ragnarok.Lorand
--]]
local global = gearswap and gearswap._G or _G
local lor_exec = {}
lor_exec._author = 'Ragnarok.Lorand'
lor_exec._version = '2016.10.23'
require('lor/lor_utils')
_libs.req('maths', 'strings', 'tables')
_libs.lor.req('chat')
_libs.lor.exec = lor_exec
--[[
Parses the given command for table names or functions, then returns the
result of executing the given function, or table or value with the
given name.
--]]
local function parse_for_info(command)
local toload = command:startswith('return ') and command or 'return '..command
local loaded = loadstring(toload)
global.setfenv(loaded, _G)
return loaded()
end
function lor_exec.process_input(command, args)
local cmd = command:lower()
if S{'search','with','find'}:contains(cmd) then
local target = args[1]
local field = args[2]
local val = args[3]
if (target ~= nil) and (field ~= nil) and (val ~= nil) then
local parsed = parse_for_info(target)
if parsed == nil then
atcfs(2, 'Error: Invalid table to search: %s', target)
return
end
local results = parsed:with(field, val)
local msg = ('%s:with(%s,%s)'):format(target, field, val)
if (results ~= nil) then
pprint(parsed:with(field, val), msg)
else
atcfs(2, '%s: No results.', msg)
end
else
atc(0, 'Error: Invalid arguments passed for search')
end
elseif cmd == 'learned' then
local wf_spells = windower.ffxi.get_spells()
local spell_name = (' '):join(args):lower()
for id,spell in pairs(res.spells) do
if spell.en:lower() == spell_name then
atcfs('%s: %s', spell.en, wf_spells[id])
break
end
end
elseif cmd == 'spells' then
local stype = args[1]
atc(0, 'spell_id,spell_name,element,skill')
for k,v in pairs(res.spells) do
if v.type == stype then
atc((','):join(v.id, v.en, v.element, v.skill))
end
end
elseif cmd == 'colortest' then
for c = 0, 256 do
atc(c, 'color test: '..c)
end
elseif cmd == 'colorize_test' then
atc(0,'Colorize Test')
local colors = {}
for c = 0, 37 do
if (c < 14) or (c > 24) then
for i = 0, 9 do
local n = (c * 10) + i
if (n ~= 253) then
colors[#colors+1] = ('%03d'):format(n):colorize(n)
end
end
end
end
for i = 1, #colors, 15 do
atc((' '):join(table.slice(colors, i, i + 15)))
end
else
if (args ~= nil) and (sizeof(args) > 0) then
command = (' '):join(command, args)
atc(command)
end
local parsed = parse_for_info(command)
if parsed ~= nil then
local msg = ':'
if (type(parsed) == 'table') then
msg = (' (%s):'):format(sizeof(parsed))
end
pprint(parsed, command..msg)
else
atcfs(3, 'Error: Unable to parse valid command from "%s"', command)
end
end
end
return lor_exec
-----------------------------------------------------------------------------------------------------------
--[[
Copyright © 2016, Ragnarok.Lorand
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 libs/lor 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 Lorand 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.
--]]
-----------------------------------------------------------------------------------------------------------