Exemplo n.º 1
0
    def demo(self, ui):
        ui.message("===== Demo Mode =====")
        ui.message("Running a small demo/testing!")
        ui.message("")

        ui.message("--- Cyphering ---")
        text = "Hello Wolrd !"
        ui.message("Data to cypher: {}\n".format(text))
        ui.message("Braille cyphered data: {}"
                   "".format(braille.cypher(text)))
        ui.message("")

        ui.message("--- Decyphering ---")
        htext = "13457 24 14 15  2345 15 234 2345 6  24 234 1345 3457 2345  " \
                "24 2345 168 1456"
        ui.message("Braille text used as input: {}".format(htext))
        ui.message("The decyphered data is: {}"
                   "".format(braille.decypher(htext)))
        ui.message("")

        ui.message("--- Won’t work ---")
        text = "Japanese : 日本の"
        ui.message("+ The input text to cypher must be cp1252 (Windows "
                   "8bit occidental charset) chars only:")
        ui.message("Data to cypher: {}\n".format(text))
        try:
            ui.message("Braille cyphered data: {}"
                       "".format(braille.cypher(text)))
        except Exception as e:
            ui.message(str(e), level=ui.ERROR)
        ui.message("")

        ui.message("+ The input text to decypher must be valid Braille "
                   "us-437 codes only:")
        htext = "13447 24 14 15  2345 15 234 2345 6  24 234 1345 3457 2345  " \
                "24 2345 1778 1456"
        ui.message("Braille text used as input: {}".format(htext))
        try:
            ui.message("The decyphered data is: {}"
                       "".format(braille.decypher(htext)))
        except Exception as e:
            ui.message(str(e), level=ui.ERROR)
        ui.message("")

        ui.get_choice("", [("", "Go back to $menu", "")], oneline=True)
Exemplo n.º 2
0
    def demo(self, ui):
        ui.message("===== Demo Mode =====")
        ui.message("Running a small demo/testing!")
        ui.message("")

        ui.message("--- Cyphering ---")
        text = "Hello Wolrd !"
        ui.message("Data to cypher: {}\n".format(text))
        ui.message("Braille cyphered data: {}" "".format(braille.cypher(text)))
        ui.message("")

        ui.message("--- Decyphering ---")
        htext = "13457 24 14 15  2345 15 234 2345 6  24 234 1345 3457 2345  " \
                "24 2345 168 1456"
        ui.message("Braille text used as input: {}".format(htext))
        ui.message("The decyphered data is: {}"
                   "".format(braille.decypher(htext)))
        ui.message("")

        ui.message("--- Won’t work ---")
        text = "Japanese : 日本の"
        ui.message("+ The input text to cypher must be cp1252 (Windows "
                   "8bit occidental charset) chars only:")
        ui.message("Data to cypher: {}\n".format(text))
        try:
            ui.message("Braille cyphered data: {}"
                       "".format(braille.cypher(text)))
        except Exception as e:
            ui.message(str(e), ui.ERROR)
        ui.message("")

        ui.message("+ The input text to decypher must be valid Braille "
                   "us-437 codes only:")
        htext = "13447 24 14 15  2345 15 234 2345 6  24 234 1345 3457 2345  " \
                "24 2345 1778 1456"
        ui.message("Braille text used as input: {}".format(htext))
        try:
            ui.message("The decyphered data is: {}"
                       "".format(braille.decypher(htext)))
        except Exception as e:
            ui.message(str(e), ui.ERROR)
        ui.message("")

        ui.get_choice("", [("", "Go back to *menu", "")], oneline=True)
Exemplo n.º 3
0
    def decypher(self, ui):
        """Interactive version of decypher()."""
        txt = ""
        ui.message("===== Decypher Mode =====")

        while 1:
            txt = ui.text_input("Please choose some Braille text")

            try:
                ui.text_output("Text successfully decyphered",
                               braille.decypher(txt), "The decyphered text is")
            except Exception as e:
                ui.message(str(e), ui.ERROR)

            options = [("redo", "*decypher another data", ""),
                       ("quit", "or go back to *menu", "")]
            answ = ui.get_choice("Do you want to", options, oneline=True)
            if answ == "quit":
                return
Exemplo n.º 4
0
    def decypher(self, ui):
        """Interactive version of decypher()."""
        txt = ""
        ui.message("===== Decypher Mode =====")

        while 1:
            txt = ui.text_input("Please choose some Braille text")

            try:
                ui.text_output("Text successfully decyphered",
                               braille.decypher(txt),
                               "The decyphered text is")
            except Exception as e:
                ui.message(str(e), ui.ERROR)

            options = [("redo", "*decypher another data", ""),
                       ("quit", "or go back to *menu", "")]
            answ = ui.get_choice("Do you want to", options, oneline=True)
            if answ == "quit":
                return