コード例 #1
0
 public NodeInfo(GatherType _type, Vector3 _pos, int _hitpoints)//, Item _resource)
 {
     type      = _type;
     pos       = _pos;
     hitpoints = _hitpoints;
     //resource = _resource;
 }
コード例 #2
0
ファイル: InfoBuilder.cs プロジェクト: drclaws/dr.analyzer
        public static List <GatheredInfo> ToInfoType(byte[] message)
        {
            List <GatheredInfo> infoList = new List <GatheredInfo>();

            uint messageSize = Convert.ToUInt32(message.Length);
            uint currPos     = 0;

            byte[] buffType = new byte[TypeSize], buffFunc = new byte[FuncTypeSize], buffNameLength = new byte[LengthSize];

            while (currPos < messageSize)
            {
                Array.Copy(message, currPos, buffType, 0, TypeSize);
                currPos += TypeSize;
                Array.Copy(message, currPos, buffFunc, 0, FuncTypeSize);
                currPos += FuncTypeSize;

                GatherType     type     = (GatherType)BitConverter.ToUInt16(buffType, 0);
                GatherFuncType func     = (GatherFuncType)BitConverter.ToInt16(buffFunc, 0);
                string         dataInfo = null;
                if (type.HasFlag(GatherType.GatherHasValue))
                {
                    type ^= GatherType.GatherHasValue;
                    Array.Copy(message, currPos, buffNameLength, 0, LengthSize);
                    currPos += LengthSize;
                    UInt32 length = BitConverter.ToUInt32(buffNameLength, 0);

                    byte[] buffName = new byte[length * LetterSize];
                    Array.Copy(message, currPos, buffName, 0, length * LetterSize);
                    currPos += length * LetterSize;
                    dataInfo = System.Text.Encoding.Unicode.GetString(buffName);
                }

                if (type.HasFlag(GatherType.GatherError))
                {
                    infoList.Add(new GatheredError(type, func, dataInfo));
                }
                else if (type.HasFlag(GatherType.GatherWarning))
                {
                    infoList.Add(new GatheredWarning(type, func, dataInfo));
                }
                else if (type.HasFlag(GatherType.GatherResource))
                {
                    infoList.Add(new GatheredResource(type, func, dataInfo));
                }
                else if (type.HasFlag(GatherType.GatherStatus))
                {
                    infoList.Add(new GatheredStatus(type, func, dataInfo));
                }
            }

            return(infoList);
        }
コード例 #3
0
        public void SwitchRoles()
        {
            switch (CurrGatherType)
            {
            case GatherType.BerryGatherer:
                CurrGatherType = GatherType.WoodGatherer;
                Add();
                break;

            case GatherType.WoodGatherer:
                CurrGatherType = GatherType.BerryGatherer;
                Add();
                break;

            default:
                break;
            }
        }
コード例 #4
0
        public void SwitchRoles()
        {
            Debug.Log(gameObject.name + " is now switching roles");
            switch (CurrGatherType)
            {
            case GatherType.BerryGatherer:
                CurrGatherType = GatherType.WoodGatherer;

                break;

            case GatherType.WoodGatherer:
                CurrGatherType = GatherType.BerryGatherer;

                break;

            default:
                break;
            }
        }
コード例 #5
0
ファイル: GatheredInfo.cs プロジェクト: drclaws/dr.analyzer
 protected GatheredInfo(GatherType type, GatherFuncType funcType, string description = null)
 {
     this.Type        = type;
     this.FuncType    = funcType;
     this.Description = description;
 }
コード例 #6
0
 public GatheredError(GatherType type, GatherFuncType funcType, string description = null)
     : base(type, funcType, description)
 {
 }
コード例 #7
0
 public GatheredWarning(GatherType type, GatherFuncType funcType, string description)
     : base(type, funcType, description)
 {
 }
コード例 #8
0
 public GatheredWarning(GatherType type, GatherFuncType funcType)
     : base(type, funcType)
 {
 }
コード例 #9
0
 public GatheredResource(GatherType type, GatherFuncType funcType, string filepath)
     : base(type, funcType, filepath)
 {
 }