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
|
--[[ BSD License Disclaimer
Copyright © 2015, Morath86
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 BarFiller 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 Morath86 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.
]]
_addon.name = 'BarFiller'
_addon.author = 'Morath'
_addon.version = '0.2.5'
_addon.commands = {'bf','barfiller'}
_addon.language = 'english'
-- Windower Libs
config = require('config')
file = require('files')
packets = require('packets')
texts = require('texts')
images = require('images')
-- BarFiller Libs
require('statics')
settings = config.load(defaults)
config.save(settings)
background_image = images.new(settings.Images.Background)
foreground_image = images.new(settings.Images.Foreground)
rested_bonus_image = images.new(settings.Images.RestedBonus)
exp_text = texts.new(settings.Texts.Exp)
debug = false
ready = false
chunk_update = false
windower.register_event('load',function()
if windower.ffxi.get_info().logged_in then
initialize()
end
end)
windower.register_event('login',function()
initialize()
end)
windower.register_event('logout',function()
hide()
end)
windower.register_event('addon command',function(command, ...)
local commands = {...}
local first_cmd = (command or 'help'):lower()
if approved_commands[first_cmd] and #commands >= approved_commands[first_cmd].n then
if first_cmd == 'clear' or first_cmd == 'c' then
initialize()
elseif first_cmd == 'visible' or first_cmd == 'v' then
if ready then hide() else show() end
elseif first_cmd == 'reload' or first_cmd == 'r' then
windower.add_to_chat(8,'BarFiller successfully reloaded.')
windower.send_command('lua r barfiller;')
elseif first_cmd == 'unload' or first_cmd == 'u' then
windower.send_command('lua u barfiller;')
windower.add_to_chat(8,'BarFiller successfully unloaded.')
elseif first_cmd == 'help' or first_cmd == 'h' then
display_help()
end
else
display_help()
end
end)
windower.register_event('incoming chunk',function(id,org,modi,is_injected,is_blocked)
if is_injected then return end
if ready then
-- Thanks to smd111 for Packet parsing
local packet_table = packets.parse('incoming', org)
if id == 0x2D then
exp_msg(packet_table['Param 1'],packet_table['Message'])
elseif id == 0x61 then
xp.current = packet_table['Current EXP']
xp.total = packet_table['Required EXP']
xp.tnl = xp.total - xp.current
chunk_update = true
end
end
end)
windower.register_event('prerender',function()
if ready and chunk_update then
local old_width = foreground_image:width()
local new_width = calc_new_width()
-- Thanks to Iryoku for the logic on smooth animations
if new_width ~= nil and new_width > 0 then
if old_width < new_width then
local last_update = 0
local x = old_width + math.ceil(((new_width - old_width) * 0.1))
foreground_image:size(x, settings.Images.Foreground.Size.Height)
if debug then print(old_width, x, new_width) end
local now = os.clock()
if now - last_update > 0.5 then
update_strings()
last_update = now
end
elseif old_width >= new_width then
foreground_image:size(new_width, settings.Images.Foreground.Size.Height)
chunk_update = false
if debug then print(chunk_update) end
end
end
end
end)
windower.register_event('level up', function(level)
update_strings()
end)
windower.register_event('level down', function(level)
update_strings()
end)
windower.register_event('zone change', function(new_id,old_id)
mog_house()
end)
|