class HorizontalSlideScreensaver(ScreensaverBase): MODE = 'slideLeftx' BACKGROUND_IMAGE = 'srr_blackbg.jpg' IMAGE_CONTROL_COUNT = 35 FAST_IMAGE_COUNT = 0 DISTANCE_RATIO = 0.7 SPEED = 1.0 CONCURRENCY = 1.0 #SCREEN = 0 IMAGE_ANIMATIONS = [] TEXT_ANIMATIONS = [] def load_settings(self): self.SPEED = float(addon.getSetting('slideshow_speed')) self.SHOW_TITLE = addon.getSetting('show_title') == 'true' self.CONCURRENCY = 1.0 #float(addon.getSetting('appletvlike_concurrency')) self.MAX_TIME = int(8000 / self.SPEED) #int(15000 / self.SPEED) self.NEXT_IMAGE_TIME = int(12000.0 / self.SPEED) self.TEXT_ANIMATIONS = [ ('conditional', 'condition=true effect=fade delay=0 time=500 start=0 end=100 '), ('conditional', 'condition=true effect=fade delay=%s time=500 start=100 end=0 tween=circle easing=in' % self.NEXT_IMAGE_TIME) ] #using WindowXMLDialog(ScreensaverXMLWindow) instead of WindowDialog. the image used in text background does not load when using WindowDialog (???) some images load, most don't def init_xbmc_window(self): #self.xbmc_window = ScreensaverWindow( exit_callback=self.stop ) self.xbmc_window = ScreensaverXMLWindow( "slideshow01.xml", addon_path, defaultSkin='Default', exit_callback=self.action_id_handler) self.xbmc_window.setCoordinateResolution(5) self.xbmc_window.show() def stack_cycle_controls(self): for txt_ctl, img_ctl in self.tni_controls: self.xbmc_window.addControl(img_ctl) if self.SHOW_TITLE: self.txt_background = ControlImage(0, 685, 1280, 40, 'srr_dialog-bg.png', aspectRatio=1) self.xbmc_window.addControl(self.txt_background) #ControlLabel(x, y, width, height, label, font=None, textColor=None, disabledColor=None, alignment=0, hasPath=False, angle=0) self.image_label = ControlLabel(10, 688, 1280, 30, '', font='font16', textColor='', disabledColor='', alignment=6, hasPath=False, angle=0) self.xbmc_window.addControl(self.image_label) #for txt_ctl, img_ctl in self.tni_controls: # self.xbmc_window.addControl(txt_ctl) def process_image(self, tni_control, desc_and_image): image_control = tni_control[1] text_control = tni_control[0] image_control.setVisible(False) image_control.setImage('') text_control.setVisible(False) text_control.setText('') direction = random.choice([1, 0]) sx = 1280 ex = -1280 if direction: sx, ex = ex, sx t = self.MAX_TIME self.IMAGE_ANIMATIONS = [ ('conditional', 'effect=slide start=%d,0 end=0,0 center=auto time=%s tween=cubic easing=out delay=0 condition=true' % (sx, t)), ('conditional', 'effect=fade start=0 end=100 time=%s tween=cubic easing=out delay=0 condition=true' % t), ('conditional', 'effect=slide start=0,0 end=%d,0 center=auto time=%s tween=cubic easing=in delay=%s condition=true' % (ex, t, (0.8 * t))), ('conditional', 'effect=fade start=100 end=0 time=%s tween=cubic easing=in delay=%s condition=true' % (t, (0.8 * t))), ] #self.image_label.setVisible(False) #self.image_label.setLabel('') if self.SHOW_TITLE: self.txt_background.setVisible(False) self.txt_background.setImage('') #time = self.MAX_TIME #/ zoom * self.DISTANCE_RATIO * 100 #30000 # set all parameters and properties #labels can have text centered but can't have multiline #textbox can have multiline but not centered text... what to do... #setLabel(self, label='', font=None, textColor=None, disabledColor=None, shadowColor=None, focusedColor=None, label2=''): if self.SHOW_TITLE: if self.image_label.getLabel() == desc_and_image[ 0]: #avoid animating the same text label if previous one is the same self.image_label.setAnimations([( 'conditional', 'condition=true effect=fade delay=0 time=0 start=100 end=100 ' )]) else: self.image_label.setAnimations(self.TEXT_ANIMATIONS) if desc_and_image[0]: self.image_label.setLabel(desc_and_image[0]) self.image_label.setVisible(True) self.txt_background.setImage('srr_dlg-bg.png') self.txt_background.setVisible(True) else: #don't show text and text_background if no text self.image_label.setVisible(False) self.txt_background.setVisible(False) image_control.setImage(desc_and_image[1]) image_control.setPosition(0, 0) image_control.setWidth(1280) #16:9 #image_control.setWidth(1680) #21:9 image_control.setHeight(720) image_control.setAnimations(self.IMAGE_ANIMATIONS) # show the image image_control.setVisible(True)
class SpeedTest(Animation): def __init__(self, xmlFilename, scriptPath, defaultSkin='Default', defaultRes='720p'): self.button_close = None self.button_close_glow = None self.button_close_id = None self.button_run = None self.button_run_glow = None self.button_run_id = None self.dl_textbox = None self.dlul_prog_textbox = None self.image_dir = translatePath(os.path.join(addon_path(), 'resources', 'skins', 'Default', 'media')) self.image_background = None self.image_shadow = None self.image_progress = None self.image_ping = None self.image_ping_glow = None self.image_gauge = None self.image_gauge_arrow = None self.image_button_run = None self.image_button_run_glow = None self.image_speedtestresults = None self.image_centertext_testingping = None self.image_result = None self.img_centertext = None self.img_final_results = None self.img_gauge = None self.img_gauge_arrow = None self.img_ping = None self.img_ping_glow = None self.img_progress = None self.img_results = None self.ping_textbox = None self.please_wait_textbox = None self.rec_speed = None self.screenx = 1920 self.screeny = 1080 self.textbox = None self.ul_textbox = None if sys.version_info.major == 2: WindowXMLDialog.__init__(self, xmlFilename, scriptPath, defaultSkin, defaultRes) # pylint: disable=non-parent-init-called self.doModal() elif sys.version_info.major == 3: super().__init__(xmlFilename, scriptPath, defaultSkin, defaultRes) # pylint: disable=missing-super-argument def onInit(self): # pylint: disable=invalid-name self.screenx = 1920 self.screeny = 1080 self.image_background = os.path.join(self.image_dir, 'bg_screen.jpg') self.image_shadow = os.path.join(self.image_dir, 'shadowframe.png') self.image_progress = os.path.join(self.image_dir, 'ajax-loader-bar.gif') self.image_ping = os.path.join(self.image_dir, 'ping_progress_bg.png') self.image_ping_glow = os.path.join(self.image_dir, 'ping_progress_glow.png') self.image_gauge = os.path.join(self.image_dir, 'gauge_bg.png') self.image_gauge_arrow = os.path.join(self.image_dir, 'gauge_ic_arrow.png') self.image_button_run = os.path.join(self.image_dir, 'btn_start_bg.png') self.image_button_run_glow = os.path.join(self.image_dir, 'btn_start_glow_active.png') self.image_speedtestresults = os.path.join(self.image_dir, 'speedtest_results_wtext.png') self.image_centertext_testingping = os.path.join(self.image_dir, 'testing_ping.png') self.image_result = self.image_speedtestresults self.textbox = ControlTextBox(50, 50, 880, 500, textColor='0xFFFFFFFF') self.addControl(self.textbox) self.display_button_run() self.display_button_close() self.setFocus(self.button_run) def onAction(self, action): # pylint: disable=invalid-name if action in (10, 92): self.save_close() def display_button_run(self, function='true'): if function == 'true': button_run_glowx = int((self.screenx / 3) - (300 / 2)) button_run_glowy = int((self.screeny / 3) - (122 / 2) + 50) self.button_run_glow = ControlImage(button_run_glowx, button_run_glowy, 300, 122, '', aspectRatio=0) self.addControl(self.button_run_glow) self.button_run_glow.setVisible(False) self.button_run_glow.setImage(self.image_button_run_glow) self.button_run_glow.setAnimations([ ('conditional', 'effect=fade start=0 time=1000 condition=true pulse=true') ]) self.button_run = ControlButton(button_run_glowx, button_run_glowy, 300, 122, localize(30950), focusTexture=self.image_button_run, noFocusTexture=self.image_button_run, alignment=2 | 4, textColor='0xFF000000', focusedColor='0xFF000000', shadowColor='0xFFCCCCCC', disabledColor='0xFF000000') self.addControl(self.button_run) self.setFocus(self.button_run) self.button_run.setVisible(False) self.button_run.setAnimations([( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.button_run.getId() )]) self.button_run_id = self.button_run.getId() self.button_run.setEnabled(True) self.button_run.setVisible(True) self.button_run_glow.setEnabled(True) self.button_run_glow.setVisible(True) else: self.button_run.setEnabled(False) self.button_run.setVisible(False) self.button_run_glow.setEnabled(False) self.button_run_glow.setVisible(False) def display_button_close(self, function='true'): if function == 'true': self.button_close_glow = ControlImage(880, 418, 300, 122, '', aspectRatio=0) self.addControl(self.button_close_glow) self.button_close_glow.setVisible(False) self.button_close_glow.setImage(self.image_button_run_glow) self.button_close_glow.setAnimations([( 'conditional', 'effect=fade start=0 time=1000 delay=2000 pulse=true condition=Control.IsVisible(%d)' % self.button_close_glow.getId() )]) self.button_close = ControlButton(99999, 99999, 300, 122, localize(30951), focusTexture=self.image_button_run, noFocusTexture=self.image_button_run, alignment=2 | 4, textColor='0xFF000000', focusedColor='0xFF000000', shadowColor='0xFFCCCCCC', disabledColor='0xFF000000') self.addControl(self.button_close) self.button_close.setVisible(False) self.button_close.setPosition(880, 418) self.button_close_id = self.button_close.getId() self.button_close.setAnimations([( 'conditional', 'effect=fade start=0 end=100 delay=1000 time=1000 condition=Control.IsVisible(%d)' % self.button_close.getId() )]) elif function == 'visible': self.button_close.setVisible(True) self.button_close_glow.setVisible(True) self.setFocus(self.button_close) else: self.button_close.setVisible(False) self.button_close_glow.setVisible(False) def display_ping_test(self, function='true'): if function == 'true': img_centertextx = int((self.screenx / 3) - (320 / 2)) img_centertexty = int((self.screeny / 3) - (130 / 2) + 50) self.img_centertext = ControlImage(img_centertextx, img_centertexty, 320, 130, ' ', aspectRatio=0) self.addControl(self.img_centertext) img_pingx = int((self.screenx / 3) - (600 / 2)) img_pingy = int((self.screeny / 3) - (400 / 2)) self.img_ping = ControlImage(img_pingx, img_pingy, 600, 400, '', aspectRatio=1) self.img_ping_glow = ControlImage(img_pingx, img_pingy, 600, 400, '', aspectRatio=1) self.addControl(self.img_ping) self.addControl(self.img_ping_glow) self.img_ping.setVisible(False) self.img_ping_glow.setVisible(False) self.img_ping.setImage(self.image_ping) self.img_ping_glow.setImage(self.image_ping_glow) self.img_ping.setAnimations([( 'conditional', 'effect=fade start=0 end=100 delay=1000 time=1000 condition=Control.IsVisible(%d)' % self.img_ping.getId() ), ( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.img_ping.getId() )]) self.img_ping_glow.setAnimations([( 'conditional', 'effect=fade start=0 time=1000 pulse=true condition=Control.IsEnabled(%d)' % self.img_ping_glow.getId() ), ( 'conditional', 'effect=fade start=0 end=100 delay=1000 time=1000 condition=Control.IsVisible(%d)' % self.img_ping_glow.getId() ), ( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.img_ping_glow.getId() )]) self.img_centertext.setAnimations([( 'conditional', 'effect=fade start=70 time=1000 condition=true pulse=true' )]) elif function == 'visible': self.img_ping.setVisible(True) self.img_ping_glow.setVisible(True) else: self.img_ping.setVisible(False) self.img_ping_glow.setVisible(False) self.img_centertext.setVisible(False) def display_gauge_test(self, function='true'): if function == 'true': img_gaugex = int((self.screenx / 3) - (548 / 2)) img_gaugey = int((self.screeny / 3) - (400 / 2)) img_gauge_arrowx = int((self.screenx / 3) - (66 / 2) - 5) img_gauge_arrowy = int((self.screeny / 3) - (260 / 2) - 60) self.img_gauge = ControlImage(img_gaugex, img_gaugey, 548, 400, '', aspectRatio=0) self.img_gauge_arrow = ControlImage(img_gauge_arrowx, img_gauge_arrowy, 66, 260, '', aspectRatio=0) self.addControl(self.img_gauge) self.addControl(self.img_gauge_arrow) self.img_gauge.setVisible(False) self.img_gauge_arrow.setVisible(False) self.img_gauge.setImage(self.image_gauge) self.img_gauge_arrow.setImage(self.image_gauge_arrow) self.img_gauge.setAnimations([( 'conditional', 'effect=fade start=0 end=100 delay=1000 time=1000 condition=Control.IsVisible(%d)' % self.img_gauge.getId() ), ( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.img_gauge.getId() )]) self.img_gauge_arrow.setAnimations([( 'conditional', 'effect=fade start=0 end=100 time=1000 condition=Control.IsVisible(%d)' % self.img_gauge_arrow.getId() ), ( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.img_gauge_arrow.getId() )]) dlul_prog_textboxx = int((self.screenx / 3) - (200 / 2)) dlul_prog_textboxy = int((self.screeny / 3) - (50 / 2) + 170) self.dlul_prog_textbox = ControlLabel(dlul_prog_textboxx, dlul_prog_textboxy, 200, 50, label='', textColor='0xFFFFFFFF', font='font30', alignment=2 | 4) self.addControl(self.dlul_prog_textbox) elif function == 'visible': self.img_gauge.setEnabled(True) self.img_gauge.setVisible(True) self.img_gauge_arrow.setEnabled(True) self.img_gauge_arrow.setVisible(True) else: self.img_gauge.setEnabled(False) self.img_gauge.setVisible(False) self.img_gauge_arrow.setEnabled(False) self.img_gauge_arrow.setVisible(False) self.dlul_prog_textbox.setLabel('') def display_progress_bar(self, function='true'): if function == 'true': self.img_progress = ControlImage(340, 640, 600, 20, '', aspectRatio=0, colorDiffuse="0xFF00AACC") self.addControl(self.img_progress) self.img_progress.setVisible(False) self.img_progress.setImage(self.image_progress) self.img_progress.setAnimations([( 'conditional', 'effect=fade start=0 end=100 time=500 condition=Control.IsVisible(%d)' % self.img_progress.getId() ), ( 'conditional', 'effect=fade start=100 end=0 time=300 condition=!Control.IsEnabled(%d)' % self.img_progress.getId() )]) self.img_progress.setVisible(True) img_progressx = int((self.screenx / 3) - (200 / 2)) img_progressy = int((self.screeny / 3) - (50 / 2) + 270) self.please_wait_textbox = ControlLabel(img_progressx, img_progressy, 200, 50, label='Please wait...', textColor='0xFFFFFFFF', alignment=2 | 4) self.addControl(self.please_wait_textbox) elif function == 'visible': self.please_wait_textbox.setVisible(True) self.img_progress.setEnabled(True) self.img_progress.setVisible(True) else: self.please_wait_textbox.setVisible(False) self.img_progress.setEnabled(False) self.img_progress.setVisible(False) def display_results(self, function='true'): if function == 'true': self.img_results = ControlImage(932, 40, 320, 144, '', aspectRatio=0) self.addControl(self.img_results) self.img_results.setVisible(False) self.img_results.setImage(self.image_speedtestresults) self.img_results.setAnimations([( 'conditional', 'effect=fade start=100 end=0 time=300 delay=1000 condition=!Control.IsEnabled(%d)' % self.img_results.getId() )]) self.img_results.setVisible(True) self.ping_textbox = ControlLabel(955, 133, 75, 50, label='', textColor='0xFFFFFFFF') self.addControl(self.ping_textbox) self.dl_textbox = ControlLabel(1035, 133, 75, 50, label='', textColor='0xFFFFFFFF') self.addControl(self.dl_textbox) self.ul_textbox = ControlLabel(1153, 133, 75, 50, label='', textColor='0xFFFFFFFF') self.addControl(self.ul_textbox) elif function == 'visible': self.img_results.setEnabled(True) self.img_results.setVisible(True) else: self.img_results.setEnabled(False) self.dl_textbox.setLabel('') self.ul_textbox.setLabel('') self.ping_textbox.setLabel('') def show_end_result(self): self.img_final_results = ControlImage(932, 40, 320, 144, '', aspectRatio=0) self.addControl(self.img_final_results) self.img_final_results.setVisible(False) self.img_final_results.setEnabled(False) self.img_final_results.setImage(IMAGE_RESULT) self.img_final_results.setAnimations([( 'conditional', 'effect=fade start=0 end=100 time=1000 delay=100 condition=Control.IsVisible(%d)' % self.img_final_results.getId() ), ( 'conditional', 'effect=zoom end=175 start=100 center=%s time=2000 delay=3000 condition=Control.IsVisible(%d)' % ('auto', self.img_final_results.getId()) ), ( 'conditional', 'effect=slide end=-100,25 time=2000 delay=3000 tween=linear easing=in condition=Control.IsVisible(%d)' % self.img_final_results.getId() )]) self.img_final_results.setVisible(True) self.img_final_results.setEnabled(True) def show_end_result_sp(self): self.rec_speed = ControlTextBox(325, 475, 600, 300, textColor='0xFFFFFFFF') self.addControl(self.rec_speed) self.rec_speed.setVisible(False) self.rec_speed.setEnabled(False) self.rec_speed.setText('\n'.join([localize(30980), localize(30981), localize(30982), localize(30983), localize(30984), localize(30985)])) self.rec_speed.setAnimations([( 'conditional', 'effect=fade start=0 end=100 time=1000 delay=100 condition=Control.IsVisible(%d)' % self.rec_speed.getId() )]) self.rec_speed.setVisible(True) self.rec_speed.setEnabled(True) def onClick(self, control): # pylint: disable=invalid-name if control == self.button_run_id: self.display_button_run(False) self.display_results() self.display_progress_bar() self.display_ping_test() self.display_gauge_test() self.speedtest(share=True, simple=True) self.display_progress_bar(False) self.display_ping_test(False) self.display_gauge_test(False) self.display_results(False) self.show_end_result() self.show_end_result_sp() self.display_button_close('visible') if control == self.button_close_id: self.save_close() def save_close(self): self.close() def update_textbox(self, text): self.textbox.setText("\n".join(text)) def config_gauge(self, speed, last_speed=0, time=1000): if last_speed == 0: last_speed = 122 current_s = 0 if speed <= 1: current_s = 122 - float((float(speed) - float(0))) * float( (float(31) / float(1))) elif speed <= 2: current_s = 90 - float((float(speed) - float(1))) * float( (float(31) / float(1))) elif speed <= 3: current_s = 58 - float((float(speed) - float(2))) * float( (float(29) / float(1))) elif speed <= 5: current_s = 28 - float((float(speed) - float(3))) * float( (float(28) / float(2))) elif speed <= 10: current_s = float((float(speed) - float(5))) * float( (float(28) / float(5))) elif speed <= 20: current_s = 29 + float((float(speed) - float(10))) * float( (float(29) / float(10))) elif speed <= 30: current_s = 59 + float((float(speed) - float(20))) * float( (float(31) / float(10))) elif speed <= 50: current_s = 91 + float((float(speed) - float(30))) * float( (float(31) / float(20))) elif speed > 50: current_s = 122 speed_n = "%.0f" % float(current_s) if speed > 5: speed_n = '-' + str(speed_n) img_gauge_arrowx = (self.screenx / 3) - (66 / 2) + 28 img_gauge_arrowy = (self.screeny / 3) + (260 / 2) - 88 self.img_gauge_arrow.setAnimations([( 'conditional', 'effect=rotate start=%d end=%d center=%d,%d condition=Control.IsVisible(%d) time=%d' % ( int(last_speed), int(speed_n), img_gauge_arrowx, img_gauge_arrowy, self.img_gauge.getId(), time ) )]) return speed_n def download_speed(self, files, quiet=False): start = timeit.default_timer() def producer(queue, files): for filename in files: thread = FileGetter(filename, start) thread.start() queue.put(thread, True) if not quiet and not SHUTDOWN_EVENT.isSet(): sys.stdout.write('.') sys.stdout.flush() finished = [] def consumer(queue, total_files): speed_dl = 0 while len(finished) < total_files: thread = queue.get(True) while thread.isAlive(): thread.join(timeout=0.1) finished.append(sum(thread.result)) speed_f = ((sum(finished) / (timeit.default_timer() - start)) / 1000 / 1000) * 8 speed_dl = self.config_gauge(speed_f, speed_dl) self.dlul_prog_textbox.setLabel('%.02f Mbps' % speed_f) del thread queue = Queue(6) prod_thread = threading.Thread(target=producer, args=(queue, files)) cons_thread = threading.Thread(target=consumer, args=(queue, len(files))) start = timeit.default_timer() prod_thread.start() cons_thread.start() while prod_thread.isAlive(): prod_thread.join(timeout=0.1) while cons_thread.isAlive(): cons_thread.join(timeout=0.1) return sum(finished) / (timeit.default_timer() - start) def upload_speed(self, url, sizes, quiet=False): start = timeit.default_timer() def producer(queue, sizes): for size in sizes: thread = FilePutter(url, start, size) thread.start() queue.put(thread, True) if not quiet and not SHUTDOWN_EVENT.isSet(): sys.stdout.write('.') sys.stdout.flush() finished = [] def consumer(queue, total_sizes): speed_dl = 0 while len(finished) < total_sizes: thread = queue.get(True) while thread.isAlive(): thread.join(timeout=0.1) finished.append(thread.result) speed_f = ((sum(finished) / (timeit.default_timer() - start)) / 1000 / 1000) * 8 speed_dl = self.config_gauge(speed_f, speed_dl) self.dlul_prog_textbox.setLabel('%.02f Mbps' % speed_f) del thread queue = Queue(6) prod_thread = threading.Thread(target=producer, args=(queue, sizes)) cons_thread = threading.Thread(target=consumer, args=(queue, len(sizes))) start = timeit.default_timer() prod_thread.start() cons_thread.start() while prod_thread.isAlive(): prod_thread.join(timeout=0.1) while cons_thread.isAlive(): cons_thread.join(timeout=0.1) return sum(finished) / (timeit.default_timer() - start) def speedtest(self, share=False, simple=False, src=None, timeout=10): self.img_ping.setVisible(True) self.img_ping_glow.setVisible(True) start_st = [localize(30960)] # Running Speed Test add-on global SHUTDOWN_EVENT, SOURCE # pylint: disable=global-statement SHUTDOWN_EVENT = threading.Event() socket.setdefaulttimeout(timeout) if src: SOURCE = src socket.socket = bound_socket start_st.append(localize(30961)) # Retrieving speedtest.net configuration self.update_textbox(start_st) try: config = get_config() except URLError: return False start_st.append(localize(30962)) # Retrieving speedtest.net server list self.update_textbox(start_st) self.img_centertext.setImage(self.image_centertext_testingping) servers = closest_servers(config['client']) start_st.append(localize(30963, **config['client'])) # Testing from ISP self.update_textbox(start_st) best = get_best_server(servers) start_st.append(localize(30964)) # Selecting best server based on latency start_st.append(localize(30965, **best)) # Hosted by: {sponsor} start_st.append(localize(30966, **best)) # 'Host server: {host} start_st.append(localize(30967, **best)) # City, State: {name} start_st.append(localize(30968, **best)) # Country: {country} self.update_textbox(start_st) # km2mi = 0.62 # km = '%(d)0.2f ' % best # Distance = float(km) # miles = Distance * km2mi # start_st.append('Distance: %s mi' % miles) start_st.append(localize(30969, **best)) # Distance: {d} start_st.append(localize(30970, **best)) # Ping: {latency} self.update_textbox(start_st) self.ping_textbox.setLabel("%.0f" % float(best['latency'])) self.img_centertext.setImage(' ') self.img_ping.setEnabled(False) self.img_ping_glow.setEnabled(False) sizes = [350, 500, 750, 1000, 1500, 2000, 2500, 3000, 3500, 4000] urls = [] for size in sizes: for _ in range(0, 4): urls.append('%s/random%sx%s.jpg' % (os.path.dirname(best['url']), size, size)) self.img_gauge.setVisible(True) Monitor().waitForAbort(1) self.config_gauge(0) self.img_gauge_arrow.setVisible(True) start_st.append(localize(30971)) # Testing download speed... self.update_textbox(start_st) dlspeed = self.download_speed(urls, simple) start_st[-1] = localize(30972, speed=dlspeed * 8 / 1000 / 1000) # Download speed self.update_textbox(start_st) self.dl_textbox.setLabel('%0.2f' % float(dlspeed * 8 / 1000 / 1000)) sizesizes = [int(.25 * 1000 * 1000), int(.5 * 1000 * 1000)] sizes = [] for size in sizesizes: for _ in range(0, 25): sizes.append(size) start_st.append(localize(30973)) # Testing upload speed... self.update_textbox(start_st) ulspeed = self.upload_speed(best['url'], sizes, simple) start_st[-1] = localize(30974, speed=ulspeed * 8 / 1000 / 1000) # Upload speed self.update_textbox(start_st) self.ul_textbox.setLabel('%.2f' % float(ulspeed * 8 / 1000 / 1000)) self.config_gauge(0, ulspeed * 8 / 1000 / 1000, time=3000) Monitor().waitForAbort(2) if share: dlspeedk = int(round(dlspeed * 8 / 1000, 0)) ping = int(round(best['latency'], 0)) ulspeedk = int(round(ulspeed * 8 / 1000, 0)) api_data = [ 'download=%s' % dlspeedk, 'ping=%s' % ping, 'upload=%s' % ulspeedk, 'promo=', 'startmode=%s' % 'pingselect', 'recommendedserverid=%s' % best['id'], 'accuracy=%s' % 1, 'serverid=%s' % best['id'], 'hash=%s' % md5(('%s-%s-%s-%s' % (ping, ulspeedk, dlspeedk, '297aae72')).encode()).hexdigest()] headers = {'Referer': 'https://c.speedtest.net/flash/speedtest.swf'} request = build_request('https://www.speedtest.net/api/api.php', data='&'.join(api_data).encode(), headers=headers) fdesc = catch_request(request) if fdesc is False: log(0, 'Could not submit results to speedtest.net') return False response = fdesc.read() code = fdesc.code fdesc.close() if int(code) != 200: log(0, 'Could not submit results to speedtest.net') return False qsargs = parse_qs(response.decode()) # pylint: disable=deprecated-method resultid = qsargs.get('resultid') if not resultid or len(resultid) != 1: log(0, 'Could not submit results to speedtest.net') return False global IMAGE_RESULT # pylint: disable=global-statement IMAGE_RESULT = 'https://www.speedtest.net/result/%s.png' % resultid[0] return True
class HorizontalSlideScreensaver(ScreensaverBase): MODE = 'slideLeftx' BACKGROUND_IMAGE = 'srr_blackbg.jpg' IMAGE_CONTROL_COUNT = 35 FAST_IMAGE_COUNT = 0 DISTANCE_RATIO = 0.7 SPEED = 1.0 CONCURRENCY = 1.0 #SCREEN = 0 IMAGE_ANIMATIONS = [ ] TEXT_ANIMATIONS= [ ] def load_settings(self): self.SPEED = float(addon.getSetting('slideshow_speed')) self.SHOW_TITLE = addon.getSetting('show_title') == 'true' self.CONCURRENCY = 1.0 #float(addon.getSetting('appletvlike_concurrency')) self.MAX_TIME = int(8000 / self.SPEED) #int(15000 / self.SPEED) self.NEXT_IMAGE_TIME = int(12000.0 / self.SPEED) self.TEXT_ANIMATIONS= [ ('conditional', 'condition=true effect=fade delay=0 time=500 start=0 end=100 ' ), ('conditional', 'condition=true effect=fade delay=%s time=500 start=100 end=0 tween=circle easing=in' % self.NEXT_IMAGE_TIME ) ] #using WindowXMLDialog(ScreensaverXMLWindow) instead of WindowDialog. the image used in text background does not load when using WindowDialog (???) some images load, most don't def init_xbmc_window(self): #self.xbmc_window = ScreensaverWindow( exit_callback=self.stop ) self.xbmc_window = ScreensaverXMLWindow( "slideshow01.xml", addon_path, defaultSkin='Default', exit_callback=self.action_id_handler ) #self.xbmc_window.setCoordinateResolution(5) self.xbmc_window.show() def stack_cycle_controls(self): for txt_ctl, img_ctl in self.tni_controls: self.xbmc_window.addControl(img_ctl) if self.SHOW_TITLE: self.txt_background=ControlImage(0, 685, 1280, 40, 'srr_dialog-bg.png', aspectRatio=1) self.xbmc_window.addControl( self.txt_background ) #ControlLabel(x, y, width, height, label, font=None, textColor=None, disabledColor=None, alignment=0, hasPath=False, angle=0) self.image_label=ControlLabel(10,688,1280,30,'',font='font16', textColor='', disabledColor='', alignment=6, hasPath=False, angle=0) self.xbmc_window.addControl( self.image_label ) #for txt_ctl, img_ctl in self.tni_controls: # self.xbmc_window.addControl(txt_ctl) def process_image(self, tni_control, desc_and_image): image_control=tni_control[1] text_control=tni_control[0] image_control.setVisible(False) image_control.setImage('') text_control.setVisible(False) text_control.setText('') direction=random.choice([1,0]) sx=1280;ex=-1280 if direction: sx,ex=ex,sx t=self.MAX_TIME self.IMAGE_ANIMATIONS = [ ('conditional', 'effect=slide start=%d,0 end=0,0 center=auto time=%s tween=cubic easing=out delay=0 condition=true' %(sx, t) ), ('conditional', 'effect=fade start=0 end=100 time=%s tween=cubic easing=out delay=0 condition=true' % t ), ('conditional', 'effect=slide start=0,0 end=%d,0 center=auto time=%s tween=cubic easing=in delay=%s condition=true' %(ex, t, (0.8*t)) ), ('conditional', 'effect=fade start=100 end=0 time=%s tween=cubic easing=in delay=%s condition=true' %(t, (0.8*t)) ), ] #self.image_label.setVisible(False) #self.image_label.setLabel('') if self.SHOW_TITLE: self.txt_background.setVisible(False) self.txt_background.setImage('') #time = self.MAX_TIME #/ zoom * self.DISTANCE_RATIO * 100 #30000 # set all parameters and properties #labels can have text centered but can't have multiline #textbox can have multiline but not centered text... what to do... #setLabel(self, label='', font=None, textColor=None, disabledColor=None, shadowColor=None, focusedColor=None, label2=''): if self.SHOW_TITLE: if self.image_label.getLabel() == desc_and_image[0]: #avoid animating the same text label if previous one is the same self.image_label.setAnimations( [ ('conditional', 'condition=true effect=fade delay=0 time=0 start=100 end=100 ' ) ] ) else: self.image_label.setAnimations( self.TEXT_ANIMATIONS ) if desc_and_image[0]: self.image_label.setLabel(desc_and_image[0]) self.image_label.setVisible(True) self.txt_background.setImage('srr_dlg-bg.png') self.txt_background.setVisible(True) else: #don't show text and text_background if no text self.image_label.setVisible(False) self.txt_background.setVisible(False) image_control.setImage(desc_and_image[1]) image_control.setPosition(0, 0) image_control.setWidth(1280) #16:9 #image_control.setWidth(1680) #21:9 image_control.setHeight(720) image_control.setAnimations(self.IMAGE_ANIMATIONS) # show the image image_control.setVisible(True)