display default effects
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 429 KiB After Width: | Height: | Size: 429 KiB |
Before Width: | Height: | Size: 343 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 4.9 KiB |
BIN
AO2XPbase/themes/default/effects/realization.apng
Normal file
After Width: | Height: | Size: 472 B |
Before Width: | Height: | Size: 646 B |
Before Width: | Height: | Size: 238 B |
14
gameview.py
@ -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)
|
||||||
|
|
||||||
@ -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:
|
||||||
|