Exemple #1
0
 public ClassDecl(LexemeValue name, LexemeValue baseClassName, IList <FieldDecl> fields, IList <MethodDecl> methods)
 {
     BaseClass = new TypeRef(baseClassName);
     Name      = name;
     Fields    = new ReadOnlyCollection <FieldDecl>(fields);
     Methods   = new ReadOnlyCollection <MethodDecl>(methods);
 }
Exemple #2
0
 public Binary(LexemeValue op, Expression left, Expression right)
 {
     Operator = s_OperatorMap[op.Content];
     Left     = left;
     Right    = right;
     OpLexeme = op;
 }
Exemple #3
0
        private void HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            String           evalStr = "(find-fact ((?f ioproxy)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            MultifieldValue damf = (MultifieldValue)fv["messages"];
            MultifieldValue vamf = (MultifieldValue)fv["answers"];

            textBox2.Text += "Новая итерация : " + System.Environment.NewLine;
            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);
                textBox2.Text += Encoding.UTF8.GetString(bytes) + System.Environment.NewLine;
            }

            if (vamf.Count > 0)
            {
                textBox2.Text += "----------------------------------------------------" + System.Environment.NewLine;
                for (int i = 0; i < damf.Count; i++)
                {
                    LexemeValue va = (LexemeValue)vamf[i];
                    textBox2.Text += va.Value + System.Environment.NewLine;
                }
            }

            clips.Eval("(assert (clearmessage))");
        }
Exemple #4
0
 public MethodDecl(LexemeValue name, Type retType, IList <Formal> parameters, IList <Statement> stmts, Expression retExp)
 {
     Name             = name;
     ReturnType       = retType;
     Parameters       = new ReadOnlyCollection <Formal>(parameters);
     Statements       = stmts == null ? null : new ReadOnlyCollection <Statement>(stmts);
     ReturnExpression = retExp;
 }
Exemple #5
0
        private void HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            String           evalStr = "(find-fact ((?f ioproxy)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            MultifieldValue damf = (MultifieldValue)fv["messages"];
            MultifieldValue vamf = (MultifieldValue)fv["answers"];

            outputBox.Text += "Новая итерация : " + System.Environment.NewLine;
            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);

                string message = Encoding.UTF8.GetString(bytes);
                outputBox.Text += message + System.Environment.NewLine;

                string[] messages = message.Split();
                string   fact     = messages.Last().ToString();

                if (checkedListBox1.Items.Contains(fact))
                {
                    outputBox.Text    += "для этой команды соперников контрпик найден" + System.Environment.NewLine;
                    nextButton.Enabled = false;
                    return;
                }
            }

            var phrases = new List <string>();

            if (vamf.Count > 0)
            {
                outputBox.Text += "----------------------------------------------------" + System.Environment.NewLine;
                for (int i = 0; i < vamf.Count; i++)
                {
                    //  Варианты !!!!!
                    LexemeValue va      = (LexemeValue)vamf[i];
                    byte[]      bytes   = Encoding.Default.GetBytes(va.Value);
                    string      message = Encoding.UTF8.GetString(bytes);
                    phrases.Add(message);
                    outputBox.Text += "Добавлен вариант для распознавания " + message + System.Environment.NewLine;
                }
            }

            if (vamf.Count == 0)
            {
                clips.Eval("(assert (clearmessage))");
            }
            else
            {
                NewRecognPhrases(phrases);
            }
        }
Exemple #6
0
        private VariableInfo ResolveField(CodeClassType type, LexemeValue identifier)
        {
            //step1, see current class
            if (type.Fields.Contains(identifier.Content))
            {
                return(type.Fields[identifier.Content]);
            }

            //step2, see base class
            if (m_currentType.BaseType != null)
            {
                return(ResolveField(m_currentType.BaseType, identifier));
            }

            AddError(c_SE_VariableDeclMissing, identifier.Span, identifier.Content);
            return(null);
        }
