Example #1
0
        private static bool ValidateBeneathFloor(int leftTileX, int floorTileY)
        {
            int maxX             = leftTileX + ScaffoldingErectorKitItem.ScaffoldWidth;
            int maxY             = ScaffoldingErectorKitItem.GetFurthestAllowedGroundTileY(floorTileY);
            int framingPlankType = ModContent.TileType <FramingPlankTile>();

            // Find at least one 'earth' tile beneath
            for (int x = leftTileX; x < maxX; x++)
            {
                for (int y = floorTileY; y < maxY; y++)
                {
                    Tile tile = Main.tile[x, y];
                    if (tile?.active() != true)
                    {
                        continue;
                    }

                    if (TileLibraries.IsSolid(tile, false, false) && tile.type != framingPlankType)
                    {
                        return(true);
                    }
                }
            }

            return(false);
        }
Example #2
0
        ////

        public override bool ConsumeItem(Player player)
        {
            int       tileX   = (int)player.Center.X / 16;
            int       tileY   = (int)player.position.Y / 16;
            int       offsetY = ScaffoldingErectorKitItem.PlacementVerticalOffset;
            Rectangle area;

            bool canErect = ScaffoldingErectorKitItem.Validate(
                tileX: tileX,
                tileY: tileY,
                offsetY: offsetY,
                area: out area
                );

            if (canErect)
            {
                if (Main.netMode == NetmodeID.SinglePlayer)
                {
                    ScaffoldingErectorKitItem.MakeScaffold(area.Left, area.Bottom + offsetY);
                }
                else if (Main.netMode == NetmodeID.MultiplayerClient)
                {
                    ScaffoldingKitProtocol.SendToServer(tileX, tileY, offsetY);
                }
                else if (Main.netMode == NetmodeID.Server)
                {
                    LogLibraries.Alert("Server?");
                }
            }
            else
            {
                Main.NewText("Invalid location.", Color.Yellow);
            }

            return(canErect);
        }
Example #3
0
        ////

        public static bool Validate(int tileX, int tileY, int offsetY, out Rectangle area)
        {
            tileY += offsetY;

            int width      = ScaffoldingErectorKitItem.ScaffoldWidth;
            int height     = ScaffoldingErectorKitItem.ScaffoldHeight - offsetY;
            int leftTileX  = Math.Max(tileX - (width / 2), 1);
            int floorTileY = ScaffoldingErectorKitItem.FindScaffoldFloorY(leftTileX, tileY, width, height);

            if ((floorTileY - tileY) > height)
            {
                area = new Rectangle();
                return(false);
            }

            // Ensure minimum ground prereq
            if (!ScaffoldingErectorKitItem.ValidateBeneathFloor(leftTileX, floorTileY))
            {
                area = new Rectangle();
                return(false);
            }

            area = new Rectangle(
                Math.Min(leftTileX, Main.maxTilesX - width - 1),
                Math.Max(floorTileY - height, 1),
                width,
                height
                );

            // Ensure clear space
            for (int j = 0; j < height; j++)
            {
                for (int i = 0; i < width; i++)
                {
                    int x = i + area.X;
                    int y = j + area.Y;
                    if (!WorldGen.InWorld(x, y))
                    {
                        return(false);
                    }

                    Tile tile = Main.tile[x, y];
                    if (tile?.active() == true)
                    {
                        switch (tile.type)
                        {
                        case TileID.Grass:
                        case TileID.CorruptGrass:
                        case TileID.FleshGrass:
                        case TileID.HallowedGrass:
                        case TileID.JungleGrass:
                        case TileID.MushroomGrass:
                            //tile.active( false );
                            break;

                        default:
                            return(false);
                        }
                    }
                }
            }

            return(true);
        }