GETSAMPLE_OBJ_INTERFACE.cs 12.3 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;
using FLY.Thick.Base.Common;

namespace FLY.Thick.Base.OBJ_INTERFACE
{
    public class GETSAMPLE_OBJ_INTERFACE
    {
        #region Pack
        public class Pack_Params_SampleCell
        {
            public bool enable;
            public bool justForCheck;
            public int orgad;
            public int position;

            #region IPack 成员


            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();
                
                buf.AddRange(BitConverter.GetBytes(enable));
                buf.AddRange(BitConverter.GetBytes(justForCheck));
                buf.AddRange(BitConverter.GetBytes(orgad));
                buf.AddRange(BitConverter.GetBytes(position));
                return buf.ToArray();
            }
            /// <summary>
            /// 返回由字节数组中指定位置的10个字节转换来的数据。
            /// </summary>
            /// <param name="value"></param>
            /// <returns></returns>
            public bool TryParse(byte[] value, int startIndex) 
            {
                if ((value.Length-startIndex) < (1*2+4*2))
                    return false;
                int idx = startIndex;
                enable = BitConverter.ToBoolean(value, idx);
                idx += 1;
                justForCheck = BitConverter.ToBoolean(value, idx);
                idx += 1;

                orgad = BitConverter.ToInt32(value, idx);
                idx += 4;
                position = BitConverter.ToInt32(value, idx);
                idx += 4;
                return true;
            }

            #endregion
        }
        public class Pack_Params_SampleFeature
        {
            public bool enable;
            public int startpos;
            public int endpos;

            #region IPack 成员

            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();

                buf.AddRange(BitConverter.GetBytes(enable));
                buf.AddRange(BitConverter.GetBytes(startpos));
                buf.AddRange(BitConverter.GetBytes(endpos));

                return buf.ToArray();
            }