Exemple #7
0
        private void HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            FactAddressValue fv = clips.FindFact("ioproxy");

            MultifieldValue damf = (MultifieldValue)fv["messages"];

            textBox1.Text = "";
            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);
                textBox1.Text += Encoding.UTF8.GetString(bytes) + System.Environment.NewLine;
            }

            clips.Eval("(assert (clearmessage))");
        }
        private void HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            string           evalStr = "(find-fact ((?f ioproxy)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            MultifieldValue damf = (MultifieldValue)fv["messages"];
            MultifieldValue vamf = (MultifieldValue)fv["answers"];

            textBox1.Text += "Новая итерация: " + System.Environment.NewLine;
            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);
                textBox1.Text += "Вопрос: " + Encoding.UTF8.GetString(bytes) + System.Environment.NewLine;
            }

            if (vamf.Count > 0)
            {
                List <string> answers  = new List <string>();
                LexemeValue   da       = (LexemeValue)damf[damf.Count - 1];
                byte[]        bytes    = Encoding.Default.GetBytes(da.Value);
                string        question = Encoding.UTF8.GetString(bytes) + System.Environment.NewLine;

                for (int i = 0; i < vamf.Count; i++)
                {
                    LexemeValue va = (LexemeValue)vamf[i];
                    bytes = Encoding.Default.GetBytes(va.Value);
                    answers.Add(Encoding.UTF8.GetString(bytes));
                }
                Dialog df = new Dialog(question, answers);
                df.ShowDialog(this);

                textBox1.Text += "Ответ: " + answers[answer_index] + System.Environment.NewLine;
                textBox1.Text += "----------------------------------------------------" + System.Environment.NewLine;

                clips.Eval("(write-answer \"" + answers[answer_index] + "\" )");
            }



            clips.Eval("(assert (clearmessage))");
        }
Exemple #9
0
        private VariableInfo ResolveVariable(LexemeValue identifier)
        {
            //step1, check local parameter & variable definitions
            if (m_currentMethodParameters.Contains(identifier.Content))
            {
                return(m_currentMethodParameters[identifier.Content]);
            }
            else if (m_currentMethodVariables.Contains(identifier.Content))
            {
                return(m_currentMethodVariables[identifier.Content]);
            }
            //step2, if not static method, check fields
            if (!m_currentMethod.IsStatic)
            {
                return(ResolveField(m_currentType, identifier));
            }

            AddError(c_SE_VariableDeclMissing, identifier.Span, identifier.Content);
            return(null);
        }
Exemple #10
0
        private bool HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            String           evalStr = "(find-fact ((?f ioproxy)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            MultifieldValue damf = (MultifieldValue)fv["messages"];
            MultifieldValue vamf = (MultifieldValue)fv["answers"];

            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da      = (LexemeValue)damf[i];
                byte[]      bytes   = Encoding.Default.GetBytes(da.Value);
                string      message = Encoding.UTF8.GetString(bytes);
                outputBox.Text += message + System.Environment.NewLine;

                //if(message == "")
                //{
                //    if (vamf.Count == 0)
                //        clips.Eval("(assert (clearmessage))");
                //    return false;
                //}
            }

            if (damf.Count == 0)
            {
                if (vamf.Count == 0)
                {
                    clips.Eval("(assert (clearmessage))");
                }

                return(false);
            }

            if (vamf.Count == 0)
            {
                clips.Eval("(assert (clearmessage))");
            }

            return(true);
        }
Exemple #11
0
        private string HandleResponse()
        {
            string result = "";
            //  Вытаскиаваем факт из ЭС
            String           evalStr = "(find-fact ((?f ioproxy)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            MultifieldValue damf = (MultifieldValue)fv["messages"];
            MultifieldValue vamf = (MultifieldValue)fv["answers"];

            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);
                result += Encoding.UTF8.GetString(bytes) + System.Environment.NewLine;
            }

            clips.Eval("(assert (clearmessage))");

            return(result);
        }
Exemple #12
0
        private void HandleResponse()
        {
            //  Вытаскиаваем факт из ЭС
            FactAddressValue fv = clips.FindFact("ioproxy");

            MultifieldValue damf  = (MultifieldValue)fv["messages"];
            List <string>   films = new List <string>();

            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da    = (LexemeValue)damf[i];
                byte[]      bytes = Encoding.Default.GetBytes(da.Value);
                var         elem  = Encoding.UTF8.GetString(bytes);
                films.Add(elem);
            }
            label_films.Text = "";
            for (int i = 0; i < films.Count; i++)
            {
                label_films.Text += films[i].ToString() + "\n";
            }
            clips.Eval("(assert (clearmessage))");
        }
Exemple #13
0
 public Formal(Type type, LexemeValue paramName)
 {
     Type          = type;
     ParameterName = paramName;
 }
Exemple #14
0
 public Assign(LexemeValue varName, Expression value)
 {
     Variable = new VariableRef(varName);
     Value    = value;
 }
Exemple #15
0
 public BooleanLiteral(LexemeValue literal)
 {
     Value         = literal.Content == null ? false : Boolean.Parse(literal.Content);
     m_literalSpan = literal.Span;
 }
Exemple #16
0
 public VarDecl(Type type, LexemeValue variableName)
 {
     Type         = type;
     VariableName = variableName;
 }
Exemple #17
0
 public TypeRef(LexemeValue name)
 {
     TypeName = name;
 }
