コード例 #1
0
ファイル: MaintainMethod.cs プロジェクト: wshanshan/DDD
 public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List<int> ignoreCells, int failedAttempts)
 {
     if (ignoreCells != null)
     {
         
         List<CellRange> possibleCells = matrix.GetCellsByCpe(cpe1, cpe2, failedAttempts);
         //go through each possible cell looking for those not already ignored.
         foreach (CellRange cr in possibleCells)
         {
             if (!ignoreCells.Contains(cr.CellNumber))
                 return cr.Copy();
         }
         return null;
     }
     CellRange current = matrix.GetCellByCpe(cpe1, cpe2);
     return current; //because we're maintaining, keep in their cpe cell
 }
コード例 #2
0
ファイル: MaintainMethod.cs プロジェクト: xiangnanyue/DDD
        public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List <int> ignoreCells, int failedAttempts)
        {
            if (ignoreCells != null)
            {
                List <CellRange> possibleCells = matrix.GetCellsByCpe(cpe1, cpe2, failedAttempts);
                //go through each possible cell looking for those not already ignored.
                foreach (CellRange cr in possibleCells)
                {
                    if (!ignoreCells.Contains(cr.CellNumber))
                    {
                        return(cr.Copy());
                    }
                }
                return(null);
            }
            CellRange current = matrix.GetCellByCpe(cpe1, cpe2);

            return(current); //because we're maintaining, keep in their cpe cell
        }
コード例 #3
0
        public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List <int> ignoreCells, int failedAttempts)
        {
            CellRange        current       = matrix.GetCellByCpe(cpe1, cpe2);
            int              x             = current.Xindex;
            int              y             = current.Yindex;
            List <CellRange> possibleCells = new List <CellRange>();

            if (Math.Abs(cpe1 - cpe2) >= Threshold)
            {
                if (cpe1 > cpe2)
                {
                    //focus on CPE2
                    x = current.Xindex;
                    y = current.Yindex;
                    x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
                }
                else
                {
                    //focus on CPE1
                    x = current.Xindex;
                    y = current.Yindex;
                    y = Math.Min(y + 1, matrix.GetRowCount() - 1);
                }
            }
            else
            {
                //focus on both
                x = current.Xindex;
                y = current.Yindex;
                x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
                y = Math.Min(y + 1, matrix.GetRowCount() - 1);
            }


            if (ignoreCells != null)
            {
                possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
                foreach (CellRange cr in possibleCells)
                {
                    if (!ignoreCells.Contains(cr.CellNumber))
                    {
                        return(cr.Copy());
                    }
                }
                return(null);
            }
            return(matrix.GetCellByIndex(y, x));

            /*
             * //then move appropriately
             * if (Math.Abs(cpe1 - cpe2) >= Threshold)
             * {
             *  if (cpe1 > cpe2)
             *  {
             *      //focus on CPE2
             *      int x = current.Xindex;
             *      int y = current.Yindex;
             *      x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
             *      return matrix.GetCellByIndex(y, x);
             *  }
             *  else
             *  {
             *      //focus on CPE1
             *      int x = current.Xindex;
             *      int y = current.Yindex;
             *      y = Math.Min(y + 1, matrix.GetRowCount() - 1);
             *      return matrix.GetCellByIndex(y, x);
             *  }
             * }
             * else
             * {
             *  //focus on both
             *  int x = current.Xindex;
             *  int y = current.Yindex;
             *  x = Math.Min(x + 1, matrix.GetColumnCount()-1);
             *  y = Math.Min(y + 1, matrix.GetRowCount()-1);
             *  return matrix.GetCellByIndex(y, x);
             * }
             * return null;*/
        }
コード例 #4
0
ファイル: ChallengeMethod.cs プロジェクト: wshanshan/DDD
        public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List<int> ignoreCells, int failedAttempts)
        {
            CellRange current = matrix.GetCellByCpe(cpe1, cpe2);
            int x = current.Xindex;
            int y = current.Yindex;
            List<CellRange> possibleCells = new List<CellRange>();
            if (Math.Abs(cpe1 - cpe2) >= Threshold)
            {
                if (cpe1 > cpe2)
                {
                    //focus on CPE2
                    x = current.Xindex;
                    y = current.Yindex;
                    x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
                    
                }
                else
                {
                    //focus on CPE1
                    x = current.Xindex;
                    y = current.Yindex;
                    y = Math.Min(y + 1, matrix.GetRowCount() - 1);
                    
                }
            }
            else
            {
                //focus on both
                x = current.Xindex;
                y = current.Yindex;
                x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
                y = Math.Min(y + 1, matrix.GetRowCount() - 1);
                
            }


            if (ignoreCells != null)
            {
                possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
                foreach (CellRange cr in possibleCells)
                {
                    if (!ignoreCells.Contains(cr.CellNumber))
                        return cr.Copy();
                }
                return null;
            }
            return matrix.GetCellByIndex(y, x);
            /*
            //then move appropriately
            if (Math.Abs(cpe1 - cpe2) >= Threshold)
            {
                if (cpe1 > cpe2)
                {
                    //focus on CPE2
                    int x = current.Xindex;
                    int y = current.Yindex;
                    x = Math.Min(x + 1, matrix.GetColumnCount() - 1);
                    return matrix.GetCellByIndex(y, x);
                }
                else
                {
                    //focus on CPE1
                    int x = current.Xindex;
                    int y = current.Yindex;
                    y = Math.Min(y + 1, matrix.GetRowCount() - 1);
                    return matrix.GetCellByIndex(y, x);
                }
            }
            else
            { 
                //focus on both
                int x = current.Xindex;
                int y = current.Yindex;
                x = Math.Min(x + 1, matrix.GetColumnCount()-1);
                y = Math.Min(y + 1, matrix.GetRowCount()-1);
                return matrix.GetCellByIndex(y, x);
            }
            return null;*/
        }
