Loading

Paste #pee8qlkwu

  1. /**
  2.  * Check whether growing on a half-tile coast tile ends up blocking a water connection
  3.  *
  4.  * @param tile The target tile
  5.  * @return true if building here blocks a water connection
  6.  */
  7. static bool GrowingBlocksWaterConnection(TileIndex tile)
  8. {
  9.     if (!IsValidTile(tile) || !IsCoastTile(tile)) return false;
  10.  
  11.     Slope slope = GetTileSlope(tile);
  12.     /* Is this a coast tile with one corner raised ? */
  13.     if (IsSlopeWithOneCornerRaised(slope)) {
  14.         const Track main_track_mask = TrackBitsToTrack(TrackStatusToTrackBits(GetTileTrackStatus(tile, TRANSPORT_WATER, 0)));
  15.         const Track oppo_track_mask = TrackToOppositeTrack(main_track_mask);
  16.         const Trackdir main_trackdir = TrackToTrackdir(main_track_mask);
  17.         const Trackdir oppo_trackdir = TrackToTrackdir(oppo_track_mask);
  18.         const DiagDirection main_dir_1 = TrackdirToExitdir(main_trackdir);
  19.         const DiagDirection main_dir_2 = TrackdirToExitdir(ReverseTrackdir(main_trackdir));
  20.         const DiagDirection oppo_dir_1 = TrackdirToExitdir(oppo_trackdir);
  21.         const DiagDirection oppo_dir_2 = TrackdirToExitdir(ReverseTrackdir(oppo_trackdir));
  22.  
  23.         TrackBits main_trackbits_mask_1 = DiagdirReachesTracks(main_dir_1);
  24.         TrackBits main_trackbits_mask_2 = DiagdirReachesTracks(main_dir_2);
  25.         TrackBits oppo_trackbits_mask_1 = DiagdirReachesTracks(oppo_dir_1);
  26.         TrackBits oppo_trackbits_mask_2 = DiagdirReachesTracks(oppo_dir_2);
  27.  
  28.         if (_settings_game.pf.forbid_90_deg) {
  29.             main_trackbits_mask_1 &= ~TrackCrossesTracks(main_track_mask);
  30.             main_trackbits_mask_2 &= ~TrackCrossesTracks(main_track_mask);
  31.             oppo_trackbits_mask_1 &= ~TrackCrossesTracks(oppo_track_mask);
  32.             oppo_trackbits_mask_2 &= ~TrackCrossesTracks(oppo_track_mask);
  33.         }
  34.  
  35.         Corner corner = GetHighestSlopeCorner(slope);
  36.         static const Direction corner_to_direction[] = { DIR_W, DIR_S, DIR_E, DIR_N };
  37.         TileIndex opposite_tile = AddTileIndexDiffCWrap(tile, TileIndexDiffCByDir(corner_to_direction[OppositeCorner(corner)]));
  38.  
  39.         if (IsValidTile(opposite_tile)) {
  40.             TileIndex tile_1 = AddTileIndexDiffCWrap(tile, TileIndexDiffCByDiagDir(main_dir_1));
  41.             TileIndex tile_2 = AddTileIndexDiffCWrap(tile, TileIndexDiffCByDiagDir(main_dir_2));
  42.  
  43.             TrackBits track_1 = TrackStatusToTrackBits(GetTileTrackStatus(tile_1, TRANSPORT_WATER, 0));
  44.             TrackBits track_2 = TrackStatusToTrackBits(GetTileTrackStatus(tile_2, TRANSPORT_WATER, 0));
  45.  
  46.             TrackBits main_track_1 = main_trackbits_mask_1 & track_1;
  47.             TrackBits main_track_2 = main_trackbits_mask_2 & track_2;
  48.             TrackBits oppo_track_1 = oppo_trackbits_mask_1 & track_1;
  49.             TrackBits oppo_track_2 = oppo_trackbits_mask_2 & track_2;
  50.  
  51.             /* Is there a connection between tile_1 and tile_2 via tile? */
  52.             if (main_track_1 && main_track_2) {
  53.                 TrackBits oppo_trackbits = TrackStatusToTrackBits(GetTileTrackStatus(opposite_tile, TRANSPORT_WATER, 0));
  54.                 /* Is there a track in the opposite_tile that can be used to try an alternative connection? */
  55.                 if (HasTrack(oppo_trackbits, oppo_track_mask)) {
  56.                     TrackBits mirror = TRACK_BIT_CROSS | (corner & 1 ? TRACK_BIT_HORZ : TRACK_BIT_VERT);
  57.                     /* Is there a connection between tile_1 and tile_2 via opposite_tile? */
  58.                     if (oppo_track_1 & (main_track_1 ^ mirror) && oppo_track_2 & (main_track_2 ^ mirror)) {
  59.                         /* There is an alternative connection. Town can grow on tile. */
  60.                         return false;
  61.                     }
  62.                 }
  63.                 /* There is either no track or an incomplete connection via opposite_tile. */
  64.                 return true;
  65.             }
  66.         }
  67.     }
  68.     /* There was no connection via tile, or it was incomplete, or the opposite_tile is outside the map. */
  69.     return false;
  70. }

Comments