Exemple #18
0
        private void HandleResponse()
        {
            /*===========================*/
            /* Get the current UI state. */
            /*===========================*/
            string           evalStr = "(find-fact ((?f UI-state)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            /*========================================*/
            /* Determine the Next/Prev button states. */
            /*========================================*/
            if (fv["state"].ToString().Equals("conclusion"))
            {
                interviewState          = InterviewState.CONCLUSION;
                nextButton.Tag          = "Restart";
                nextButton.Content      = "Restart";
                prevButton.Visibility   = Visibility.Hidden;
                scrollViewer.Visibility = Visibility.Visible;
                choicesPanel.Visibility = Visibility.Hidden;
                leftPanel.Visibility    = Visibility.Hidden;
                rightPanel.Visibility   = Visibility.Hidden;
            }
            else if (fv["state"].ToString().Equals("greeting"))
            {
                interviewState          = InterviewState.GREETING;
                nextButton.Tag          = "Next";
                nextButton.Content      = "Next >";
                prevButton.Visibility   = Visibility.Hidden;
                scrollViewer.Visibility = Visibility.Hidden;
                choicesPanel.Visibility = Visibility.Hidden;
                leftPanel.Visibility    = Visibility.Hidden;
                rightPanel.Visibility   = Visibility.Hidden;
            }
            else
            {
                interviewState          = InterviewState.INTERVIEW;
                nextButton.Tag          = "Next";
                nextButton.Content      = "Next >";
                prevButton.Visibility   = Visibility.Visible;
                scrollViewer.Visibility = Visibility.Hidden;
                choicesPanel.Visibility = Visibility.Visible;
                leftPanel.Visibility    = Visibility.Visible;
                rightPanel.Visibility   = Visibility.Visible;
            }
            leftLabel.Visibility  = Visibility.Hidden;
            rightLabel.Visibility = Visibility.Hidden;

            // Show different image according to job group
            string currentPath = System.Environment.CurrentDirectory;

            string[] temp = currentPath.Split("\\".ToCharArray());
            currentPath = "";
            for (int i = 0; i < temp.Length - 2; i++)
            {
                currentPath += temp[i];
                currentPath += "\\";
            }

            /*=====================*/
            /* Set up the choices. */
            /*=====================*/
            resultsPanel.Children.Clear();
            choicesPanel.Children.Clear();
            leftPanel.Children.Clear();
            rightPanel.Children.Clear();

            /*===========================*/
            /* Set up the panel context. */
            /*===========================*/
            if (fv["state"].ToString().Equals("conclusion"))
            {
                MultifieldValue drmf      = (MultifieldValue)fv["display-results"];
                Label           linkLabel = null;
                Run             linkText  = null;
                Hyperlink       link      = null;

                // Read excel for link of Job & Course & Prodiver
                List <string> jobNameList      = new List <string>();
                List <string> jobLinkList      = new List <string>();
                List <string> courseNameList   = new List <string>();
                List <string> courseLinkList   = new List <string>();
                List <string> providerNameList = new List <string>();
                List <string> providerLinkList = new List <string>();
                DataTable     dt = new DataTable();
                dt = LoadExcel(currentPath + "\\doc\\LinkData.xlsx", "Job");
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    jobNameList.Add(dt.Rows[i][0].ToString());
                    jobLinkList.Add(dt.Rows[i][1].ToString());
                }

                dt = LoadExcel(currentPath + "\\doc\\LinkData.xlsx", "Course");
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    courseNameList.Add(dt.Rows[i][0].ToString());
                    courseLinkList.Add(dt.Rows[i][1].ToString());
                }

                dt = LoadExcel(currentPath + "\\doc\\LinkData.xlsx", "Provider");
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    providerNameList.Add(dt.Rows[i][0].ToString());
                    providerLinkList.Add(dt.Rows[i][1].ToString());
                }

                for (int i = 0; i < drmf.Count; i++)
                {
                    LexemeValue dr           = (LexemeValue)drmf[i];
                    string      resultValue  = dr.Value;
                    string[]    resultValues = resultValue.Split(';');

                    // Job
                    StackPanel jPanel = new StackPanel();
                    jPanel.HorizontalAlignment = HorizontalAlignment.Left;
                    jPanel.VerticalAlignment   = VerticalAlignment.Center;
                    jPanel.Orientation         = Orientation.Horizontal;
                    jPanel.Height = 40;

                    Ellipse jEllipse = new Ellipse();
                    jEllipse.Width  = 20;
                    jEllipse.Height = 20;
                    SolidColorBrush jSolidColorBrush = new SolidColorBrush();
                    jSolidColorBrush.Color = Color.FromArgb(255, 255, 255, 255);
                    jEllipse.Fill          = jSolidColorBrush;
                    jPanel.Children.Add(jEllipse);

                    linkLabel             = new Label();
                    linkText              = new Run(" " + resultValues[0].ToString());
                    link                  = new Hyperlink(linkText);
                    link.NavigateUri      = new Uri(jobLinkList[jobNameList.IndexOf(resultValues[0].ToString())]);
                    link.RequestNavigate += new RequestNavigateEventHandler(delegate(object sender, RequestNavigateEventArgs e) {
                        Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
                        e.Handled = true;
                    });
                    link.MouseEnter     += new MouseEventHandler(OnLinkMouseEnter);
                    link.MouseLeave     += new MouseEventHandler(OnLinkMouseLeave);
                    link.Foreground      = System.Windows.Media.Brushes.White;
                    link.TextDecorations = null;
                    linkLabel.Content    = link;
                    linkLabel.FontSize   = 22;
                    linkLabel.Foreground = System.Windows.Media.Brushes.White;
                    jPanel.Children.Add(linkLabel);
                    resultsPanel.Children.Add(jPanel);

                    // Course1
                    StackPanel c1Panel = new StackPanel();
                    c1Panel.HorizontalAlignment = HorizontalAlignment.Left;
                    c1Panel.VerticalAlignment   = VerticalAlignment.Center;
                    c1Panel.Orientation         = Orientation.Horizontal;
                    c1Panel.Height = 30;
                    c1Panel.SetValue(Canvas.LeftProperty, 20d);

                    Label c1Label = new Label();
                    c1Label.Content = "    ";
                    c1Panel.Children.Add(c1Label);

                    Ellipse c1Ellipse = new Ellipse();
                    c1Ellipse.Width  = 15;
                    c1Ellipse.Height = 15;
                    SolidColorBrush c1SolidColorBrush = new SolidColorBrush();
                    c1SolidColorBrush.Color = Color.FromArgb(255, 255, 255, 255);
                    c1Ellipse.Fill          = c1SolidColorBrush;
                    c1Panel.Children.Add(c1Ellipse);

                    linkLabel             = new Label();
                    linkText              = new Run(resultValues[1].ToString());
                    link                  = new Hyperlink(linkText);
                    link.NavigateUri      = new Uri(courseLinkList[courseNameList.IndexOf(resultValues[1].ToString())]);
                    link.RequestNavigate += new RequestNavigateEventHandler(delegate(object sender, RequestNavigateEventArgs e) {
                        Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
                        e.Handled = true;
                    });
                    link.MouseEnter     += new MouseEventHandler(OnLinkMouseEnter);
                    link.MouseLeave     += new MouseEventHandler(OnLinkMouseLeave);
                    link.Foreground      = System.Windows.Media.Brushes.White;
                    link.TextDecorations = null;
                    linkLabel.Content    = link;
                    linkLabel.FontSize   = 18;
                    linkLabel.Foreground = System.Windows.Media.Brushes.White;
                    c1Panel.Children.Add(linkLabel);
                    resultsPanel.Children.Add(c1Panel);

                    // Provider1
                    StackPanel p1Panel = new StackPanel();
                    p1Panel.HorizontalAlignment = HorizontalAlignment.Left;
                    p1Panel.VerticalAlignment   = VerticalAlignment.Center;
                    p1Panel.Orientation         = Orientation.Horizontal;
                    p1Panel.Height = 30;
                    p1Panel.SetValue(Canvas.LeftProperty, 40d);

                    Label p1Label = new Label();
                    p1Label.Content = "        ";
                    p1Panel.Children.Add(p1Label);

                    Ellipse p1Ellipse = new Ellipse();
                    p1Ellipse.Width  = 10;
                    p1Ellipse.Height = 10;
                    SolidColorBrush p1SolidColorBrush = new SolidColorBrush();
                    p1SolidColorBrush.Color = Color.FromArgb(255, 255, 255, 255);
                    p1Ellipse.Fill          = p1SolidColorBrush;
                    p1Panel.Children.Add(p1Ellipse);

                    linkLabel             = new Label();
                    linkText              = new Run(resultValues[3].ToString());
                    link                  = new Hyperlink(linkText);
                    link.NavigateUri      = new Uri(providerLinkList[providerNameList.IndexOf(resultValues[3].ToString())]);
                    link.RequestNavigate += new RequestNavigateEventHandler(delegate(object sender, RequestNavigateEventArgs e) {
                        Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
                        e.Handled = true;
                    });
                    link.MouseEnter     += new MouseEventHandler(OnLinkMouseEnter);
                    link.MouseLeave     += new MouseEventHandler(OnLinkMouseLeave);
                    link.Foreground      = System.Windows.Media.Brushes.White;
                    link.TextDecorations = null;
                    linkLabel.Content    = link;
                    linkLabel.FontSize   = 14;
                    linkLabel.Foreground = System.Windows.Media.Brushes.White;
                    p1Panel.Children.Add(linkLabel);
                    resultsPanel.Children.Add(p1Panel);

                    // Course2
                    StackPanel c2Panel = new StackPanel();
                    c2Panel.HorizontalAlignment = HorizontalAlignment.Left;
                    c2Panel.VerticalAlignment   = VerticalAlignment.Center;
                    c2Panel.Orientation         = Orientation.Horizontal;
                    c2Panel.Height = 30;
                    c2Panel.SetValue(Canvas.LeftProperty, 20d);

                    Label c2Label = new Label();
                    c2Label.Content = "    ";
                    c2Panel.Children.Add(c2Label);

                    Ellipse c2Ellipse = new Ellipse();
                    c2Ellipse.Width  = 15;
                    c2Ellipse.Height = 15;
                    SolidColorBrush c2SolidColorBrush = new SolidColorBrush();
                    c2SolidColorBrush.Color = Color.FromArgb(255, 255, 255, 255);
                    c2Ellipse.Fill          = c2SolidColorBrush;
                    c2Panel.Children.Add(c2Ellipse);

                    linkLabel             = new Label();
                    linkText              = new Run(resultValues[2].ToString());
                    link                  = new Hyperlink(linkText);
                    link.NavigateUri      = new Uri(courseLinkList[courseNameList.IndexOf(resultValues[2].ToString())]);
                    link.RequestNavigate += new RequestNavigateEventHandler(delegate(object sender, RequestNavigateEventArgs e) {
                        Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
                        e.Handled = true;
                    });
                    link.MouseEnter     += new MouseEventHandler(OnLinkMouseEnter);
                    link.MouseLeave     += new MouseEventHandler(OnLinkMouseLeave);
                    link.Foreground      = System.Windows.Media.Brushes.White;
                    link.TextDecorations = null;
                    linkLabel.Content    = link;
                    linkLabel.FontSize   = 18;
                    linkLabel.Foreground = System.Windows.Media.Brushes.White;
                    c2Panel.Children.Add(linkLabel);
                    resultsPanel.Children.Add(c2Panel);

                    // Provider2
                    StackPanel p2Panel = new StackPanel();
                    p2Panel.HorizontalAlignment = HorizontalAlignment.Left;
                    p2Panel.VerticalAlignment   = VerticalAlignment.Center;
                    p2Panel.Orientation         = Orientation.Horizontal;
                    p2Panel.Height = 30;
                    p2Panel.SetValue(Canvas.LeftProperty, 40d);

                    Label p2Label = new Label();
                    p2Label.Content = "        ";
                    p2Panel.Children.Add(p2Label);

                    Ellipse p2Ellipse = new Ellipse();
                    p2Ellipse.Width  = 10;
                    p2Ellipse.Height = 10;
                    SolidColorBrush p2SolidColorBrush = new SolidColorBrush();
                    p2SolidColorBrush.Color = Color.FromArgb(255, 255, 255, 255);
                    p2Ellipse.Fill          = p2SolidColorBrush;
                    p2Panel.Children.Add(p2Ellipse);

                    linkLabel             = new Label();
                    linkText              = new Run(resultValues[4].ToString());
                    link                  = new Hyperlink(linkText);
                    link.NavigateUri      = new Uri(providerLinkList[providerNameList.IndexOf(resultValues[4].ToString())]);
                    link.RequestNavigate += new RequestNavigateEventHandler(delegate(object sender, RequestNavigateEventArgs e) {
                        Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
                        e.Handled = true;
                    });
                    link.MouseEnter     += new MouseEventHandler(OnLinkMouseEnter);
                    link.MouseLeave     += new MouseEventHandler(OnLinkMouseLeave);
                    link.Foreground      = System.Windows.Media.Brushes.White;
                    link.TextDecorations = null;
                    linkLabel.Content    = link;
                    linkLabel.FontSize   = 14;
                    linkLabel.Foreground = System.Windows.Media.Brushes.White;
                    p2Panel.Children.Add(linkLabel);
                    resultsPanel.Children.Add(p2Panel);
                }
                scrollViewer.HorizontalScrollBarVisibility = ScrollBarVisibility.Auto;
                scrollViewer.VerticalScrollBarVisibility   = ScrollBarVisibility.Auto;
                scrollViewer.SetValue(Canvas.HeightProperty, 450d);
                resultsPanel.VerticalAlignment = VerticalAlignment.Top;

                Uri uri = null;
                if (jobGroup != null)
                {
                    uri = new Uri(currentPath + "\\image\\" + jobGroup + ".png", UriKind.RelativeOrAbsolute);
                }
                else
                {
                    uri = new Uri(currentPath + "\\image\\Path.png", UriKind.RelativeOrAbsolute);
                }

                BitmapImage bitmap = new BitmapImage(uri);
                pathImage.Source = bitmap;

                // Change window background
                if (jobGroup != null)
                {
                    string color = "";
                    switch (jobGroup)
                    {
                    case "JobGroupsBA":
                        color = "#FF20C2D7";
                        break;

                    case "JobGroupsCC":
                        color = "#FF0886B7";
                        break;

                    case "JobGroupsDDM":
                        color = "#FF27BBD5";
                        break;

                    case "JobGroupsINS":
                        color = "#FF007386";
                        break;

                    case "JobGroupsISM":
                        color = "#FF059DCC";
                        break;

                    case "JobGroupsITM":
                        color = "#FF008CAD";
                        break;

                    case "JobGroupsSSD":
                        color = "#FF00AB9B";
                        break;
                    }

                    prevButton.Background = nextButton.Background = this.Background = new SolidColorBrush((Color)ColorConverter.ConvertFromString(color));
                }
                else
                {
                    this.Background = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FF75B2B3"));
                }

                // Hidden progressBar
                progressPanel.Visibility = Visibility.Hidden;
            }
            else
            {
                MultifieldValue damf = (MultifieldValue)fv["display-answers"];
                MultifieldValue vamf = (MultifieldValue)fv["valid-answers"];

                string      selected         = fv["response"].ToString();
                Button      firstButton      = null;
                RadioButton firstRadioButton = null;

                Uri         uri    = null;
                BitmapImage bitmap = null;

                for (int i = 0; i < damf.Count; i++)
                {
                    LexemeValue da = (LexemeValue)damf[i];
                    LexemeValue va = (LexemeValue)vamf[i];
                    RadioButton rButton;
                    Button      button;
                    string      buttonName, buttonText, buttonAnswer;

                    buttonName   = da.Value;
                    buttonText   = buttonName.Substring(0, 1).ToUpperInvariant() + buttonName.Substring(1);
                    buttonAnswer = va.Value;

                    // Character
                    if (fv["relation-asserted"].ToString().Equals("mind-types") ||
                        fv["relation-asserted"].ToString().Equals("see-things") ||
                        fv["relation-asserted"].ToString().Equals("judge-things") ||
                        fv["relation-asserted"].ToString().Equals("act-towards-changes"))
                    {
                        button = new Button();

                        // Button with image
                        uri    = new Uri(currentPath + "\\image\\" + buttonAnswer + ".png", UriKind.RelativeOrAbsolute);
                        bitmap = new BitmapImage(uri);
                        Image cellImage = new Image();
                        cellImage.Source = bitmap;
                        button           = new Button();
                        button.Content   = cellImage;
                        button.Tag       = buttonAnswer;
                        button.Width     = 150;
                        button.Height    = 150;
                        button.IsDefault = false;
                        button.Click    += OnClickButton;

                        button.Visibility = Visibility.Visible;
                        button.Margin     = new Thickness(5);
                        if (leftPanel.Children.Count == 0)
                        {
                            leftPanel.Children.Add(button);
                            leftLabel.Content    = buttonText;
                            leftLabel.Visibility = Visibility.Visible;
                        }
                        else
                        {
                            rightPanel.Children.Add(button);
                            rightLabel.Content    = buttonText;
                            rightLabel.Visibility = Visibility.Visible;
                        }

                        button.SetValue(Canvas.LeftProperty, 10d);
                        button.SetValue(Canvas.TopProperty, 10d);
                        button.SetValue(Canvas.BackgroundProperty, null);

                        if (firstButton == null)
                        {
                            firstButton = button;
                        }
                    }
                    else
                    {
                        rButton         = new RadioButton();
                        rButton.Content = buttonText;
                        if (((lastAnswer != null) && buttonAnswer.Equals(lastAnswer)) ||
                            ((lastAnswer == null) && buttonAnswer.Equals(selected)))
                        {
                            rButton.IsChecked = true;
                        }
                        else
                        {
                            rButton.IsChecked = false;
                        }

                        rButton.Tag        = buttonAnswer;
                        rButton.Visibility = Visibility.Visible;
                        rButton.Margin     = new Thickness(5);
                        choicesPanel.Children.Add(rButton);

                        if (firstRadioButton == null)
                        {
                            firstRadioButton = rButton;
                        }
                    }
                }

                if ((GetCheckedChoiceButton() == null) && (firstButton != null))
                {
                    firstButton.IsDefault = true;
                }

                if ((GetCheckedChoiceButton() == null) && (firstRadioButton != null))
                {
                    firstRadioButton.IsChecked = true;
                }

                relationAsserted = ((LexemeValue)fv["relation-asserted"]).Value;
                competency       = fv["competency"].ToString();

                // Change background when click Prev
                if (fv["state"].ToString().Equals("greeting"))
                {
                    uri = new Uri(currentPath + "\\image\\Login.png", UriKind.RelativeOrAbsolute);
                }
                else
                {
                    uri = new Uri(currentPath + "\\image\\Path.png", UriKind.RelativeOrAbsolute);
                }
                bitmap                = new BitmapImage(uri);
                pathImage.Source      = bitmap;
                prevButton.Background = nextButton.Background = this.Background = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FF75B2B3"));

                // Update progressBar
                progressBar.Value = variableAsserts.Count * 100 / 13;
            }

            /*====================================*/
            /* Set the label to the display text. */
            /*====================================*/
            string messageString = ((StringValue)fv["display"]).Value;
            double theWidth      = ComputeTextBoxWidth(messageString);

            messageTextBox.Width    = theWidth;
            messageTextBox.MinWidth = theWidth;
            messageTextBox.Text     = messageString;
        }
