Пример #1
0
        public BlockChange(Wrapped.Wrapped socket, Form1 Mainform)
        {
            int chunkX, chunkZ;

            int   x       = socket.readInt();
            byte  y       = socket.readByte();
            int   z       = socket.readInt();
            short blockID = socket.readShort();

            socket.readByte();

            chunkX = (int)Math.Floor(decimal.Divide(x, 16));
            chunkZ = (int)Math.Floor(decimal.Divide(z, 16));

            Classes.Chunk thisChunk = null;

            foreach (Classes.Chunk b in Mainform.Chunks)
            {
                if (b.x == chunkX & b.z == chunkZ)
                {
                    thisChunk = b;
                    break;
                }
            }

            thisChunk.updateBlock(x, y, z, blockID);
        }
Пример #2
0
        public ChunkData(Wrapped.Wrapped socket, Form1 Mainform)
        {
            // Parse or unload a single chunk

            int   x        = socket.readInt();
            int   z        = socket.readInt();
            bool  groundup = socket.readBool();
            short pbitmap  = socket.readShort();
            short abitmap  = socket.readShort();
            int   size     = socket.readInt();

            byte[] data = socket.readByteArray(size);
            byte[] trim = new byte[size - 2];
            byte[] decompressed;


            // Remove first two bytes to array
            Array.Copy(data, 2, trim, 0, size - 2);

            // Decompress the data

            Classes.Decompressor DC = new Decompressor(trim);
            decompressed = DC.decompress();


            if (pbitmap == 0)
            {
                // Unload chunk, save ALL the ram!
                Classes.Chunk thischunk = null;

                foreach (Chunk f in Mainform.Chunks)
                {
                    if (f.x == x && f.z == z)
                    {
                        thischunk = f;
                        break;
                    }
                }

                if (thischunk != null)
                {
                    Mainform.Chunks.Remove(thischunk);
                    return;
                }
            }

            Chunk myChunk = new Chunk(x, z, pbitmap, abitmap, true, groundup); // Skylight assumed true..

            Mainform.puts("DC: " + decompressed.Length + " num: " + myChunk.numBlocks + " pbit: " + pbitmap);
            decompressed = myChunk.getData(decompressed);

            Mainform.Chunks.Add(myChunk); // Add to main form for use later.
        }
Пример #3
0
        public BlockChange(Wrapped.Wrapped socket, Form1 Mainform)
        {
            int chunkX, chunkZ;

            int   x       = socket.readInt();
            byte  y       = socket.readByte();
            int   z       = socket.readInt();
            short blockID = socket.readShort();

            socket.readByte();

            chunkX = (int)Math.Floor(decimal.Divide(x, 16));
            chunkZ = (int)Math.Floor(decimal.Divide(z, 16));

            Classes.Chunk thisChunk = null;

            foreach (Classes.Chunk b in Mainform.Chunks)
            {
                if (b.x == chunkX & b.z == chunkZ)
                {
                    thisChunk = b;
                    break;
                }
            }

            if (blockID == 15 && Mainform.importing == true)
            {
                Mainform.importing = false;
                Classes.Importer Importer = new Classes.Importer(Mainform, Mainform.importName, x, (int)y, z);
                //  Thread importThread = new Thread(Importer.import);
                // importThread.Start();
                Importer.import();
            }
            if (thisChunk != null)
            {
                thisChunk.updateBlock(x, y, z, blockID);
            }
        }