Пример #1
0
class MediaViewerCam:
    def __init__(self, mgr, filepath):
        self.mgr = mgr
        self.mainwin = TextWindow(mgr,
                                  32,
                                  24,
                                  0,
                                  0,
                                  kb_event=self.kb_event,
                                  cursor_off=True)
        self.filepath = filepath
        self.delay_s = 0.25
        self.event = None
        self.pic_or_movie = bytes()
        self.pic_or_movie = filepath.open('rb').read()
        self.current_read_pos = 0
        self.show_next()
        if len(self.pic_or_movie) >= 2 * BYTES_PER_SCR:
            self.event = mgr.schedule_event(self.periodic, self.delay_s,
                                            self.delay_s)

    def show_next(self):
        if len(self.pic_or_movie) >= BYTES_PER_SCR:
            if self.current_read_pos >= len(self.pic_or_movie):
                self.current_read_pos = 0
            for row in range(NUM_ROWS):
                for col in range(BYTES_PER_ROW):
                    self.mainwin.setchar_raw(
                        self.pic_or_movie[self.current_read_pos], col, row)
                    self.current_read_pos += 1

    def periodic(self):
        self.show_next()

    def __enter__(self):
        return self

    def __exit__(self, _type, _value, _traceback):
        self.close()

    def close(self):
        if self.event:
            self.event.remove()
            self.event = None
        if self.mainwin:
            self.mainwin.close()
            self.mainwin = None

    def kb_event(self, win, zxchar):
        self.close()
