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.1 by root, Fri Dec 15 19:29:18 2006 UTC vs.
Revision 1.9 by root, Sun Jun 17 13:56:09 2007 UTC

12 "/pup_land/nurnberg/apartment/main" => [ 300, "nürnberg", "sauerkraut"], 12 "/pup_land/nurnberg/apartment/main" => [ 300, "nürnberg", "sauerkraut"],
13 "/pup_land/lone_town/apartment/groundfloor" => [50000, "lone town", "looney"], 13 "/pup_land/lone_town/apartment/groundfloor" => [50000, "lone town", "looney"],
14 "/brest/apartments/brest_town_house" => [30000, "brest", "brecht"], 14 "/brest/apartments/brest_town_house" => [30000, "brest", "brecht"],
15); 15);
16 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
29# we have to special case some special cases :) 17# we have to special case some special cases :)
30sub reject_entry { 18sub reject_entry {
31 my ($pl) = @_; 19 my ($pl) = @_;
32 20
21 my $prev_pos = $pl->ob->{_prev_pos};
22 $pl->ob->goto ($prev_pos ? @$prev_pos : ("/world/world_105_115", 2, 34));
23
33 cf::override; 24 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} 25}
41 26
42sub update_balance { 27sub update_balance {
43 my ($pl) = @_; 28 my ($pl) = @_;
44 29
73 if ($deduct <= $pl->ob->{bank_balance}) { 58 if ($deduct <= $pl->ob->{bank_balance}) {
74 cf::db_put rent => balance => $deduct + cf::db_get rent => "balance"; 59 cf::db_put rent => balance => $deduct + cf::db_get rent => "balance";
75 $pl->ob->{bank_balance} -= $deduct; 60 $pl->ob->{bank_balance} -= $deduct;
76 $pl->{rent}{balance} -= $deduct; 61 $pl->{rent}{balance} -= $deduct;
77 $pl->ob->reply (undef, "Something whispers into your ear:\n" 62 $pl->ob->reply (undef, "Something whispers into your ear:\n"
78 . "Sir, we deducted your apartment rent ($deduct_string) from your bank account."); 63 . "Your highness, we deducted your apartment rent ($deduct_string) from your bank account.");
79 } else { 64 } else {
80 $pl->ob->reply (undef, "Something whispers into your ear:\n" 65 $pl->ob->reply (undef, "Something whispers into your ear:\n"
81 . "Sir, we want to deduct the apartment rent ($deduct_string), but the bank informed us that they cannot perform the transaction. " 66 . "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."); 67 . "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 } 68 }
84} 69}
85 70
86sub check_balance { 71sub check_balance {
130 115
131 update_balance $pl; 116 update_balance $pl;
132 117
133 $pl->{rent}{apartment}{$apartment} = undef; 118 $pl->{rent}{apartment}{$apartment} = undef;
134 119
135 $pl->ob->reply (undef, "Wonderful decision, sir! " 120 $pl->ob->reply (undef, "Wonderful decision, your highness! "
136 . "We told the proprietor in $apartment{$apartment}[1] to expect you and let you in. " 121 . "We told the proprietor in $apartment{$apartment}[1] to expect you and let you in. "
137 . "We are sure you will be satisfied!"); 122 . "We are sure you will be satisfied!");
138}; 123};
139 124
140cf::register_script_function "rent::stop" => sub { 125cf::register_script_function "rent::stop" => sub {
148 delete $pl->{rent}{apartment}{$apartment}; 133 delete $pl->{rent}{apartment}{$apartment};
149 134
150 $pl->ob->reply (undef, "I am sorry to hear that, we will immediately stop charging you for your apartment, of course."); 135 $pl->ob->reply (undef, "I am sorry to hear that, we will immediately stop charging you for your apartment, of course.");
151}; 136};
152 137
153cf::attach_to_players prio => 100, 138cf::player->attach (
139 prio => 100,
154 on_login => sub { 140 on_login => sub {
155 my ($pl) = @_; 141 my ($pl) = @_;
156 142
157 $pl->{rent}{last_offline_check} ||= time; 143 $pl->{rent}{last_offline_check} ||= time;
158 144
163 } else { 149 } else {
164 $pl->{rent}{last_online_check} = time; 150 $pl->{rent}{last_online_check} = time;
165 } 151 }
166 152
167 update_balance $pl; 153 update_balance $pl;
168 }; 154 },
155);
169 156
170cf::register_map_attachment rent => 157cf::map::attachment rent =>
171 on_enter => sub { 158 on_enter => sub {
172 my ($map, $pl, $x, $y) = @_; 159 my ($map, $pl, $x, $y) = @_;
173 160
174 # can freely enter homes of other people 161 my $pfx = sprintf "~%s/", $pl->ob->name;
175 {
176 my $path = sprintf "%s/%s/%s/",
177 cf::localdir, cf::playerdir, $pl->ob->name;
178 162
163 # only do something if entering ones own apartment
179 return if $path ne substr $map->path, 0, length $path; 164 if ($pfx eq substr $map->path, 0, length $pfx) {
165 for my $path (keys %{ $pl->{rent}{apartment} }) {
166 $path = sprintf "~%s%s", $pl->ob->name, $path;
167
168 if ($map->path eq $path) {
169 if (check_balance $pl) {
170 $pl->ob->reply (undef, "Welcome to your apartment, your highness!");
171 } else {
172 $pl->ob->reply (undef, "We are sorry, your highness, you have to pay your rent first.");
173 reject_entry $pl;
174 }
175
176 return;
177 }
178 }
179
180 $pl->ob->reply (undef, "Your highness, you have to rent this apartment in The Apartment Shop in Scorn first!");
181 reject_entry $pl;
180 } 182 }
181
182 for my $path (keys %{ $pl->{rent}{apartment} }) {
183 $path =~ y/\//_/;
184 $path = sprintf "%s/%s/%s/%s",
185 cf::localdir, cf::playerdir, $pl->ob->name, $path;
186
187 if ($map->path eq $path) {
188 if (check_balance $pl) {
189 $pl->ob->reply (undef, "Welcome to your apartment, sir!");
190 } else {
191 $pl->ob->reply (undef, "We are sorry, sir, you have to pay your rent first.");
192 reject_entry $pl;
193 }
194
195 return;
196 }
197 }
198
199 $pl->ob->reply (undef, "Sir, you have to rent this apartment in The Apartment Shop in Scorn first!");
200 reject_entry $pl;
201 }, 183 },
202; 184;
203 185
204Event->timer (after => 60, interval => 3600, data => cf::WF_AUTOCANCEL, cb => sub { 186our $RENT_TIMER = Event->timer (
187 reentrant => 0,
188 after => 60,
189 interval => 3600,
190 data => cf::WF_AUTOCANCEL,
191 cb => sub {
205 pay_balance $_ for cf::player::list; 192 pay_balance $_ for cf::player::list;
193 },
206}); 194);
207 195

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines