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
|
_addon.author = 'Arcon'
_addon.version = '2.2.0.0'
_addon.language = 'English'
_addon.command = 'yush'
require('luau')
require('logger')
texts = require('texts')
_innerG = {}
for k, v in pairs(_G) do
rawset(_innerG, k, v)
end
_innerG._innerG = nil
_innerG._G = _innerG
_innerG._binds = {}
_innerG._names = {}
_innerG.include = function(path)
local full_path = '%sdata/%s':format(windower.addon_path, path)
local file = loadfile(full_path)
if not file then
warning('Include file %s not found.':format(path))
return
end
setfenv(file, _innerG)
file()
end
setmetatable(_innerG, {
__index = function(g, k)
local t = rawget(rawget(g, '_binds'), k)
if not t then
t = {}
rawset(rawget(g, '_binds'), k, t)
rawset(rawget(g, '_names'), t, k)
end
return t
end,
__newindex = function(g, k, v)
local t = rawget(rawget(g, '_binds'), k)
if t and type(v) == 'table' then
for k, v in pairs(v) do
t[k] = v
end
else
rawset(rawget(g, '_binds'), k, v)
if type(v) == 'table' then
rawset(rawget(g, '_names'), v, k)
end
end
end
})
defaults = {}
defaults.ResetKey = '`'
defaults.BackKey = 'backspace'
defaults.Verbose = false
defaults.VerboseOutput = 'Text'
defaults.Label = {}
settings = config.load(defaults)
label = texts.new(settings.Label, settings)
binds = {}
names = {}
current = binds
stack = L{binds}
keys = S{}
output = function()
if settings.Verbose then
names[current] = names[current] or 'Unnamed ' .. tostring(current):sub(8)
if settings.VerboseOutput == 'Text' then
label:text(names[current])
elseif settings.VerboseOutput == 'Chat' then
log('Changing into macro set %s.':format(names[current]))
elseif settings.VerboseOutput == 'Console' then
print('Changing into macro set %s.':format(names[current]))
end
end
end
reset = function()
current = binds
stack = L{binds}
output()
end
back = function()
if stack:length() == 1 then
current = binds
else
current = stack[stack:length() - 1]
stack:remove()
end
output()
end
check = function(keyset)
keyset = keyset or keys
for key, val in pairs(current) do
if key <= keyset then
if type(val) == 'string' then
windower.send_command(val)
elseif type(val) == 'function' then
val()
else
current = val
stack:append(current)
output()
end
return true
end
end
return false
end
parse_binds = function(fbinds, top)
top = top or binds
rawset(names, top, rawget(_innerG._names, fbinds))
for key, val in pairs(fbinds) do
key = S(key:split('+')):map(string.lower)
if type(val) == 'string' or type(val) == 'function' then
rawset(top, key, val)
else
local sub = {}
rawset(top, key, sub)
parse_binds(val, sub)
end
end
end
windower.register_event('load', 'login', 'job change', 'logout', function()
local player = windower.ffxi.get_player()
local file, path, filename, filepath, err
local basepath = windower.addon_path .. 'data/'
if player then
for filepath_template in L{
{path = 'name_main_sub.lua', format = '%s\'s %s/%s'},
{path = 'name_main.lua', format = '%s\'s %s'},
{path = 'name.lua', format = '%s\'s'},
{path = 'binds.lua', format = '"binds"'},
}:it() do
path = filepath_template.format:format(player.name, player.main_job, player.sub_job or '')
filename = filepath_template.path:gsub('name', player.name):gsub('main', player.main_job):gsub('sub', player.sub_job or '')
filepath = basepath .. filename
if windower.file_exists(filepath) then
file, err = loadfile(filepath)
break
end
end
end
if file and not err then
_innerG._names = {}
_innerG._binds = {}
binds = {}
names = {}
keys = S{}
setfenv(file, _innerG)
local root = file()
if not root then
_innerG._names = {}
_innerG._binds = {}
error('Malformatted %s Lua file: no return value.':format(path))
return
end
_innerG._names[root] = _innerG._names[root] or 'Root'
parse_binds(root)
reset()
print('Yush: Loaded %s Lua file':format(path))
elseif err then
print('\nYush: Error loading file: '..err:gsub('\\','/'))
elseif player then
print('Yush: No matching file found for %s (%s%s)':format(player.name, player.main_job, player.sub_job and '/' .. player.sub_job or ''))
end
end)
dikt = { -- Har har
[1] = 'esc',
[2] = '1',
[3] = '2',
[4] = '3',
[5] = '4',
[6] = '5',
[7] = '6',
[8] = '7',
[9] = '8',
[10] = '9',
[11] = '0',
[12] = '-',
[13] = '=',
[14] = 'backspace',
[15] = 'tab',
[16] = 'q',
[17] = 'w',
[18] = 'e',
[19] = 'r',
[20] = 't',
[21] = 'y',
[22] = 'u',
[23] = 'i',
[24] = 'o',
[25] = 'p',
[26] = '[',
[27] = ']',
[28] = 'enter',
[29] = 'ctrl',
[30] = 'a',
[31] = 's',
[32] = 'd',
[33] = 'f',
[34] = 'g',
[35] = 'h',
[36] = 'j',
[37] = 'k',
[38] = 'l',
[39] = ';',
[40] = '\'',
[41] = '`',
[42] = 'shift',
[43] = '\\',
[44] = 'z',
[45] = 'x',
[46] = 'c',
[47] = 'v',
[48] = 'b',
[49] = 'n',
[50] = 'm',
[51] = ',',
[52] = '.',
[53] = '/',
[54] = nil,
[55] = 'num*',
[56] = 'alt',
[57] = 'space',
[58] = nil,
[59] = 'f1',
[60] = 'f2',
[61] = 'f3',
[62] = 'f4',
[63] = 'f5',
[64] = 'f6',
[65] = 'f7',
[66] = 'f8',
[67] = 'f9',
[68] = 'f10',
[69] = 'num',
[70] = 'scroll',
[71] = 'num7',
[72] = 'num8',
[73] = 'num9',
[74] = 'num-',
[75] = 'num4',
[76] = 'num5',
[77] = 'num6',
[78] = 'num+',
[79] = 'num1',
[80] = 'num2',
[81] = 'num3',
[82] = 'num0',
[199] = 'home',
[200] = 'up',
[201] = 'pageup',
[202] = nil,
[203] = 'left',
[204] = nil,
[205] = 'right',
[206] = nil,
[207] = 'end',
[208] = 'down',
[209] = 'pagedown',
[210] = 'insert',
[211] = 'delete',
[219] = 'win',
[220] = 'rwin',
[221] = 'apps',
}
windower.register_event('keyboard', function(dik, down)
local key = dikt[dik]
if not key then
return
end
if not down then
keys:remove(key)
return
end
if not keys:contains(key) then
keys:add(key)
if not windower.ffxi.get_info().chat_open then
if key == settings.ResetKey then
reset()
return true
elseif key == settings.BackKey then
back()
return true
end
end
return check()
end
end)
windower.register_event('prerender', function()
if settings.Verbose and settings.VerboseOutput == 'Text' then
label:show()
else
label:hide()
end
end)
windower.register_event('addon command', function(command, ...)
command = command and command:lower() or 'help'
local args = {...}
if command == 'reset' then
reset()
elseif command == 'back' then
back()
elseif command == 'press' then
check(S(args):map(string.lower))
elseif command == 'set' then
if not args[1] then
error('Specify a settings category.')
return
end
local category = args[1]:lower()
local param = args[2] and args[2]:lower() or nil
if category == 'verbose' then
if param == 'true' then
settings.Verbose = true
elseif param == 'false' then
settings.Verbose = false
elseif param == 'toggle' then
settings.Verbose = not settings.Verbose
else
log('Verbose settings are %s.':format(settings.Verbose and 'on' or 'off'))
return
end
elseif category == 'backkey' then
if not param then
log('Current "Back" key: %s':format(settings.BackKey))
return
elseif not table.find(param) then
error('Key %s unknown.':format(param))
return
else
settings.BackKey = param
end
elseif category == 'resetkey' then
if not param then
log('Current "Reset" key: %s':format(settings.ResetKey))
return
elseif not table.find(param) then
error('Key %s unknown.':format(param))
return
else
settings.ResetKey = param
end
elseif category == 'verboseoutput' then
if not param then
log('Currently verbose mode outputs to %s.':format(
settings.VerboseOutput == 'Text' and 'a text object'
or settings.VerboseOutput == 'Chat' and 'the chat log'
or settings.VerboseOutput == 'Console' and 'the console'
))
return
elseif param == 'text' then
settings.VerboseOutput = 'Text'
elseif param == 'chat' then
settings.VerboseOutput = 'Chat'
elseif param == 'console' then
settings.VerboseOutput = 'Console'
end
end
config.save(settings)
elseif command == 'save' then
config.save(settings, 'all')
end
end)
--[[
Copyright © 2014, Windower
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 Windower 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 Windower 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.
]]
|