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


C# VRage.getLongList方法代码示例

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


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

示例1: ObservingEntity

        // Byte Deserialization
        public ObservingEntity(VRage.ByteStream stream)
            : base(stream)
        {
            List<long> entitiesViewing = stream.getLongList();
            foreach (long id in entitiesViewing) {
                EntitiesViewing.Add(id, null);
            }

            LastObservingTime = stream.getDateTime();
            LastObservingPosition = stream.getVector3D();
            //Log.Trace("Deserialized LastObservingTime of " + LastObservingTime, "stream ctr");
            //Log.Trace("Deserialized LastObservingPosition of " + LastObservingPosition, "stream ctr");
            //Log.Trace("Deserialized ViewDistance of " + ViewDistance, "stream ctr");
        }
开发者ID:zrisher,项目名称:GardenPerformance,代码行数:15,代码来源:ObservingEntity.cs

示例2: RevealedEntity

        // Byte Deserialization
        public RevealedEntity(VRage.ByteStream stream)
            : base(stream)
        {
            // Nearly everything is available from the ingame Entity
            IsObserved = stream.getBoolean();
            IsRevealBlocked = stream.getBoolean();
            List<long> entitiesViewedByList = stream.getLongList();
            foreach (long id in entitiesViewedByList) {
                EntitiesViewedBy.Add(id, null);
            }
            RevealedAt = stream.getDateTime();

            MovedSinceIsInAsteroidCheck = true;
            Log.ClassName = "GP.Concealment.World.Entities.RevealedEntity";
            Log.Trace("Finished RevealedEntity deserialize constructor", "ctr");
        }
开发者ID:zrisher,项目名称:GardenPerformance,代码行数:17,代码来源:RevealedEntity.cs

示例3: RemoveFromByteStream

 public void RemoveFromByteStream(VRage.ByteStream stream)
 {
     base.RemoveFromByteStream(stream);
     SpawnOwners = stream.getLongList();
     DisplayName = stream.getString();
     BigOwners = stream.getLongList();
 }
开发者ID:HaoTNN,项目名称:GardenPerformance,代码行数:7,代码来源:ConcealableGrid.cs

示例4: deserialize

 public virtual void deserialize(VRage.ByteStream stream)
 {
     MsgType = (TYPE)stream.getUShort();
     DestType = (DEST_TYPE)stream.getUShort();
     Destination = stream.getLongList();
 }
开发者ID:MrZSFG,项目名称:GardenConquest,代码行数:6,代码来源:BaseResponse.cs

示例5: ConcealedGrid

 // Byte Deserialization
 public ConcealedGrid(VRage.ByteStream stream)
     : base(stream)
 {
     SpawnOwners = stream.getLongList();
     BigOwners = stream.getLongList();
 }
开发者ID:zrisher,项目名称:GardenPerformance,代码行数:7,代码来源:ConcealedGrid.cs


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