Beispiel #1
0
        public List<List<CellInfo>> GetPossibleMoves(int number, Position position)
        {
            List<List<CellInfo>> results = new List<List<CellInfo>>();

            for (int x = 0; x < position.Size; x++)
            {
                List<CellInfo> cells = new List<CellInfo>();

                for (int y = 0; y < position.Size; y++)
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        cells.Add(new CellInfo() { Number = number, X = x, Y = y });
                    }

                if (cells.Count > 0)
                    results.Add(cells);
            }

            for (int y = 0; y < position.Size; y++)
            {
                List<CellInfo> cells = new List<CellInfo>();

                for (int x = 0; x < position.Size; x++)
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        cells.Add(new CellInfo() { Number = number, X = x, Y = y });
                    }

                if (cells.Count > 0)
                    results.Add(cells);
            }

            for (int ix = 0; ix < position.Size; ix += position.Range)
                for (int iy = 0; iy < position.Size; iy += position.Range)
                {
                    List<CellInfo> cells = new List<CellInfo>();

                    for (int x = 0; x < position.Range; x++)
                        for (int y = 0; y < position.Range; y++)
                        {
                            if (position.CanPutNumberAt(number, ix + x, iy + y))
                            {
                                cells.Add(new CellInfo() { Number = number, X = ix + x, Y = iy + y });
                            }
                        }

                    if (cells.Count > 0)
                        results.Add(cells);
                }

            return results;
        }
Beispiel #2
0
        public CellInfo Resolve(int number, Position position)
        {
            for (int x = 0; x < position.Size; x++)
            {
                int npossible = 0;
                int ny        = 0;

                for (int y = 0; y < position.Size; y++)
                {
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        npossible++;

                        ny = y;
                    }
                }

                if (npossible == 1)
                {
                    return new CellInfo()
                           {
                               Number = number, X = x, Y = ny
                           }
                }
                ;
            }

            for (int y = 0; y < position.Size; y++)
            {
                int npossible = 0;
                int nx        = 0;

                for (int x = 0; x < position.Size; x++)
                {
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        npossible++;
                        nx = x;
                    }
                }

                if (npossible == 1)
                {
                    return new CellInfo()
                           {
                               Number = number, X = nx, Y = y
                           }
                }
                ;
            }

            for (int ix = 0; ix < position.Size; ix += position.Range)
            {
                for (int iy = 0; iy < position.Size; iy += position.Range)
                {
                    int npossible = 0;
                    int nx        = 0;
                    int ny        = 0;

                    for (int x = 0; x < position.Range; x++)
                    {
                        for (int y = 0; y < position.Range; y++)
                        {
                            if (position.CanPutNumberAt(number, ix + x, iy + y))
                            {
                                npossible++;
                                nx = ix + x;
                                ny = iy + y;
                            }
                        }
                    }

                    if (npossible == 1)
                    {
                        return new CellInfo()
                               {
                                   Number = number, X = nx, Y = ny
                               }
                    }
                    ;
                }
            }

            return(null);
        }
Beispiel #3
0
        public List <List <CellInfo> > GetPossibleMoves(int number, Position position)
        {
            List <List <CellInfo> > results = new List <List <CellInfo> >();

            for (int x = 0; x < position.Size; x++)
            {
                List <CellInfo> cells = new List <CellInfo>();

                for (int y = 0; y < position.Size; y++)
                {
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        cells.Add(new CellInfo()
                        {
                            Number = number, X = x, Y = y
                        });
                    }
                }

                if (cells.Count > 0)
                {
                    results.Add(cells);
                }
            }

            for (int y = 0; y < position.Size; y++)
            {
                List <CellInfo> cells = new List <CellInfo>();

                for (int x = 0; x < position.Size; x++)
                {
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        cells.Add(new CellInfo()
                        {
                            Number = number, X = x, Y = y
                        });
                    }
                }

                if (cells.Count > 0)
                {
                    results.Add(cells);
                }
            }

            for (int ix = 0; ix < position.Size; ix += position.Range)
            {
                for (int iy = 0; iy < position.Size; iy += position.Range)
                {
                    List <CellInfo> cells = new List <CellInfo>();

                    for (int x = 0; x < position.Range; x++)
                    {
                        for (int y = 0; y < position.Range; y++)
                        {
                            if (position.CanPutNumberAt(number, ix + x, iy + y))
                            {
                                cells.Add(new CellInfo()
                                {
                                    Number = number, X = ix + x, Y = iy + y
                                });
                            }
                        }
                    }

                    if (cells.Count > 0)
                    {
                        results.Add(cells);
                    }
                }
            }

            return(results);
        }
Beispiel #4
0
        public void ValidMoves()
        {
            Position position = new Position();

            position.PutNumberAt(5, 1, 1);

            Assert.IsFalse(position.CanPutNumberAt(5, 1, 1));

            Assert.IsTrue(position.CanPutNumberAt(4, 0, 0));
            Assert.IsTrue(position.CanPutNumberAt(4, 1, 8));
            Assert.IsTrue(position.CanPutNumberAt(4, 8, 1));

            Assert.IsTrue(position.CanPutNumberAt(4, 8, 8));
            Assert.IsTrue(position.CanPutNumberAt(4, 2, 8));
            Assert.IsTrue(position.CanPutNumberAt(4, 8, 2));
        }
Beispiel #5
0
        public void DetectColisions()
        {
            Position position = new Position();

            position.PutNumberAt(5, 1, 1);

            Assert.IsFalse(position.CanPutNumberAt(5, 1, 1));
            Assert.IsFalse(position.CanPutNumberAt(5, 0, 0));
            Assert.IsFalse(position.CanPutNumberAt(5, 1, 8));
            Assert.IsFalse(position.CanPutNumberAt(5, 8, 1));
        }
Beispiel #6
0
        public CellInfo Resolve(int number, Position position)
        {
            for (int x = 0; x < position.Size; x++)
            {
                int npossible = 0;
                int ny = 0;

                for (int y = 0; y < position.Size; y++)
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        npossible++;
                        ny = y;
                    }

                if (npossible == 1)
                    return new CellInfo() { Number = number, X = x, Y = ny };
            }

            for (int y = 0; y < position.Size; y++)
            {
                int npossible = 0;
                int nx = 0;

                for (int x = 0; x < position.Size; x++)
                    if (position.CanPutNumberAt(number, x, y))
                    {
                        npossible++;
                        nx = x;
                    }

                if (npossible == 1)
                    return new CellInfo() { Number = number, X = nx, Y = y };
            }

            for (int ix = 0; ix < position.Size; ix += position.Range)
                for (int iy = 0; iy < position.Size; iy += position.Range)
                {
                    int npossible = 0;
                    int nx = 0;
                    int ny = 0;

                    for (int x = 0; x < position.Range; x++)
                        for (int y = 0; y < position.Range; y++)
                        {
                            if (position.CanPutNumberAt(number, ix + x, iy + y))
                            {
                                npossible++;
                                nx = ix + x;
                                ny = iy + y;
                            }
                        }

                    if (npossible == 1)
                        return new CellInfo() { Number = number, X = nx, Y = ny };
                }

            return null;
        }