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

Comparing deliantra/server/ext/rent.ext (file contents):
Revision 1.2 by root, Thu Dec 21 22:41:34 2006 UTC vs.
Revision 1.16 by root, Sat Oct 24 11:10:46 2009 UTC

4 4
5my %apartment = ( 5my %apartment = (
6 "/scorn/apartment/apartments" => [ 1, "scorn", "skorn"], 6 "/scorn/apartment/apartments" => [ 1, "scorn", "skorn"],
7 "/santo_dominion/sdomino_appartment" => [ 10, "santo dominion", "domino"], 7 "/santo_dominion/sdomino_appartment" => [ 10, "santo dominion", "domino"],
8 "/darcap/darcap/apartment" => [ 30, "darcap", "thecap"], 8 "/darcap/darcap/apartment" => [ 30, "darcap", "thecap"],
9 "/celvear_port/tower2/tower2" => [ 100, "celvear port", "kevlar"],
9 "/navar_city/apartments/apartment" => [ 250, "navar", "navar"], 10 "/navar_city/apartments/apartment" => [ 250, "navar", "navar"],
10 "/azumauindo/ranbounagisatoshi/apartments/sapartment" => [ 100, "乱暴渚都市", "benjo"], 11 "/azumauindo/ranbounagisatoshi/apartments/sapartment" => [ 100, "乱暴渚都市", "benjo"],
11 "/azumauindo/suno-yamatoshi/apartments/lapartment1" => [ 1000, "スノー大和島根", "sama"], 12 "/azumauindo/suno-yamatoshi/apartments/lapartment1" => [ 1000, "スノー大和島根", "sama"],
13 "/elmex/jeweler/jeweler_inn_upper" => [ 500, "jeweler town", "jewelor"],
12 "/pup_land/nurnberg/apartment/main" => [ 300, "nürnberg", "sauerkraut"], 14 "/pup_land/nurnberg/apartment/main" => [ 300, "nürnberg", "sauerkraut"],
15 "/lostwages/petapartment" => [ 5000, "lostwages", "losvegas"],
13 "/pup_land/lone_town/apartment/groundfloor" => [50000, "lone town", "looney"], 16 "/pup_land/lone_town/apartment/groundfloor" => [50000, "lone town", "looney"],
14 "/brest/apartments/brest_town_house" => [30000, "brest", "brecht"], 17 "/brest/apartments/brest_town_house" => [30000, "brest", "brecht"],
15); 18);
16
17sub teleport {
18 my ($pl, $map, $x, $y) = @_;
19
20 my $portal = cf::object::new "exit";
21
22 $portal->slaying ($map);
23 $portal->stats->hp ($x);
24 $portal->stats->sp ($y);
25 $portal->apply ($pl->ob);
26 $portal->destroy;
27}
28 19
29# we have to special case some special cases :) 20# we have to special case some special cases :)
30sub reject_entry { 21sub reject_entry {
31 my ($pl) = @_; 22 my ($pl) = @_;
32 23
24 my $prev_pos = $pl->ob->{_prev_pos};
25 $pl->ob->goto ($prev_pos ? @$prev_pos : ("/world/world_105_115", 2, 34));
26
33 cf::override; 27 cf::override;
34
35 teleport $pl, "/world/world_105_115", 2, 34
36 unless
37 $pl->ob->map
38 && $pl->ob->map->path !~ /nimbus/
39 && $pl->ob->map->path !~ m%/var/crossfire/players/%;
40} 28}
41 29
42sub update_balance { 30sub update_balance {
43 my ($pl) = @_; 31 my ($pl) = @_;
44 32
60} 48}
61 49
62sub pay_balance { 50sub pay_balance {
63 my ($pl) = @_; 51 my ($pl) = @_;
64 52
53 cf::cede_to_tick;
54
65 update_balance $pl; 55 update_balance $pl;
66 56
67 return unless $pl->{rent}{balance} > 0; 57 return unless $pl->{rent}{balance} > 0;
68 58
69 my $deduct = cf::ceil $pl->{rent}{balance}; 59 my $deduct = cf::ceil $pl->{rent}{balance};
72 62
73 if ($deduct <= $pl->ob->{bank_balance}) { 63 if ($deduct <= $pl->ob->{bank_balance}) {
74 cf::db_put rent => balance => $deduct + cf::db_get rent => "balance"; 64 cf::db_put rent => balance => $deduct + cf::db_get rent => "balance";
75 $pl->ob->{bank_balance} -= $deduct; 65 $pl->ob->{bank_balance} -= $deduct;
76 $pl->{rent}{balance} -= $deduct; 66 $pl->{rent}{balance} -= $deduct;
77 $pl->ob->reply (undef, "Something whispers into your ear:\n" 67 $pl->ob->reply (undef, "Something whispers into your ear: "
78 . "Sir, we deducted your apartment rent ($deduct_string) from your bank account."); 68 . "Your highness, we deducted your apartment rent ($deduct_string) from your bank account.");
79 } else { 69 } else {
80 $pl->ob->reply (undef, "Something whispers into your ear:\n" 70 $pl->ob->reply (undef, "Something whispers into your ear: "
81 . "Sir, we want to deduct the apartment rent ($deduct_string), but the bank informed us that they cannot perform the transaction. " 71 . "Your highness, we want to deduct the apartment rent ($deduct_string), but the bank informed us that they cannot perform the transaction. "
82 . "Please even out your balance so we can deduct the fees, otherwise we will be forced to shut down your access to the apartment."); 72 . "Please even out your balance so we can deduct the fees, otherwise we will be forced to shut down your access to the apartment.");
83 } 73 }
84} 74}
85 75
86sub check_balance { 76sub check_balance {
105 95
106 while (my ($k, $v) = each %apartment) { 96 while (my ($k, $v) = each %apartment) {
107 my $type = exists $pl->{rent}{apartment}{$k} ? 1 : 2; 97 my $type = exists $pl->{rent}{apartment}{$k} ? 1 : 2;
108 98
109 $pl->ob->reply (undef, "model \"$v->[2]\", situated in $v->[1] (" 99 $pl->ob->reply (undef, "model \"$v->[2]\", situated in $v->[1] ("
110 . (cf::cost_string_from_value $v->[0]) . "/hr)") 100 . (cf::cost_string_from_value $v->[0]) . "/hr)\n")
111 if $type & $types; 101 if $type & $types;
112 } 102 }
113}; 103};
114 104
115cf::register_script_function "rent::status" => sub { 105cf::register_script_function "rent::status" => sub {
130 120
131 update_balance $pl; 121 update_balance $pl;
132 122
133 $pl->{rent}{apartment}{$apartment} = undef; 123 $pl->{rent}{apartment}{$apartment} = undef;
134 124
135 $pl->ob->reply (undef, "Wonderful decision, sir! " 125 $pl->ob->reply (undef, "Wonderful decision, your highness! "
136 . "We told the proprietor in $apartment{$apartment}[1] to expect you and let you in. " 126 . "We told the proprietor in $apartment{$apartment}[1] to expect you and let you in. "
137 . "We are sure you will be satisfied!"); 127 . "We are sure you will be satisfied!");
138}; 128};
139 129
140cf::register_script_function "rent::stop" => sub { 130cf::register_script_function "rent::stop" => sub {
158 $pl->{rent}{last_offline_check} ||= time; 148 $pl->{rent}{last_offline_check} ||= time;
159 149
160 if ($pl->{rent}{last_online_check}) { 150 if ($pl->{rent}{last_online_check}) {
161 $pl->{rent}{last_online_check} = time 151 $pl->{rent}{last_online_check} = time
162 - List::Util::min 3600, 152 - List::Util::min 3600,
163 $pl->ob->get_ob_key_value ("schmorplog_last_save") - $pl->{rent}{last_online_check}; 153 $pl->ob->kv_get ("schmorplog_last_save") - $pl->{rent}{last_online_check};
164 } else { 154 } else {
165 $pl->{rent}{last_online_check} = time; 155 $pl->{rent}{last_online_check} = time;
166 } 156 }
167 157
168 update_balance $pl; 158 update_balance $pl;
171 161
172cf::map::attachment rent => 162cf::map::attachment rent =>
173 on_enter => sub { 163 on_enter => sub {
174 my ($map, $pl, $x, $y) = @_; 164 my ($map, $pl, $x, $y) = @_;
175 165
176 # can freely enter homes of other people 166 my $pfx = sprintf "~%s/", $pl->ob->name;
177 {
178 my $path = sprintf "%s/%s/%s/",
179 cf::localdir, cf::playerdir, $pl->ob->name;
180 167
168 # only do something if entering ones own apartment
181 return if $path ne substr $map->path, 0, length $path; 169 if ($pfx eq substr $map->path, 0, length $pfx) {
170 for my $path (keys %{ $pl->{rent}{apartment} }) {
171 $path = sprintf "~%s%s", $pl->ob->name, $path;
172
173 if ($map->path eq $path) {
174 if (check_balance $pl) {
175 $pl->ob->reply (undef, "Welcome to your apartment, your highness!");
176 } else {
177 $pl->ob->reply (undef, "We are sorry, your highness, you have to pay your rent first.");
178 reject_entry $pl;
179 }
180
181 return;
182 }
183 }
184
185 $pl->ob->reply (undef, "Your highness, you have to rent this apartment in The Apartment Shop in Scorn or other apartment shops first!");
186 reject_entry $pl;
182 } 187 }
183
184 for my $path (keys %{ $pl->{rent}{apartment} }) {
185 $path =~ y/\//_/;
186 $path = sprintf "%s/%s/%s/%s",
187 cf::localdir, cf::playerdir, $pl->ob->name, $path;
188
189 if ($map->path eq $path) {
190 if (check_balance $pl) {
191 $pl->ob->reply (undef, "Welcome to your apartment, sir!");
192 } else {
193 $pl->ob->reply (undef, "We are sorry, sir, you have to pay your rent first.");
194 reject_entry $pl;
195 }
196
197 return;
198 }
199 }
200
201 $pl->ob->reply (undef, "Sir, you have to rent this apartment in The Apartment Shop in Scorn first!");
202 reject_entry $pl;
203 }, 188 },
204; 189;
205 190
206Event->timer (after => 60, interval => 3600, data => cf::WF_AUTOCANCEL, cb => sub { 191our $RENT_TIMER = cf::periodic 3600, Coro::unblock_sub {
207 pay_balance $_ for cf::player::list; 192 pay_balance $_ for cf::player::list;
208}); 193};
209 194

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines