Exemplo n.º 1
0
        public void WriteRawFileTest()
        {
            ListTag list = new ListTag(Data.NBTTagType.BYTE);

            list.Name = "listTag";
            list.Add(new ByteTag(0xff));
            list.Add(new ByteTag(0x00));
            list.Add(new ByteTag(0xff));

            CompoundTag tag = new CompoundTag();

            tag.PutBool("bool", true);
            tag.PutByte("byte", 0xff);
            tag.PutShort("short", 0x7fff);
            tag.PutInt("int", 0x7fffffff);
            tag.PutLong("long", 0x7fffffffffffffff);
            tag.PutFloat("float", 0.0001f);
            tag.PutDouble("double", 0.00000001d);
            tag.PutString("string", "Hello NBT");
            tag.PutByteArray("byte[]", ArrayUtils.CreateArray <byte>(100, 0xff));
            tag.PutIntArray("int[]", ArrayUtils.CreateArray <int>(100, 0x7fffffff));
            tag.PutLongArray("long[]", ArrayUtils.CreateArray <long>(100, 0x7fffffffffffffff));
            tag.PutList(list);

            NBTIO.WriteRawFile(Path + "\\" + "raw.nbt", tag);
        }
        public void NBTJsonSerializerTests_DeserializeTest()
        {
            ListTag list = new ListTag("list", NBTTagType.INT);

            list.Add(new IntTag(12345));
            list.Add(new IntTag(67890));
            CompoundTag subTag = new CompoundTag();

            subTag.PutBool("bool", true);
            subTag.PutByte("byte", 123);
            CompoundTag tag = new CompoundTag();

            tag.PutBool("bool", true);
            tag.PutByte("byte", 123);
            tag.PutByteArray("byteArray", ArrayUtils.CreateArray <byte>(200));
            tag.PutShort("short", 12345);
            tag.PutInt("int", 12345678);
            tag.PutIntArray("intArray", ArrayUtils.CreateArray <int>(200));
            tag.PutLong("long", 123456789123456);
            tag.PutLongArray("longArray", ArrayUtils.CreateArray <long>(200));
            tag.PutFloat("float", 12.3456f);
            tag.PutDouble("double", 12.3456789);
            tag.PutList(list);
            tag.PutCompound("com", subTag);

            JObject json = NBTJsonSerializer.Serialize(tag);

            Console.WriteLine(NBTJsonSerializer.Serialize(NBTJsonSerializer.Deserialize(json)).ToString());
        }
Exemplo n.º 3
0
        public void NBTIOTests_WriteGZFileTest()
        {
            ListTag list = new ListTag("list", NBTTagType.COMPOUND);

            list.Add(new CompoundTag().PutInt("c1", 123));
            list.Add(new CompoundTag().PutLong("c2", 123456));
            CompoundTag subTag = new CompoundTag();

            subTag.PutBool("bool", true);
            subTag.PutByte("byte", 123);
            CompoundTag tag = new CompoundTag();

            tag.PutBool("bool", true);
            tag.PutByte("byte", 123);
            tag.PutByteArray("byteArray", ArrayUtils.CreateArray <byte>(200));
            tag.PutShort("short", 12345);
            tag.PutInt("int", 12345678);
            tag.PutIntArray("intArray", ArrayUtils.CreateArray <int>(200));
            tag.PutLong("long", 123456789123456);
            tag.PutLongArray("longArray", ArrayUtils.CreateArray <long>(200));
            tag.PutFloat("float", 12.3456f);
            tag.PutDouble("double", 12.3456789);
            tag.PutList(list);
            tag.PutCompound("com", subTag);
            NBTIO.WriteGZIPFile(Environment.CurrentDirectory + "\\test2.nbt", tag);
        }
        internal static CompoundTag CompoundTagDeserialize(JObject json)
        {
            CompoundTag tag = new CompoundTag();

            foreach (KeyValuePair <string, JToken> kv in json)
            {
                JToken token = kv.Value;
                if (token is JValue)
                {
                    JValue value = (JValue)token;
                    object t     = value.Value;
                    if (t is byte)
                    {
                        tag.PutByte(kv.Key, (byte)t);
                    }
                    else if (t is double)
                    {
                        tag.PutDouble(kv.Key, (double)t);
                    }
                    else if (t is float)
                    {
                        tag.PutFloat(kv.Key, (float)t);
                    }
                    else if (t is int)
                    {
                        tag.PutInt(kv.Key, (int)t);
                    }
                    else if (t is long)
                    {
                        tag.PutLong(kv.Key, (long)t);
                    }
                    else if (t is short)
                    {
                        tag.PutShort(kv.Key, (short)t);
                    }
                    else if (t is string)
                    {
                        tag.PutString(kv.Key, (string)t);
                    }
                }
                else if (token is JObject)
                {
                    tag.PutCompound(kv.Key, NBTJsonSerializer.CompoundTagDeserialize((JObject)token));
                }
                else
                {
                    tag.PutList(NBTJsonSerializer.ListTagDeserialize((JArray)token, kv.Key));
                }
            }

            return(tag);
        }
