3 This is part of the YARRG website. YARRG is a tool and website
4 for assisting players of Yohoho Puzzle Pirates.
6 Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
7 Copyright (C) 2009 Clare Boothby
9 YARRG's client code etc. is covered by the ordinary GNU GPL (v3 or later).
10 The YARRG website is covered by the GNU Affero GPL v3 or later, which
11 basically means that every installation of the website will let you
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU Affero General Public License as
16 published by the Free Software Foundation, either version 3 of the
17 License, or (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU Affero General Public License for more details.
24 You should have received a copy of the GNU Affero General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
28 are used without permission. This program is not endorsed or
29 sponsored by Three Rings.
32 This Mason component generates the main `lookup' page, including
33 all the entry boxes etc. for every query.
42 #---------- "mode" argument parsing and mode menu at top of page ----------
44 # for debugging, invoke as
45 # http://www.chiark.greenend.org.uk/ucgi/~clareb/mason/pirates/pirate-route?debug=1
47 @vars= ({ Name => 'Ocean',
49 CmpCanon => sub { ucfirst lc $_[0] },
50 Values => [ ocean_list() ]
51 }, { Name => 'Dropdowns',
52 Before => 'Interface: ',
53 CmpCanon => sub { !!$_[0] },
54 Values => [ [ 0, 'Type in names' ],
55 [ 4, 'Select from menus' ] ]
58 Values => [ [ 'route', 'Trades for route' ],
59 [ 'commod', 'Prices for commodity' ],
60 [ 'age', 'Data age' ] ]
61 }, { Name => 'BuySell',
63 Values => [ [ 'buy_sell', 'Buy and sell' ],
64 [ 'sell_buy', 'Sell and buy' ],
65 [ 'buy', 'Buy offers only' ],
66 [ 'sell', 'Sell offers only' ],
71 foreach my $var (@vars) {
72 my $name= $var->{Name};
74 $var->{Before}= '' unless exists $var->{Before};
75 $var->{CmpCanon}= sub { $_[0]; } unless exists $var->{CmpCanon};
76 foreach my $val (@{ $var->{Values} }) {
78 $val= [ $val, encode_entities($val) ];
80 if (exists $ARGS{$lname}) {
81 $styles{$name}= $ARGS{$lname};
82 my @html= grep { $_->[0] eq $styles{$name} }
84 $ahtml{$name}= @html==1 ? $html[0][1] : '???';
86 $styles{$name}= $var->{Values}[0][0];
87 $ahtml{$name}= $var->{Values}[0][1];
102 % foreach my $n (keys %baseqf, keys %queryqf) {
103 % next if $ours->($n);
104 % my $v= exists $baseqf{$n} ? $baseqf{$n} : $queryqf{$n};
105 <input type=hidden name=<% $n %> value="<% $v |h %>">
109 <html><head><title><% ucfirst $ahtml{Query} %> - YARRG</title></head><body>
111 <a href="<% $m->current_comp()->name() |u %>">YARRG</a> -
112 Yet Another Revenue Research Gatherer
114 <a href="docs">documentation</a>
118 foreach my $var (@vars) {
119 my $lname= lc $var->{Name};
120 next unless exists $ARGS{$lname};
121 $baseqf{$lname}= $ARGS{$lname};
124 foreach my $var (keys %ARGS) {
126 m/^(?:(?:route|commod)string|islandid\d|archipelago\d|debug)$/;
127 my $val= $ARGS{$var};
128 next if $val eq 'none';
129 $queryqf{$var}= $val;
133 my $uri= URI->new('lookup');
134 $uri->query_form(@_);
138 my $prselector_core= sub {
140 my $name= $var->{Name};
141 my $lname= lc $var->{Name};
142 my $delim= $var->{Before};
143 my $canon= &{$var->{CmpCanon}}($styles{$name});
145 foreach my $valr (@{ $var->{Values} }) {
146 print $delim; $delim= "\n|\n";
147 my ($value,$html) = @$valr;
148 my $iscurrent= &{$var->{CmpCanon}}($value) eq $canon;
154 my %qf= (%baseqf,%queryqf);
156 $qf{$lname}= $value if $cvalix;
158 <a href="<% $quri->(%qf) |h %>">
168 my $prselector= sub {
170 foreach my $var (@vars) {
171 if ($var->{Name} eq $name) {
172 $prselector_core->($var);
179 foreach my $var (@vars) {
180 next if $var->{QuerySpecific};
181 $prselector_core->($var);
184 #---------- initial checks, startup, main entry form ----------
186 die if $styles{Query} =~ m/[^a-z]/;
189 my $dbh= ($mydbh= dbw_connect($styles{Ocean}));
191 my $results_head_done=0;
192 my $someresults= sub {
193 return if $results_head_done;
194 $results_head_done=1;
195 print "\n<h1>Results</h1>\n";
205 <& "query_$styles{Query}", %baseqf, %queryqf, %styles,
206 quri => $quri, dbh => $dbh,
207 prselector => $prselector,
208 someresults => $someresults,
209 emsgokorprint => sub {
211 return 1 unless defined $emsg and length $emsg;
220 %#---------- debugging and epilogue ----------
232 var node= document.getElementById('debug_log');
233 node.innerHTML += "\n" + m + "\n";
248 $mydbh->rollback() if $mydbh;