From 269ab6486b79aa52c86a25bd46b2e3a5d3e33448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Mon, 10 Mar 2025 13:32:44 +0100 Subject: [PATCH] Fix numbers in bubble text --- .support/sync.sh | 35 ++++++++++++++-------- Addon/Code/Speech.lua | 6 ++++ Addon/Code/SpeechDataApi.lua | 31 ++++++++++++++++++-- Addon/Data/retail/1.lua | 57 ++++-------------------------------- 4 files changed, 63 insertions(+), 66 deletions(-) diff --git a/.support/sync.sh b/.support/sync.sh index d895382..60a6912 100644 --- a/.support/sync.sh +++ b/.support/sync.sh @@ -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 diff --git a/Addon/Code/Speech.lua b/Addon/Code/Speech.lua index dd432e0..c8dd9f7 100755 --- a/Addon/Code/Speech.lua +++ b/Addon/Code/Speech.lua @@ -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 diff --git a/Addon/Code/SpeechDataApi.lua b/Addon/Code/SpeechDataApi.lua index e2ff003..bbd037a 100755 --- a/Addon/Code/SpeechDataApi.lua +++ b/Addon/Code/SpeechDataApi.lua @@ -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 \ No newline at end of file diff --git a/Addon/Data/retail/1.lua b/Addon/Data/retail/1.lua index cd28d04..e151704 100644 --- a/Addon/Data/retail/1.lua +++ b/Addon/Data/retail/1.lua @@ -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.", }