ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/bank.ext
Revision: 1.12
Committed: Mon May 22 19:49:48 2006 UTC (18 years ago) by pippijn
Branch: MAIN
Changes since 1.11: +17 -4 lines
Log Message:
Improved messages returned by the DM command.

File Contents

# Content
1 #! perl
2
3 # The international bank script. There are five commands one can
4 # give the banker in-game:
5 # - help, will show the usage information
6 # - deposit, can deposit a certain amount of a given currency unit
7 # - withdraw, can give out a certain amount of a given currency unit
8 # provided, the bank account has this amount of money
9 # - exchange, will exchange between imperials and platinum coins
10 # - balance, simply shows how much money one has on his/her account.
11 #
12 # TODO:
13 # - Comment more steps
14 # - Implement exchange()
15
16 # The units are being used in each sub so they are declared globally.
17 my %unit = (
18 silver => 1,
19 gold => 10,
20 platina => 50,
21 imperial => 10000,
22 );
23
24 # Subroutine just to calculate exchange rates.
25 sub calc_exchange_rate {
26 my ($value, $from_cur, $to_cur) = @_;
27
28 $value * $unit{$from_cur} / $unit{$to_cur}
29 }
30
31 # Calculates and returns how much money someone has starting with the
32 # highest value currency going down. Think of it like having the date
33 # and time in the format of 2006-05-19 03:21:31 UTC instead of 1148001691
34 # seconds since 1970-01-01 00:00:00 UTC.
35 sub balance {
36 my ($who, $is_wiz) = @_;
37 my $balance = $who->{bank_balance};
38
39 unless ($is_wiz) {
40 return "Sorry, you have no balance."
41 unless $balance;
42 } else {
43 return $who->name." has no balance."
44 unless $balance;
45 }
46
47 my $imperials = calc_exchange_rate $balance, "silver", "imperial";
48 my $platinum = calc_exchange_rate $imperials - (int $imperials), "imperial", "platina";
49 my $gold = calc_exchange_rate $platinum - (int $platinum), "platina", "gold";
50 my $silver = calc_exchange_rate $gold - (int $gold), "gold", "silver";
51
52 my $account_info =
53 (int $imperials) . " imperials, "
54 . (int $platinum) . " platinum, "
55 . (int $gold) . " gold and about "
56 . (int $silver) ." silver coins.";
57
58 return "You have $account_info"
59 unless $is_wiz;
60
61 return $who->name." has $account_info";
62 }
63
64 sub transaction {
65 my ($who, $action, $amount, $currency) = @_;
66 my $pay = $amount * $unit{$currency};
67
68 return "We don't trade in that currency."
69 unless exists $unit{$currency};
70
71 return "You can not $action fractions."
72 unless $amount =~ /^\d+$/;
73
74 # First check for possible overflow and user stupidity
75 if ($amount > 10000) {
76 return "Sorry, we do not handle more than 10000 units for one ".$action.".";
77 } elsif ($amount == 0) {
78 return "You can not ".$action." nothing.";
79 } elsif ($amount < 0) {
80 return "You can not ".$action." negative values.";
81 }
82
83 # Here we handle the transactions
84 if ($action eq "deposit") {
85 if ($who->pay_amount ($pay)) {
86 $who->{bank_balance} += $pay;
87 return "$amount $currency received.";
88 } else {
89 return "You don't have enough money with you.";
90 }
91 } elsif ($action eq "withdraw") {
92 if ($who->{bank_balance} - $pay > 0) {
93 $who->{bank_balance} -= $pay;
94 if ($currency eq "imperial") {
95 my $money = cf::object::new "imperial";
96 $money->set_property (1, 24, $amount);
97 $money->insert_in_ob ($who);
98 } else {
99 my $money = cf::object::new $currency . "coin";
100 $money->set_property (1, 24, $amount);
101 $money->insert_in_ob ($who);
102 }
103 return "Withdrew $amount $currency";
104 }
105 }
106 }
107
108 sub help {
109 my ($command) = @_;
110
111 if ($command eq "") {
112 return "You can:
113 deposit <amount> <currency>
114 withdraw <amount> <currency>
115 balance
116 exchange <amount> <direction>
117 help <topic>";
118 } elsif ($command eq "deposit") {
119 return "You can deposit some of the money you don't currently use in our bank. To do this, ask me to:
120 deposit <amount> <currency>\nSee help exchange for our currencies.";
121 } elsif ($command eq "withdraw") {
122 return "To get the money you stored in our system back, just say:
123 withdraw <amount> <currency>";
124 } elsif ($command eq "balance") {
125 return "I can tell you how much money you are saving in our bank, just ask me about your balance.";
126 } elsif ($command eq "exchange") {
127 return "We exchange between imperial notes and platinum coins at a very low price. To change from platinum to imperials, say:
128 exchange <amount> platina\nTo change from imperials to platinum, say:
129 exchange <amount> imperial\nWe currently only exchange between these two currencies. If you want to know more about exchange rates, ask me:
130 help exchange rates\nThanks for using our bank.";
131 } elsif ($command eq "exchange rates") {
132 my @units = sort { $unit{$b} <=> $unit{$a} } keys %unit;
133 my $exchange_rates = "Here is a list of exchange rates:\n";
134
135 for my $from_cur_nr (0 .. $#units) {
136 for my $to_cur_nr ($from_cur_nr+1 .. $#units) {
137 $exchange_rates = $exchange_rates."One $units[$from_cur_nr] is ".calc_exchange_rate(1, $units[$from_cur_nr], $units[$to_cur_nr])." $units[$to_cur_nr]\n";
138 }
139 }
140 return $exchange_rates."This may change a bit with the stock markets but don't expect it to be much.";
141 }
142 }
143
144 sub on_say {
145 my ($event, $ob, $who, $msg) = @_;
146 my ($cmd, $arguments) = split /\s+/, $msg, 2;
147 my ($amount, $currency) = split /\s+/, $arguments, 2;
148 my $name = $ob->name;
149 my $service_charge = 5;
150 my @units = sort keys %unit;
151 my $units = join ", ", @units;
152 my $fees = - ($service_charge / 100) + 1;
153
154 if ($cmd eq "balance") {
155 if ($who->flag (cf::FLAG_WIZ)) {
156 if (my $player = cf::player::find $arguments) {
157 $who->message ("$name says: ".balance ($player->ob, 1), cf::NDI_WHITE);
158 }
159 } else {
160 $who->message ("$name says: ".balance ($who, 0), cf::NDI_WHITE);
161 }
162
163 } elsif ($cmd eq "balance" and !$arguments) {
164 $who->message ("$name says: Balance of whom?", cf::NDI_WHITE);
165
166 } elsif ($cmd eq "deposit" and $currency) {
167 $who->message ("$name says: " . (transaction $who, "deposit", $amount, $currency), cf::NDI_WHITE);
168 $who->message ("$name says: " . (balance $who), cf::NDI_WHITE);
169
170 } elsif ($cmd eq "deposit" and $amount and $currency eq "") {
171 $who->message ("$name says: Deposit $amount of what: $units", cf::NDI_WHITE);
172
173 } elsif ($cmd eq "deposit" and $amount eq "" and $currency eq "") {
174 $who->message ("$name says: How much do you want to deposit?", cf::NDI_WHITE);
175
176 } elsif ($cmd eq "withdraw" and $currency) {
177 $who->message ("$name says: " . (transaction $who, "withdraw", $amount, $currency), cf::NDI_WHITE);
178 $who->message ("$name says: " . (balance $who), cf::NDI_WHITE);
179
180 } elsif ($cmd eq "withdraw" and $amount and $currency eq "") {
181 $who->message ("$name says: Withdraw $amount of what: $units", cf::NDI_WHITE);
182
183 } elsif ($cmd eq "withdraw" and $amount eq "" and $currency eq "") {
184 $who->message ("$name says: How much do you want to withdraw?", cf::NDI_WHITE);
185
186 } elsif ($cmd eq "help" or $cmd eq "yes" and $arguments eq "") {
187 $who->message ("$name says: " . (help $arguments), cf::NDI_WHITE);
188
189 } elsif ($cmd eq "help" or $cmd eq "yes" and $arguments ne "") {
190 $who->message ("$name says: " . (help), cf::NDI_WHITE);
191
192 } else {
193 $who->message ("$name says: Do you need help?", cf::NDI_WHITE);
194 }
195 }
196