Example #1
0
 public string ProfileInformationShort()
 {
     return(string.Format("{0} {1} Version: {2} Timer0: {3} - {4} VCount: {5} VFrame: {6} GxStat: {7}",
                          DSType.ToString().Replace('_', ' '), MAC_Address.ToString("X"),
                          Language + " " + Version,
                          Timer0Min.ToString("X"), Timer0Max.ToString("X"), VCount.ToString("X"),
                          VFrame.ToString("X"), GxStat.ToString("X")));
 }
Example #2
0
 public string ProfileInformation()
 {
     return
         (string.Format(
              "{0} {1} Version: {2} ID: {3} SID: {4} Timer0: {5} - {6} VCount: {7} VFrame: {8} GxStat: {9} Keypresses: {10}",
              DSType.ToString().Replace('_', ' '), MAC_Address.ToString("X"),
              Language + " " + Version, ID, SID,
              Timer0Min.ToString("X"), Timer0Max.ToString("X"), VCount.ToString("X"), VFrame.ToString("X"),
              GxStat.ToString("X"), KeyString) + (SkipLR ? " (Skip L\\R)" : ""));
 }
Example #3
0
        public void Enqueue(long id, DSType dsType, int pvpServiceID)
        {
            Log <DSEntityMakerSystem> .Logger.InfoFormat("Enqueue Make PVP Entity. DSType : [{0}]  ServiceID : [{1}]", dsType.ToString(), pvpServiceID);

            this.DSEntityMakerList.AddLast(new DSEntityMakerQueue(id, dsType, pvpServiceID));
            this.Process();
        }
Example #4
0
        public void Enqueue(long id, DSType dsType)
        {
            Log <DSEntityMakerSystem> .Logger.InfoFormat("Enqueue Make DS Entity. DSType : [{0}]", dsType.ToString());

            this.DSEntityMakerList.AddLast(new DSEntityMakerQueue(id, dsType));
            this.Process();
        }
Example #5
0
        private void UnuseResource(DSType dsType)
        {
            Log <DSServiceInfo> .Logger.WarnFormat("UnUseResource ServiceID : [{0}], DSType : [{1}]", this.ServiceID, dsType.ToString());

            this.Resource += this.GetResorcePoint(dsType);
            Log <DSServiceInfo> .Logger.WarnFormat("RemainResource : [{0}]", this.Resource);
        }