Exemplo n.º 1
0
    public void ReturnFalseWhenDroppedNothing()
    {
        Assert.IsTrue(grid.AddGroup(group));
        Assert.IsTrue(group.Location.Equals(setting.BlockSpawnPoint));
        grid.FixGroup();

        IBlock[,] blocks = new IBlock[grid.Width, grid.Height];

        for (int y = 0; y < grid.Height; y++)
        {
            for (int x = 0; x < grid.Width; x++)
            {
                blocks[x, y] = grid[x, y];
            }
        }

        Assert.AreEqual(blocks[3, 13], group.Children[0]);
        Assert.AreEqual(blocks[3, 12], group.Children[1]);
        Assert.AreEqual(blocks[4, 13], group.Children[2]);
        Assert.AreEqual(blocks[2, 13], group.Children[3]);

        bool dropped;

        IBlock[,] blocksAfterDropped = BlockDropper.GetGridAfterDrop(blocks, out dropped);

        Assert.IsTrue(dropped);
        Assert.AreEqual(blocksAfterDropped[3, 1], group.Children[0]);
        Assert.AreEqual(blocksAfterDropped[3, 0], group.Children[1]);
        Assert.AreEqual(blocksAfterDropped[4, 0], group.Children[2]);
        Assert.AreEqual(blocksAfterDropped[2, 0], group.Children[3]);

        BlockDropper.GetGridAfterDrop(blocksAfterDropped, out dropped);
        Assert.IsFalse(dropped);
    }
Exemplo n.º 2
0
    public override bool Execute()
    {
        bool dropped = false;

        _grid.GridRaw = BlockDropper.GetGridAfterDrop(_grid.GridRaw, out dropped);
        for (int y = 0; y < _grid.Height; y++)
        {
            for (int x = 0; x < _grid.Width; x++)
            {
                if (_grid[x, y] != null)
                {
                    _grid[x, y].Move(new Coord(x, y));
                }
            }
        }

        return(dropped);
    }
Exemplo n.º 3
0
    public bool DropBlocks()
    {
        bool dropped;

        _simulatedGrid = BlockDropper.GetGridAfterDrop(_simulatedGrid, out dropped);


        for (int y = 0; y < _setting.GridHeight; y++)
        {
            for (int x = 0; x < _setting.GridWidth; x++)
            {
                if (_simulatedGrid[x, y] != null)
                {
                    _simulatedGrid[x, y].SetLocation(new Coord(x, y));
                }
            }
        }


        return(dropped);
    }