# Released under the MIT License. See LICENSE for details.#"""Text related functionality."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:importbabase
[docs]deftimestring(timeval:float|int,centi:bool=True,)->babase.Lstr:"""Generate a localized string for displaying a time value. Given a time value, returns a localized string with: (hours if > 0 ) : minutes : seconds : (centiseconds if centi=True). .. warning:: the underlying localized-string value is somewhat large, so don't use this to rapidly update text values for an in-game timer or you may consume significant network bandwidth. For that sort of thing you should use things like 'timedisplay' nodes and attribute connections. """frombabase._languageimportLstr# We take float seconds but operate on int milliseconds internally.timeval=int(1000*timeval)bits=[]subs=[]hval=(timeval//1000)//(60*60)ifhval!=0:bits.append('${H}')subs.append(('${H}',Lstr(resource='timeSuffixHoursText',subs=[('${COUNT}',str(hval))],),))mval=((timeval//1000)//60)%60ifmval!=0:bits.append('${M}')subs.append(('${M}',Lstr(resource='timeSuffixMinutesText',subs=[('${COUNT}',str(mval))],),))# We add seconds if its non-zero *or* we haven't added anything else.ifcenti:# pylint: disable=consider-using-f-stringsval=timeval/1000.0%60.0ifsval>=0.005ornotbits:bits.append('${S}')subs.append(('${S}',Lstr(resource='timeSuffixSecondsText',subs=[('${COUNT}',('%.2f'%sval))],),))else:sval=timeval//1000%60ifsval!=0ornotbits:bits.append('${S}')subs.append(('${S}',Lstr(resource='timeSuffixSecondsText',subs=[('${COUNT}',str(sval))],),))returnLstr(value=' '.join(bits),subs=subs)
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture