Exemple #1
0
 public LoLRecorder(GameInfo gameinfo)
 {
     if (LoLRecorder.Recorders == null)
     {
         LoLRecorder.Recorders = new System.Collections.Generic.List <LoLRecorder>();
     }
     this.record        = new LoLRecord();
     this.record.gameId = gameinfo.GameId;
     this.record.observerEncryptionKey = gameinfo.ObKey.ToCharArray();
     this.record.gamePlatform          = gameinfo.PlatformId.ToCharArray();
     this.setPlatformAddress(gameinfo.ServerAddress);
     this.selfGame = false;
     //this.setPlatformAddress(Utilities.LoLObserveServersIpMapping[new string(this.record.gamePlatform)]);
 }
Exemple #2
0
 public LoLRecordPlayer(LoLRecord playThis)
 {
     this.record = playThis;
 }
Exemple #3
0
 public LoLLauncher(string recordFilePath)
 {
     this._record = new LoLRecord();
     this._record.readFromFile(recordFilePath, false);
     this._localPlay = true;
 }
Exemple #4
0
        //public event Program.RecordDoneDelegate doneEvent;

        public LoLRecorder()
        {
            this.record = new LoLRecord();
        }