Fix numbers in bubble text
All checks were successful
forgejo/Czech Quests/addon/pipeline/head This commit looks good
All checks were successful
forgejo/Czech Quests/addon/pipeline/head This commit looks good
This commit is contained in:
parent
ca7603458c
commit
269ab6486b
4 changed files with 63 additions and 66 deletions
|
@ -1,21 +1,30 @@
|
|||
#!/bin/bash
|
||||
|
||||
#wow_source_folder="retail"
|
||||
#wow_destiny_folder="retail"
|
||||
wow_source_folder="retail"
|
||||
wow_destiny_folder="retail"
|
||||
|
||||
#wow_source_folder="beta"
|
||||
#wow_destiny_folder="retail"
|
||||
# wow_source_folder="beta"
|
||||
# wow_destiny_folder="retail"
|
||||
|
||||
wow_source_folder="classic_era"
|
||||
wow_destiny_folder="classic_era"
|
||||
# wow_source_folder="classic_era"
|
||||
# wow_destiny_folder="classic_era"
|
||||
|
||||
src_folder="."
|
||||
src_folder="$(pwd)/./"
|
||||
dest_folder="/Applications/World of Warcraft/_${wow_destiny_folder}_/Interface/AddOns/CzechQuests"
|
||||
|
||||
fswatch -o "$src_folder" | while read -r change; do
|
||||
rsync -avu --delete "$src_folder" "$dest_folder" --exclude={'.*','*.png','*.sh','*.md','Addon/Data/**',"lib/**","Jenkinsfile"}
|
||||
rsync -au --delete "$src_folder/Addon/Data/$wow_source_folder/" "$dest_folder/Addon/Data/"
|
||||
echo "Dest: $dest_folder"
|
||||
cp "$src_folder/Addon/Data/other.lua" "$dest_folder/Addon/Data/"
|
||||
done
|
||||
mkdir -p "$dest_folder/Addon/Data/"
|
||||
|
||||
fswatch -o "$src_folder" | while read -r change; do
|
||||
rsync -auv --delete \
|
||||
"$src_folder/Addon/Data/$wow_source_folder/" \
|
||||
"$dest_folder/Addon/Data/"
|
||||
|
||||
cp "$src_folder/Addon/Data/other.lua" "$dest_folder/Addon/Data/"
|
||||
|
||||
rsync -auv --delete \
|
||||
--exclude '.*' \
|
||||
--exclude 'Addon/Data/**' \
|
||||
--exclude 'lib/**' \
|
||||
--exclude 'Jenkinsfile' \
|
||||
"$src_folder" "$dest_folder"
|
||||
done
|
||||
|
|
|
@ -7,6 +7,12 @@ local function ShowSpeech(Frame, offsetY)
|
|||
Frame:ClearAllPoints()
|
||||
Frame:SetPoint("BOTTOMLEFT", addon.SpeechFrame, "BOTTOMLEFT", 0, offsetY)
|
||||
Frame:SetHeight(Frame.Message:GetStringHeight() + 10)
|
||||
local stringWidth = Frame.Message:GetStringWidth() + 20
|
||||
if (stringWidth > CzechQuestsAddon_Store.config.SPEECH_FRAME_WIDTH) then
|
||||
Frame:SetWidth(CzechQuestsAddon_Store.config.SPEECH_FRAME_WIDTH)
|
||||
else
|
||||
Frame:SetWidth(stringWidth)
|
||||
end
|
||||
return Frame
|
||||
end
|
||||
|
||||
|
|
|
@ -1,5 +1,27 @@
|
|||
local _, addon = ...
|
||||
|
||||
local function BuildIndex(text)
|
||||
local numberMarks = text:gsub("%d+%.?%d*", "#?")
|
||||
return numberMarks
|
||||
end
|
||||
|
||||
local function FillNumbers(text, sourceText)
|
||||
local numbers = {}
|
||||
local currentIndex = 1
|
||||
|
||||
for num in sourceText:gmatch("%d+%.?%d*") do
|
||||
table.insert(numbers, num)
|
||||
end
|
||||
|
||||
local replacedText = text:gsub("#%?", function()
|
||||
local n = numbers[currentIndex]
|
||||
currentIndex = currentIndex + 1
|
||||
return n or "?"
|
||||
end)
|
||||
|
||||
return replacedText
|
||||
end
|
||||
|
||||
local function FillPlaceholders(text)
|
||||
if text == nil then
|
||||
return text
|
||||
|
@ -16,8 +38,13 @@ local function FillPlaceholders(text)
|
|||
end
|
||||
|
||||
local function GetSpeech(message)
|
||||
local speech = addon.data.speech[message];
|
||||
local index = BuildIndex(message)
|
||||
local speech = addon.data.speech[index];
|
||||
local text = speech and speech.text or nil
|
||||
return FillPlaceholders(text)
|
||||
if text then
|
||||
return FillPlaceholders(FillNumbers(text, message))
|
||||
else
|
||||
return nil
|
||||
end
|
||||
end
|
||||
addon.API.GetSpeech = GetSpeech
|
|
@ -5487,57 +5487,12 @@ addon.data.quest[88878] = {
|
|||
objectiveMale = "Promluv s Boatswainem Hardeem na Port Authority.",
|
||||
descriptionMale = "Společnost Bilgewater Inc. s tvou pomocí pluje hladce. Boatswain Hardee ti připravil podíl z kořisti... tedy slušnou odměnu za tvou práci.",
|
||||
}
|
||||
addon.data.speech["It's just business pal."] = {
|
||||
text = "Je to jen obchod, kamaráde.",
|
||||
addon.data.speech["Your race time was #? seconds. That was your best time yet!"] = {
|
||||
text = "Váš čas v závodě byl #? sekund. To byl tvůj dosud nejlepší čas!",
|
||||
}
|
||||
addon.data.speech["I had to be a... big shot..."] = {
|
||||
text = "Musel jsem být... velký...",
|
||||
addon.data.speech["Your race time was #? seconds. Your personal best for this race is #? seconds."] = {
|
||||
text = "Váš čas v závodě byl #? sekund. Váš osobní rekord v tomto závodě je #? sekund.",
|
||||
}
|
||||
addon.data.speech["This tollbooth has to be brand new."] = {
|
||||
text = "Tato mýtná budka musí být úplně nová.",
|
||||
}
|
||||
addon.data.speech["Yer back! What happened?"] = {
|
||||
text = "Jsi zpátky! Co se stalo?",
|
||||
}
|
||||
addon.data.speech["Aye, ye'll have tae clear out any beasties so that the anchor can be placed."] = {
|
||||
text = "Ano, budete muset odstranit všechny bestie, aby bylo možné umístit kotvu.",
|
||||
}
|
||||
addon.data.speech["Once ye have 'em all set, we'll take the fight tae N'Zoth!"] = {
|
||||
text = "Jakmile je všechny připravíte, vyrazíme do boje proti N'Zothovi!",
|
||||
}
|
||||
addon.data.speech["Nay, ye should keep it, my girl. It's sittin' solid in yer hands, like it belongs there. As it was meant tae."] = {
|
||||
text = "Ne, měla by sis ho nechat, děvče. Sedí ti pevně v rukou, jako by tam patřil. Tak, jak to bylo zamýšleno.",
|
||||
}
|
||||
addon.data.speech["Well, best be setting sail to Ironforge. No sense in dawdling."] = {
|
||||
text = "No, nejlépe bude, když se vydáme do Ironforge. Nemá smysl otálet.",
|
||||
}
|
||||
addon.data.speech["Look for those who will walk the path with you. If I've learned anythin', it's that we'll always need each other to not lose ourselves on the journey."] = {
|
||||
text = "Hledejte ty, kteří půjdou po této cestě s vámi. Jestli jsem se něco naučil, tak to, že se vždycky budeme potřebovat navzájem, abychom se na cestě neztratili.",
|
||||
}
|
||||
addon.data.speech["Best of luck to you, Orweyna. One day when you've found what you're looking for, I hope you too find your way home."] = {
|
||||
text = "Hodně štěstí, Orweyno. Doufám, že až jednoho dne najdeš, co hledáš, najdeš i ty cestu domů.",
|
||||
}
|
||||
addon.data.speech["Goddess? You mean Azeroth? Aye- I was her speaker for many years, but she's let me go from that service."] = {
|
||||
text = "Bohyně? Myslíš Azeroth? Ano, byl jsem mnoho let jejím mluvčím, ale ona mě z této služby propustila.",
|
||||
}
|
||||
addon.data.speech["Aye. It can be lonely, followin' a path that others can't see. But don't make the same mistake I did, puttin' it all on yourself."] = {
|
||||
text = "Ano. Může to být osamělé, jít cestou, kterou ostatní nevidí. Ale neudělej stejnou chybu jako já a nesváděj všechno na sebe.",
|
||||
}
|
||||
addon.data.speech["Ach, and who's this?"] = {
|
||||
text = "Ach, a kdo je tohle?",
|
||||
}
|
||||
addon.data.speech["Champions, we're chargin' the Forge! He's gettin' weaker! Keep fightin'!"] = {
|
||||
text = "Šampioni, nabíjíme kovárnu! Slábne! Bojujte dál!",
|
||||
}
|
||||
addon.data.speech["The Forge is nearly charged, champions! Hang in there!"] = {
|
||||
text = "Kovárna je téměř nabitá, šampioni! Vydržte!",
|
||||
}
|
||||
addon.data.speech["Champions! N'Zoth is bridgin' dimensions tae assault the Chamber of Heart!"] = {
|
||||
text = "Šampioni! N'Zoth přemosťuje dimenze, aby zaútočil na Srdcovou komnatu!",
|
||||
}
|
||||
addon.data.speech["We have tae defeat him before he corrupts the soul o' Azeroth!"] = {
|
||||
text = "Musíme ho porazit, než zkazí duši Azerothu!",
|
||||
}
|
||||
addon.data.speech["Champions, we're overrun! We cannae fire!"] = {
|
||||
text = "Šampioni, jsme převálcováni! Nemůžeme střílet!",
|
||||
addon.data.speech["Follow the gold rings."] = {
|
||||
text = "Sledujte zlaté kroužky.",
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue