Skip to content

Commit 2964e33

Browse files
committedOct 26, 2024·
Lua: Ensure Custom badges inheritance
1 parent b341800 commit 2964e33

7 files changed

+84
-5
lines changed
 

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuCheckboxItem.lua

+13-1
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,21 @@ function UIMenuCheckboxItem:LeftBadge(Badge)
186186
end
187187
end
188188

189+
function UIMenuCheckboxItem:CustomLeftBadge(txd,txn)
190+
if txd ~= nil and txd ~= "" and txn ~= nil and txn ~= "" then
191+
self.Base:CustomLeftBadge(txd,txn, self)
192+
else
193+
return self.Base:LeftBadge()
194+
end
195+
end
196+
189197
---RightBadge
190198
function UIMenuCheckboxItem:RightBadge()
191-
error("This item does not support badges")
199+
error("This item does not support right badges")
200+
end
201+
202+
function UIMenuCheckboxItem:CustomRightBadge()
203+
error("This item does not support right badges")
192204
end
193205

194206
---RightLabel

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuDynamicListItem.lua

+13-1
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,21 @@ function UIMenuDynamicListItem:LeftBadge(Badge)
225225
end
226226
end
227227

228+
function UIMenuDynamicListItem:CustomLeftBadge(txd,txn)
229+
if txd ~= nil and txd ~= "" and txn ~= nil and txn ~= "" then
230+
self.Base:CustomLeftBadge(txd,txn, self)
231+
else
232+
return self.Base:LeftBadge()
233+
end
234+
end
235+
228236
---RightBadge
229237
function UIMenuDynamicListItem:RightBadge()
230-
error("This item does not support badges")
238+
error("This item does not support right badges")
239+
end
240+
241+
function UIMenuDynamicListItem:CustomRightBadge()
242+
error("This item does not support right badges")
231243
end
232244

233245
---RightLabel

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuListItem.lua

+15-1
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,23 @@ function UIMenuListItem:LeftBadge(Badge)
277277
end
278278
end
279279

280+
--- CustomLeftBadge
281+
function UIMenuListItem:CustomLeftBadge(txd,txn)
282+
if txd ~= nil and txd ~= "" and txn ~= nil and txn ~= "" then
283+
self.Base:CustomLeftBadge(txd,txn, self)
284+
else
285+
return self.Base:LeftBadge()
286+
end
287+
end
288+
289+
280290
---RightBadge
281291
function UIMenuListItem:RightBadge()
282-
error("This item does not support badges")
292+
error("This item does not support right badges")
293+
end
294+
295+
function UIMenuListItem:CustomRightBadge()
296+
error("This item does not support right badges")
283297
end
284298

285299
---RightLabel

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuProgressItem.lua

+13-1
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,21 @@ function UIMenuProgressItem:LeftBadge(Badge)
241241
end
242242
end
243243

244+
function UIMenuProgressItem:CustomLeftBadge(txd,txn)
245+
if txd ~= nil and txd ~= "" and txn ~= nil and txn ~= "" then
246+
self.Base:CustomLeftBadge(txd,txn, self)
247+
else
248+
return self.Base:LeftBadge()
249+
end
250+
end
251+
244252
---RightBadge
245253
function UIMenuProgressItem:RightBadge()
246-
error("This item does not support badges")
254+
error("This item does not support right badges")
255+
end
256+
257+
function UIMenuProgressItem:CustomRightBadge()
258+
error("This item does not support right badges")
247259
end
248260

249261
---RightLabel

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuSeperatorItem.lua

+9
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,15 @@ function UIMenuSeparatorItem:RightBadge()
166166
error("This item does not support badges")
167167
end
168168

169+
function UIMenuSeparatorItem:CustomLeftBadge()
170+
error("This item does not support badges")
171+
end
172+
173+
---RightBadge
174+
function UIMenuSeparatorItem:CustomRightBadge()
175+
error("This item does not support badges")
176+
end
177+
169178
---RightLabel
170179
function UIMenuSeparatorItem:RightLabel()
171180
error("This item does not support a right label")

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuSliderItem.lua

+13-1
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,20 @@ function UIMenuSliderItem:LeftBadge(Badge)
231231
end
232232
end
233233

234+
function UIMenuSliderItem:CustomLeftBadge(txd,txn)
235+
if txd ~= nil and txd ~= "" and txn ~= nil and txn ~= "" then
236+
self.Base:CustomLeftBadge(txd,txn, self)
237+
else
238+
return self.Base:LeftBadge()
239+
end
240+
end
241+
234242
function UIMenuSliderItem:RightBadge()
235-
error("This item does not support badges")
243+
error("This item does not support right badges")
244+
end
245+
246+
function UIMenuSliderItem:CustomRightBadge()
247+
error("This item does not support right badges")
236248
end
237249

238250
function UIMenuSliderItem:RightLabel()

‎ScaleformUI_Lua/src/Menus/UIMenu/Items/UIMenuStatsItem.lua

+8
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,14 @@ function UIMenuStatsItem:RightBadge()
221221
error("This item does not support badges")
222222
end
223223

224+
function UIMenuStatsItem:CustomLeftBadge()
225+
error("This item does not support badges")
226+
end
227+
228+
function UIMenuStatsItem:CustomRightBadge()
229+
error("This item does not support badges")
230+
end
231+
224232
---RightLabel
225233
function UIMenuStatsItem:RightLabel()
226234
error("This item does not support a right label")

0 commit comments

Comments
 (0)
Please sign in to comment.