コード例 #1
0
        public Grib1WaveSpectra2DDirFreq(System.IO.Stream raf)
        {
            SupportClass.Skip(raf, 4);

            byte[] ver = GribNumbers.ReadBytes(raf, 4);
            System.Text.Encoding enc = System.Text.Encoding.ASCII;
            version = enc.GetString(ver);

            SupportClass.Skip(raf, 2);

            directionNumber = raf.ReadByte();
            frequencyNumber = raf.ReadByte();
            numberOfDirections = raf.ReadByte();
            numberOfFrequencies = raf.ReadByte();
            dirScaleFactor = GribNumbers.int4(raf);
            freqScaleFactor = GribNumbers.int4(raf);

            SupportClass.Skip(raf, 37);

            directions = new double[numberOfDirections];
            frequencies = new double[numberOfFrequencies];

            for (int i = 0; i < numberOfDirections; i++)
            {
                int val = GribNumbers.int4(raf);
                directions[i] = (double)val / (double)dirScaleFactor;
            }

            for (int i = 0; i < numberOfFrequencies; i++)
            {
                int val = GribNumbers.int4(raf);
                frequencies[i] = (double)val / (double)freqScaleFactor;
            }
        }
コード例 #2
0
ファイル: FileHeader.cs プロジェクト: khonsoe/keymagic
        public FileHeader(System.IO.BinaryReader br)
        {
            majorVersion = 0;
            minorVersion = 0;
            stringCount = 0;
            infoCount = 0;
            ruleCount = 0;
            layoutOptions = new LayoutOptions();

            byte[] magicCode = br.ReadBytes(4);
            if (magicCode[0] != 'K' && magicCode[1] != 'M' && magicCode[2] != 'K' && magicCode[3] != 'L')
            {
                throw new Exception("Invalid KeyMagic keyboard layout file.");
            }

            majorVersion = br.ReadByte();
            minorVersion = br.ReadByte();

            if (majorVersion == 1 && minorVersion > 4)
            {
                throw new Exception("Cannot load this keyboard layout file because this is newer version of keyboard layout file.");
            }

            stringCount = br.ReadInt16();
            if (majorVersion == 1 && minorVersion > 3)
            {
                infoCount = br.ReadInt16();
            }
            ruleCount = br.ReadInt16();

            layoutOptions.trackCaps = br.ReadBoolean();
            layoutOptions.autoBksp = br.ReadBoolean();
            layoutOptions.eat = br.ReadBoolean();
            layoutOptions.posBased = br.ReadBoolean();
        }
コード例 #3
0
ファイル: BERCoderUtils.cs プロジェクト: huliang/BinaryNotes
        public static DecodedObject<int> decodeLength(System.IO.Stream stream)
        {
            int result = 0;
            int bt = stream.ReadByte();
            if (bt == -1)
                throw new System.ArgumentException("Unexpected EOF when decoding!");

            int len = 1;
            if (bt < 128)
            {
                result = bt;
            }
            else
            {
                // Decode length bug fixed. Thanks to John
                for (int i = bt - 128; i > 0; i--)
                {
                    int fBt = stream.ReadByte();
                    if (fBt == -1)
                        throw new System.ArgumentException("Unexpected EOF when decoding!");

                    result = result << 8;
                    result = result | fBt;
                    len++;
                }
            }
            return new DecodedObject<int>(result, len);
        }
コード例 #4
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.entityId = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.effectId = DataInput.ReadByte();
     this.effectAmplifier = DataInput.ReadByte();
     this.duration = IPAddress.NetworkToHostOrder(DataInput.ReadInt16());
 }
