display default effects

This commit is contained in:
cidoku 2025-02-15 16:12:39 -03:00
parent bcd81e8bd9
commit 7fbe61954c
11 changed files with 10 additions and 6 deletions

View File

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 429 KiB

After

Width:  |  Height:  |  Size: 429 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 KiB

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

View File

@ -458,6 +458,7 @@ class AOMovie(QtGui.QLabel):
pillow_frames = [] pillow_frames = []
pillow_frame = 0 pillow_frame = 0
pillow_speed = 1 pillow_speed = 1
pillow_loops = 0
xx = 0 # for restoring from screenshake xx = 0 # for restoring from screenshake
yy = 0 # for restoring from screenshake yy = 0 # for restoring from screenshake
@ -485,7 +486,7 @@ class AOMovie(QtGui.QLabel):
def play(self, p_image, p_char=""): def play(self, p_image, p_char=""):
gif_path = p_image gif_path = p_image
pillow_modes = {".gif": 0, ".apng": 1, ".webp": 2} pillow_modes = {".gif": 0, ".apng": 1, ".webp": 2, ".png": 1}
p_image = unicode(p_image) p_image = unicode(p_image)
@ -502,7 +503,7 @@ class AOMovie(QtGui.QLabel):
if exists(f): if exists(f):
gif_path = f gif_path = f
break break
self.use_pillow = pillow_modes[os.path.splitext(gif_path)[1]] self.use_pillow = pillow_modes[os.path.splitext(gif_path)[1]]
if not self.use_pillow: if not self.use_pillow:
@ -723,6 +724,8 @@ class gui(QtGui.QWidget):
self.bench.setPixmap(bench.scaled(VIEWPORT_W, VIEWPORT_H, QtCore.Qt.KeepAspectRatioByExpanding, QtCore.Qt.FastTransformation)) self.bench.setPixmap(bench.scaled(VIEWPORT_W, VIEWPORT_H, QtCore.Qt.KeepAspectRatioByExpanding, QtCore.Qt.FastTransformation))
self.effectview = AOMovie(self.viewport) self.effectview = AOMovie(self.viewport)
self.effectview.resize(VIEWPORT_W, VIEWPORT_H)
self.effectview.setScaledContents(True)
font_db = QtGui.QFontDatabase() font_db = QtGui.QFontDatabase()
font_db.addApplicationFont(AO2XPpath + 'font/Igiari.ttf') font_db.addApplicationFont(AO2XPpath + 'font/Igiari.ttf')
@ -2215,11 +2218,12 @@ class gui(QtGui.QWidget):
self.playSound(fx_sound) self.playSound(fx_sound)
if "effects" not in self.features: return if "effects" not in self.features: return
#print "effect", repr(effect)
self.effectview.set_play_once(False) self.effectview.set_play_once(True)
try: self.effectview.play(effect) #try:
except: pass # Windows XP webp error with Pillow self.effectview.play(effect)
print "effect", repr(effect) #except: pass # Windows XP webp error with Pillow
def start_chat_ticking(self): def start_chat_ticking(self):
if self.text_state != 0: if self.text_state != 0: