ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/jeweler.ext
Revision: 1.18
Committed: Thu Nov 12 06:37:57 2009 UTC (14 years, 6 months ago) by elmex
Branch: MAIN
CVS Tags: rel-2_92
Changes since 1.17: +2 -1 lines
Log Message:
no more floating point output in jeweler skill.

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3 root 1.15 use strict;
4    
5 root 1.1 use Jeweler;
6     use List::Util qw/max min sum/;
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 elmex 1.7 gem => 'diamond',
20 root 1.1 );
21    
22     if ($ing =~ m/resist_(\S+)/) {
23     my $a = $aliases{lc $1} || $1;
24     "something for '". lc ($a). "' resistance";
25    
26     } elsif ($ing =~ m/stat_(\S+)/) {
27     my $a = $aliases{lc $1} || $1;
28     "something for the ". lc ($a). " stat";
29    
30     } elsif ($ing =~ m/spec_(\S+)/) {
31     my $a = $aliases{lc $1} || $1;
32     "something for the ". lc ($a). "' special";
33    
34 elmex 1.7 } elsif ($aliases{$ing}) {
35     $aliases{$ing}
36    
37 root 1.1 } else {
38     $ing
39     }
40     }
41    
42     my $DEBUG = 1;
43    
44     sub merge {
45     my ($chdl, $sk, $pl, $do_analyze) = @_;
46    
47 elmex 1.5 my $ingred = get_ingred ($pl, $chdl) || return;
48 elmex 1.4
49 root 1.1 my @ring = $ingred->get_ring;
50     my @rings = map { Jeweler::Object->new (object => $_) } @ring;
51    
52     @rings >= 2
53 elmex 1.16 or return $pl->message ("You slap yourself, you forgot to put at least 2 jewels in!");
54 root 1.1
55 elmex 1.12 my $input_level = 0;
56 elmex 1.7 my $value;
57     for (@rings) {
58     $input_level = max ($_->power_to_level, $input_level);
59     $value += $_->{hash}->{value};
60     }
61 elmex 1.5
62 root 1.1 my $ring = shift @rings;
63     $ring->improve_by_ring (@rings);
64    
65     if ($do_analyze) {
66 elmex 1.16 $pl->message ("You want to make a " . $ring->to_string . ": " . $ring->analyze ($sk, $pl, $input_level));
67 root 1.1 $ring->wiz_analyze ($pl)
68     if $pl->flag (cf::FLAG_WIZ);
69     return;
70     }
71    
72 elmex 1.7 make_ring ($chdl, $ingred, $ring, $value, $sk, $pl, $input_level);
73 root 1.1 }
74    
75     sub make_ring {
76 elmex 1.7 my ($chdl, $ingred, $ring, $value, $sk, $pl, $input_level) = @_;
77 root 1.1
78     if (!$pl->flag (cf::FLAG_WIZ)) {
79     $ingred->remove ('rings');
80     $ingred->remove ('ammys');
81     }
82    
83     my $ch = $ring->get_chance_perc ($sk);
84     my $succ = 0;
85     my $r = cf::random_roll (0, 100, $pl, cf::PREFER_HIGH);
86 elmex 1.5
87 elmex 1.7 my $make_status;
88     my $exp;
89    
90 root 1.1 if ($r <= $ch or $pl->flag (cf::FLAG_WIZ)) {
91 elmex 1.12 $exp = $ring->projected_exp ($input_level);
92 elmex 1.5
93 root 1.1 $pl->change_exp ($exp, "jeweler", cf::SK_EXP_SKILL_ONLY);
94 elmex 1.18 $pl->message (
95     "You succeed and get " . int ($exp) . " experience points.");
96 elmex 1.7 $make_status = "succeeded";
97    
98     $ring->set_value ($value * 0.8); # 20% of the input values will vanish
99    
100 root 1.1 } else {
101     $pl->message ("You fail!");
102     $ring->negate;
103 elmex 1.7 $make_status = "fail";
104     $exp = 0;
105     }
106    
107     my $ring_ob = $ring->to_object;
108    
109     { # some audit info calculation
110     my $sklvl = cf::exp_to_level ($sk->stats->exp);
111    
112     my $make_info = sprintf
113     "JEWELER AUDIT: '%s' made '%s' (%s) (sk lvl %d, ring lvl %d, got %d exp): %s",
114     $pl->name, $ring->to_string, $ring_ob->uuid, $sklvl,
115     $ring->power_to_level, $exp, $make_status;
116    
117     warn "$make_info\n" if $make_status eq 'succeeded';
118 root 1.1 }
119 elmex 1.7
120     $chdl->put ($ring_ob);
121 root 1.1 }
122    
123 elmex 1.5 sub get_ingred {
124     my ($pl, $chdl) = @_;
125     my $ingred = eval { $chdl->extract_jeweler_ingredients };
126     if ($@ =~ /cursed/) {
127     $pl->message ("There are cursed items in the workbench, take them out before you do anything.").
128     return
129     } elsif ($@ =~ /unidentified/) {
130     $pl->message ("There are unidentified items in the workbench, identify them before you do anything.").
131     return
132     } elsif ($@) {
133     warn "error in jeweler ingredient extraction: $@";
134     return;
135     }
136     $ingred;
137     }
138    
139 elmex 1.6 cf::object::attachment check_ring_drop_on =>
140     on_drop_on => sub {
141     my ($self, $obj, $who) = @_;
142     my $cfg = $self->{check_ring_drop_on};
143     if ($obj->type == cf::RING
144     && !$obj->flag (cf::FLAG_CURSED)
145     && !$obj->flag (cf::FLAG_DAMNED)
146     ) {
147     my $ringo = Jeweler::Object->new (object => $obj);
148     for (grep { /^resist_/ } keys %$cfg) {
149     if (/^resist_(\S+)$/) {
150     if ($ringo->has_resist ($1)) {
151     $self->map->trigger (
152     $cfg->{connection},
153     $cfg->{state}
154     );
155 elmex 1.17 $obj->decrease (1);
156 elmex 1.6 cf::override;
157     }
158     }
159     }
160     }
161     };
162    
163 root 1.2 cf::object->attach (
164     type => cf::SKILL,
165     subtype => cf::SK_JEWELER,
166 root 1.1 on_use_skill => sub {
167     my ($sk, $ob, $part, $dir, $msg) = @_;
168     my $pl = $ob;
169    
170     my $skobj = $sk;
171    
172     my $chdl = new Jeweler::CauldronHandler;
173    
174     my $rv = 1;
175     eval {
176     $DEBUG = 1;
177    
178     my $player = $ob->contr;
179    
180     unless ($chdl->find_cauldron ('jeweler_bench', $ob->map->at ($ob->x, $ob->y))) {
181     return;
182     }
183    
184     cf::override;
185    
186     if ($msg =~ m/^\s*analy[sz]e\s*$/i) {
187     Jeweler::analyze ($sk, $chdl, $pl);
188    
189     } elsif ($msg =~ m/^\s*make\s*$/i) {
190     $pl->message ("You can make: " . (join ', ', keys %{Jeweler::getcfg ('conversions') || {}}));
191    
192     } elsif ($msg =~ m/^\s*make\s+(\S+)\s*$/i) {
193 elmex 1.5 my $ingred = get_ingred ($pl, $chdl) || return;
194 root 1.1
195     unless ($Jeweler::CFG->{conversions}->{lc $1}) {
196     $pl->message ("You don't know how to make '$1', is does such a thing even exist?");
197     return
198     }
199    
200     Jeweler::simple_converter ($player, $ingred, $chdl, $1);
201    
202     } elsif ($msg =~ m/^\s*merge\s*analy[sz]e\s*$/i) {
203     merge ($chdl, $sk, $pl, 1);
204    
205     } elsif ($msg =~ m/^\s*merge\s*$/i) {
206     merge ($chdl, $sk, $pl, 0);
207    
208     } else {
209 elmex 1.5 my $ingred = get_ingred ($pl, $chdl) || return;
210 elmex 1.4
211 root 1.1 my $plan = $ingred->get_plan;
212    
213     if ($plan) {
214     my @ring = $ingred->get_ring;
215    
216 elmex 1.14 if (!@ring) {
217 root 1.1 # actually the algorithm cant
218     $pl->message ("You slap yourself, you forgot the jewelery!");
219     return;
220    
221 elmex 1.14 } elsif ((@ring > 1) || (grep { $_->nrof > 1 } @ring)) {
222     # actually the algorithm cant handle more than one improvement at a time
223     $pl->message ("You can't manage to improve more than one thing at a time!");
224     return;
225 root 1.1 } else {
226     my $ringo = Jeweler::Object->new (object => $ring[0]);
227     my $iring = $ingred->improve_ring_by_plan ($plan, $ringo);
228 elmex 1.7 my $c1 = $ringo->calc_costs;
229     my $c2 = $iring->calc_costs;
230     my $value = $iring->calc_value_from_cost ($c2);
231 root 1.1
232 elmex 1.12 if ((not defined $c1) || (not defined $c2)) {
233     $pl->message ("The jewel has or will become a resistancy above 99%,\n"
234     ."that is completly impossible to make!");
235     return;
236     }
237    
238 root 1.1 my %keys;
239     my %cdiff;
240     for (keys %$c1, keys %$c2) { $keys{$_} = 1 }
241 elmex 1.7 for (keys %keys) { $cdiff{$_} = $c2->{$_} - $c1->{$_}; }
242 root 1.1
243 elmex 1.3 unless ($iring->is_better_than ($ringo)) {
244 root 1.1 $pl->message ("This plan doesn't improve anything, you find yourself puzzled about what you missed...");
245     return;
246     }
247    
248     my $remcosts = $ingred->check_costs (\%cdiff);
249    
250     if (grep { $_ > 0 } values %$remcosts) {
251     $pl->message ("You want to make a " . $iring->to_string . ": " . $iring->analyze ($sk, $pl));
252     $pl->message ("You recognize that you are short of: "
253     . (join ", ",
254     map { my $cost = $remcosts->{$_}; $cost . " " . ($cost > 1 ? "times" : "time") . " " . ingred_alias ($_) }
255     grep { $remcosts->{$_} > 0 } keys %$remcosts));
256    
257     if ($pl->flag (cf::FLAG_WIZ)) {
258     $iring->wiz_analyze ($pl);
259     }
260     } else {
261     if (!$pl->flag (cf::FLAG_WIZ)) {
262     $ingred->check_costs (\%cdiff, 1);
263     }
264 elmex 1.7 make_ring ($chdl, $ingred, $iring, $value, $sk, $pl);
265 root 1.1 }
266     }
267     } else {
268     $pl->message ("You've got no idea what you are planning to do!");
269     }
270     }
271     };
272     $@ and warn "ERROR: $@\n";
273     }
274 root 1.2 );
275 root 1.1
276 root 1.15 Jeweler::read_config "res/jeweler.yaml";
277 root 1.10