protected override StarMapSystem CreateSystem( GameObjectSet gos, StarSystemInfo oi, StarMapBase.SyncContext context) { StellarClass stellarClass = StellarClass.Parse(oi.StellarClass); StarMapSystem starMapSystem = new StarMapSystem(this.App, StarHelper.GetDisplayParams(stellarClass).AssetPath, oi.Origin, StarHelper.CalcRadius(stellarClass.Size) / StarSystemVars.Instance.StarRadiusIa, oi.Name); starMapSystem.SetSensorRange(this._sim.GameDatabase.GetSystemStratSensorRange(oi.ID, this._sim.LocalPlayer.ID)); gos.Add((IGameObject)starMapSystem); return(starMapSystem); }
protected override void UpdateSystem( StarMapSystem o, StarSystemInfo systemInfo, StarMapBase.SyncContext context) { int?systemProvinceId = this._db.GetStarSystemProvinceID(systemInfo.ID); o.SetProvince(systemProvinceId.HasValue ? this.Provinces.Reverse[systemProvinceId.Value] : (StarMapProvince)null); o.SetPosition(systemInfo.Origin); o.SetTerrain(systemInfo.TerrainID.HasValue ? this.Terrain.Reverse[systemInfo.TerrainID.Value] : (StarMapTerrain)null); IEnumerable <int> orbitalObjectIds = this._db.GetStarSystemOrbitalObjectIDs(systemInfo.ID); List <int> source = new List <int>(); bool flag1 = false; List <StationInfo> list1 = this._db.GetStationForSystem(systemInfo.ID).Where <StationInfo>((Func <StationInfo, bool>)(x => x.DesignInfo.StationType == StationType.NAVAL)).ToList <StationInfo>(); Dictionary <int, int> dictionary1 = new Dictionary <int, int>(); bool flag2 = false; foreach (int planetID in orbitalObjectIds) { AIColonyIntel ci = this._db.GetColonyIntelForPlanet(this._sim.LocalPlayer.ID, planetID); if (ci != null) { if (!dictionary1.ContainsKey(ci.OwningPlayerID)) { dictionary1.Add(ci.OwningPlayerID, 0); } Dictionary <int, int> dictionary2; int owningPlayerId; (dictionary2 = dictionary1)[owningPlayerId = ci.OwningPlayerID] = dictionary2[owningPlayerId] + 1; if (ci.OwningPlayerID == this._sim.LocalPlayer.ID) { flag1 = true; } source.Add(ci.OwningPlayerID); List <TreatyInfo> list2 = this._sim.GameDatabase.GetTreatyInfos().ToList <TreatyInfo>().Where <TreatyInfo>((Func <TreatyInfo, bool>)(x => x.Type == TreatyType.Trade)).ToList <TreatyInfo>(); if (flag1 || list2.Any <TreatyInfo>((Func <TreatyInfo, bool>)(x => { if (x.InitiatingPlayerId == this._sim.LocalPlayer.ID && x.ReceivingPlayerId == ci.OwningPlayerID) { return(true); } if (x.ReceivingPlayerId == this._sim.LocalPlayer.ID) { return(x.InitiatingPlayerId == ci.OwningPlayerID); } return(false); }))) { flag2 = true; } } } if (dictionary1.Count == 0) { foreach (StationInfo stationInfo in list1) { if (stationInfo.PlayerID == this._sim.LocalPlayer.ID) { flag1 = true; } } } if (flag1) { float supportRange = GameSession.GetSupportRange(this._db.AssetDatabase, this._db, this._sim.LocalPlayer.ID); o.SetSupportRange(supportRange); } int?systemOwningPlayer = this._db.GetSystemOwningPlayer(systemInfo.ID); if (systemOwningPlayer.HasValue && this._sim.GameDatabase.IsStarSystemVisibleToPlayer(this._sim.LocalPlayer.ID, systemInfo.ID) && StarMap.IsInRange(this._sim.GameDatabase, this._sim.LocalPlayer.ID, systemInfo.ID)) { o.SetPlayerBadge(Path.GetFileNameWithoutExtension(this._db.GetPlayerInfo(systemOwningPlayer.Value).BadgeAssetPath)); o.SetOwningPlayer(this._sim.GetPlayerObject(systemOwningPlayer.Value)); } else { o.SetPlayerBadge(""); o.SetOwningPlayer((Player)null); } source.Sort(); o.SetPlayers(source.Select <int, Player>((Func <int, Player>)(playerId => this._sim.GetPlayerObject(playerId))).ToArray <Player>()); List <PlayerInfo> playerInfos = context.PlayerInfos; List <Player> playerList1 = new List <Player>(); List <Player> playerList2 = new List <Player>(); foreach (PlayerInfo playerInfo in playerInfos) { if (this._db.SystemHasGate(systemInfo.ID, playerInfo.ID) && (playerInfo.ID == this._sim.LocalPlayer.ID || this._db.IsSurveyed(this._sim.LocalPlayer.ID, systemInfo.ID) && StarMap.IsInRange(this._db, playerInfo.ID, systemInfo.ID))) { playerList1.Add(this._sim.GetPlayerObject(playerInfo.ID)); } if (this._db.SystemHasAccelerator(systemInfo.ID, playerInfo.ID) && (playerInfo.ID == this._sim.LocalPlayer.ID || this._db.IsSurveyed(this._sim.LocalPlayer.ID, systemInfo.ID) && StarMap.IsInRange(this._db, playerInfo.ID, systemInfo.ID))) { playerList2.Add(this._sim.GetPlayerObject(playerInfo.ID)); } IEnumerable <StationInfo> forSystemAndPlayer = this._db.GetStationForSystemAndPlayer(systemInfo.ID, playerInfo.ID); if (playerInfo.ID == this._sim.LocalPlayer.ID) { o.SetHasNavalStation(forSystemAndPlayer.Any <StationInfo>((Func <StationInfo, bool>)(x => { if (x.PlayerID == this._sim.LocalPlayer.ID && x.DesignInfo.StationLevel > 0) { return(x.DesignInfo.StationType == StationType.NAVAL); } return(false); }))); o.SetHasScienceStation(forSystemAndPlayer.Any <StationInfo>((Func <StationInfo, bool>)(x => { if (x.PlayerID == this._sim.LocalPlayer.ID && x.DesignInfo.StationLevel > 0) { return(x.DesignInfo.StationType == StationType.SCIENCE); } return(false); }))); o.SetHasTradeStation(forSystemAndPlayer.Any <StationInfo>((Func <StationInfo, bool>)(x => { if (x.PlayerID == this._sim.LocalPlayer.ID && x.DesignInfo.StationLevel > 0) { return(x.DesignInfo.StationType == StationType.CIVILIAN); } return(false); }))); o.SetHasDiploStation(forSystemAndPlayer.Any <StationInfo>((Func <StationInfo, bool>)(x => { if (x.PlayerID == this._sim.LocalPlayer.ID && x.DesignInfo.StationLevel > 0) { return(x.DesignInfo.StationType == StationType.DIPLOMATIC); } return(false); }))); } o.SetStationCapacity(this._db.GetNumberMaxStationsSupportedBySystem(this._sim, systemInfo.ID, this._sim.LocalPlayer.ID)); if (playerInfo.ID == this._sim.LocalPlayer.ID && systemOwningPlayer.HasValue) { int cruiserEquivalent = this._db.GetSystemSupportedCruiserEquivalent(this._sim, systemInfo.ID, playerInfo.ID); int remainingSupportPoints = this._db.GetRemainingSupportPoints(this._sim, systemInfo.ID, playerInfo.ID); if (systemOwningPlayer.Value == this._sim.LocalPlayer.ID) { o.SetNavalCapacity(cruiserEquivalent); o.SetNavalUsage(cruiserEquivalent - remainingSupportPoints); } else { o.SetNavalCapacity(0); o.SetNavalUsage(0); } } } o.SetColonyTrapped(this._sim.GameDatabase.GetColonyTrapInfosAtSystem(systemInfo.ID).Where <ColonyTrapInfo>((Func <ColonyTrapInfo, bool>)(x => { if (this._sim.GameDatabase.GetFleetInfo(x.FleetID) != null) { return(this._sim.GameDatabase.GetFleetInfo(x.FleetID).PlayerID == this._sim.LocalPlayer.ID); } return(false); })).Any <ColonyTrapInfo>()); o.SetPlayersWithGates(playerList1.ToArray()); o.SetPlayersWithAccelerators(playerList2.ToArray()); o.SetSensorRange(this._sim.GameDatabase.GetSystemStratSensorRange(systemInfo.ID, this._sim.LocalPlayer.ID)); TradeResultsTable tradeResultsTable = this._sim.GameDatabase.GetTradeResultsTable(); TradeResultsTable resultsHistoryTable = this._sim.GameDatabase.GetLastTradeResultsHistoryTable(); if (flag2 && tradeResultsTable.TradeNodes.ContainsKey(systemInfo.ID)) { if (resultsHistoryTable.TradeNodes.ContainsKey(systemInfo.ID)) { o.SetTradeValues(this._sim, tradeResultsTable.TradeNodes[systemInfo.ID], resultsHistoryTable.TradeNodes[systemInfo.ID], systemInfo.ID); } else { o.SetTradeValues(this._sim, tradeResultsTable.TradeNodes[systemInfo.ID], new TradeNode(), systemInfo.ID); } } else { o.SetTradeValues(this._sim, new TradeNode(), new TradeNode(), systemInfo.ID); } int exploredByPlayer = this._db.GetLastTurnExploredByPlayer(this._sim.LocalPlayer.ID, systemInfo.ID); int turnCount = this._db.GetTurnCount(); o.SetIsSurveyed(exploredByPlayer != 0); this.SetSystemHasBeenRecentlySurveyed(this.Systems.Reverse[systemInfo.ID], exploredByPlayer != 0 && turnCount - exploredByPlayer <= 5 && !flag1); this.SetSystemHasRecentCombat(this.Systems.Reverse[systemInfo.ID], this._sim.CombatData.GetFirstCombatInSystem(this._sim.GameDatabase, systemInfo.ID, this._sim.GameDatabase.GetTurnCount() - 1) != null); this.SetSystemIsMissionTarget(this.Systems.Reverse[systemInfo.ID], this._db.GetPlayerMissionInfosAtSystem(this._sim.LocalPlayer.ID, systemInfo.ID).Any <MissionInfo>(), this._db.GetPlayerInfo(this._sim.LocalPlayer.ID).PrimaryColor); bool flag3 = SuperNova.IsPlayerSystemsInSuperNovaEffectRanges(this._db, this._sim.LocalPlayer.ID, systemInfo.ID) || NeutronStar.IsPlayerSystemsInNeutronStarEffectRanges(this._sim, this._sim.LocalPlayer.ID, systemInfo.ID); this.SetSystemRequriesSuperNovaWarning(this.Systems.Reverse[systemInfo.ID], flag3); this.UpdateSystemTrade(systemInfo.ID); o.SetHasLoaGate(this._db.GetFleetInfoBySystemID(systemInfo.ID, FleetType.FL_ACCELERATOR).Any <FleetInfo>()); }