Exemplo n.º 1
0
        private void TtTimer_Tick(object sender, EventArgs e)
        {
            timer.Stop();
            ACMD_CMD_INFO info     = SelectedItem as ACMD_CMD_INFO;
            var           itemRect = GetItemRectangle(SelectedIndex);

            tooltip.ToolTipTitle       = info.Name;
            tooltip.ToolTipDescription = info.EventDescription;
            tooltip.Show(info.Name, this, this.Right, itemRect.Y, 5000);
        }
Exemplo n.º 2
0
        public static void GetCommandInfo(string path)
        {
            using (StreamReader stream = new StreamReader(path))
            {
                List <string> raw = stream.ReadToEnd().Split('\n').Select(x => x.Trim('\r')).ToList();
                raw.RemoveAll(x => String.IsNullOrEmpty(x) || String.IsNullOrWhiteSpace(x) || x.Contains("//"));

                for (int i = 0; i < raw.Count; i += 5)
                {
                    ACMD_CMD_INFO h = new ACMD_CMD_INFO
                    {
                        Identifier = uint.Parse(raw[i], System.Globalization.NumberStyles.HexNumber),
                        Name       = raw[i + 1]
                    };
                    string[] paramList   = raw[i + 2].Split(',').Where(x => x != "NONE").ToArray();
                    string[] paramSyntax = raw[i + 3].Split(',').Where(x => x != "NONE").ToArray();
                    foreach (string kw in paramSyntax)
                    {
                        h.ParamSyntax.Add(kw);
                    }
                    foreach (string s in paramList)
                    {
                        h.ParamSpecifiers.Add(int.Parse(s));
                    }
                    if (raw[i + 4] != "NONE")
                    {
                        h.EventDescription = raw[i + 4];
                    }
                    if (h.Identifier == 0x5766F889 || h.Identifier == 0x89F86657)
                    {
                        _endingCommand = h;
                    }

                    commandDictionary.Add(h);
                }
            }
        }