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.3 by root, Thu Jan 4 18:38:22 2007 UTC vs.
Revision 1.29 by root, Fri Apr 16 02:37:50 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines