summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-11-15 13:53:59 +0800
committerchai <chaifix@163.com>2021-11-15 13:53:59 +0800
commit942a030afd348ab2e02eac8054b43e3c3a72ea48 (patch)
treea13459f39a3d2f1b533fbd1b5ab523d7a621f673 /Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua
parente307051a56a54c27f10438fd2025edf61d0dfeed (diff)
*rename
Diffstat (limited to 'Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua')
-rw-r--r--Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua152
1 files changed, 152 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua b/Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua
new file mode 100644
index 0000000..3ea5a66
--- /dev/null
+++ b/Data/BuiltIn/Libraries/lua-addons/addons/TParty/TParty.lua
@@ -0,0 +1,152 @@
+_addon.name = 'TParty'
+_addon.author = 'Cliff'
+_addon.version = '2.0.1.2'
+
+require('sets')
+require('functions')
+texts = require('texts')
+config = require('config')
+
+defaults = {}
+defaults.ShowTargetHPPercent = true
+defaults.ShowPartyTP = true
+
+settings = config.load(defaults)
+
+hpp = texts.new('${hpp}', {
+ pos = {
+ x = -104,
+ },
+ bg = {
+ visible = false,
+ },
+ flags = {
+ right = true,
+ bottom = true,
+ bold = true,
+ draggable = false,
+ italic = true,
+ },
+ text = {
+ size = 10,
+ alpha = 185,
+ red = 115,
+ green = 166,
+ blue = 213,
+ },
+})
+
+tp = T{}
+
+do
+ local x_pos = windower.get_windower_settings().ui_x_res - 118
+
+ for i = 0, 17 do
+ local party = (i / 6):floor() + 1
+ local key = {'p%i', 'a1%i', 'a2%i'}[party]:format(i % 6)
+ local pos_base = {-34, -389, -288}
+ tp[key] = texts.new('${tp}', {
+ pos = {
+ x = x_pos,
+ y = pos_base[party] + 16 * (i % 6)
+ },
+ bg = {
+ visible = false,
+ },
+ flags = {
+ right = false,
+ bottom = true,
+ bold = true,
+ draggable = false,
+ italic = true,
+ },
+ text = {
+ size = i < 6 and 10 or 8,
+ alpha = 185,
+ red = 255,
+ green = 255,
+ blue = 255,
+ },
+ })
+ end
+end
+
+hpp_y_pos = {}
+for i = 1, 6 do
+ hpp_y_pos[i] = -51 - 20 * i
+end
+
+key_indices = {
+ p0 = 1,
+ p1 = 2,
+ p2 = 3,
+ p3 = 4,
+ p4 = 5,
+ p5 = 6,
+}
+tp_y_pos = {}
+for i = 1, 6 do
+ tp_y_pos[i] = -34 - 20 * (6 - i)
+end
+
+windower.register_event('prerender', function()
+ -- HP % text
+ if settings.ShowTargetHPPercent then
+ local mob = windower.ffxi.get_mob_by_target('st') or windower.ffxi.get_mob_by_target('t')
+
+ if mob then
+ local party_info = windower.ffxi.get_party_info()
+
+ -- Adjust position for party member count
+ hpp:pos_y(hpp_y_pos[party_info.party1_count])
+
+ hpp:update(mob)
+ hpp:show()
+ else
+ hpp:hide()
+ end
+ else
+ hpp:hide()
+ end
+
+ -- Alliance TP texts
+ if settings.ShowPartyTP then
+ local party = T(windower.ffxi.get_party())
+ local zone = windower.ffxi.get_info().zone
+
+ for text, key in tp:it() do
+ local member = party[key]
+ if member and member.zone == zone then
+ -- Adjust position for party member count
+ if key:startswith('p') then
+ text:pos_y(tp_y_pos[key_indices[key] + 6 - party.party1_count])
+ end
+
+ -- Color TP display green when TP > 1000
+ if member.tp >= 1000 then
+ text:color(0, 255, 0)
+ else
+ text:color(255, 255, 255)
+ end
+
+ text:update(member)
+ text:show()
+ else
+ text:hide()
+ end
+ end
+ end
+end)
+
+--[[
+Copyright © 2014-2015, 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.
+]]