コード例 #5
0
        public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List <int> ignoreCells, int failedAttempts)
        {
            CellRange current;

            if (ignoreCells != null)
            {
                current = matrix.GetCellByCpe(cpe1, cpe2);
                List <CellRange> possibleCells;// = matrix.GetCellsByCpe(cpe1, cpe2, failedAttempts);
                if (Math.Abs(cpe1 - cpe2) >= Threshold)
                {
                    if (cpe1 > cpe2)
                    {
                        //focus on CPE2
                        int x = current.Xindex;
                        int y = current.Yindex;
                        x             = Math.Max(x - 1, 0);
                        possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
                    }
                    else
                    {
                        //focus on CPE1
                        int x = current.Xindex;
                        int y = current.Yindex;
                        y             = Math.Max(y - 1, 0);
                        possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
                    }
                }
                else
                {
                    //focus on both
                    int x = current.Xindex;
                    int y = current.Yindex;
                    x             = Math.Max(x - 1, 0);
                    y             = Math.Max(y - 1, 0);
                    possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
                }
                //go through each possible cell looking for those not already ignored.
                foreach (CellRange cr in possibleCells)
                {
                    if (!ignoreCells.Contains(cr.CellNumber))
                    {
                        return(cr.Copy());
                    }
                }
                return(null);
            }
            current = matrix.GetCellByCpe(cpe1, cpe2);
            //then move appropriately
            if (Math.Abs(cpe1 - cpe2) >= Threshold)
            {
                if (cpe1 > cpe2)
                {
                    //focus on CPE2
                    int x = current.Xindex;
                    int y = current.Yindex;
                    x = Math.Max(x - 1, 0);
                    return(matrix.GetCellByIndex(y, x));
                }
                else
                {
                    //focus on CPE1
                    int x = current.Xindex;
                    int y = current.Yindex;
                    y = Math.Max(y - 1, 0);
                    return(matrix.GetCellByIndex(y, x));
                }
            }
            else
            {
                //focus on both
                int x = current.Xindex;
                int y = current.Yindex;
                x = Math.Max(x - 1, 0);
                y = Math.Max(y - 1, 0);
                return(matrix.GetCellByIndex(y, x));
            }
            return(null);
        }
コード例 #6
0
ファイル: ConsolidateMethod.cs プロジェクト: wshanshan/DDD
 public override CellRange SelectNextCell(CpeMatrix matrix, double cpe1, double cpe2, List<int> ignoreCells, int failedAttempts)
 {
     CellRange current;
     if (ignoreCells != null)
     {
         current = matrix.GetCellByCpe(cpe1, cpe2);
         List<CellRange> possibleCells;// = matrix.GetCellsByCpe(cpe1, cpe2, failedAttempts);
         if (Math.Abs(cpe1 - cpe2) >= Threshold)
         {
             if (cpe1 > cpe2)
             {
                 //focus on CPE2
                 int x = current.Xindex;
                 int y = current.Yindex;
                 x = Math.Max(x - 1, 0);
                 possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
             }
             else
             {
                 //focus on CPE1
                 int x = current.Xindex;
                 int y = current.Yindex;
                 y = Math.Max(y - 1, 0);
                 possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
             }
         }
         else
         {
             //focus on both
             int x = current.Xindex;
             int y = current.Yindex;
             x = Math.Max(x - 1, 0);
             y = Math.Max(y - 1, 0);
             possibleCells = matrix.GetCellsByIndex(y, x, failedAttempts);
         }
         //go through each possible cell looking for those not already ignored.
         foreach (CellRange cr in possibleCells)
         {
             if (!ignoreCells.Contains(cr.CellNumber))
                 return cr.Copy();
         }
         return null;
     }
     current = matrix.GetCellByCpe(cpe1, cpe2);
     //then move appropriately
     if (Math.Abs(cpe1 - cpe2) >= Threshold)
     {
         if (cpe1 > cpe2)
         {
             //focus on CPE2
             int x = current.Xindex;
             int y = current.Yindex;
             x = Math.Max(x - 1, 0);
             return matrix.GetCellByIndex(y, x);
         }
         else
         {
             //focus on CPE1
             int x = current.Xindex;
             int y = current.Yindex;
             y = Math.Max(y - 1, 0);
             return matrix.GetCellByIndex(y, x);
         }
     }
     else
     { 
         //focus on both
         int x = current.Xindex;
         int y = current.Yindex;
         x = Math.Max(x - 1, 0);
         y = Math.Max(y - 1, 0);
         return matrix.GetCellByIndex(y, x);
     }
     return null;
 }