From: Andreas Frisch Date: Wed, 17 Sep 2008 16:27:42 +0000 (+0000) Subject: CreateMenu is now a task of its own X-Git-Tag: 2.6.0~869 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/2062d6d479dd1cff81c5434e6678a61e19f68ef1?hp=ad916414180e6d210b827ae9efdcd4ee1dca9e02 CreateMenu is now a task of its own --- diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py index b60cca20..41e129ad 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/Process.py +++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py @@ -246,7 +246,8 @@ class BurnTaskPostcondition(Condition): def getErrorMessage(self, task): return { - task.ERROR_MEDIA: _("Medium is not a writeable DVD!"), + task.ERROR_NOTWRITEABLE: _("Medium is not a writeable DVD!"), + task.ERROR_LOAD: _("Could not load Medium! No disc inserted?"), task.ERROR_SIZE: _("Content does not fit on DVD!"), task.ERROR_WRITE_FAILED: _("Write failed!"), task.ERROR_DVDROM: _("No (supported) DVDROM found!"), @@ -255,7 +256,7 @@ class BurnTaskPostcondition(Condition): }[task.error] class BurnTask(Task): - ERROR_MEDIA, ERROR_SIZE, ERROR_WRITE_FAILED, ERROR_DVDROM, ERROR_ISOFS, ERROR_UNKNOWN = range(6) + ERROR_NOTWRITEABLE, ERROR_LOAD, ERROR_SIZE, ERROR_WRITE_FAILED, ERROR_DVDROM, ERROR_ISOFS, ERROR_UNKNOWN = range(7) def __init__(self, job, extra_args=[]): Task.__init__(self, job, "burn") @@ -291,7 +292,9 @@ class BurnTask(Task): self.progress = 110 elif line.startswith(":-["): if line.find("ASC=30h") != -1: - self.error = self.ERROR_MEDIA + self.error = self.ERROR_NOTWRITEABLE + if line.find("ASC=24h") != -1: + self.error = self.ERROR_LOAD else: self.error = self.ERROR_UNKNOWN print "BurnTask: unknown error %s" % line @@ -303,7 +306,7 @@ class BurnTask(Task): elif line.find("unable to open64(\"/dev/cdroms/cdrom0\",O_RDONLY): No such file or directory") != -1: # fixme self.error = self.ERROR_DVDROM elif line.find("media is not recognized as recordable DVD") != -1: - self.error = self.ERROR_MEDIA + self.error = self.ERROR_NOTWRITEABLE else: self.error = self.ERROR_UNKNOWN print "BurnTask: unknown error %s" % line @@ -329,8 +332,6 @@ class PreviewTask(Task): def run(self, callback, task_progress_changed): self.callback = callback self.task_progress_changed = task_progress_changed - if self.job.project.waitboxref: - self.job.project.waitboxref.close() if self.job.menupreview: self.waitAndOpenPlayer() else: @@ -371,13 +372,6 @@ class PreviewTaskPostcondition(Condition): def getErrorMessage(self, task): return "Cancel" -def getTitlesPerMenu(nr_titles): - if nr_titles < 6: - titles_per_menu = 5 - else: - titles_per_menu = 4 - return titles_per_menu - def formatTitle(template, title, track): template = template.replace("$i", str(track)) template = template.replace("$t", title.name) @@ -399,138 +393,189 @@ def formatTitle(template, title, track): template = template.replace("$Y", "").replace("$M", "").replace("$D", "").replace("$T", "") return template.decode("utf-8") -def CreateMenus(job): - try: - from ImageFont import truetype - import ImageDraw, Image, os - except ImportError: - job.project.session.open(MessageBox, ("missing python-imaging"), type = MessageBox.TYPE_ERROR) - if job.project.waitboxref: - job.project.waitboxref.close() - return False - - imgwidth = 720 - imgheight = 576 - s = job.project.settings - im_bg_orig = Image.open(s.menubg.getValue()) - if im_bg_orig.size != (imgwidth, imgheight): - im_bg_orig = im_bg_orig.resize((720, 576)) - - fontsizes = s.font_size.getValue() - fontface = s.font_face.getValue() - - font0 = truetype(fontface, fontsizes[0]) - font1 = truetype(fontface, fontsizes[1]) - font2 = truetype(fontface, fontsizes[2]) +class ImagingPostcondition(Condition): + def check(self, task): + return task.returncode == 0 - color_headline = tuple(s.color_headline.getValue()) - color_button = tuple(s.color_button.getValue()) - color_highlight = tuple(s.color_highlight.getValue()) - spu_palette = [ 0x60, 0x60, 0x60 ] + s.color_highlight.getValue() + def getErrorMessage(self, task): + return "python-imaging " + _("failed") - nr_titles = len(job.project.titles) - titles_per_menu = getTitlesPerMenu(nr_titles) - job.nr_menus = ((nr_titles+titles_per_menu-1)/titles_per_menu) - - #a new menu_count every 5 titles (1,2,3,4,5->1 ; 6,7,8,9,10->2 etc.) - for menu_count in range(1 , job.nr_menus+1): - im_bg = im_bg_orig.copy() - im_high = Image.new("P", (imgwidth, imgheight), 0) - im_high.putpalette(spu_palette) - draw_bg = ImageDraw.Draw(im_bg) - draw_high = ImageDraw.Draw(im_high) - - if menu_count == 1: - headline = s.name.getValue().decode("utf-8") - textsize = draw_bg.textsize(headline, font=font0) - if textsize[0] > imgwidth: - offset = (0 , 20) - else: - offset = (((imgwidth-textsize[0]) / 2) , 20) - draw_bg.text(offset, headline, fill=color_headline, font=font0) +class ImagePrepareTask(Task): + def __init__(self, job): + Task.__init__(self, job, _("please wait, loading picture...")) + self.postconditions.append(ImagingPostcondition()) + self.weighting = 20 + self.job = job + self.Menus = job.Menus - menubgpngfilename = job.workspace+"/dvd_menubg"+str(menu_count)+".png" - highlightpngfilename = job.workspace+"/dvd_highlight"+str(menu_count)+".png" - spuxml = """ - - - """ % (highlightpngfilename, spu_palette[0], spu_palette[1], spu_palette[2]) - s_top, s_rows, s_left = s.space.getValue() - rowheight = (fontsizes[1]+fontsizes[2]+s_rows) - menu_start_title = (menu_count-1)*titles_per_menu + 1 - menu_end_title = (menu_count)*titles_per_menu + 1 - if menu_end_title > nr_titles: - menu_end_title = nr_titles+1 - menu_i = 0 - for title_no in range( menu_start_title , menu_end_title ): - i = title_no-1 - top = s_top + ( menu_i * rowheight ) - menu_i += 1 - title = job.project.titles[i] - titleText = formatTitle(s.titleformat.getValue(), title, title_no) - draw_bg.text((s_left,top), titleText, fill=color_button, font=font1) - draw_high.text((s_left,top), titleText, fill=1, font=font1) - subtitleText = formatTitle(s.subtitleformat.getValue(), title, title_no) - draw_bg.text((s_left,top+36), subtitleText, fill=color_button, font=font2) - bottom = top+rowheight - if bottom > imgheight: - bottom = imgheight - spuxml += """ -