ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/rent.ext
Revision: 1.3
Committed: Thu Jan 4 18:38:22 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.2: +3 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3     use List::Util;
4    
5     my %apartment = (
6     "/scorn/apartment/apartments" => [ 1, "scorn", "skorn"],
7     "/santo_dominion/sdomino_appartment" => [ 10, "santo dominion", "domino"],
8     "/darcap/darcap/apartment" => [ 30, "darcap", "thecap"],
9     "/navar_city/apartments/apartment" => [ 250, "navar", "navar"],
10     "/azumauindo/ranbounagisatoshi/apartments/sapartment" => [ 100, "乱暴渚都市", "benjo"],
11     "/azumauindo/suno-yamatoshi/apartments/lapartment1" => [ 1000, "スノー大和島根", "sama"],
12     "/pup_land/nurnberg/apartment/main" => [ 300, "nürnberg", "sauerkraut"],
13     "/pup_land/lone_town/apartment/groundfloor" => [50000, "lone town", "looney"],
14     "/brest/apartments/brest_town_house" => [30000, "brest", "brecht"],
15     );
16    
17     sub 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 :)
30     sub reject_entry {
31     my ($pl) = @_;
32    
33     cf::override;
34    
35 root 1.3 $pl->goto_map ("/world/world_105_115", 2, 34)
36 root 1.1 unless
37     $pl->ob->map
38 root 1.3 && !$pl->ob->map->{path}{user_rel};
39 root 1.1 }
40    
41     sub update_balance {
42     my ($pl) = @_;
43    
44     my $NOW = time;
45    
46     # 1 silver per day per level per apartment of kingdom tax
47     my $offline = (List::Util::min 30, ($NOW - $pl->{rent}{last_offline_check}) / 86400)
48     * (cf::exp_to_level $pl->ob->stats->exp)
49     * scalar keys %{ $pl->{rent}{apartment} };
50    
51     # once per hour per map rented
52     my $online = ($NOW - $pl->{rent}{last_online_check}) / 3600
53     * List::Util::sum map $apartment{$_}[0], keys %{ $pl->{rent}{apartment} };
54    
55     $pl->{rent}{last_offline_check} = $NOW;
56     $pl->{rent}{last_online_check} = $NOW;
57    
58     $pl->{rent}{balance} += $offline + $online;
59     }
60    
61     sub pay_balance {
62     my ($pl) = @_;
63    
64     update_balance $pl;
65    
66     return unless $pl->{rent}{balance} > 0;
67    
68     my $deduct = cf::ceil $pl->{rent}{balance};
69    
70     my $deduct_string = cf::cost_string_from_value $deduct;
71    
72     if ($deduct <= $pl->ob->{bank_balance}) {
73     cf::db_put rent => balance => $deduct + cf::db_get rent => "balance";
74     $pl->ob->{bank_balance} -= $deduct;
75     $pl->{rent}{balance} -= $deduct;
76     $pl->ob->reply (undef, "Something whispers into your ear:\n"
77     . "Sir, we deducted your apartment rent ($deduct_string) from your bank account.");
78     } else {
79     $pl->ob->reply (undef, "Something whispers into your ear:\n"
80     . "Sir, 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.");
82     }
83     }
84    
85     sub check_balance {
86     my ($pl) = @_;
87    
88     pay_balance $pl if $pl->{rent}{balance} > 0;
89    
90     $pl->{rent}{balance} <= 0
91     }
92    
93     sub find_apartment {
94     my ($pl, $name) = @_;
95    
96     my $apartment = (grep $apartment{$_}[2] eq $name, keys %apartment)[0]
97     or $pl->ob->reply (undef, "Sorry, but we do not offer model '$name' for rent.");
98    
99     $apartment
100     }
101    
102     cf::register_script_function "rent::overview" => sub {
103     my ($pl, $types) = @_;
104    
105     while (my ($k, $v) = each %apartment) {
106     my $type = exists $pl->{rent}{apartment}{$k} ? 1 : 2;
107    
108     $pl->ob->reply (undef, "model \"$v->[2]\", situated in $v->[1] ("
109     . (cf::cost_string_from_value $v->[0]) . "/hr)")
110     if $type & $types;
111     }
112     };
113    
114     cf::register_script_function "rent::status" => sub {
115     my ($pl, $types) = @_;
116    
117     if ($pl->{rent}{balance} <= 0) {
118     $pl->ob->reply (undef, "You have no debts to pay.");
119     } else {
120     $pl->ob->reply (undef, "You owe us " . (cf::cost_string_from_value $pl->{rent}{balance}) . ".");
121     }
122     };
123    
124     cf::register_script_function "rent::rent" => sub {
125     my ($pl, $apartment) = @_;
126    
127     $apartment = find_apartment $pl, $apartment
128     or return;
129    
130     update_balance $pl;
131    
132     $pl->{rent}{apartment}{$apartment} = undef;
133    
134     $pl->ob->reply (undef, "Wonderful decision, sir! "
135     . "We told the proprietor in $apartment{$apartment}[1] to expect you and let you in. "
136     . "We are sure you will be satisfied!");
137     };
138    
139     cf::register_script_function "rent::stop" => sub {
140     my ($pl, $apartment) = @_;
141    
142     $apartment = find_apartment $pl, $apartment
143     or return;
144    
145     update_balance $pl;
146    
147     delete $pl->{rent}{apartment}{$apartment};
148    
149     $pl->ob->reply (undef, "I am sorry to hear that, we will immediately stop charging you for your apartment, of course.");
150     };
151    
152 root 1.2 cf::player->attach (
153     prio => 100,
154 root 1.1 on_login => sub {
155     my ($pl) = @_;
156    
157     $pl->{rent}{last_offline_check} ||= time;
158    
159     if ($pl->{rent}{last_online_check}) {
160     $pl->{rent}{last_online_check} = time
161     - List::Util::min 3600,
162     $pl->ob->get_ob_key_value ("schmorplog_last_save") - $pl->{rent}{last_online_check};
163     } else {
164     $pl->{rent}{last_online_check} = time;
165     }
166    
167     update_balance $pl;
168 root 1.2 },
169     );
170 root 1.1
171 root 1.2 cf::map::attachment rent =>
172 root 1.1 on_enter => sub {
173     my ($map, $pl, $x, $y) = @_;
174    
175     # can freely enter homes of other people
176     {
177     my $path = sprintf "%s/%s/%s/",
178     cf::localdir, cf::playerdir, $pl->ob->name;
179    
180     return if $path ne substr $map->path, 0, length $path;
181     }
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     },
203     ;
204    
205 root 1.3 our $RENT_TIMER = Event->timer (after => 60, interval => 3600, data => cf::WF_AUTOCANCEL, cb => sub {
206 root 1.1 pay_balance $_ for cf::player::list;
207     });
208