Exemplo n.º 1
0
        public Form1()
        {
            InitializeComponent();
            //------test form-----
            //Form2 instance = new Form2();
            //instance.ShowDialog();
            //-----------------------

            input              = new SpeechBotImpl();
            input.textReached += callBack;
            input.voiceToText(this);
        }
Exemplo n.º 2
0
        static int state = 6; // HOME STATE
        public static void callBack(Form1 form, List <string> list)
        {
            string text = list[0];

            List <string> keywordInfo = new List <string> {
                "ye", "thank", "done", "jesse", "tell", "medication", "alert", "schedule", "list", "when", "buy", "about", "taking"
            };
            List <string> keywordAlert = new List <string> {
                "thank", "jesse", "ye", "ok", "next", "no", "not", "cancel", "confirming", "finished"
            };
            List <string> keywordMeds = new List <string> {
                "medication", "jesse", "ok", "ye", "no", "not", "taking", "took", "confirming", "finished", "thank"
            };
            List <string> keywordCheckIn = new List <string> {
                "jesse", "thank", "ye", "no", "ok", "not", "good"
            };
            bool repeat = true;

            List <string> output   = new List <string>();
            string        response = "";

            if (state == 6) // HOME STATE
            {
                output = Parse(keywordInfo, text);
                if (((output.Contains("tell") && output.Contains("about")) || output.Contains("taking") || output.Contains("list")) && output.Contains("medication"))
                {
                    response = "These are the meds you need to take.";
                    state    = 1; // MED STATE
                }
                else if (output.Contains("alert"))
                {
                    response = "You have these alerts. Have you taken these medications?";
                    state    = 5; // ALERT STATE
                }
                else if (output.Contains("schedule"))
                {
                    response = "Done.";
                }

                else if (output.Contains("buy") && output.Contains("when"))
                {
                    response = "Your Sulfasalizine will expire in 23 days.                                      Would you like to send a refill order to a pharmacy?";
                }
                else if (output.Contains("ye"))
                {
                    response = "I am sending an order to your nearest pharmacy right now.";
                }
                else if (output.Contains("done"))
                {
                    response = "Your welcome. Have a good day.";
                    repeat   = false;
                }
                else if (output.Contains("jesse"))
                {
                    response = "Your Sulfasalizine will expire in 23 days.                       Would you like to send a refill order to a pharmacy?";
                }

                else
                {
                    response = "Sorry, can you repeat yourself?";
                }
            }

            else if (state == 1 || state == 4) // MED STATE or Cancel Alert State
            {
                output = Parse(keywordMeds, text);
                if (output.Contains("confirming") || output.Contains("finished"))
                {
                    response = "How are you feeling?";
                    state    = 2; // HOW ARE YOU STATE
                }

                else if (output.Contains("when") || output.Contains("next"))
                {
                    response = "The next medication is tomorrow.";
                }
                else if (output.Contains("thank"))
                {
                    response = "Ok, anything else?";
                    state    = 6;
                }
                else if (output.Contains("jesse"))
                {
                    response = "Hello Art, how can I help you?";
                }
                else
                {
                    response = "Sorry, can you repeat yourself?";
                }
            }
            else if (state == 2) // HOW ARE YOU STATE
            {
                output = Parse(keywordCheckIn, text);
                if (output.Contains("no") || output.Contains("not"))
                {
                    response = "Can you tell me about it?";
                    state    = 3; // TELL ME ABOUT IT STATE
                }
                else if (output.Contains("ok") || output.Contains("ye") || output.Contains("good"))
                {
                    response = "Ok. Have a nice day!";
                    state    = 6; // HOME STATE
                }
                else if (output.Contains("thank"))
                {
                    response = "Ok, anything else?";
                    state    = 6;
                }
                else if (output.Contains("jesse"))
                {
                    response = "Hello Art, how can I help you?";
                }

                else
                {
                    response = "Sorry, can you repeat yourself?";
                }
            }
            else if (state == 3) //TELL ME ABOUT IT STATE
            {
                output = Parse(keywordCheckIn, text);

                if (output.Contains("no") || output.Contains("not"))
                {
                    response = "Alert! You have an alert for Methotrexate from Friday.";
                    state    = 5;
                }
                else if (output.Contains("ok") || output.Contains("ye"))
                {
                    response = "Ok. Have a nice day!";
                    state    = 6; // HOME STATE
                }
                else if (output.Contains("thank"))
                {
                    response = "Ok, anything else?";
                    state    = 6;
                }
                else if (output.Contains("jesse"))
                {
                    response = "Hello Art, how can I help you?";
                }

                else
                {
                    response = "Sorry, can you repeat yourself?";
                }
            }

            else if (state == 5) // ALERT STATE
            {
                output = Parse(keywordAlert, text);

                if (output.Contains("not") || output.Contains("no"))
                {
                    response = "Alert! You have an alert for Methotrexate from Friday.";
                }

                else if (output.Contains("ye") || output.Contains("ok"))
                {
                    response = "Good job. Enjoy your day.";
                    state    = 6; // CHANGE TO HOME
                }

                else if (output.Contains("confirming") || output.Contains("finished"))
                {
                    response = "Are you having a good day?";
                    state    = 2; // CHANGE TO ARE YOU HAVING A GOOD DAY
                }

                else if (output.Contains("cancel"))
                {
                    response = "OK, the alert for your medication has been canceled.";
                    state    = 4; // CANCEL ALERT STATE
                }

                else if (output.Contains("jesse"))
                {
                    response = "Hello Art, how can I help you?";
                }

                else
                {
                    response = "Sorry, can you repeat yourself?";
                }
            }

            input = new SpeechBotImpl();
            input.textToVoice(response);
            form.changeText(response); // CHANGE TEXT DEPENDING ON RESPONSE
            form.displayPanel(state);  // CHANGE PANEL DEPENDING ON RESPONSE
            if (repeat == true)
            {
                Console.Write("repeat");
                input              = new SpeechBotImpl();
                input.textReached += callBack;
                input.voiceToText(form);
            }



            Console.Write(response);
        }