forked from sionar/Botc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeamTool.ttslua
269 lines (232 loc) · 8.5 KB
/
TeamTool.ttslua
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
--[[
Team Tool
Made by Unreal_ed, modified by Sionar
--]]
------------------Constants
VERSION = '1.4.1'
TEAMS = {'Clubs', 'Spades', 'Diamonds', 'Hearts'}
#include GUIDs.ttslua
------------------Variables
joiningPlayer = { -- used to store a player reference that's trying to join a team
Clubs = 0, --0 used as a non-player value
Spades = 0,
Diamonds = 0,
Hearts = 0,
}
------------------Functions
function onLoad(saveString)
started = Global.getVar('started')
local params
params = {click_function = 'joinClubsTeam', function_owner = self,
label = ' ', tooltip = 'Click here to join the Clubs team to discuss privately',
position = {5.7, 3.5, 3}, scale = {0.5, 0.5, 0.5},
width = 2000, height = 1800, font_size = 400,
color = {1,1,1, 0}}
self.createButton(params)
params = {click_function = 'joinSpadesTeam', function_owner = self,
label = ' ', tooltip = 'Click here to join the Spades team to discuss privately',
position = {1.9, 3.5, 3}, scale = {0.5, 0.5, 0.5},
width = 2000, height = 1800, font_size = 400,
color = {1,1,1, 0}}
self.createButton(params)
params = {click_function = 'joinDiamondsTeam', function_owner = self,
label = ' ', tooltip = 'Click here to join the Diamonds team to discuss privately',
position = {-1.87, 3.5, 3}, scale = {0.5, 0.5, 0.5},
width = 2000, height = 1800, font_size = 400,
color = {1,1,1, 0}}
self.createButton(params)
params = {click_function = 'joinHeartsTeam', function_owner = self,
label = ' ', tooltip = 'Click here to join the Hearts team to discuss privately',
position = {-5.7, 3.5, 3}, scale = {0.5, 0.5, 0.5},
width = 2000, height = 1800, font_size = 400,
color = {1,1,1, 0}}
self.createButton(params)
params = {click_function = 'removeAllButton', function_owner = self,
label = 'Close private chats', tooltip = 'Move all the players out of private chats', color = {0,0,0,0.5}, font_color = {1,1,1},
position = {0, 3.5, 6.5}, rotation = {0, 180, 0}, scale = {0.5, 0.5, 0.5},
width = 6500, height = 1300, font_size = 800, alignment = 3}
self.createButton(params)
params = {click_function = 'leaveTeam', function_owner = self,
label = 'Leave Team', tooltip = 'Leave Team', color = {0,0,0,0.5}, font_color = {1,1,1},
position = {0, 3.5, 5}, rotation = {0, 180, 0}, scale = {0.5, 0.5, 0.5},
width = 6500, height = 1300, font_size = 800, alignment = 3}
self.createButton(params)
self.setLock(true)
self.interactable = false
self.setDescription('Version' .. VERSION)
if not started then
moveAllToDefaultTeam()
end
assignObjects()
Wait.time(function () gameSettings.call('assignObjects') end, 1)
Wait.time(refreshUI, 1)
end
function assignObjects()
gameSettings = getObjectFromGUID(GAME_SETTINGS_GUID)
end
function defaultTeamToggle()
local allPlayers = Player.getPlayers()
local options = Global.getTable('options')
if options.jokersDefault == false then
options.jokersDefault = true
for k,v in pairs(allPlayers) do
if v.team == 'None' then
v.team = 'Jokers'
end
end
else
options.jokersDefault = false
for k,v in pairs(allPlayers) do
if v.team == 'Jokers' then
v.team = 'None'
end
end
end
Global.setTable('options', options)
Wait.time(refreshUI, 1)
end
function moveAllToDefaultTeam()
local allPlayers = Player.getPlayers()
local options = Global.getTable('options')
for k,v in pairs(allPlayers) do
if options.jokersDefault and v.team == 'None' then
v.team = 'Jokers'
elseif not options.jokersDefault and v.team == 'Jokers' then
v.team = 'None'
end
end
end
function leaveTeam(clickedObject, playerColor)
local options = Global.getTable('options')
if options.jokersDefault then
defaultTeam = 'Jokers'
else
defaultTeam = 'None'
end
if Player[playerColor].team ~= defaultTeam then
Player[playerColor].team = defaultTeam
end
refreshUI()
end
function joinClubsTeam(obj, color, alt) tryToJoinTeam(color, 'Clubs') end
function joinSpadesTeam(obj, color, alt) tryToJoinTeam(color, 'Spades') end
function joinDiamondsTeam(obj, color, alt) tryToJoinTeam(color, 'Diamonds') end
function joinHeartsTeam(obj, color, alt) tryToJoinTeam(color, 'Hearts') end
function joinJokersTeam(obj, color, alt) tryToJoinTeam(color, 'Jokers') end
function tryToJoinTeam(colorJoining, team)
local players = Global.call('updatePlayers')
local player = players[colorJoining]
local teamEmpty = true
local exitedTeam
if colorJoining == 'Black' then
Player[colorJoining].team = team
refreshUI()
return
end
-- do nothing if player is trying to join his own team
if player.team == team then
player.print('You are already in this team', {1,0,0})
return
end
--check if any player is in the team
for k,v in pairs(players) do
if v.team == team and k ~= 'Black' then
teamEmpty = false
end
end
-- check how many players are left in the team...
exitedTeam = player.team --the team being left by the player
if teamEmpty == true then
player.team = team
refreshUI()
else
UI.setAttribute('text' ..team, 'text', player.steam_name ..' wants to join your team. Allow them?')
UI.setAttribute('teamConfirmation' ..team, 'active', 'true')
player.print('Asking the '..team.. ' team if you can join them.')
joiningPlayer[team] = player
end
end
-- make the list of players in the team match who's in the team and be listed from the top
function refreshUI()
local name, team
local inTeam = {Clubs = 0, Spades = 0, Diamonds = 0, Hearts = 0}
local players = Global.call('updatePlayers')
if Player['Black'].seated then
players['Black'] = Player['Black']
end
for k,v in pairs(TEAMS) do
for i = 1,9 do
self.UI.setAttribute(v .. i ..'Image', 'image', 'empty')
self.UI.setAttribute(v .. i ..'Text', 'text', ' ')
end
end
for k,v in pairs(players) do
if v.seated then
team = v.team
name = v.steam_name
if team ~= 'None' and team ~= 'Jokers' then
inTeam[team] = inTeam[team] + 1
self.UI.setAttribute(team .. inTeam[team] .. 'Image', 'image', k)
self.UI.setAttribute(team .. inTeam[team] ..'Text', 'text', name)
if k == 'Black' then
self.UI.setAttribute(team .. inTeam[team] ..'Text', 'color', '#FFFFFF')
else
self.UI.setAttribute(team .. inTeam[team] ..'Text', 'color', '#000000')
end
end
end
end
end
function yesClubs() confirmJoin('Clubs') end
function yesDiamonds() confirmJoin('Diamonds') end
function yesHearts() confirmJoin('Hearts') end
function yesJokers() confirmJoin('Jokers') end
function yesSpades() confirmJoin('Spades') end
function noClubs() denyJoin('Clubs') end
function noDiamonds() denyJoin('Diamonds')end
function noHearts() denyJoin('Hearts') end
function noJokers() denyJoin('Jokers') end
function noSpades() denyJoin('Spades') end
function confirmJoin(team)
if joiningPlayer[team] ~= 0 then
joiningPlayer[team].team = team
UI.setAttribute('teamConfirmation' ..team, 'active', 'false')
end
refreshUI()
joiningPlayer[team] = 0
end
function denyJoin(team)
if joiningPlayer[team] ~= 0 then
UI.setAttribute('teamConfirmation' ..team, 'active', 'false')
joiningPlayer[team].print('The '..team..' team did not want you to join their private conversation', {1,0,0})
end
joiningPlayer[team] = 0
end
function removeAllButton(clickedObject, playerColor)
if playerColor ~= 'Black' then
return
end
removeAll()
end
function removeAll()
local players = Player.getPlayers()
local defaultTeam
local options = Global.getTable('options')
if options.jokersDefault then
defaultTeam = 'Jokers'
else
defaultTeam = 'None'
end
for k,v in pairs(players) do
if v.team ~= defaultTeam then
v.team = defaultTeam
v.broadcast('You have been moved back to the main chat.', {1,0,0})
end
end
refreshUI()
end
function joinTeamUI(params)
local color = params.color
local team = params.team
tryToJoinTeam(color, team)
end