当前位置: 首页>>代码示例>>C#>>正文


C# ByteBuffer.removeUshort方法代码示例

本文整理汇总了C#中System.ByteBuffer.removeUshort方法的典型用法代码示例。如果您正苦于以下问题:C# ByteBuffer.removeUshort方法的具体用法?C# ByteBuffer.removeUshort怎么用?C# ByteBuffer.removeUshort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.ByteBuffer的用法示例。


在下文中一共展示了ByteBuffer.removeUshort方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: getArray

        private static object getArray(ref ByteBuffer buff, string itemTypeName)
        {
            //数组长度
            int len = buff.removeUshort();

            //C#类型
            Type itemType = Type.GetType(itemTypeName, false);
            if (itemType != null)
            {
                object[] array = new object[len];
                for (int i = 0; i < len; i++)
                {
                    array[i] = getValue(ref buff, itemType);
                }
                return array;
            }

            //L#类型
            ICLRType clrType = CLRSharpManager.instance.getCLRType(itemTypeName);
            if (clrType != null)
            {
                object[] array = new object[len];
                for (int i = 0; i < len; i++)
                {
                    array[i] = byteBufferToClrObject(ref buff, clrType);
                }
                return array;
            }

            throw new Exception("协议包含不可解析类型:" + itemTypeName + "[]");
        }
开发者ID:xqy,项目名称:game,代码行数:31,代码来源:PackageUtil.cs

示例2: getValue

 private static object getValue(ref ByteBuffer buff, Type type)
 {
     switch (type.FullName)
     {
         case "System.Int16":
             return buff.removeShort();
         case "System.Int32":
             return buff.removeInt();
         case "System.Int64":
             return buff.removeLong();
         case "System.UInt16":
             return buff.removeUshort();
         case "System.UInt32":
             return buff.removeUint();
         //case "System.UInt64":
         //    return buff.removeUlong();
         case "System.Byte":
             return buff.removeByte();
         case "System.Boolean":
             return buff.removeBool();
         case "System.Single":
             return buff.removeFloat();
         case "System.Double":
             return buff.removeDouble();
         case "System.String":
             return buff.removeString();
         default:
             throw new Exception("协议包含不可解析类型:" + type.FullName);
     }
 }
开发者ID:xqy,项目名称:game,代码行数:30,代码来源:PackageUtil.cs

示例3: unpack

        /// <summary>
        /// 拆包,时间戳 + 协议号 + 内容长度 + 内容
        /// </summary>
        /// <param name="buff"></param>
        /// <returns></returns>
        private Package unpack(ByteBuffer buff)
        {
            Package package = new Package();
            package.timeStamp = buff.removeInt();
            package.protocol = buff.removeInt();
            package.len = buff.removeUshort();

            if (buff.length < package.len)
            {
                throw new Exception("协议" + package.protocol +
                    "包体字节长度不对,应是" + package.len + ",但当前是" + buff.length);
            }

            if (listenDic.ContainsKey(package.protocol))
            {
                package.data = PackageUtil.byteBufferToClrObject(ref buff, listenDic[package.protocol].clrType);
                Debug.Log("[接收] " + package.toString());
            }
            else
            {
                Debug.Log("[接收,未处理] " + package.toString());
            }
            return package;
        }
开发者ID:xqy,项目名称:game,代码行数:29,代码来源:SocketManager.cs


注:本文中的System.ByteBuffer.removeUshort方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。