chiark / gitweb /
53167aca883f43943d06b3acdd543dabe3ad7ac7
[ypp-sc-tools.db-test.git] / yarrg / web / query_route
1 <%doc>
2
3  This is part of the YARRG website.  YARRG is a tool and website
4  for assisting players of Yohoho Puzzle Pirates.
5
6  Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
7  Copyright (C) 2009 Clare Boothby
8
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
12    download the source.
13
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.
18
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.
23
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/>.
26
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.
30
31
32  This Mason component generates the core of the `trade route' query.
33
34
35 </%doc>
36 <%args>
37 $quri
38 $dbh
39 $prselector
40 $routestring => '';
41 $capacitystring => '';
42 $lossperleague => '';
43 $capitalstring => '';
44 $someresults
45 $emsgokorprint
46 </%args>
47
48 <%perl>
49 my $emsg;
50 my @warningfs;
51 my @archipelagoes;
52 my @islandids;
53 my ($max_volume, $max_mass);
54 my $lossperleaguepct;
55 my $capital;
56
57 my $qa= \%ARGS;
58
59 my $be_post;
60 my $startform= sub {
61         ($be_post)= @_;
62 </%perl>
63 <form action="<% $quri->() |h %>" method="<% $be_post ? 'post' : 'get' %>">
64 <%perl>
65 };
66 my $goupdate= sub { $be_post ? 'Update' : 'Go' };
67
68 </%perl>
69
70 <h1>Specify route</h1>
71
72 % # Sadly we need to do this rather hacky thing to make it be a POST
73 % #  form if the user has already selected some thing(s)
74 % if (!$qa->{Dropdowns}) {
75 %     $startform->($routestring =~ m/\S/);
76 % } else {
77 %     $startform->(grep {
78 %               defined $qa->{"archipelago$_"} ||
79 %               defined $qa->{"islandid$_"}
80 %       } (0..$qa->{Dropdowns}-1));
81 % }
82
83 % $prselector->('ShowStalls');
84
85 <& enter_route, qa => $qa, dbh => $dbh, emsg_r => \$emsg,
86         warningfs_r => \@warningfs,
87         enterwhat => 'Enter route',
88         islandids_r => \@islandids,
89         archipelagoes_r => \@archipelagoes
90  &>
91
92 %#---------- textboxes, user enters details as strings ----------
93 % my $routeparams= { EmsgRef => \$emsg };
94 % if (!$qa->{Dropdowns}) {
95
96 <strong>Advanced options - you may leave these blank:</strong>
97 <p>
98
99 <& enter_advrouteopts, qa=>$qa, dbh=>$dbh, routeparams=>$routeparams &>
100
101 % } #---------- end of dropdowns, now common middle of page code ----------
102
103 <input type=submit name=submit value="<% $goupdate->() %>">
104 % my $ours= sub { $_[0] =~
105 %  m/^island|^archipelago|^routestring|^capacitystring|^lossperleague|^capitalstring|^[RT]/;
106 % };
107 <& "lookup:formhidden", ours => $ours &>
108
109 <%perl>
110 #========== results ==========
111
112 $emsgokorprint->($emsg) or @islandids=();
113
114 foreach my $warningf (@warningfs) {
115         $someresults->();
116         $warningf->();
117 }
118
119 </%perl>
120
121 % if (@islandids) {
122 %       $someresults->('Relevant trades');
123 <& routetrade,
124    dbh => $dbh,
125    islandids => \@islandids,
126    archipelagoes => \@archipelagoes,
127    qa => $qa,
128    routeparams => $routeparams
129  &>
130 % }
131 </form>