chiark / gitweb /
0fe47f98ebd289b23c5805941d1ec31002a84f28
[ypp-sc-tools.db-live.git] / ypp-restock-rum
1 #!/usr/bin/perl -w
2 use strict qw(vars);
3 use IO::Handle;
4 use POSIX;
5
6 my $usage = <<END
7 usage:
8   .../ypp-restock-rum [<information> ...]
9
10 where <information> is
11
12   have  [<swill> <grog>] <fine> [<hold_shot>+<loaded_shot>]
13   want  [<swill> <grog>] <fine> [<shot>]
14   price  <swill> <grog>  <fine> [<shot>]
15
16 Each of which may appear only once, except \`have' which may appear
17 more than once which case we calculate the differences and the profit
18 for each one.
19
20 If /<shot> is not specified at all, relevant information about shot is
21 not reported.  For have and want, specifying an empty string means
22 zero.  Entirely Missing <swill>/<grog>/ is taken as if both were
23 specified and zero.
24
25 In price, missing entries mean the commodity is unavailable.
26 END
27 ;
28
29 our (@kinds) = qw(Swill Grog Fine Shot);
30 our (@proofs) = qw(40 60 100);
31
32 sub parse_info ($$$\@$) {
33     my ($omitswgok,$default,$multishot, $storeary, $what) = @_;
34     @ARGV or badusage("missing value for information argument \`$_'");
35     badusage("$what: specified more than once")
36         if defined $storeary->[2];
37     my (@v) = ();
38     while (@ARGV and $ARGV[0] =~ m/^\d/) {
39         $_ = shift @ARGV;
40         push @v, $_;
41     }
42     if (@v==1 or @v==2) {
43         badusage("$what: swill and grog amounts must be specified")
44             unless $omitswgok;
45         @v=($default,$default,@v);
46     }
47     if ($multishot and @v==4 and length $v[3]) {
48         $v[3] =~ m/^0*(\d+)\+0*(\d+)$/ or
49             badusage("$what: shot must be specified as <hold>+<loaded>");
50         $v[3] = $1 + $2;
51     }
52     if (@v==3) {
53         push @v, $default;
54     }
55     if (@v != 4) {
56         badusage("$what: invalid syntax (wrong number of /s)");
57     }
58     my $i=0;
59     foreach $_ (@v) {
60         $_ = $default if !length;
61         m/^0*(\d+)$/ or badusage("$what: $kinds[$i] \`$_': bad syntax");
62         $_= $1;
63         $i++;
64     }
65     @$storeary = @v;
66 }
67
68 our (@have,@want,@price);
69
70 sub parse_args () {
71     @ARGV or badusage("need some information to go on");
72     while (@ARGV) {
73         $_ = shift @ARGV;
74         if (m/^have$/) {
75             parse_info(1,0,1, @{ $have[@have] }, 'have');
76         } elsif (m/^want$/) {
77             parse_info(1,0,0, @want, 'want');
78         } elsif (m/^price$/) {
79             parse_info(0,1e6,0, @price, 'price');
80         } else {
81             badusage("unknown information argument \`$_'");
82         }
83     }
84 }
85
86 sub badusage ($) {
87     my ($m) = @_;
88     print STDERR "\nbad usage: $m\n\n$usage\n";
89     exit 16;
90 }
91
92 our $ff = '%6.1f';
93
94 sub valid ($) {
95     my ($x) = @_;
96     defined $x and $x>0 and $x<1e4;
97 }    
98
99 sub prvff ($$\@$) {
100     my ($what, $format, $ary, $unit) = @_;
101     printf("%-25s", "$what:");
102     for my $i (qw(0 1 2 3)) {
103         my $x= $ary->[$i];
104         my $y= valid($x) ? sprintf $format, $x : '    ';
105         printf " %-9s", $y;
106     }
107     printf "  %s\n", $unit;
108 }
109
110 sub pr ($\@$) {
111     my ($what, $ary, $unit) = @_;
112     prvff($what, '%4d  ', @$ary, $unit);
113 }
114
115 sub prf ($\@$) {
116     my ($what, $ary, $unit) = @_;
117     prvff($what, $ff, @$ary, $unit);
118 }
119
120 sub pr1 ($$) {
121     my ($k,$v) = @_;
122     printf "%-20s %s\n", "$k:", $v;
123 }
124
125
126 our @norm_price;
127 our ($best, $best_norm_price);
128
129 sub print_inputs () {
130     printf("%25s",'');
131     map { printf " %5s    ", $_ } @kinds;
132     print "\n\n";
133     pr('prices', @price, 'poe ea.') if valid(@price);
134     pr('target stocks', @want, 'units') if valid(@want);
135     my $i=0; for my $stocks (@have) {
136         pr('actual stocks'.(@have==1 ? '' : ' #'.++$i),
137            @$stocks, 'units');
138     }
139     print "\n";
140 }
141
142 sub compute_cheapest_rum() {
143     return unless @price;
144
145     my (@perorder) = map { $_*10 } @price;
146     prf('equiv. ordering price', @perorder, 'poe/order');
147
148     $best= undef;
149     my $best_norm_price= 1e5;
150     for my $i (qw(0 1 2)) {
151         next unless $price[$i];
152         $norm_price[$i] = $price[$i] * 100 / $proofs[$i];
153         if ($norm_price[$i] <= $best_norm_price) {
154             $best= $i;
155             $best_norm_price= $norm_price[$i];
156         }
157     };
158     prf('normalised prices', @norm_price, 'poe/fine');
159
160     if (defined $best) {
161         printf "best is %-10s%*s^^\n",
162             $kinds[$best],
163             $best*10+10, '';
164         my (@bestperorder) = map {
165             $best_norm_price * $proofs[$_] / 100 * 10;
166         } qw(0 1 2);
167         #push @bestperorder, $perorder[3];
168         prf('best is equiv. ordering', @bestperorder, 'poe/order');
169     }
170     print "\n";
171 }
172
173 parse_args();
174 print_inputs();
175 compute_cheapest_rum();
176
177 __DATA__
178
179 #    if (defined $price{Swill}) {
180 #       map { $price{$_}= undef if $price{$_} eq 'x' } @rums;
181 #    }
182 #    if (defined $have{Swill}) {
183 #       $have_proof= 0;
184 #       map { $have_proof += $have{$_} * $proof{$_} } @rums;
185 #    }
186
187 our ($best);
188
189 our $have_proof;
190
191 our ($need_proof, %need, %buy);
192
193 sub compute_restock_requirements () {
194     if ($ship =~ m/^\d+/) {
195         $need{Fine} = $ship;
196     } else {
197         $ship =~ y/_/ /;
198         open F, "/home/ian/private/puzzle-pirates" or die $!;
199         my $this_ship= 0;
200         my $the_ship;
201         while (<F>) {
202             if (!m/\S/ || m/^\s*\#/) {
203                 $this_ship= 0;
204                 next;
205             }
206             if (!m/^\@/) {
207                 next;
208             }
209             if (m/^\@(( [A-Z][-a-z]+){2,})\s*$/) {
210                 $this_ship= (uc $1 eq uc " $ship" or
211                              uc $+ eq uc " $ship");
212                 $the_ship= $1;
213                 next;
214             }
215             next unless $this_ship;
216             if (m/^\@\s+(\d+)\s+fine\s*/) {
217                 $need{Fine} = $1;
218                 last;
219             }
220         }
221         die $! if F->error;
222         die "unknown ship $ship" unless defined $need{Fine};
223         if (defined $ship) {
224             pr1("vessel",$the_ship);
225         }
226     }
227     pr1('desired stock level', sprintf("%4d fine rum", $need{Fine}));
228     $need_proof= $need{Fine} * $proof{Fine} - $have_proof;
229     map {
230         $buy{$_} = $need_proof / $proof{$_};
231     } @rums;
232     pr1("stock equivalent", sprintf "$ff fine rum", $have_proof / $proof{Fine});
233     pr1("restock equivalent", sprintf "$ff fine rum", $need_proof / $proof{Fine});
234     prf('would need', %buy, 'rum');
235 }
236
237 sub compute_restock_cheapest_rum() {
238     my %bill;
239     map {
240         $bill{$_} = $buy{$_} * $price{$_} if defined $price{$_};
241     } @rums;
242     prf('nominal bill', %bill, 'poe');
243     print "\n";
244     if ($need_proof < 0) {
245         printf "stocks are sufficient";
246     } else {
247         my $buy= ceil($buy{$best});
248         printf "buy %d %s at %d poe each for %d poe",
249             $buy, $best, $price{$best}, $buy * $price{$best};
250     }
251     print "\n\n";
252 }
253
254 main();