private string GetOSKey(eBATTLE_ROOMTYPE battleRoomType, int STARTPOS_INDEX) { string text = battleRoomType.ToString() + this._recentBattleSolCombinationUniqeKey + STARTPOS_INDEX.ToString(); if (this.IsParty(battleRoomType)) { text += "PARTY"; } return(text); }
public void SetRecentBattleSolCombinationInfo(eBATTLE_ROOMTYPE battleRoomType, int solCombinationUniqeKey, int STARTPOS_INDEX) { Debug.Log(string.Concat(new object[] { "NORMAL, RecentBattleSolCombinationInfoManager.cs, SetRecentBattleSolCombinationInfo(), battleRoomType : ", battleRoomType.ToString(), ", UniqeKey : ", solCombinationUniqeKey })); SolCombinationKeySaveLoader.SaveSolCombinationUniqeKeyInOS(this.GetOSKey(battleRoomType, STARTPOS_INDEX), solCombinationUniqeKey); }
public void BattleResult(eBATTLE_ROOMTYPE RoomType, float fBattleTime, int InjurySolCount) { string text = RoomType.ToString().Substring(17); Tapjoy.TrackEvent("Play", "Battle", text, text, "BattleTime", (long)fBattleTime, "InjurySol", (long)InjurySolCount, null, 0L); }