SCANCORR_OBJ_INTERFACE.cs 3.73 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;

namespace FLY.Thick.Base.OBJ_INTERFACE
{
    public class SCANCORR_OBJ_INTERFACE
    {
潘栩锋's avatar
潘栩锋 committed
11

潘栩锋's avatar
潘栩锋 committed
12
        #region Pack
潘栩锋's avatar
潘栩锋 committed
13
        public class Pack_GetState
潘栩锋's avatar
潘栩锋 committed
14 15 16 17
        {
            public int progress;
            public bool ing;
        }
潘栩锋's avatar
潘栩锋 committed
18
        public class Pack_ValidRange
潘栩锋's avatar
潘栩锋 committed
19 20 21 22
        {
            public int begin;
            public int end;
        }
潘栩锋's avatar
潘栩锋 committed
23
        public class Pack_StartParams
潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29
        {
            public int scantimer;
            public int smoothfactor;
            public int posofgrid;
            public int poslen;
        }
潘栩锋's avatar
潘栩锋 committed
30
        public class Pack_GroupParams
潘栩锋's avatar
潘栩锋 committed
31 32 33 34
        {
            public int avgad0;
            public int avgad1;
        }
潘栩锋's avatar
潘栩锋 committed
35
        public class Pack_CallStart
潘栩锋's avatar
潘栩锋 committed
36 37 38 39
        {
            public int scantimer;
            public int smoothfactor;
            public int groupindex;
潘栩锋's avatar
潘栩锋 committed
40
        }
潘栩锋's avatar
潘栩锋 committed
41

潘栩锋's avatar
潘栩锋 committed
42 43 44
        public class Pack_ClearRequest 
        {
            public int groupindex;
潘栩锋's avatar
潘栩锋 committed
45
        }
潘栩锋's avatar
潘栩锋 committed
46

潘栩锋's avatar
潘栩锋 committed
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
        #endregion
        #region GetValue
        /// <summary>
        /// Pack_GetState
        /// </summary>
        public const UInt16 GET_PROGRESS = 1;
        /// <summary>
        /// Pack_Enable
        /// </summary>
        public const UInt16 GET_ENABLE = 2;
        /// <summary>
        /// Pack_StartParams
        /// </summary>
        public const UInt16 GET_START_PARAMS = 3;
        /// <summary>
        /// Pack_GroupParams
        /// </summary>
        public const UInt16 GET_GROUP_PARAMS = 4;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 GET_GROUP0_FORW = 5;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 GET_GROUP0_BACKW = 6;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 GET_GROUP1_FORW = 7;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 GET_GROUP1_BACKW = 8;

        /// <summary>
        /// Pack_ValidRange
        /// </summary>
        public const UInt16 GET_VALIDRANGE = 9;
        #endregion

        #region SetValue
        /// <summary>
        /// Pack_Enable
        /// </summary>
        public const UInt16 SET_ENABLE = 2;

        /// <summary>
        /// Pack_ValidRange
        /// </summary>
        public const UInt16 SET_VALIDRANGE = 9;
        #endregion
        
        #region CallFunction
        /// <summary>
        /// Pack_CallStart
        /// </summary>
        public const UInt16 CALL_START = 1;

        /// <summary>
        /// Pack_int
        /// </summary>
        public const UInt16 CALL_CLEAR = 2;

        /// <summary>
        /// Pack_CallStart
        /// </summary>
        public const UInt16 CALL_SMOOTH = 3;
        #endregion
        #region PushInfo
        /// <summary>
        /// Pack_GetState
        /// </summary>
        public const UInt16 PUSH_PROGRESS = 1;
        public const UInt16 PUSH_ENABLE = 2;
        public const UInt16 PUSH_START_PARAMS = 3;
        /// <summary>
        /// Pack_GroupParams
        /// </summary>
        public const UInt16 PUSH_GROUP_PARAMS = 4;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 PUSH_GROUP0_FORW = 5;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 PUSH_GROUP0_BACKW = 6;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 PUSH_GROUP1_FORW = 7;
        /// <summary>
        /// Pack_Data
        /// </summary>
        public const UInt16 PUSH_GROUP1_BACKW = 8;

        /// <summary>
        /// Pack_ValidRange
        /// </summary>
        public const UInt16 PUSH_VALIDRANGE = 9;
        #endregion

    }
}