Skip to content

Commit 2a1b946

Browse files
authoredJan 23, 2025··
feature: boosted creature / reading staticdata from assets / bestiary races rework (#1064)
1 parent c2f1b58 commit 2a1b946

34 files changed

+949
-1151
lines changed
 

‎init.lua

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ Services = {
88
--websites = "http://localhost/?subtopic=accountmanagement", --./client_entergame "Forgot password and/or email"
99
}
1010

11-
--[[ Servers_init = {
12-
["http://ip/login.php"] = {
11+
--[[
12+
Servers_init = {
13+
["http://127.0.0.1/login.php"] = {
1314
["port"] = 80,
14-
["protocol"] = 1332,
15+
["protocol"] = 1320,
1516
["httpLogin"] = true
1617
},
1718
["ip.net"] = {
1819
["port"] = 7171,
1920
["protocol"] = 860,
2021
["httpLogin"] = false
2122
},
22-
23-
} ]]
23+
}
24+
]]
2425

2526
g_app.setName("OTClient - Redemption");
2627
g_app.setCompactName("otclient");

‎meta.lua

+16
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,14 @@ g_things = {}
153153
---@return boolean
154154
function g_things.loadAppearances(file) end
155155

156+
---@param file string
157+
---@return boolean
158+
function g_things.loadStaticData(file) end
159+
160+
---@param file string
161+
---@return boolean
162+
function g_things.loadSounds(file) end
163+
156164
---@param file string
157165
---@return boolean
158166
function g_things.loadDat(file) end
@@ -184,6 +192,14 @@ function g_things.getThingTypes(category) end
184192
---@return ThingType[]
185193
function g_things.findThingTypeByAttr(attr, category) end
186194

195+
---@param raceId integer
196+
---@return RaceType[]
197+
function g_things.getRaceData(raceId) end
198+
199+
---@param searchString string
200+
---@return Vector<RaceType>
201+
function g_things.getRacesByName(searchString) end
202+
187203
---* FRAMEWORK_EDITOR
188204
---@param id integer
189205
---@return ThingType | nil

‎modules/client_bottommenu/bottommenu.lua

+67-27
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,23 @@ local eventSchedulerCalendarYearIndex
1515
local eventSchedulerCalendarMonth
1616

1717
local boostedWindow
18-
local creature_boosted
19-
local boss_boosted
18+
local monsterOutfit
19+
local monsterImage
20+
local bossOutfit
21+
local bossImage
2022

2123
local default_info = {
22-
[1] = {image = "images/randomhint", Title = "Random Hint", creature1="images/boost_monster1",creature2= "images/boost_monster2",description = "The customisable status bar includes big health and mana bars and can be placed on the bottom, the top or on the side of your game windows\n\n -\t\t https://github.com/mehah/otclient/wiki "},
23-
-- [2] = {image = "image of label", Title = "title", creature1="images of creature",creature2= "images of boos",description = "text in label see tutorial : https://github.com/mehah/otclient/wiki"},
24+
-- hint 1
25+
{
26+
image = "images/randomhint",
27+
Title = "Enabling Boosted Creature Panel",
28+
description = "Boosted creatures panel requires configuring a webservice (init.lua) and preloading a client version by either setting one server in Servers_init (init.lua) or by altering entergame.lua.\n\nFor more hints, visit:\t\t https://github.com/mehah/otclient/wiki"
29+
},
30+
31+
-- hint 2
32+
-- {image = "image of label", Title = "title", description = "your hint here"},
2433
}
34+
2535
function init()
2636
g_ui.importStyle('calendar')
2737
bottomMenu = g_ui.displayUI('bottommenu')
@@ -42,12 +52,13 @@ function init()
4252
eventSchedulerCalendarMonth = tonumber(os.date("%m"))
4353

4454
boostedWindow = bottomMenu:recursiveGetChildById('boostedWindow')
45-
creature_boosted = boostedWindow:recursiveGetChildById('creature')
46-
boss_boosted = boostedWindow:recursiveGetChildById('boss')
55+
monsterOutfit = boostedWindow:recursiveGetChildById('creature')
56+
bossOutfit = boostedWindow:recursiveGetChildById('boss')
4757

4858
-- if not Services.status and default_info then
4959
if default_info then
50-
local widget = g_ui.createWidget('ShowOffWidget', showOffWindow)
60+
local scrollable = showOffWindow:recursiveGetChildById('contentsPanel')
61+
local widget = g_ui.createWidget('ShowOffWidget', scrollable)
5162
local description = widget:recursiveGetChildById('description')
5263
local image = widget:recursiveGetChildById('image')
5364

@@ -57,16 +68,17 @@ function init()
5768
showOffWindow.title:setText(tr(randomItem.Title))
5869
image:setImageSource(randomItem.image)
5970
description:setText(tr(randomItem.description))
60-
creature_boosted:setVisible(false)
61-
boss_boosted:setVisible(false)
71+
monsterOutfit:setVisible(false)
72+
bossOutfit:setVisible(false)
73+
widget:resize(widget:getWidth(), description:getHeight())
6274

63-
local creature2 = boostedWindow:recursiveGetChildById('creature2')
64-
local boss2 = boostedWindow:recursiveGetChildById('boss2')
75+
monsterImage = boostedWindow:recursiveGetChildById('monsterImage')
76+
bossImage = boostedWindow:recursiveGetChildById('bossImage')
6577

66-
creature2:setImageSource(randomItem.creature1)
67-
creature2:setVisible(true)
68-
boss2:setImageSource(randomItem.creature2)
69-
boss2:setVisible(true)
78+
monsterImage:setImageSource("images/icon-questionmark")
79+
monsterImage:setVisible(true)
80+
bossImage:setImageSource("images/icon-questionmark")
81+
bossImage:setVisible(true)
7082
end
7183
if g_game.isOnline() then
7284
hide()
@@ -496,17 +508,45 @@ function onClickOnNextCalendar()
496508
reloadEventsSchedulerCurrentPage()
497509
end
498510

499-
function Booster_creature(data)
500-
if modules.game_things.isLoaded() then
501-
local creatureraceid = modules.game_cyclopedia.RACE[data.creatureraceid]
502-
local bossraceid = modules.game_cyclopedia.RACE_Bosstiary[data.bossraceid]
503-
if creatureraceid then
504-
creature_boosted:setOutfit({type=creatureraceid.type})
505-
creature_boosted:getCreature():setStaticWalking(1000)
506-
end
507-
if bossraceid then
508-
boss_boosted:setOutfit({type=bossraceid.type})
509-
boss_boosted:getCreature():setStaticWalking(1000)
510-
end
511+
-- (internal)
512+
-- set creature/boss to boosted slot
513+
local function applyToBoostedSlot(raceId, outfitWidget, imageWidget, fileName)
514+
-- check if raceId was provided in the JSON response
515+
if not raceId then
516+
return
517+
end
518+
519+
-- fetch race data
520+
local raceData = g_things.getRaceData(raceId)
521+
522+
-- check if race id is present in the staticdata
523+
if raceData.raceId == 0 then
524+
local msg = string.format("[%s] Creature with race id %s was not found.", fileName, data.creatureraceid)
525+
g_logger.warning(msg)
526+
return
511527
end
528+
529+
-- apply to selected widget
530+
outfitWidget:setOutfit(raceData.outfit)
531+
outfitWidget:getCreature():setStaticWalking(1000)
532+
outfitWidget:setVisible(true)
533+
imageWidget:setVisible(false)
534+
end
535+
536+
function setBoostedCreatureAndBoss(data)
537+
if not modules.game_things.isLoaded() then
538+
return
539+
end
540+
541+
-- file name for error reporting
542+
local fileName = debug.getinfo(1, "S").source -- current file name - bottommenu.lua
543+
544+
-- boosted creature
545+
-- before bosstiary was introduced, the webservice was sending creature race in 'raceid' field
546+
-- after bosstiary was added, it was changed to 'creatureraceid'
547+
-- this 'or' statement ensures backwards compatibility
548+
applyToBoostedSlot(data.creatureraceid or data.raceid, monsterOutfit, monsterImage, fileName)
549+
550+
-- boosted boss
551+
applyToBoostedSlot(data.bossraceid, bossOutfit, bossImage, fileName)
512552
end

‎modules/client_bottommenu/bottommenu.otui

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
11
ShowOffWidget < UIWidget
2-
anchors.fill: parent
2+
size: 1020 1000
3+
anchors.left: parent.left
4+
anchors.top: parent.top
35

46
Label
57
id: image
68
size: 64 64
79
anchors.left: parent.left
810
anchors.top: parent.top
9-
margin-top: 28
1011
margin-left: 10
1112
image-auto-resize: true
1213

13-
Label
14+
UITextEdit
1415
id: description
16+
size: 476 0
1517
anchors.left: image.right
16-
anchors.right: parent.right
18+
anchors.top: parent.top
1719
anchors.bottom: parent.bottom
18-
anchors.top: image.top
19-
margin-top: 10
20+
margin-top: 2
2021
margin-left: 10
21-
margin-right: 40
2222
color: #c0c0c0ff
2323
text-wrap: true
24+
text-auto-resize: true
25+
selectable: true
2426

2527
Panel
2628
id: bottomMenu
@@ -52,7 +54,7 @@ Panel
5254

5355
Label
5456
id: showOffWindowText
55-
!text: tr('Random Hit')
57+
!text: tr('Random Hint')
5658
font: verdana-11px-antialised
5759
text-offset: 0 2
5860
text-align: top
@@ -153,6 +155,7 @@ Panel
153155

154156
Creature
155157
id: creature
158+
size: 64 64
156159
anchors.horizontalCenter: parent.horizontalCenter
157160
anchors.verticalCenter: parent.verticalCenter
158161
image-source: ""
@@ -161,7 +164,7 @@ Panel
161164
border-color: alpha
162165

163166
UIWidget
164-
id: creature2
167+
id: monsterImage
165168
anchors.horizontalCenter: parent.horizontalCenter
166169
anchors.verticalCenter: parent.verticalCenter
167170
visible: false
@@ -181,6 +184,7 @@ Panel
181184

182185
Creature
183186
id: boss
187+
size: 64 64
184188
anchors.horizontalCenter: parent.horizontalCenter
185189
anchors.verticalCenter: parent.verticalCenter
186190
image-source: ""
@@ -189,7 +193,7 @@ Panel
189193
border-color: alpha
190194

191195
UIWidget
192-
id: boss2
196+
id: bossImage
193197
anchors.horizontalCenter: parent.horizontalCenter
194198
anchors.verticalCenter: parent.verticalCenter
195199
visible: false
Binary file not shown.
Binary file not shown.
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.