finishes adding mana symbols into tooltip text

This commit is contained in:
2025-04-28 20:00:26 -04:00
parent 75767e927d
commit 1c5c4728a3
2 changed files with 14 additions and 14 deletions

View File

@ -6,20 +6,20 @@ func _set_tip_text(card_info: Dictionary, _card_image: Image) -> void:
text = card_info["name"] + " | " + card_info["type"] + "\n"
var oracle_text = card_info["desc"]
var last_idx = 0
var found_card: bool = false
# TODO: fix the string splitting here because its missing some symbols, and misplacing others
# TODO: duh this is skipping some symbols because it will find the first symbol (which could be after many other symbols)
# and then add all the previous text, skipping them
for symbol in mana_symbols:
if oracle_text.find(symbol, last_idx) == -1:
continue
text += oracle_text.substr(last_idx, oracle_text.find(symbol, last_idx))
last_idx = oracle_text.find(symbol, last_idx) + symbol.length()
# NOTE:
# add_image() from richtextlabel has no positioning, and just throws it at the end,
# so we need to use raw bbcode to actually do this intext
# it also needs to be in res:// to actually be able to access it
# for some reason bbcode can't read from user://
text += "[img width=\"16\" height=\"16\"]" + mana_symbols[symbol] + "[/img]"
text += oracle_text.substr(last_idx, -1)
last_idx = 0
while oracle_text.find(symbol, last_idx) != -1:
print("infinite loop?")
oracle_text = oracle_text.replace(symbol, "[img width=\"16\" height=\"16\"]" + mana_symbols[symbol] + "[/img]")
last_idx = oracle_text.find(symbol, last_idx) + symbol.length()
text += oracle_text
func _clear_tip_text() -> void: