Exemplo n.º 1
0
 public BlockNode(string name, int level, BlockRecord block = null)
 {
     Name  = name;
     Level = level;
     Block = block;
     //Content = $"{level}: {name}";
     Content    = name;
     IsExpanded = true;
 }
Exemplo n.º 2
0
        static UniBlocks()
        {
            // Read blocks
            using (var sr = new StreamReader(GetResourceStream("MetaBlocks.txt")))
                while (!sr.EndOfStream)
                {
                    string line = sr.ReadLine();
                    if (line.Length == 0 || line[0] == '#')
                    {
                        continue;
                    }
                    string[]    fields = line.Split(';');
                    string[]    field0 = fields[0].Replace("..", ";").Split(';');
                    int         begin  = int.Parse(field0[0], NumberStyles.HexNumber);
                    int         end    = int.Parse(field0[1], NumberStyles.HexNumber);
                    BlockRecord br     = new BlockRecord(begin, end, fields[1], fields[2], fields[3], fields[4]);
                    block_map.Add(begin, br);
                }

            // Compute rank using an integer of format 33221100 where 33 is index of L3 block, 22 index of L2 block in L3...
            int rank3 = 0;

            foreach (var l3 in block_map.Values.GroupBy(b => b.Level3Name).OrderBy(g => g.Key))
            {
                int rank2 = 0;
                foreach (var l2 in l3.GroupBy(b => b.Level2Name))
                {
                    int rank1 = 0;
                    foreach (var l1 in l2.GroupBy(b => b.Level1Name))
                    {
                        int rank0 = 0;
                        foreach (var l0 in l1)
                        {
                            l0.Rank = rank0 + 100 * (rank1 + 100 * (rank2 + 100 * rank3));
                            rank0++;
                        }
                        rank1++;
                    }
                    rank2++;
                }
                rank3++;
            }
        }