Exemplo n.º 1
0
        public override void Run(string args, List <string> splitArgs)
        {
            int entityID    = -1;
            int entityCount = 1;

            if (splitArgs.Count == 0)
            {
                return;
            }

            if (!int.TryParse(splitArgs[0], out entityID))
            {
                string[] splitID = splitArgs[0].Split('.');

                if (splitID.Length < 2)
                {
                    ChatConsole.Error("If you specify the NPC by name rather than by ID you must precede it by either a mod's internal name or 'Vanilla' followed by a dot ('.'). e.x. \"Vanilla.TheDestroyer\"");
                    return;
                }

                string modName      = splitID[0];
                string entityName   = splitID[1];
                bool   isVanillaNpc = modName.ToLower() == "vanilla";

                try
                {
                    entityID = NpcDef.Defs[splitID[1], isVanillaNpc ? null : splitID[0]].Type;
                }
                catch (InvalidOperationException)
                {
                    ChatConsole.Error(isVanillaNpc ? "Could not find a vanila NPC with internal name '{0}'." : "Could not find an NPC with internal name '{0}' in the data of mod '{1}'.", splitID[1], splitID[0]);
                    return;
                }
            }

            if (splitArgs.Count > 1)
            {
                if (!int.TryParse(splitArgs[1], out entityCount))
                {
                    ChatConsole.Error("'{0}' is not a number.", splitArgs[1]);
                    return;
                }
            }

            for (int i = 0; i < entityCount; i++)
            {
                NPC.NewNPC((int)Main.MouseWorld.X, (int)Main.MouseWorld.Y, entityID);
            }
        }
Exemplo n.º 2
0
 public override void Run(string args, List <string> splitArgs)
 {
     ChatConsole.Error("Will be implemented as soon as the debug variable system is created and implemented.");
 }
Exemplo n.º 3
0
        public override void Run(string args, List <string> splitArgs)
        {
            int id  = -1;
            int amt = 1;

            if (splitArgs.Count == 0)
            {
                return;
            }

            EntityType entityType = EntityType.Npc;//Just so intellisense would stfu since it returns if it fails anyways

            try
            {
                entityType = EntityTypeFromStr(splitArgs[0]);
            }
            catch
            {
                ChatConsole.Error("'{0}' is not a valid entity type (Npc, Item, Wall, Tile, Mount, or Projectile)");
                return;
            }

            if (!int.TryParse(splitArgs[1], out id))
            {
                string[] splitID = splitArgs[1].Split('.');



                if (splitID.Length < 2)
                {
                    ChatConsole.Error("If you specify the entity by name rather than by ID you must precede it by either a mod's internal name or 'Vanilla' followed by a dot ('.'). e.x. \"Vanilla.TheDestroyer\" or \"MyTotallyTubularMod.RadicalNpcDude\"");
                    return;
                }

                string modName         = splitID[0];
                string entityName      = splitID[1];
                bool   isVanillaEntity = modName.ToLower() == "vanilla";

                try
                {
                    switch (entityType)
                    {
                    case EntityType.Item:       id = ItemDef.Defs[splitID[1], isVanillaEntity ? null : splitID[0]].Type; break;

                    case EntityType.Npc:        id = NpcDef.Defs[splitID[1], isVanillaEntity ? null : splitID[0]].Type; break;

                    case EntityType.Projectile: id = ProjectileDef.Defs[splitID[1], isVanillaEntity ? null : splitID[0]].Type; break;

                    case EntityType.Tile:       id = TileDef.Defs[splitID[1], isVanillaEntity ? null : splitID[0]].Type; break;

                    case EntityType.Wall:       id = WallDef.Defs[splitID[1], isVanillaEntity ? null : splitID[0]].Type; break;
                    }
                }
                catch (InvalidOperationException)
                {
                    ChatConsole.Error(isVanillaEntity ? "Could not find vanilla {2} with internal name '{0}'." : "Could not find {2} with internal name '{0}' in the data of mod '{1}'.", splitID[1], splitID[0], entityType);
                    return;
                }
            }

            if (splitArgs.Count > 2)
            {
                if (!int.TryParse(splitArgs[2], out amt))
                {
                    ChatConsole.Error("'{0}' is not a number.", splitArgs[2]);
                    return;
                }
            }

            for (int i = 0; i < amt; i++)
            {
                int   x         = (int)Main.MouseWorld.X;
                int   y         = (int)Main.MouseWorld.Y;
                Point tileCoord = Main.MouseWorld.ToTileCoordinates();

                switch (entityType)
                {
                case EntityType.Item:       Item.NewItem(x, y, 32, 32, id, amt); return;     //All in one stack; no need to repeat spawn command.

                case EntityType.Npc:        NPC.NewNPC(x, y, id); break;

                case EntityType.Projectile: Projectile.NewProjectile(x, y, 2 * (float)Main.rand.NextDouble() - 1, 2 * (float)Main.rand.NextDouble() - 1, id, ProjectileDef.Defs[id].Damage, ProjectileDef.Defs[id].Knockback, Main.myPlayer); break;

                case EntityType.Tile:       WorldGen.PlaceTile(tileCoord.X, tileCoord.Y, id, false, false, Main.myPlayer); return; //You can only place one tile in a location.

                case EntityType.Wall:       WorldGen.PlaceWall(tileCoord.X, tileCoord.Y, id, false); return;                       //You can only place one wall in a location.
                }
            }
        }
Exemplo n.º 4
0
 public override void Run(string args, List <string> splitArgs)
 {
     ChatConsole.Error("Not yet implemented; PoroCYon is currently (supposedly) writing the lib for this...");
 }