ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/jeweler.ext
(Generate patch)

Comparing deliantra/server/ext/jeweler.ext (file contents):
Revision 1.4 by elmex, Wed Jan 31 15:53:17 2007 UTC vs.
Revision 1.13 by elmex, Mon Oct 15 17:52:04 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines