improve handling of single frame images + look in more dirs for anims

This commit is contained in:
cidoku 2025-02-27 22:15:44 -03:00
parent ddc7b971a4
commit 5b07e9a3ad

View File

@ -288,7 +288,7 @@ class AOCharMovie(QtGui.QLabel):
def set_flipped(self, flip):
self.m_flipped = flip
def play(self, p_char, p_emote, emote_prefix, scaling = SCALING_AUTO):
def play(self, p_char, p_emote, emote_prefix, scaling = SCALING_AUTO, single_frame_duration=-1):
if p_emote[0] == "/" or p_emote[0] == "/":
p_emote = p_emote[1:]
elif "../../characters" in p_emote:
@ -306,10 +306,25 @@ class AOCharMovie(QtGui.QLabel):
p_char = p_char.lower()
p_emote = p_emote.lower()
original_path = test_path([AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".gif", AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".gif"])
original_path = test_path(
[
AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".gif",
AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".gif",
AOpath+"characters/"+p_char+"/"+p_emote+".gif"
])
alt_path = AOpath+"characters/"+p_char+"/"+p_emote+".png"
apng_path = test_path([AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".apng", AOpath+"characters/"+p_char+"/"+emote_prefix+"/"+p_emote+".apng"])
webp_path = test_path([AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".webp", AOpath+"characters/"+p_char+"/"+emote_prefix+"/"+p_emote+".webp"])
apng_path = test_path(
[
AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".apng",
AOpath+"characters/"+p_char+"/"+emote_prefix+"/"+p_emote+".apng",
AOpath+"characters/"+p_char+"/"+p_emote+".apng"
])
webp_path = test_path(
[
AOpath+"characters/"+p_char+"/"+emote_prefix+p_emote+".webp",
AOpath+"characters/"+p_char+"/"+emote_prefix+"/"+p_emote+".webp",
AOpath+"characters/"+p_char+"/"+p_emote+".webp"
])
placeholder_path = AO2XPpath+"themes/default/placeholder.gif"
gif_path = ""
@ -368,11 +383,17 @@ class AOCharMovie(QtGui.QLabel):
self.pillow_frames = images.load_apng(apng_path)
if len(self.pillow_frames) > 1:
self.pillow_timer.start(int(self.pillow_frames[0][1] * self.pillow_speed))
else:
self.pillow_timer.start(int(single_frame_duration * self.pillow_speed))
self.set_pillow_frame()
elif self.use_pillow == 2: # webp
self.pillow_frames = images.load_webp(webp_path)
if len(self.pillow_frames) > 1:
self.pillow_timer.start(int(self.pillow_frames[0][1] * self.pillow_speed))
else:
self.pillow_timer.start(int(single_frame_duration * self.pillow_speed))
self.set_pillow_frame()
self.show()
@ -393,10 +414,8 @@ class AOCharMovie(QtGui.QLabel):
if exists(apng_path):
real_duration = images.get_apng_duration(apng_path)
elif exists(webp_path):
real_duration = images.get_webp_duration(webp_path)
elif exists(gif_path):
self.m_movie.setFileName(gif_path)
self.m_movie.jumpToFrame(0)
@ -422,8 +441,12 @@ class AOCharMovie(QtGui.QLabel):
self.preanim_timer.start(full_duration)
self.m_movie.setSpeed(int(percentage_modifier))
self.pillow_speed = percentage_modifier / 100.
self.play(p_char, p_emote, "", scaling)
if real_duration > 0:
self.play(p_char, p_emote, "", scaling)
else:
self.play(p_char, p_emote, "", scaling, full_duration)
def play_talking(self, p_char, p_emote, scaling = SCALING_AUTO):
p_char = p_char.lower()
@ -2541,15 +2564,11 @@ class gui(QtGui.QWidget):
f_char = self.m_chatmessage[CHARNAME].lower()
f_preanim = self.m_chatmessage[PREANIM]
ao2_duration = ini.read_ini_int(AOpath+"characters/"+f_char+"/char.ini", "time", "%"+f_preanim, -1)
ao2_duration = ini.read_ini_int(AOpath+"characters/"+f_char+"/char.ini", "time", f_preanim, -1)
text_delay = ini.read_ini_int(AOpath+"characters/"+f_char+"/char.ini", "textdelay", f_preanim, -1)
sfx_delay = int(self.m_chatmessage[SFX_DELAY]) * 60
preanim_duration = 0
if ao2_duration < 0:
preanim_duration = ini.read_ini_int(AOpath+"characters/"+f_char+"/char.ini", "time", f_preanim, -1)
else:
preanim_duration = ao2_duration
preanim_duration = ao2_duration
anim_to_find = AOpath+"characters/"+f_char+"/"+f_preanim+".gif"
apng_to_find = AOpath+"characters/"+f_char+"/"+f_preanim+".apng"