コード例 #5
0
        public override ScalarValue Decode(System.IO.Stream in_Renamed)
        {
            long value_Renamed = 0;
            uint byt;
            try
            {
                byt =(uint) in_Renamed.ReadByte();

                if ((byt & 0x40) > 0)
                {
                    value_Renamed = - 1;
                }

                value_Renamed = (value_Renamed << 7) | (byt & 0x7f);

                while ((byt & STOP_BIT) == 0)
                {
                    byt = (uint)in_Renamed.ReadByte();
                    value_Renamed = (value_Renamed << 7) | (byt & 0x7f);
                }
            }
            catch (System.IO.IOException e)
            {
                throw new RuntimeException(e);
            }

            return CreateValue(value_Renamed);
        }
コード例 #6
0
 public OtherModelAddition( System.IO.Stream stream, uint refStringStart )
 {
     Str = stream.ReadAsciiNulltermFromLocationAndReset( stream.ReadUInt32().SwapEndian() + refStringStart );
     Unknown1 = (byte)stream.ReadByte();
     Unknown2 = (byte)stream.ReadByte();
     stream.DiscardBytes( 0x1A );
 }
コード例 #7
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     base.readData(DataInput);
     this.xPosition = DataInput.ReadByte();
     this.yPosition = DataInput.ReadByte();
     this.zPosition = DataInput.ReadByte();
 }
コード例 #8
0
        /// <summary>
        /// When a segment's data is compressed, it follows the following run-length algorithm:
        /// If a byte of data has a value of (int)1 thru (int) 127, then the following x bytes are uncompressed.
        /// If a byte of data has a value of (int)129 thru (int) 255, then the following byte is repeated 127 less times.
        /// </summary>
        internal override void ParseSegment(System.IO.FileStream file)
        {
            Length = file.Read4ByteInt();
            RawDataFileOffset = (int)file.Position;

            List<byte> bytes = new List<byte>();
            while (file.Position < RawDataFileOffset + Length)
            {
                byte b = (byte)file.ReadByte();

                if (b > 0 && b < 128)
                {
                    for (int i = 0; i < b; ++i)
                    {
                        bytes.Add((byte)file.ReadByte());
                    }
                }
                else if (b > 128)
                {
                    byte nextByte = (byte)file.ReadByte();
                    for (int i = 0; i < b - 127; ++i)
                    {
                        bytes.Add(nextByte);
                    }
                }
                else
                {
                    throw new Exception("Bad compressed data byte encountered at file offset " + file.Position);
                }
            }

            UncompressedLength = bytes.Count;
            Data = bytes.ToArray();
        }
コード例 #9
0
        public CharacterModelDefinition( System.IO.Stream stream, uint refStringStart )
        {
            Strings = new string[100];

            for ( uint i = 0; i < 100; ++i ) {
                Strings[i] = stream.ReadAsciiNulltermFromLocationAndReset( stream.ReadUInt32().SwapEndian() + refStringStart );
            }

            CustomIndex = stream.ReadUInt32().SwapEndian();
            CustomCount = (byte)stream.ReadByte();
            OtherCount = (byte)stream.ReadByte();
            Unknown0x20AreaCount = (byte)stream.ReadByte();
            Unknown1d = (byte)stream.ReadByte();
            OtherIndex = stream.ReadUInt32().SwapEndian();
            Unknown0x20AreaIndex = stream.ReadUInt32().SwapEndian();
            Unknown4a = (byte)stream.ReadByte();
            Unknown4b = (byte)stream.ReadByte();
            Unknown4c = (byte)stream.ReadByte();
            Unknown4d = (byte)stream.ReadByte();
            stream.DiscardBytes( 4 );
            Unknown0x80AreaIndex = stream.ReadUInt32().SwapEndian();
            Unknown0x80AreaCount = (byte)stream.ReadByte();
            Unknown7b = (byte)stream.ReadByte();
            stream.DiscardBytes( 2 );

            stream.DiscardBytes( 80 );
        }
コード例 #10
0
ファイル: Light.cs プロジェクト: angelog/Coral
        public override void Deserialize(System.IO.BinaryReader reader)
        {
            base.Deserialize(reader);

            Color = new Color(reader.ReadByte(), reader.ReadByte(), reader.ReadByte());
            Brightness = reader.ReadInt32();
        }
コード例 #11
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.xPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.yPosition = DataInput.ReadByte();
     this.zPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.type = IPAddress.NetworkToHostOrder(DataInput.ReadInt16());
     this.metadata = DataInput.ReadByte();
 }
コード例 #12
0
ファイル: Message.cs プロジェクト: angelog/Coral
        public override void Deserialize(System.IO.BinaryReader reader)
        {
            base.Deserialize(reader);

            Text = reader.ReadString();
            Color = new Color(reader.ReadByte(), reader.ReadByte(), reader.ReadByte(), reader.ReadByte());
            DisplayTime = reader.ReadInt32();
        }
コード例 #13
0
ファイル: StaticLightTemplate.cs プロジェクト: MyEyes/Igorr
 public override IGORR.Server.Logic.GameObject CreateServer(IGORR.Server.Logic.IMap map, int objectID, Microsoft.Xna.Framework.Point p, System.IO.BinaryReader bin)
 {
     string color = "" + (char)bin.ReadByte() + (char)bin.ReadByte() + (char)bin.ReadByte() + (char)bin.ReadByte();
     int radius = bin.ReadInt32();
     color += (char)(byte)(radius / 256);
     color += (char)(byte)(radius % 256);
     return new IGORR.Server.Logic.DummyObject(10003, map, new Microsoft.Xna.Framework.Rectangle(p.X, p.Y, 16, 16), objectID, color);
 }
コード例 #14
0
ファイル: EndGameAction.cs プロジェクト: hcesar/Chess
 public EndGameAction(System.IO.BinaryReader reader)
 {
     this.hasCheckmate = reader.ReadBoolean();
     if (this.hasCheckmate)
         this.looser = (PlayerColor)reader.ReadByte();
     else
         this.stalemateReason = (StalemateReason)reader.ReadByte();
 }
コード例 #15
0
ファイル: Mapper033.cs プロジェクト: Blizz9/FanCut
 public override void LoadState(System.IO.BinaryReader stream)
 {
     base.LoadState(stream);
     irq_enabled = stream.ReadBoolean();
     irq_counter = stream.ReadByte();
     old_irq_counter = stream.ReadInt32();
     irq_reload = stream.ReadByte();
     irq_clear = stream.ReadBoolean();
 }
コード例 #16
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.xLocation = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.yLocation = IPAddress.NetworkToHostOrder(DataInput.ReadInt16());
     this.zLocation = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.instrumentType = DataInput.ReadByte();
     this.pitch = DataInput.ReadByte();
     this.blockId = IPAddress.NetworkToHostOrder(DataInput.ReadInt16()) &4095;
 }
コード例 #17
0
ファイル: PacketRespawn.cs プロジェクト: ReezeBL/MinecraftEmu
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.respawnDimension = DataInput.ReadInt32();
     this.difficulty = DataInput.ReadByte();
     this.gameType = DataInput.ReadByte();
     this.worldHeight = DataInput.ReadInt16();
     String s = readString(DataInput, 16);
     this.terrainType = s;
 }
コード例 #18
0
ファイル: Prop.cs プロジェクト: angelog/Coral
        public override void Deserialize(System.IO.BinaryReader reader)
        {
            base.Deserialize(reader);

            Texture = reader.ReadString();
            Tiled = reader.ReadBoolean();

            Blending = new Color(reader.ReadByte(), reader.ReadByte(), reader.ReadByte());
        }
コード例 #19
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.entityId = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.xPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.yPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.zPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.yaw = DataInput.ReadByte();
     this.pitch = DataInput.ReadByte();
 }