Exemple #19
0
 public ArrayAssign(LexemeValue arrayName, Expression index, Expression value)
 {
     Array = new VariableRef(arrayName);
     Index = index;
     Value = value;
 }
Exemple #20
0
        private void HandleResponse()
        {
            /*===========================*/
            /* Get the current UI state. */
            /*===========================*/

            String           evalStr = "(find-fact ((?f UI-state)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            /*========================================*/
            /* Determine the Next/Prev button states. */
            /*========================================*/

            if (fv["state"].ToString().Equals("conclusion"))
            {
                interviewState = InterviewState.CONCLUSION;
                //nextButton.Tag = "Restart";
                //nextButton.Text = "Restart";
                nextButton.Visible   = false;
                prevButton.Visible   = true;
                choicesPanel.Visible = false;
            }
            else if (fv["state"].ToString().Equals("greeting"))
            {
                interviewState     = InterviewState.GREETING;
                nextButton.Visible = false;
                //nextButton.Tag = "Next";
                //nextButton.Text = "Next >";
                prevButton.Visible   = false;
                choicesPanel.Visible = false;
            }
            else
            {
                interviewState       = InterviewState.INTERVIEW;
                nextButton.Visible   = true;
                nextButton.Tag       = "Next";
                nextButton.Text      = "Next >";
                prevButton.Visible   = false;
                choicesPanel.Visible = true;
                if (priorAnswers.Count < 1)
                {
                    prevButton.Visible = false;
                }
            }

            /*=====================*/
            /* Set up the choices. */
            /*=====================*/

            choicesPanel.Controls.Clear();

            MultifieldValue damf = (MultifieldValue)fv["display-answers"];
            MultifieldValue vamf = (MultifieldValue)fv["valid-answers"];

            String      selected    = fv["response"].ToString();
            RadioButton firstButton = null;

            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da = (LexemeValue)damf[i];
                LexemeValue va = (LexemeValue)vamf[i];
                RadioButton rButton;
                String      buttonName, buttonText, buttonAnswer;

                buttonName   = da.Value;
                buttonText   = buttonName.Substring(0, 1).ToUpperInvariant() + buttonName.Substring(1);
                buttonAnswer = va.Value;

                rButton      = new RadioButton();
                rButton.Text = buttonText;
                if (((lastAnswer != null) && buttonAnswer.Equals(lastAnswer)) ||
                    ((lastAnswer == null) && buttonAnswer.Equals(selected)))
                {
                    rButton.Checked = true;
                }
                else
                {
                    rButton.Checked = false;
                }

                rButton.Tag      = buttonAnswer;
                rButton.Visible  = true;
                rButton.AutoSize = true;
                choicesPanel.Controls.Add(rButton);

                if (firstButton == null)
                {
                    firstButton = rButton;
                }
            }

            if ((GetCheckedChoiceButton() == null) && (firstButton != null))
            {
                firstButton.Checked = true;
            }

            /*====================================*/
            /* Set the label to the display text. */
            /*====================================*/

            relationAsserted = ((LexemeValue)fv["relation-asserted"]).Value;

            /*====================================*/
            /* Set the label to the display text. */
            /*====================================*/

            String messageString = ((StringValue)fv["display"]).Value;

            messageLabel.Text = messageString;
        }
