Advertisement
zumza123

[EE] Getting Room's Blocks

Feb 8th, 2015
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.35 KB | None | 0 0
  1. //Extracted from BlackSea API by Zumza123 aka The Doctor
  2.  
  3.  
  4.  public Map(BlackSea.Messages.EEMessage m, int Width=0, int Height=0)
  5.         {
  6.             Block.BlockType type;
  7.             uint loc;
  8.             if (m.Type == "init")
  9.             {
  10.                 _Width = m.GetInt(12);
  11.                 _Height = m.GetInt(13);
  12.                 loc = 20;
  13.             }
  14.             else
  15.             {
  16.                 _Width = Width;
  17.                 _Height = Height;
  18.                 loc = 1;
  19.             }
  20.         WorldBlock = new Block[2, this._Width, this._Height];
  21.             Clear(9);
  22.             int args = m.GetByteArray(loc + 2).Length;
  23.             int x = 0, y = 0;
  24.             int i;
  25.  
  26.             while (m[loc].ToString() != "we")
  27.             {
  28.                 type = Block.GetBlockType(m.GetInt(loc));
  29.                 try
  30.                 {
  31.                     byte[] xpos = m.GetByteArray(loc + 2);
  32.                     byte[] ypos = m.GetByteArray(loc + 3);
  33.  
  34.                     for (i = 0; i < xpos.Length; i += 2)
  35.                     {
  36.                         x = xpos[i] * 256 + xpos[i + 1];
  37.                         y = ypos[i] * 256 + ypos[i + 1];
  38.                         if (m.GetInt(loc + 1) == 1)// Background
  39.                             WorldBlock[1, x, y] = new Block(1, new Positioning.Position(x, y), m.GetInt(loc));
  40.                         else
  41.                             if (type == Block.BlockType.Portal) // Portal (0 down, 1 left, 2 up, 3 right)
  42.                                 WorldBlock[0, x, y] = new Block(0, new Positioning.Position(x, y), m.GetInt(loc), m.GetInt(loc + 4), m.GetInt(loc + 5), m.GetInt(loc + 6));
  43.                             else if (type == Block.BlockType.Valued) //Valued Blocks eg. coinblocks, signs, spikes etc.
  44.                                 WorldBlock[0, x, y] = new Block(0, new Positioning.Position(x, y), m.GetInt(loc), m[loc + 4]);
  45.                             else
  46.                                 WorldBlock[0, x, y] = new Block(0, new Positioning.Position(x, y), m.GetInt(loc));
  47.                     }
  48.                 }
  49.                 catch (Exception) { }
  50.                 if (type == Block.BlockType.Valued)
  51.                     loc += 5;
  52.                 else if (type == Block.BlockType.Portal)
  53.                     loc += 7;
  54.                 else
  55.                     loc += 4;
  56.             }
  57.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement