GAGEINFO_OBJ_INTERFACE.cs 4.46 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;

namespace FLY.Thick.Base.OBJ_INTERFACE
{
    public class GAGEINFO_OBJ_INTERFACE
    {
        #region Pack
        public class Pack_State : IPack
        {
            public int progress;
            public bool ing;
            public bool dataOk;
            #region IPack 成员

            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();
                buf.AddRange(BitConverter.GetBytes(progress));
                buf.AddRange(BitConverter.GetBytes(ing));
                buf.AddRange(BitConverter.GetBytes(dataOk));
                return buf.ToArray();
            }

            public bool TryParse(byte[] value)
            {
                if (value.Length < 6)
                    return false;
                int idx = 0;
                progress = BitConverter.ToInt32(value, idx);
                idx += 4;
                ing = BitConverter.ToBoolean(value, idx);
                idx++;
                dataOk = BitConverter.ToBoolean(value, idx);
                idx++;
                return true;
            }

            #endregion
        }
        public class Pack_Data : IPack
        {
            public int posLen;
            public int posOfGrid;
            public int[] forwData;
            public int[] backwData;


            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();
                buf.AddRange(BitConverter.GetBytes(posLen));
                buf.AddRange(BitConverter.GetBytes(posOfGrid));
                
                buf.AddRange(BitConverter.GetBytes(forwData.Length));
                for (int i = 0; i < forwData.Length; i++)
                {
                    buf.AddRange(BitConverter.GetBytes(forwData[i]));
                }
                buf.AddRange(BitConverter.GetBytes(backwData.Length));
                for (int i = 0; i < backwData.Length; i++)
                {
                    buf.AddRange(BitConverter.GetBytes(backwData[i]));
                }
                return buf.ToArray();
            }

            public bool TryParse(byte[] value)
            {
                int cnt = 4 + 4 + 4 + 4;
                if (value.Length < cnt)
                    return false;
                int idx = 0;
                posLen = BitConverter.ToInt32(value, idx);
                idx += 4;
                posOfGrid = BitConverter.ToInt32(value, idx);
                idx += 4;
                
                int len = BitConverter.ToInt32(value, idx);
                idx += 4;
                cnt += len * 4;
                if (value.Length < cnt)
                    return false;
                forwData = null;
                if (len > 0)
                {
                    forwData = new int[len];
                    for (int i = 0; i < len; i++)
                    {
                        forwData[i] = BitConverter.ToInt32(value, idx);
                        idx += 4;
                    }
                }

                len = BitConverter.ToInt32(value, idx);
                idx += 4;
                cnt += len * 4;
                if (value.Length < cnt)
                    return false;
                backwData = null;
                if (len > 0)
                {
                    backwData = new int[len];
                    for (int i = 0; i < len; i++)
                    {
                        backwData[i] = BitConverter.ToInt32(value, idx);
                        idx += 4;
                    }
                }

                return true;
            }
        }
        #endregion
        #region GetValue
        /// <summary>
        /// Pack_State
        /// </summary>
        public const UInt16 GET_STATE = 1;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 GET_DATA = 2;

        #endregion

        #region SetValue

        #endregion

        #region CallFunction
        /// <summary>
        /// NULL
        /// </summary>
        public const UInt16 CALL_START = 1;

        /// <summary>
        /// NULL
        /// </summary>
        public const UInt16 CALL_STOP = 2;

        #endregion
        #region PushInfo

        /// <summary>
        /// Pack_State
        /// </summary>
        public const UInt16 PUSH_STATE = 1;

        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 PUSH_DATA = 2;

        #endregion

    }
}