From: Ian Jackson Date: Thu, 27 Aug 2009 16:13:29 +0000 (+0100) Subject: Properly take ocean forcing from source-info X-Git-Tag: 3.4~78 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-live.git;a=commitdiff_plain;h=75d214ae42db7fe877d7dbab413cd1d14cfddd3a Properly take ocean forcing from source-info --- diff --git a/yarrg/TODO b/yarrg/TODO index f3e2cda..c78bc50 100644 --- a/yarrg/TODO +++ b/yarrg/TODO @@ -19,8 +19,8 @@ DATABASE/DICTIONARY MANAGER eliminate black dye from live database O N yppedia distance scraper finish -O N yppedia distances support hints in master-info O N yppedia also cross-check arch/island pages +O N for server, take ocean/island data from database when update rejected print better error message including broken commodity name diff --git a/yarrg/yppedia-chart-parser b/yarrg/yppedia-chart-parser index 2da027e..7cc0baf 100755 --- a/yarrg/yppedia-chart-parser +++ b/yarrg/yppedia-chart-parser @@ -4,15 +4,17 @@ use strict (qw(vars)); use warnings; use Graph::Undirected; - +use Commods; use CommodsDatabase; +my $ocean= 'Midnight'; + + my $widists= Graph::Undirected->new(); my $wiarchs= Graph::Undirected->new(); my @wiarchlabels; my %wiisland2node; my %winode2island; -my %wiisland2arch; my %winode2lines; my %wiccix2arch; @@ -25,7 +27,7 @@ sub warning ($) { perr("warning",$_[0]); } sub error ($) { perr("error", $_[0]); } sub change ($) { perr("change", $_[0]); } -if ($ARGV[0] eq '--debug') { +if (@ARGV && $ARGV[0] eq '--debug') { shift @ARGV; open DEBUG, ">&STDOUT" or die $!; select(DEBUG); $|=1; @@ -121,7 +123,9 @@ sub parse_database_map () { } sub process_yppedia_graphs () { + # Prune the LP database by eliminating boring intermediate vertices + # foreach my $delete ($widists->vertices()) { next if exists $winode2island{$delete}; my @neigh= $widists->neighbours($delete); @@ -137,6 +141,7 @@ sub process_yppedia_graphs () { } # Check that it's connected. + # foreach my $cc ($widists->connected_components()) { next if 2*@$cc > $widists->vertices(); my $m= "disconnected league point(s):"; @@ -147,11 +152,31 @@ sub process_yppedia_graphs () { warning($m); } + # Assign archipelagoes according to the source-info file + # + foreach my $arch (sort keys %{ $oceans{$ocean} }) { + foreach my $islename (sort keys %{ $oceans{$ocean}{$arch} }) { + my $islenode= $wiisland2node{$islename}; + defined $islenode or + error("island $islename in source-info but not in WP map"); + my $ccix= $wiarchs->connected_component_by_vertex($islenode); + my $oldarch= $wiccix2arch{$ccix}; + error("island $islename in $arch in source-info". + " connected to $oldarch as well") + if defined $oldarch && $oldarch ne $arch; + printf DEBUG "%-5s force-island-arch cc%-2d %-10s %s\n", + $islenode, $ccix, $arch, $islename; + $wiccix2arch{$ccix}= $arch; + } + } + # Compute all-pairs-shortest-paths on dist, which is the # actual distances between all LPs. + # my $wialldists= $widists->APSP_Floyd_Warshall(); # Assign archipelago labels to groups of islands + # foreach my $label (@wiarchlabels) { my ($ax,$ay,$arch) = @$label; my $best_ccmulti= -1; @@ -168,8 +193,8 @@ sub process_yppedia_graphs () { my $d2= ($vx-$ax)*($vx-$ax) + ($vy-$ay)*($vy-$ay); my $cmp= $ccmulti <=> $best_ccmulti || $best_d2 <=> $d2; - printf DEBUG "%2d,%-2d arch-island-search %5s d2=%4d ccix=%-2d". - " cc=%2d ccmulti=%d cmp=%-2d %s\n", + printf DEBUG "%2d,%-2d arch-island-search %5s d2=%4d cc%-2d". + " #cc=%2d ccmulti=%d cmp=%2d %s\n", $ax,$ay, $vertex, $d2, $ccix, scalar(@cc), $ccmulti, $cmp, $winode2island{$vertex}; next unless $cmp > 0; @@ -178,15 +203,16 @@ sub process_yppedia_graphs () { $best_ccmulti= $ccmulti; } die 'no island vertices?!' unless defined $best_n; - printf DEBUG "%2d,%-2d arch-island-select %-5s d2=%-2d %-10s %s\n", - $ax,$ay, $best_n, $best_d2, $arch, $winode2island{$best_n}; my $ccix= $wiarchs->connected_component_by_vertex($best_n); + printf DEBUG + "%2d,%-2d arch-island-select %-5s d2=%4d cc%-2d %-10s %s\n", + $ax,$ay, $best_n, $ccix, $best_d2, $arch, $winode2island{$best_n}; my $desc= join "\n", map { my $in= $winode2island{$_}; " LP $_". (defined $in ? ", $in" : ""); } sort $wiarchs->connected_component_by_index($ccix); - if (exists $wiccix2arch{$ccix}) { + if (exists $wiccix2arch{$ccix} and $wiccix2arch{$ccix} ne $arch) { error("archipelago determination failed, wrongly merged:\n". " archipelago $arch\n". " archipelago $wiccix2arch{$ccix}\n". @@ -204,49 +230,58 @@ sub process_yppedia_graphs () { # connected component which has already been assigned an arch. # `Nearest' means shortest distance of unpurchaseable charts, in # leagues. - - # fixme need some hints - + # # we need only consider vertices which weren't `boring intermediate # vertices' (removed during optimisation as being of order 2) my @ccs_useful= map { [ grep { $widists->has_vertex($_) } @$_ ] } $wiarchs->connected_components(); + my @assignments; + foreach my $sourceccix (0..$#ccs_useful) { next if defined $wiccix2arch{$sourceccix}; + next unless $ccs_useful[$sourceccix]; - my $sourcecc= $ccs_useful[$sourceccix]; - my @islandnodes= grep { $winode2island{$_} } @$sourcecc; + my @sourcecc= $wiarchs->connected_component_by_index($sourceccix); + my @islandnodes= grep { $winode2island{$_} } @sourcecc; next unless @islandnodes; # don't care, then + foreach my $islandnode (@islandnodes) { + printf DEBUG "%-5s arch-join-need cc%-2d %s\n", + $islandnode, $sourceccix, $winode2island{$islandnode}; + } my $best_dist= 9999999; - my $best_target; + my ($best_target, $best_targetccix, $best_source); foreach my $targetccix (0..$#ccs_useful) { next unless defined $wiccix2arch{$targetccix}; # not helpful - my $targetcc= $ccs_useful[$targetccix]; - foreach my $target (@$targetcc) { - foreach my $source (@$sourcecc) { + next unless $ccs_useful[$targetccix]; + foreach my $target ($wiarchs-> + connected_component_by_index($targetccix)) { + foreach my $source (@sourcecc) { my $target_dist= $wialldists->path_length($target,$source); + next unless defined $target_dist; next if $target_dist >= $best_dist; $best_dist= $target_dist; + $best_source= $source; $best_target= $target; + $best_targetccix= $targetccix; } } } -# die "no possible target ?!" unless defined $best_target; -# -# printf DEBUG " -# -# foreach my $node (sort keys %winode2island) { -# my $island= $winode2island{$node}; -# my $arch= winode2arch($node); -# next if defined $arch; -# my $ccix= $wiarchs->connected_component_by_vertex($node); -# my @cc= $wiarchs->connected_component_by_index($ccix); -# @cc= grep { defined $winode2island{$_} } @cc; -# # We search for the best: -# # - member of this connected component + die "no possible target ?!" unless defined $best_target; + + my $arch= $wiccix2arch{$best_targetccix}; + my $best_island= $winode2island{$best_target}; + printf DEBUG "%-5s arch-join-to %-5s dist=%2d cc%-2d %-10s %s\n", + $best_source, $best_target, $best_dist, + $best_targetccix, $arch, + defined($best_island) ? $best_island : "-"; + + push @assignments, [ $sourceccix, $arch ]; + } + foreach my $assign (@assignments) { + $wiccix2arch{$assign->[0]}= $assign->[1]; } } @@ -294,7 +329,8 @@ sub compare_island_lists () { } } -db_setocean('Midnight'); +parse_info_serverside(); +db_setocean($ocean); db_connect(); parse_yppedia_map(); parse_database_map();