            /// <summary>
            /// 返回由字节数组中指定位置的9个字节转换来的数据。
            /// </summary>
            /// <param name="value"></param>
            /// <returns></returns>
            public bool TryParse(byte[] value, int startIndex)
            {
                if ((value.Length - startIndex) < 9)
                    return false;
                int idx = startIndex;
                enable = BitConverter.ToBoolean(value, idx);
                idx += 1;
                startpos = BitConverter.ToInt32(value, idx);
                idx += 4;
                endpos = BitConverter.ToInt32(value, idx);
                idx += 4;

                return true;
            }
            #endregion
        }
        public class Pack_Params : IPack
        {
            public bool enable;
            public int interval;
            public UInt32 velocity;
            public int range;
            public int window;
            public Pack_Params_SampleCell[] samples;
            public int search;
            public Pack_Params_SampleFeature[] features;

            #region IPack 成员

            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();
                buf.AddRange(BitConverter.GetBytes(enable));
                buf.AddRange(BitConverter.GetBytes(interval));
                buf.AddRange(BitConverter.GetBytes(velocity));
                buf.AddRange(BitConverter.GetBytes(range));
                buf.AddRange(BitConverter.GetBytes(window));
                buf.AddRange(BitConverter.GetBytes(search));

                buf.AddRange(BitConverter.GetBytes(samples.Length));

                foreach (Pack_Params_SampleCell p in samples)
                {
                    buf.AddRange(p.ToBytes());
                }

                buf.AddRange(BitConverter.GetBytes(features.Length));

                foreach (Pack_Params_SampleFeature p in features)
                {
                    buf.AddRange(p.ToBytes());
                }
                return buf.ToArray();
            }

            public bool TryParse(byte[] value)
            {
                int cnt = 1 + 4 * 4 +4 + 4 + 4;
                if (value.Length < cnt)
                    return false;
                int idx = 0;
                enable = BitConverter.ToBoolean(value, idx);
                idx++;
                interval = BitConverter.ToInt32(value, idx);
                idx += 4;
                velocity = BitConverter.ToUInt32(value, idx);
                idx += 4;
                range = BitConverter.ToInt32(value, idx);
                idx += 4;
                window = BitConverter.ToInt32(value, idx);
                idx += 4;


                search = BitConverter.ToInt32(value, idx);
                idx += 4;

                int len = BitConverter.ToInt32(value, idx);
                idx += 4;
                cnt += len * 10;
                if (value.Length < cnt)
                    return false;

                samples = new Pack_Params_SampleCell[len];

                for (int i = 0; i < len; i++)
                {
                    samples[i] = new Pack_Params_SampleCell();
                    samples[i].TryParse(value, idx);
                    idx += 10;
                }

                len = BitConverter.ToInt32(value, idx);
                idx += 4;
                cnt += len * 9;
                if (value.Length < cnt)
                    return false;

                features = new Pack_Params_SampleFeature[len];
                for (int i = 0; i < len; i++)
                {
                    features[i] = new Pack_Params_SampleFeature();
                    features[i].TryParse(value, idx);
                    idx += 9;
                }

                return true;
            }

            #endregion
        }
        public class Pack_State_SampleCell
        {
            public int ad;
            public int value;

            #region IPack 成员


            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();

                buf.AddRange(BitConverter.GetBytes(ad));
                buf.AddRange(BitConverter.GetBytes(value));
                return buf.ToArray();
            }
            /// <summary>
            /// 返回由字节数组中指定位置的8个字节转换来的数据。
            /// </summary>
            /// <param name="value"></param>
            /// <returns></returns>
            public bool TryParse(byte[] value, int startIndex, out int cnt)
            {
                cnt = 8;
                if ((value.Length - startIndex) < cnt)
                    return false;
                int idx = startIndex;
                ad = BitConverter.ToInt32(value, idx);
                idx += 4;
                this.value = BitConverter.ToInt32(value, idx);
                idx += 4;
                return true;
            }
            #endregion
        }
        public class Pack_State_SampleFeature
        {
            public double maxRelevancy;
            public int maxOffset;
            public int[] scanData;

            #region IPack 成员

            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();

                buf.AddRange(BitConverter.GetBytes(maxRelevancy));
                buf.AddRange(BitConverter.GetBytes(maxOffset));
                if (scanData == null)
                {
                    buf.AddRange(BitConverter.GetBytes(0));
                }
                else
                {
                    buf.AddRange(BitConverter.GetBytes(scanData.Length));
                    for (int i = 0; i < scanData.Length; i++)
                    {
                        buf.AddRange(BitConverter.GetBytes(scanData[i]));
                    }
                }
                return buf.ToArray();
            }


            /// <summary>
            /// 返回由字节数组中指定位置的16个字节以上转换来的数据。
            /// </summary>
            /// <param name="value"></param>
            /// <returns></returns>
            public bool TryParse(byte[] value, int startIndex, out int cnt)
            {
                cnt = 8 + 4 + 4;
                if ((value.Length-startIndex) < cnt)
                    return false;
                int idx = startIndex;
                maxRelevancy = BitConverter.ToDouble(value, idx);
                idx += 8;
                maxOffset = BitConverter.ToInt32(value, idx);
                idx += 4;
                int len = BitConverter.ToInt32(value, idx);
                idx += 4;
                cnt += len * 4;
                if ((value.Length - startIndex) < cnt)
                    return false;
                if (len > 0)
                {
                    scanData = new int[len];
                    for (int i = 0; i < len; i++)
                    {
                        scanData[i] = BitConverter.ToInt32(value, idx);
                        idx += 4;
                    }
                }
                else 
                {
                    scanData = null;
                }
                return true;
            }
            #endregion
        }
        public class Pack_State 
        {
            public int posOfGrid;
            public Pack_State_SampleCell[] samples;
            public Pack_State_SampleFeature[] features;


            #region IPack 成员

            public byte[] ToBytes()
            {
                List<byte> buf = new List<byte>();

                buf.AddRange(BitConverter.GetBytes(posOfGrid));
                buf.AddRange(BitConverter.GetBytes(samples.Length));
                for (int i = 0; i < samples.Length; i++)
                {
                    buf.AddRange(samples[i].ToBytes());
                }
                buf.AddRange(BitConverter.GetBytes(features.Length));
                for (int i = 0; i < features.Length; i++)
                {
                    buf.AddRange(features[i].ToBytes());
                }

                return buf.ToArray();
            }


            /// <summary>
            /// 返回由字节数组中指定位置转换来的数据。
            /// </summary>
            /// <param name="value"></param>
            /// <returns></returns>
            public bool TryParse(byte[] value)
            {
                int startIndex = 0;
                int cnt = 4 + 4 + 4;
                if ((value.Length - startIndex) < cnt)
                    return false;
                int idx = startIndex;
                posOfGrid = BitConverter.ToInt32(value, idx);
                idx += 4;

                int len = BitConverter.ToInt32(value, idx);
                idx += 4;

                samples = new Pack_State_SampleCell[len];
                for (int i = 0; i < len; i++)
                {
                    samples[i] = new Pack_State_SampleCell();
                    int c;
                    if (!samples[i].TryParse(value, idx, out c))
                        return false;

                    idx += c;
                    cnt += c;
                }

                len = BitConverter.ToInt32(value, idx);
                idx += 4;

                features = new Pack_State_SampleFeature[len];
                for (int i = 0; i < len; i++)
                {
                    features[i] = new Pack_State_SampleFeature();
                    int c;
                    if (!features[i].TryParse(value, idx, out c))
                        return false;

                    idx += c;
                    cnt += c;
                }
                return true;
            }
            #endregion
        }
        #endregion

        #region GetValue
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 GET_PARAMS = 0;
        public const UInt16 GET_STATE = 1;
        #endregion
        #region SetValue
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 SET_PARAMS = 0;
        #endregion
        #region PushMsg
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 PUSH_PARAMS = 0;
        public const UInt16 PUSH_STATE = 1;
        #endregion
    }
}