コード例 #20
0
ファイル: GenericValueDeserializer.cs プロジェクト: vebin/BD2
 public override object Deserialize(System.IO.BinaryReader binaryReader)
 {
     bool hasValue = binaryReader.ReadBoolean ();
     if (!hasValue)
         return null;
     int typeID = binaryReader.ReadByte ();
     switch (typeID) {
     case 1:
         return binaryReader.ReadBoolean ();
     case 2:
         return binaryReader.ReadByte ();
     case 128:
         return binaryReader.ReadSByte ();
     case 3:
         return binaryReader.ReadInt16 ();
     case 129:
         return binaryReader.ReadUInt16 ();
     case 4:
         return binaryReader.ReadInt32 ();
     case 130:
         return binaryReader.ReadUInt32 ();
     case 5:
         return binaryReader.ReadInt64 ();
     case 131:
         return binaryReader.ReadUInt64 ();
     case 9:
         return binaryReader.ReadDouble ();
     case 16:
         return binaryReader.ReadString ();
     case 144:
         return binaryReader.ReadChar ();
     case 24:
         return new DateTime (binaryReader.ReadInt64 ());
     case 32:
         return new Guid (binaryReader.ReadBytes (16));
     case 36:
         return binaryReader.ReadBytes (binaryReader.ReadInt32 ());
     case 37:
         {
             int count = binaryReader.ReadInt32 ();
             string[] r = new string[count];
             for (int n = 0; n != count; n++)
                 r [n] = binaryReader.ReadString ();
             return r;
         }
     case 38:
         {
             int count = binaryReader.ReadInt32 ();
             long[] r = new long[count];
             for (int n = 0; n != count; n++)
                 r [n] = binaryReader.ReadInt64 ();
             return r;
         }
     default:
         throw new Exception (string.Format ("Serialization for type <{0}> is not supported", typeID));
     }
 }
コード例 #21
0
 public void Read(System.IO.BinaryReader br)
 {
     XOrigin = br.ReadUInt16();
     YOrigin = br.ReadUInt16();
     Width = br.ReadUInt16();
     Height = br.ReadUInt16();
     PixelDepth = br.ReadByte();
     Descriptor = br.ReadByte();
 }
コード例 #22
0
 /// <summary>
 /// Load state
 /// </summary>
 /// <param name="stream">The stream that should be used to read data</param>
 public void LoadState(System.IO.BinaryReader stream)
 {
     AccumRate = stream.ReadByte();
     accumClock = stream.ReadInt32();
     accumulationRegister = stream.ReadByte();
     frequency = stream.ReadInt32();
     freqTimer = stream.ReadInt32();
     cycles = stream.ReadInt32();
     enabled = stream.ReadBoolean();
 }
コード例 #23
0
ファイル: MsgClientEvent.cs プロジェクト: flitzi/acplugins
 protected internal override void Deserialize(System.IO.BinaryReader br)
 {
     Subtype = br.ReadByte();
     CarId = br.ReadByte();
     if (Subtype == (byte)ACSProtocol.MessageType.ACSP_CE_COLLISION_WITH_CAR)
         OtherCarId = br.ReadByte();
     RelativeVelocity = br.ReadSingle();
     WorldPosition = readVector3f(br);
     RelativePosition = readVector3f(br);
 }
コード例 #24
0
ファイル: TGALoader.cs プロジェクト: RavenB/gridsearch
 public void Read(System.IO.BinaryReader br)
 {
     this.IdLength = br.ReadByte();
     this.ColorMapType = br.ReadByte();
     this.ImageType = br.ReadByte();
     this.ColorMap = new tgaColorMap();
     this.ImageSpec = new tgaImageSpec();
     this.ColorMap.Read(br);
     this.ImageSpec.Read(br);
 }
