ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/jeweler.ext
Revision: 1.9
Committed: Fri Sep 8 15:21:04 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.8: +5 -5 lines
Log Message:
get_flag => flag

File Contents

# Content
1 #! perl
2 #CONVERSION: NONE
3 use Data::Dumper;
4 use Jeweler;
5 use List::Util qw/max min sum/;
6 use strict;
7
8 sub ingred_alias {
9 my ($ing) = @_;
10
11 my %aliases = (
12 pow => 'power',
13 cha => 'charisma',
14 wis => 'wisdom',
15 int => 'intelligence',
16 dex => 'dexterity',
17 con => 'constitution',
18 str => 'strength',
19 );
20
21 if ($ing =~ m/resist_(\S+)/) {
22 my $a = $aliases{lc $1} || $1;
23 "something for '". lc ($a). "' resistance";
24
25 } elsif ($ing =~ m/stat_(\S+)/) {
26 my $a = $aliases{lc $1} || $1;
27 "something for the ". lc ($a). " stat";
28
29 } elsif ($ing =~ m/spec_(\S+)/) {
30 my $a = $aliases{lc $1} || $1;
31 "something for the ". lc ($a). "' special";
32
33 } else {
34 $ing
35 }
36 }
37
38 my $DEBUG = 1;
39
40 sub merge {
41 my ($chdl, $sk, $pl, $do_analyze) = @_;
42
43 my $ingred = $chdl->extract_jeweler_ingredients;
44 my @ring = $ingred->get_ring;
45 my @rings = map { Jeweler::Object->new (object => $_) } @ring;
46
47 if (@rings < 2) {
48 $pl->message ("You slap yourself, you forgot to put at least 2 jeweles in!");
49 return;
50 }
51
52 my $ring = shift @rings;
53 $ring->improve_by_ring (@rings);
54
55 if ($do_analyze) {
56 $pl->message ("You want to make a " . $ring->to_string . ": " . $ring->analyze ($sk, $pl));
57 if ($pl->flag (cf::FLAG_WIZ)) {
58 $ring->wiz_analyze ($pl);
59 }
60 return;
61 }
62
63 make_ring ($chdl, $ingred, $ring, $sk, $pl);
64 }
65
66 sub make_ring {
67 my ($chdl, $ingred, $ring, $sk, $pl) = @_;
68
69 if (!$pl->flag (cf::FLAG_WIZ)) {
70 $ingred->remove ('rings');
71 $ingred->remove ('ammys');
72 }
73
74 my $ch = $ring->get_chance_perc ($sk);
75 my $succ = 0;
76 my $r = cf::random_roll (0, 100, $pl, cf::PREFER_HIGH);
77 if ($r <= $ch or $pl->flag (cf::FLAG_WIZ)) {
78 my $lvl = max ($ring->power_to_level, 1);
79 my $exp = (cf::level_to_min_exp ($lvl) - cf::level_to_min_exp ($lvl - 1)) / 100;
80 $pl->change_exp ($exp, "jeweler", cf::SK_EXP_SKILL_ONLY);
81 $pl->message ("You succeed and get $exp experience.");
82 } else {
83 $pl->message ("You fail!");
84 $ring->negate;
85 }
86 $chdl->put ($ring->to_object);
87 }
88
89 cf::attach_to_type cf::SKILL, cf::SK_JEWELER,
90 on_use_skill => sub {
91 my ($sk, $ob, $part, $dir, $msg) = @_;
92 my $pl = $ob;
93 warn ($pl->name . " uses jeweler skill [$msg]!\n");
94
95 my $skobj = $sk;
96
97 my $chdl = new Jeweler::CauldronHandler;
98
99 my $rv = 1;
100 eval {
101 Jeweler::read_config ($ENV{CROSSFIRE_LIBDIR} . '/jeweler.yaml');
102 $DEBUG = 1;
103
104 my $player = $ob->contr;
105
106 unless ($chdl->find_cauldron ('jeweler_bench', $ob->map->at ($ob->x, $ob->y))) {
107 return;
108 }
109
110 cf::override;
111
112 if ($msg =~ m/^\s*analy[sz]e\s*$/i) {
113 Jeweler::analyze ($sk, $chdl, $pl);
114
115 } elsif ($msg =~ m/^\s*make\s*$/i) {
116 $pl->message ("You can make: " . (join ', ', keys %{Jeweler::getcfg ('conversions') || {}}));
117
118 } elsif ($msg =~ m/^\s*make\s+(\S+)\s*$/i) {
119 my $ingred = $chdl->extract_jeweler_ingredients;
120
121 unless ($Jeweler::CFG->{conversions}->{lc $1}) {
122 $pl->message ("You don't know how to make '$1', is does such a thing even exist?");
123 return
124 }
125
126 Jeweler::simple_converter ($player, $ingred, $chdl, $1);
127
128 } elsif ($msg =~ m/^\s*merge\s*analy[sz]e\s*$/i) {
129 merge ($chdl, $sk, $pl, 1);
130
131 } elsif ($msg =~ m/^\s*merge\s*$/i) {
132 merge ($chdl, $sk, $pl, 0);
133
134 } else {
135 my $ingred = $chdl->extract_jeweler_ingredients;
136 my $plan = $ingred->get_plan;
137
138 if ($plan) {
139 my @ring = $ingred->get_ring;
140
141 if ((@ring > 1) || ($ring[0]->nrof > 1)) {
142 # actually the algorithm cant handle more than one improvement at a time
143 $pl->message ("You can't manage to improve more than one thing at a time!");
144 return;
145
146 } elsif (@ring < 1) {
147 # actually the algorithm cant
148 $pl->message ("You slap yourself, you forgot the jewelery!");
149 return;
150
151 } else {
152 my $ringo = Jeweler::Object->new (object => $ring[0]);
153 my $iring = $ingred->improve_ring_by_plan ($plan, $ringo);
154 my $c1 = $ringo->calc_costs;
155 my $c2 = $iring->calc_costs;
156
157 my %keys;
158 my %cdiff;
159 for (keys %$c1, keys %$c2) { $keys{$_} = 1 }
160 for (keys %keys) { $cdiff{$_} = $c2->{$_} - $c1->{$_} }
161
162 unless (grep { $_ > 0 } values %cdiff) {
163 $pl->message ("This plan doesn't improve anything, you find yourself puzzled about what you missed...");
164 return;
165 }
166
167 my $remcosts = $ingred->check_costs (\%cdiff);
168
169 if (grep { $_ > 0 } values %$remcosts) {
170 $pl->message ("You want to make a " . $iring->to_string . ": " . $iring->analyze ($sk, $pl));
171 $pl->message ("You recognize that you are short of: "
172 . (join ", ",
173 map { my $cost = $remcosts->{$_}; $cost . " " . ($cost > 1 ? "times" : "time") . " " . ingred_alias ($_) }
174 grep { $remcosts->{$_} > 0 } keys %$remcosts));
175
176 if ($pl->flag (cf::FLAG_WIZ)) {
177 $iring->wiz_analyze ($pl);
178 }
179 } else {
180 if (!$pl->flag (cf::FLAG_WIZ)) {
181 $ingred->check_costs (\%cdiff, 1);
182 }
183 make_ring ($chdl, $ingred, $iring, $sk, $pl);
184 }
185 }
186 } else {
187 $pl->message ("You've got no idea what you are planning to do!");
188 }
189 }
190 };
191 $@ and warn "ERROR: $@\n";
192 }