Exemplo n.º 5
0
        public CompoundTag CreateData(World world)
        {
            CompoundTag customBossEvents = new CompoundTag("CustomBossEvents");
            CompoundTag dimensionData    = new CompoundTag("DimensionData");
            CompoundTag gameRules        = new CompoundTag("GameRules");
            CompoundTag version          = new CompoundTag("Version");

            version.PutInt("Id", -1);
            version.PutString("Name", ProtocolInfo.CLIENT_VERSION);
            version.PutByte("Snapshot", 0);

            CompoundTag data = new CompoundTag("Data");

            data.PutCompound("CustomBossEvents", customBossEvents);
            data.PutCompound("DimensionData", dimensionData);

            data.PutInt("version", 19133);

            data.PutByte("initialized", 0);

            data.PutString("LevelName", world.Name);
            data.PutString("generatorName", world.GeneratorName);
            data.PutInt("generatorVersion", 0);
            data.PutString("generatorOptions", "{}");

            data.PutLong("RandomSeed", world.Seed);

            data.PutByte("MapFeatures", 0);

            data.PutLong("LastPlayed", world.LastPlayed);
            data.PutLong("SizeOnDisk", 0);

            data.PutByte("allowCommands", 1);

            data.PutByte("hardcore", 0);

            data.PutInt("GameType", world.DefaultGameMode.GameModeToInt());

            data.PutByte("Difficulty", (byte)world.Difficulty);
            data.PutByte("DifficultyLocked", 0);

            data.PutLong("Time", 0);
            data.PutLong("DayTime", 0);

            data.PutInt("SpawnX", (int)world.SpawnPoint.X);
            data.PutInt("SpawnY", (int)world.SpawnPoint.Y);
            data.PutInt("SpawnZ", (int)world.SpawnPoint.Z);

            data.PutDouble("BorderCenterX", 0d);
            data.PutDouble("BorderCenterZ", 0d);

            data.PutDouble("BorderSize", 60000000);

            data.PutDouble("BorderSafeZone", 5);
            data.PutDouble("BorderWarningBlocks", 5);
            data.PutDouble("BorderWarningTime", 15);
            data.PutDouble("BorderSizeLerpTarget", 60000000);
            data.PutDouble("BorderSizeLerpTime", 0);
            data.PutDouble("BorderDamagePerBlock", 0.2d);

            data.PutByte("raining", 0);
            data.PutInt("rainTime", 0);
            data.PutByte("thundering", 0);
            data.PutInt("thunderTime", 0);
            data.PutInt("clearWeatherTime", 0);

            data.PutCompound("GameRules", gameRules);

            data.PutCompound("Version", version);

            return(data);
        }