Exemple #21
0
 public VariableRef(LexemeValue name)
 {
     VariableName = name;
 }
Exemple #22
0
 public IdentifierType(LexemeValue typeName)
 {
     Type = new TypeRef(typeName);
 }
Exemple #23
0
 public Call(Expression target, LexemeValue methodName, IList <Expression> argList)
 {
     Target    = target;
     Method    = new MethodRef(methodName);
     Arguments = new ReadOnlyCollection <Expression>(argList);
 }
        private void HandleResponse()
        {
            /*===========================*/
            /* Get the current UI state. */
            /*===========================*/

            String           evalStr = "(find-fact ((?f UI-state)) TRUE)";
            FactAddressValue fv      = (FactAddressValue)((MultifieldValue)clips.Eval(evalStr))[0];

            /*========================================*/
            /* Determine the Next/Prev button states. */
            /*========================================*/

            if (fv.GetFactSlot("state").ToString().Equals("conclusion"))
            {
                interviewState          = InterviewState.CONCLUSION;
                nextButton.Tag          = "Restart";
                nextButton.Content      = "Restart";
                prevButton.Visibility   = Visibility.Visible;
                choicesPanel.Visibility = Visibility.Collapsed;
            }
            else if (fv.GetFactSlot("state").ToString().Equals("greeting"))
            {
                interviewState          = InterviewState.GREETING;
                nextButton.Tag          = "Next";
                nextButton.Content      = "Next >";
                prevButton.Visibility   = Visibility.Collapsed;
                choicesPanel.Visibility = Visibility.Collapsed;
            }
            else
            {
                interviewState          = InterviewState.INTERVIEW;
                nextButton.Tag          = "Next";
                nextButton.Content      = "Next >";
                prevButton.Visibility   = Visibility.Visible;
                choicesPanel.Visibility = Visibility.Visible;
            }

            /*=====================*/
            /* Set up the choices. */
            /*=====================*/

            choicesPanel.Children.Clear();

            MultifieldValue damf = (MultifieldValue)fv.GetFactSlot("display-answers");
            MultifieldValue vamf = (MultifieldValue)fv.GetFactSlot("valid-answers");

            String      selected    = fv.GetFactSlot("response").ToString();
            RadioButton firstButton = null;

            for (int i = 0; i < damf.Count; i++)
            {
                LexemeValue da = (LexemeValue)damf[i];
                LexemeValue va = (LexemeValue)vamf[i];
                RadioButton rButton;
                String      buttonName, buttonText, buttonAnswer;

                buttonName   = da.GetLexemeValue();
                buttonText   = buttonName.Substring(0, 1).ToUpperInvariant() + buttonName.Substring(1);
                buttonAnswer = va.GetLexemeValue();

                rButton         = new RadioButton();
                rButton.Content = buttonText;
                if (((lastAnswer != null) && buttonAnswer.Equals(lastAnswer)) ||
                    ((lastAnswer == null) && buttonAnswer.Equals(selected)))
                {
                    rButton.IsChecked = true;
                }
                else
                {
                    rButton.IsChecked = false;
                }

                rButton.Tag        = buttonAnswer;
                rButton.Visibility = Visibility.Visible;
                rButton.Margin     = new Thickness(5);
                choicesPanel.Children.Add(rButton);

                if (firstButton == null)
                {
                    firstButton = rButton;
                }
            }

            if ((GetCheckedChoiceButton() == null) && (firstButton != null))
            {
                firstButton.IsChecked = true;
            }

            /*====================================*/
            /* Set the label to the display text. */
            /*====================================*/

            relationAsserted = ((LexemeValue)fv.GetFactSlot("relation-asserted")).GetLexemeValue();

            /*====================================*/
            /* Set the label to the display text. */
            /*====================================*/

            String messageString = ((StringValue)fv.GetFactSlot("display")).GetStringValue();
            double theWidth      = ComputeTextBoxWidth(messageString);

            messageTextBox.Width    = theWidth;
            messageTextBox.MinWidth = theWidth;
            messageTextBox.Text     = messageString;
        }
Exemple #25
0
 public Variable(LexemeValue name)
 {
     VariableRef = new VariableRef(name);
 }
Exemple #26
0
 public MainClass(LexemeValue name, LexemeValue argName, IList <Statement> statements)
 {
     Name       = name;
     ArgName    = argName;
     Statements = new ReadOnlyCollection <Statement>(statements);
 }
Exemple #27
0
 public MethodRef(LexemeValue name)
 {
     MethodName = name;
 }
Exemple #28
0
 public FieldDecl(Type type, LexemeValue fieldName)
 {
     Type      = type;
     FieldName = fieldName;
 }
Exemple #29
0
 public IntegerLiteral(LexemeValue literal)
 {
     Literal = literal;
 }
Exemple #30
0
 public NewObject(LexemeValue typeName)
 {
     Type = new TypeRef(typeName);
 }