Пример #2
0
class AppPiCam:
    def __init__(self, mgr):
        self.mgr = mgr
        self.mainwin = TextWindow(mgr,
                                  32,
                                  24,
                                  0,
                                  0,
                                  kb_event=self.kb_event,
                                  cursor_off=True)
        self.ctrlwin = None
        self.ctrlwin_timeout = time.time() + 20
        self.edlin = None
        self.show_offset = 0
        self.max_lines = 16
        self.f_index_str = '1234567890ABCDEFGHI'
        self.f_index = str2zx(self.f_index_str)
        self.actual_lines = 0
        self.charmap = [15] * 256
        self.build_charmap()
        self.cam = None
        self.camout = None
        self.app_state = AppState.SHOW
        self.replay_ix = 0
        self.delay_s = 3.0
        self.event = mgr.schedule_event(self.periodic, 1.0, 5.0)
        self.contrast = 0.5
        self.brightness = 1.0
        self.invert = False
        self.h_v_rot = 0  # H/V flip or rotate status as three LSB bits
        self.floyd_stb = False
        self.applied_rot = None
        self.check_show_ctrlwin()
        self.movie = []
        self.last_pic = None

    def __enter__(self):
        return self

    def __exit__(self, _type, _value, _traceback):
        self.close()

    def close(self):
        self.app_state = AppState.STOP
        if self.event:
            self.event.remove()
            self.event = None
        if self.camout is not None:
            self.camout.close()
            self.camout = None
        if self.cam is not None:
            self.cam.close()
            self.cam = None
        if self.mainwin:
            self.mainwin.close()
            self.mainwin = None
        if self.ctrlwin:
            self.ctrlwin.close()
            self.ctrlwin = None

    def check_show_ctrlwin(self):
        if not self.ctrlwin:
            self.ctrlwin = TextWindow(self.mgr,
                                      14,
                                      13,
                                      14,
                                      9,
                                      border=WindowBorderFrame(
                                          str2zx('ZX LIVE CAM')),
                                      kb_event=self.kb_event,
                                      cursor_off=True)
            self.ctrlwin.prttxt(
                str2zx('F fast S slow\n\nD dith I invrt', upper_inv=True))
            self.ctrlwin.prttxt(str2zx('\nP pic M movie\n', upper_inv=True))
            self.ctrlwin.prttxt(
                str2zx('\nR rotate\n\n1-5 brightness6-0 contrast\n\nX exit',
                       upper_inv=True))
        elif time.time() > self.ctrlwin_timeout:
            self.ctrlwin.close()
            self.ctrlwin = None

    def show_help(self):
        self.mainwin.prttxt(
            str2zx('\n      ZX LIVE CAMERA       \n\n', inverse=True))
        self.mainwin.prttxt(
            str2zx(
                '\n\n NEWLINE to start\n\n F fast update    S slow update\n\n D dithering\n\n I invert',
                upper_inv=True))
        self.mainwin.prttxt(
            str2zx('\n\n R rotate\n\n 1-5 bright\n\n 6-0 contrast\n\n X exit',
                   upper_inv=True))

    def periodic(self):
        startt = time.time()
        if self.app_state == AppState.SHOW:
            if self.ctrlwin and time.time() > self.ctrlwin_timeout:
                self.ctrlwin.close()
                self.ctrlwin = None
        if self.app_state in (AppState.SHOW, AppState.MOVIE_REC):
            self.last_pic = self.get_img_mono()
            self.mgr.update(0.08)  # allow for kb inp response
            if self.app_state in (AppState.SHOW, AppState.MOVIE_REC):
                lrg = self.calc_lrg_from_array(self.last_pic)
                self.show_lrg(lrg)
                if self.app_state == AppState.MOVIE_REC:
                    if len(self.movie) < 50:
                        self.movie.append(self.last_pic)
                        self.ctrlwin.set_prtpos(0, 0)
                        self.ctrlwin.prttxt(
                            str2zx('recording %02d' % len(self.movie),
                                   upper_inv=True))
                    else:
                        self.end_movie_rec()
                evt_t = time.time() - startt
                self.event.reschedule(max(0.08, self.delay_s - evt_t), 5.0)
        elif self.app_state in (AppState.MOVIE_QUERY_YN,
                                AppState.MOVIE_QUERY_NAME):
            if len(self.movie):
                if self.replay_ix >= len(self.movie): self.replay_ix = 0
                lrg = self.calc_lrg_from_array(self.movie[self.replay_ix])
                self.show_lrg(lrg)
                self.replay_ix += 1
                evt_t = time.time() - startt
                self.event.reschedule(max(0.08, self.delay_s - evt_t), 5.0)

    def build_charmap(self):
        for pul in range(4):
            for pur in range(4):
                for pll in range(4):
                    for plr in range(4):
                        c = 15
                        ix = pul * 64 + pur * 16 + pll * 4 + plr
                        al = (pul, pur, pll, plr)
                        up = (pul, pur)
                        lo = (pll, plr)
                        if 0 not in al and 3 not in al:
                            # just grey
                            if sum(al) / len(al) > 1.5:
                                c = 8  # fits to brighter edges
                            else:
                                c = 136  # fits to darker edges

                        elif 0 not in up and 3 not in up and 2 not in lo and 3 not in lo:
                            # upper grey, low black
                            c = 138
                        elif 0 not in up and 3 not in up and 0 not in lo and 1 not in lo:
                            # upper grey, low white
                            c = 10
                        elif 0 not in lo and 3 not in lo and 2 not in up and 3 not in up:
                            # low grey, upper black
                            c = 137
                        elif 0 not in lo and 3 not in lo and 0 not in up and 1 not in up:
                            # low grey, upper white
                            c = 9
                        else:
                            # binary
                            c = 0
                            if pul <= 1: c += 1
                            if pur <= 1: c += 2
                            if pll <= 1: c += 4
                            if plr <= 1: c = c ^ 0x87
                        self.charmap[ix] = c
        #print (self.charmap)

    def get_img_mono(self):
        a = None
        if cam_available:
            if self.cam is None:
                self.cam = picamera.PiCamera()
            if self.camout is None:
                self.camout = picamera.array.PiYUVArray(self.cam)
                self.cam.resolution = (64, 48)
            else:
                self.camout.truncate(0)
            rotate = self.h_v_rot & 1
            if rotate != self.applied_rot:
                self.cam.resolution = (48, 64) if rotate else (64, 48)
                self.applied_rot = rotate
            self.cam.capture(self.camout, 'yuv', use_video_port=True)
            a = self.camout.array[:, :, 0]
            if rotate: a = numpy.transpose(a)
        else:
            a = pickle.loads(p)
        return a

    def show_lrg(self, a):
        nr, nc = a.shape
        for row in range(nr):
            for col in range(nc):
                self.mainwin.setchar_raw(a[row, col], col, row)

    def calc_lrg_from_array(self, a):
        #calculate the mean value etc
        t = time.time()

        if self.h_v_rot & 4: a = numpy.fliplr(a)  # H flip
        if self.h_v_rot & 2: a = numpy.flipud(a)  # V flip
        if self.invert: a = 255 - a

        m = a.mean() / self.brightness
        s = a.std() * self.contrast * (1 if cam_available else random.gauss(
            1.0, 0.1))  # add some dynamics if no camera is there
        l0 = m - s
        l1 = m
        l2 = m + s
        nr, nc = a.shape

        # optional flody-steinberg
        if self.floyd_stb:
            l0 = max(0, int(m - 2 * s))
            l2 = min(255, int(m + 2 * s))
            for row in range(0, nr):
                for col in range(0, nc):
                    p = a[row, col]
                    n = l2 if p > l1 else l0
                    err = p - n
                    a[row, col] = n
                    if col < nc - 1:
                        a[row, col + 1] += err * 7 // 16
                    if row < nr - 1:
                        if col >= 1:
                            a[row + 1, col - 1] += err * 3 // 16
                        a[row + 1, col] += err * 5 // 16
                        if col < nc - 1:
                            a[row + 1, col + 1] += err * 1 // 16

        brightmap = [
            0 if b <= l0 else 3 if b >= l2 else 1 if b < l1 else 2
            for b in range(256)
        ]
        #print(brightmap)
        #print(a.mean(),a.std())
        va = numpy.zeros((nr // 2, nc // 2), dtype=int)

        for row in range(0, nr, 2):
            for col in range(0, nc, 2):
                # get the four points that make up a character
                code = 0
                for b in (a[row, col], a[row, col + 1], a[row + 1,
                                                          col], a[row + 1,
                                                                  col + 1]):
                    code *= 4
                    if 0:  # this seems to be much slower than the lookup below!
                        if b < l0:
                            c = 0
                        elif b > l2:
                            c = 3
                        elif b < l1:
                            c = 1
                        else:
                            c = 2
                        code += c
                        if c != brightmap[b]: print("FAIL")
                    else:
                        code += brightmap[b]
                va[row // 2, col // 2] = self.charmap[code]
                #self.mainwin.setchar_raw(self.charmap[code], col//2, row//2)
        #print("Display took %.2fus."%((time.time()-t)*1000000) )
        # now er have an 8bit code that we map for the proper char
        return va

    def end_movie_rec(self):
        self.app_state = AppState.MOVIE_QUERY_YN
        if self.ctrlwin: self.ctrlwin.close()
        self.ctrlwin = TextWindow(self.mgr,
                                  10,
                                  1,
                                  18,
                                  19,
                                  border=WindowBorderFrame(),
                                  kb_event=self.kb_event_query,
                                  cursor_off=True)
        self.ctrlwin.prttxt(str2zx('save? Y/N', upper_inv=True))

    def kb_event(self, win, zxchar):
        #win.prtchar(zxchar)
        bright = {'1': 1.5, '2': 1.2, '3': 1.0, '4': 0.83, '5': 0.67}
        contr = {'6': 0.2, '7': 0.33, '8': 0.5, '9': 0.8, '0': 1.2}
        s = zx2str([zxchar])
        if s in 'xX' or zxchar == 12:
            self.close()
            return
        elif s in 'fF':
            self.delay_s = 0.15
        elif s in 'sS':
            self.delay_s = 3.0
        elif s in 'dD':
            self.floyd_stb = not self.floyd_stb
        elif s in 'iI':
            self.invert = not self.invert
        elif s in 'rR':
            self.h_v_rot += 1

        elif s in 'pP':
            if self.app_state == AppState.SHOW:
                self.app_state = AppState.PIC_QUERY_YN
                if self.ctrlwin: self.ctrlwin.close()
                self.ctrlwin = TextWindow(self.mgr,
                                          10,
                                          1,
                                          18,
                                          19,
                                          border=WindowBorderFrame(),
                                          kb_event=self.kb_event_query,
                                          cursor_off=True)
                self.ctrlwin.prttxt(str2zx('save? Y/N', upper_inv=True))

        elif s in 'mM':
            self.movie.clear()
            self.replay_ix = 0
            if self.app_state == AppState.SHOW:
                self.app_state = AppState.MOVIE_REC
                if self.ctrlwin: self.ctrlwin.close()
                self.ctrlwin = TextWindow(self.mgr,
                                          13,
                                          1,
                                          17,
                                          19,
                                          border=WindowBorderFrame(),
                                          kb_event=self.kb_event_query,
                                          cursor_off=True)
                self.ctrlwin.prttxt(str2zx('recording', upper_inv=True))

        elif s in bright:
            self.brightness = bright[s]
        elif s in contr:
            self.contrast = contr[s]
        # TODO invers, save_pic, help, exit
        self.ctrlwin_timeout = time.time() + 3
        self.check_show_ctrlwin()
        self.event.reschedule(0.2, 5.0)

    def kb_event_query(self, win, zxchar):
        #win.prtchar(zxchar)
        s = zx2str([zxchar])
        if self.app_state in (AppState.PIC_QUERY_NAME,
                              AppState.MOVIE_QUERY_NAME):
            if zxchar in (117, 118):  # enter,break
                if zxchar == 118:  # enter
                    self.edlin.kb_event(zxchar)
                    if self.app_state == AppState.PIC_QUERY_NAME:
                        if self.edlin.val:
                            # safe pic
                            name = zx2str(self.edlin.val,
                                          to_lower=True).strip()
                            #path
                            mwin = self.mgr.show_msg_win(str2zx("save pic .."))
                            p = zxpi_paths.get_current_work_path() / 'pics'
                            if not p.exists(): p.mkdir(parents=True)
                            n = p / (name + '.zxscr')
                            with n.open('wb') as f:
                                lrg = self.calc_lrg_from_array(self.last_pic)
                                nr, nc = lrg.shape
                                for row in range(nr):
                                    #for col in range(nc):
                                    f.write(bytes([v for v in lrg[row]]))
                                print("Saved to", str(n))
                            mwin.close()
                    elif self.app_state == AppState.MOVIE_QUERY_NAME:
                        if self.edlin.val:
                            # save movie
                            name = zx2str(self.edlin.val,
                                          to_lower=True).strip()
                            #path
                            pth = zxpi_paths.get_current_work_path() / 'movies'
                            if not pth.exists(): pth.mkdir(parents=True)
                            n = pth / (name + '.zxmovie')
                            mwin = self.mgr.show_msg_win(
                                str2zx("save movie .."))
                            mv_dat = bytearray()
                            with n.open('wb') as f:
                                for p in self.movie:
                                    lrg = self.calc_lrg_from_array(p)
                                    nr, nc = lrg.shape
                                    for row in range(nr):
                                        #for col in range(nc):
                                        rowdat = bytearray(
                                            [v for v in lrg[row]])
                                        mv_dat += rowdat
                                        f.write(rowdat)
                                print("Saved as", str(n))
                            self.mgr.update(0.1)
                            n = pth / (name + '.p')
                            with n.open('wb') as f:
                                f.write(
                                    create_comp_viewer(compress_scr(mv_dat)))
                            mwin.close()
                if self.edlin:
                    self.edlin.close()
                    self.edlin = None
                self.app_state = AppState.SHOW
                self.ctrlwin_timeout = 0
                if self.ctrlwin:
                    self.ctrlwin.close()
                    self.ctrlwin = None
            else:
                self.edlin.kb_event(zxchar)
        elif self.app_state in (AppState.MOVIE_REC, ):
            self.end_movie_rec()
        else:
            if s in 'yYzZ':
                if self.app_state in (AppState.PIC_QUERY_YN,
                                      AppState.MOVIE_QUERY_YN):
                    self.app_state = AppState.PIC_QUERY_NAME if self.app_state == AppState.PIC_QUERY_YN else AppState.MOVIE_QUERY_NAME
                    if self.ctrlwin: self.ctrlwin.close()
                    self.ctrlwin = TextWindow(self.mgr,
                                              12,
                                              2,
                                              18,
                                              19,
                                              border=WindowBorderFrame(),
                                              kb_event=self.kb_event_query,
                                              cursor_off=True)
                    self.ctrlwin.prttxt(str2zx('file name:', upper_inv=True))
                    self.edlin = LinEd(self.ctrlwin,
                                       0,
                                       1,
                                       11,
                                       maxchar=255,
                                       history=None)
            else:
                self.app_state = AppState.SHOW
                if self.ctrlwin:
                    self.ctrlwin.close()
                    self.ctrlwin = None
            self.event.reschedule(0.2, 5.0)