コード例 #25
0
        protected override int ProcessIncoming(NetContext context, Connection connection, System.IO.Stream incoming)
        {
            if (incoming.Length < 2) return 0; // can't read that; start/end markers take at least 2 bytes

            switch(incoming.ReadByte())
            {
                case 0x00:
                    var ws = (WebSocketConnection) connection;
                    if(!ws.AllowIncomingDataFrames) throw new InvalidOperationException("Data frames disabled");
                    // data frame is 0x00 [data] 0xFF
                    int len = 0, cur;
                    while((cur = incoming.ReadByte()) != 0xFF && cur >= 0)
                    {
                        len++;
                    }
                    if(cur < 0) throw new EndOfStreamException();

                    incoming.Position = 1;
                    string value;
                    if (len == 0) value = "";
                    else if (len <= NetContext.BufferSize)
                    {
                        byte[] buffer = null;
                        try
                        {
                            buffer = context.GetBuffer();
                            NetContext.Fill(incoming, buffer, len);
                            value = Encoding.UTF8.GetString(buffer, 0, len);
                        } finally
                        {
                            context.Recycle(buffer);
                        }
                    } else
                    {
                        var buffer = new byte[len];
                        NetContext.Fill(incoming, buffer, len);
                        value = Encoding.UTF8.GetString(buffer, 0, len);
                    }
                    context.Handler.OnReceived(connection, value);
                    return len + 2;
                case 0xFF:
                    // shutdown is 0xFF 0x00
                    if(incoming.ReadByte() == 0x00)
                    {
                        GracefulShutdown(context, connection);
                        return 2;
                    } else
                    {
                        throw new InvalidOperationException("protocol fail");
                    }
                default:
                    throw new InvalidOperationException("protocol fail");
            }
        }
コード例 #26
0
ファイル: dleaf_t.cs プロジェクト: marmalade/bsp4Airplay
        public int vislist; // Beginning of visibility lists

        #endregion Fields

        #region Methods

        public void Read(System.IO.BinaryReader source)
        {
            type = source.ReadInt32();
            vislist = source.ReadInt32();
            box.Read(source);
            lface_id = source.ReadUInt16();
            lface_num = source.ReadUInt16();
            sndwater = source.ReadByte();
            sndsky = source.ReadByte();
            sndslime = source.ReadByte();
            sndlava = source.ReadByte();
        }
コード例 #27
0
        public Unknown0x80byteArea( System.IO.Stream stream, uint refStringStart )
        {
            UnknownUInt = stream.ReadUInt32().SwapEndian();
            stream.DiscardBytes( 4 );
            UnknownByte1 = (byte)stream.ReadByte();
            UnknownByte2 = (byte)stream.ReadByte();
            stream.DiscardBytes( 2 );
            UnknownFloat1 = stream.ReadUInt32().SwapEndian().UIntToFloat();
            UnknownFloat2 = stream.ReadUInt32().SwapEndian().UIntToFloat();

            stream.DiscardBytes( 0x6C );
        }
コード例 #28
0
 protected override void readData(System.IO.BinaryReader DataInput)
 {
     this.entityId = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.name = readString(DataInput, 16);
     this.xPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.yPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.zPosition = IPAddress.NetworkToHostOrder(DataInput.ReadInt32());
     this.rotation = DataInput.ReadByte();
     this.pitch = DataInput.ReadByte();
     this.currentItem = IPAddress.NetworkToHostOrder(DataInput.ReadInt16());
     readWatchableObjects(DataInput);
 }
コード例 #29
0
ファイル: Palette.cs プロジェクト: greenboxal/roformats
        public void Read(System.IO.BinaryReader br)
        {
            for (int i = 0; i < 256; i++)
            {
                byte r = br.ReadByte();
                byte g = br.ReadByte();
                byte b = br.ReadByte();

                br.ReadByte();

                m_colors[i] = new Color(r, g, b, 0);
            }
        }
コード例 #30
0
ファイル: ReaderBase.cs プロジェクト: RaptorFactor/devmaximus
        private int ReadLength(System.IO.BinaryReader reader)
        {
            int len = reader.ReadByte();

            if ((len & 0x80) != 0x00)
            {
                len &= 0x7f;
                len = (len << 0x08) | reader.ReadByte();
            }

            len = (len << 0x08) | reader.ReadByte();
            return len;
        }