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

Comparing deliantra/server/ext/login.ext (file contents):
Revision 1.17 by root, Mon Jan 8 14:11:05 2007 UTC vs.
Revision 1.47 by root, Fri Apr 27 17:16:13 2007 UTC

1#! perl 1#! perl # MANDATORY
2 2
3# login handling 3# login handling
4 4
5use Fcntl; 5use Fcntl;
6use Coro::AIO; 6use Coro::AIO;
7 7use List::Util qw(min max);
8my $PLAYERDIR = sprintf "%s/%s", cf::localdir, cf::playerdir;
9 8
10# paranoia function to overwrite a string-in-place 9# paranoia function to overwrite a string-in-place
11sub nuke_str { 10sub nuke_str {
12 substr $_[0], 0, (length $_[0]), "x" x length $_[0] 11 substr $_[0], 0, (length $_[0]), "x" x length $_[0]
13} 12}
14 13
15sub query { 14sub query {
16 my ($ns, $flags, $text) = @_; 15 my ($ns, $flags, $text) = @_;
17 16
18 my $current = $Coro::current; 17 my $current = $Coro::current;
19 $ns->query ($flags, $text, sub { $current->ready; $current = $_[0]; }); 18 $ns->query ($flags, $text, sub { $current->ready; $current = $_[0] });
20 Coro::schedule while ref $current; 19 Coro::schedule while ref $current;
21 20
22 $current 21 $current
23} 22}
24 23
25sub can_cleanup { 24sub can_cleanup {
26 my ($playerfile, $mtime) = @_; 25 my ($pl, $mtime) = @_;
27 26
28 my $age = time - $mtime; 27 my $age = time - $mtime;
29 my $level = $playerfile =~ /^level (\d+)$/m ? $1 : return; 28 my $level = $pl->ob->level;
30 29
31 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3 30 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3
32 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9 31 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9
33 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20 32 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20
34 || $age > 700 * 86400 # 2 years for everybody else 33 || $age > 700 * 86400 # 2 years for everybody else
55} 54}
56 55
57sub check_clean_save { 56sub check_clean_save {
58 my ($pl) = @_; 57 my ($pl) = @_;
59 58
60 unless (delete $pl->{clean_save}) { 59 if (my $time = delete $pl->{unclean_save}) {
60 $pl->ns->send_drawinfo (
61 "You didn't use a savebed to leave this realm. This is very dangerous, "
62 . "as lots of things could happen when you leave by other means, such as cave-ins, "
63 . "or monsters suddenly snapping your body. Better use a savebed next time.",
64 cf::NDI_RED
65 );
61 #d#TODO 66 #d#TODO
62 } 67 }
63} 68}
64 69
65# delete a player directory, be non-blocking AND synchronous... 70# delete a player directory, be non-blocking AND synchronous...
71 system "cd \Q$PLAYERDIR\E " 76 system "cd \Q$PLAYERDIR\E "
72 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null " 77 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null "
73 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)"; 78 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)";
74} 79}
75 80
81sub send_capabilities {
82 my ($ns) = @_;
83
84 return unless $ns->extcmd;
85
86 $ns->ext_event (capabilities =>
87 # id, name, flags (1 == 2d), edge length
88 tileset => [[1, "default 64x64 faceset", 1, 64], [0, "default 32x32 faceset", 1, 32]],
89 );
90}
91
92sub setup {
93 my ($ns, $args) = @_;
94
95 # run through the cmds of setup
96 # syntax is setup <cmdname1> <parameter> <cmdname2> <parameter> ...
97 #
98 # we send the status of the cmd back, or a FALSE is the cmd is the server unknown
99 # The client then must sort this out
100
101 my %setup = split / +/, $args;
102 while (my ($k, $v) = each %setup) {
103 if ($k eq "sound") {
104 $ns->sound ($v);
105
106 } elsif ($k eq "exp64") {
107 $setup{$k} = 1;
108
109 } elsif ($k eq "spellmon") {
110 $ns->monitor_spells ($v);
111
112 } elsif ($k eq "darkness") {
113 $ns->darkness ($v);
114
115 } elsif ($k eq "map1cmd") {
116 $ns->mapmode (cf::Map1Cmd) if $v > 0;
117
118 } elsif ($k eq "map1acmd") {
119 $ns->mapmode (cf::Map1aCmd) if $v > 0;
120
121 } elsif ($k eq "map2cmd") {
122 # gcfclient bug, map1acmd is sent too late
123 $ns->mapmode (cf::Map1aCmd);
124 $setup{$k} = "FALSE";
125
126 } elsif ($k eq "newmapcmd") {
127 $ns->newmapcmd ($v);
128
129 } elsif ($k eq "mapinfocmd") {
130 $ns->mapinfocmd ($v);
131
132 } elsif ($k eq "extcmd") {
133 $ns->extcmd ($v > 0);
134 send_capabilities $ns;
135
136 } elsif ($k eq "extmap") {
137 $ns->extmap ($v);
138
139 } elsif ($k eq "facecache") {
140 if (!$v) {
141 $v = 1;
142 $setup{$k} = $v;
143 $ns->send_drawinfo ("(trying to forcefully enable facecaching)", cf::NDI_RED);
144 }
145
146 $ns->facecache ($v);
147
148 } elsif ($k eq "faceset") {
149 $ns->faceset (0);
150 $setup{$k} = 0;
151 # $ns->image2 (1)
152
153 } elsif ($k eq "tileset") {
154 $setup{$k} = $ns->faceset ($v & 1);
155
156 } elsif ($k eq "itemcmd") {
157 # Version of the item protocol command to use. Currently,
158 # only supported versions are 1 and 2. Using a numeric
159 # value will make it very easy to extend this in the future.
160 $ns->itemcmd ($v) if $v >= 1 && $v <= 2;
161
162 $setup{$k} = $ns->itemcmd;
163
164 } elsif ($k eq "mapsize") {
165 my ($x, $y) = split /x/, $v;
166
167 $ns->mapx ($x = max 9, min cf::MAP_CLIENT_X, ($x - 1) | 1);
168 $ns->mapy ($y = max 9, min cf::MAP_CLIENT_Y, ($y - 1) | 1);
169
170 $setup{$k} = "${x}x${y}";
171
172 } elsif ($k eq "extendedMapInfos") {
173 $ns->ext_mapinfos ($v);
174
175 } elsif ($k eq "extendedTextInfos") {
176 $ns->has_readable_type ($v);
177
178 } elsif ($k eq "smoothing") { # cfplus-style smoothing
179 $ns->smoothing ($v);
180
181 } elsif ($k eq "fxix") {
182 $ns->fxix ($v);
183
184 } elsif ($k eq "msg") {
185 $ns->can_msg ($v);
186
187 } elsif ($k eq "excmd") {
188 # we support it
189
190 } else {
191 # other commands:
192 # sexp: no idea, probably for oudated servers
193 # tick: more stupidity, server should send a tick per tick
194
195 $setup{$k} = "FALSE";
196 }
197 }
198
199 $ns->send_packet (join " ", setup => %setup);
200
201 cf::datalog setup =>
202 request => $args,
203 reply => \%setup,
204 client => $ns->version,
205 ;
206}
207
76sub addme { 208sub addme {
77 my ($ns) = @_; 209 my ($ns) = @_;
78 210
79 $ns->destroy if $ns->pl; 211 if (!$ns->facecache)
212 {
213 $ns->send_drawinfo (<<EOF, cf::NDI_RED);
214
215
216***
217*** WARNING:
218*** Your client does not support face/image caching,
219*** or it has been disabled. Face caching is mandatory
220*** so please enable it or use a newer client.
221***
222*** Look at your client preferences:
223***
224*** CFPlus: all known versions automatically enable the facecache.
225*** cfclient: use the -cache commandline option.
226*** cfclient: map will not redraw automatically (bug).
227*** gcfclient: use -cache commandline option, or enable
228*** gcfclient: Client=>Configure=>Map & Image=>Cache Images.
229*** jcrossclient: your client is broken, use CFPlus or gcfclient.
230***
231***
232EOF
233 if ($ns->version =~ /jcrossclient/) {
234 # let them, for now
235 } else {
236 $ns->flush;
237 return $ns->destroy;
238 }
239
240 # $ns->facecache = true;
241 }
242
243 if ($ns->mapmode < cf::Map1aCmd) {
244 $ns->send_drawinfo (<<EOF, cf::NDI_RED);
245
246
247***
248*** WARNING:
249*** Your client is too old. Please upgrade to a newer version.
250EOF
251
252 $ns->flush;
253 return $ns->destroy;
254 }
255
256 $ns->pl and return $ns->destroy;
80 257
81 $ns->async (sub { 258 $ns->async (sub {
82 my ($user, $pass); 259 my ($user, $pass);
83 260
84 $ns->send_packet ("addme_success"); 261 $ns->send_packet ("addme_success");
99 $ns->send_drawinfo ( 276 $ns->send_drawinfo (
100 "That username is currently used in another login session. " 277 "That username is currently used in another login session. "
101 . "Chose another, or wait till the other session has ended.", 278 . "Chose another, or wait till the other session has ended.",
102 cf::NDI_RED 279 cf::NDI_RED
103 ); 280 );
104 } elsif ($user =~ /^[a-zA-Z0-9][a-zA-Z0-9\-_]{2,17}$/) { 281 } elsif ($user =~ /^[a-zA-Z0-9][a-zA-Z0-9\-_]{2,17}\z/) {
105 last; 282 last;
106 } else { 283 } else {
107 $ns->send_drawinfo ( 284 $ns->send_drawinfo (
108 "Your username contains illegal characters " 285 "Your username contains illegal characters "
109 . "(only a-z, A-Z and 0-9 are allowed), " 286 . "(only a-z, A-Z and 0-9 are allowed), "
145 local $cf::LOGIN_LOCK{$user} = 1; 322 local $cf::LOGIN_LOCK{$user} = 1;
146 323
147 check_playing $ns, $user and next; 324 check_playing $ns, $user and next;
148 325
149 # try to read the user file and check the password 326 # try to read the user file and check the password
150 if (my $fh = aio_open cf::player::path $user, O_RDONLY, 0) { 327 if (my $pl = cf::player::find $user) {
328 aio_stat $pl->path and next;
151 my $mtime = (stat $fh)[9]; 329 my $mtime = (stat _)[9];
152
153 0 < aio_read $fh, 0, 16384, my $buf, 0 or next;
154 $buf =~ /^password (\S+)$/m or next;
155 my $hash = $1; 330 my $hash = $pl->password;
156 331
157 if ($hash eq crypt $pass, $hash) { 332 if ($cf::CFG{ext_login_nocheck} or $hash eq crypt $pass, $hash) {
158 nuke_str $pass; 333 nuke_str $pass;
159 # password matches, wonderful 334 # password matches, wonderful
160 my $pl = cf::player::find $user or next; 335 my $pl = cf::player::find $user or next;
161 $pl->connect ($ns); 336 $pl->connect ($ns);
162 check_clean_save $pl; 337 check_clean_save $pl;
163 $pl->{clean_save} = 1;
164 last; 338 last;
165 } elsif (can_cleanup $buf, $mtime) { 339 } elsif (can_cleanup $pl, $mtime) {
166 Coro::Timer::sleep 1; 340 Coro::Timer::sleep 1;
167 341
168 $ns->send_drawinfo ( 342 $ns->send_drawinfo (
169 "Player exists, but password does not match. If this is your account, " 343 "Player exists, but password does not match. If this is your account, "
170 . "please try again. If not, you can now decide to take over this account " 344 . "please try again. If not, you can now decide to take over this account "
178 352
179 # check if the file hasn't changed 353 # check if the file hasn't changed
180 aio_stat cf::player::path $user and next; 354 aio_stat cf::player::path $user and next;
181 $mtime == (stat _)[9] or next; 355 $mtime == (stat _)[9] or next;
182 356
183 nuke_playerdir $user; 357 $pl->quit_character;
184 358
185 # fall through to creation 359 # fall through to creation
186 } else { 360 } else {
187 nuke_str $pass; 361 nuke_str $pass;
188 362
189 Coro::Timer::sleep 1; 363 Coro::Timer::sleep 1;
190 364
191 $ns->send_drawinfo ( 365 $ns->send_drawinfo (
192 "Wrong username or password. Please try again " 366 "Wrong username or password. Please try again "
193 . "(check for Numlock and other semi-obvious error sources).", 367 . "(check for Numlock and other semi-obvious error sources).",
368 cf::NDI_RED
369 );
370 next;
371 }
372 } else {
373 # unable to load the playerfile:
374 # check wether the player dir exists, which means the file is corrupted or
375 # something very similar.
376 if (!aio_stat cf::player::playerdir $user) {
377 $ns->send_drawinfo (
378 "Unable to retrieve this player. It might be a locked or broken account. "
379 . "If this is your account, ask a dungeon master for assistance. "
380 . "Otherwise choose a different login name.",
194 cf::NDI_RED 381 cf::NDI_RED
195 ); 382 );
196 next; 383 next;
197 } 384 }
198 } 385 }
244 } 431 }
245 432
246 $ob->set_animation (2); 433 $ob->set_animation (2);
247 $ob->add_statbonus; 434 $ob->add_statbonus;
248 435
249 $ns->send_drawinfo ($ob->msg, cf::NDI_BLUE); 436 while () {
250 $ns->send_packet (sprintf "query %d %s", cf::CS_QUERY_SINGLECHAR, 437 $ns->send_msg (-1, "chargen-race-title", ucfirst $pl->title);
438 my $msg = $ob->msg;
439 $msg =~ s/(?<=\S)\n(?=\S)/ /g;
440 $ns->send_msg (cf::NDI_BLUE, "chargen-race-description", $msg);
441
442 my $res = query $ns, cf::CS_QUERY_SINGLECHAR,
251 "Now choose a character.\nPress any key to change outlook.\nPress `d' when you're pleased.\n"); 443 "Now choose a character.\nPress any key to change outlook.\nPress `d' when you're pleased.\n";
252 444
253 $ns->state (cf::ST_CHANGE_CLASS); 445 last if $res =~ /[dD]/;
446
447 $pl->chargen_race_next;
448 }
449
450 $pl->chargen_race_done;
451
254 delete $pl->{deny_save};#d# too early 452 delete $pl->{deny_save};
255 453
256 last; 454 last;
257 } 455 }
258 }); 456 });
259} 457}
280 } else { 478 } else {
281 $ob->reply (undef, 479 $ob->reply (undef,
282 "Ok, quitting, hope to see you again.", 480 "Ok, quitting, hope to see you again.",
283 cf::NDI_UNIQUE | cf::NDI_RED); 481 cf::NDI_UNIQUE | cf::NDI_RED);
284 $pl->ns->flush; 482 $pl->ns->flush;
285 $pl->quit_character; 483 cf::async { $pl->quit_character };
286 } 484 }
287 }); 485 });
288}; 486};
289 487
290cf::object->attach ( 488cf::object->attach (
296 494
297 my $pl = $ob->contr; 495 my $pl = $ob->contr;
298 496
299 # update respawn position 497 # update respawn position
300 $pl->savebed ($bed->map->path, $bed->x, $bed->y); 498 $pl->savebed ($bed->map->path, $bed->x, $bed->y);
499 cf::async { $pl->save };
301 500
302 $pl->killer ("left"); 501 $pl->killer ("left");
303 $ob->check_score; 502 $ob->check_score;
304 503
305 $ob->reply (undef, "In the future, you will wake up here when you die."); 504 $ob->reply (undef, "In the future, you will wake up here when you die.");
329 528
330 if ($cleanly) { 529 if ($cleanly) {
331 $_->ob->message ("$name left the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list; 530 $_->ob->message ("$name left the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
332 } else { 531 } else {
333 $_->ob->message ("$name uncerimoniously disconnected.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list; 532 $_->ob->message ("$name uncerimoniously disconnected.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
334 delete $pl->{clean_save}; 533 $pl->{unclean_save} = $cf::RUNTIME;
335 } 534 }
336 }, 535 },
337); 536);
338 537
339cf::client->attach ( 538cf::client->attach (
340 on_addme => \&addme, 539 on_addme => \&addme,
540 on_setup => \&setup,
341); 541);
342 542
343############################################################################# 543#############################################################################
344 544
345our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs 545our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs
346our $SAVE_TIMEOUT = 200; # save players every n seconds 546our $SAVE_TIMEOUT = 20; # save players every n seconds
347our $SAVE_INTERVAL = 0.1; # save at max. one player every $SAVE_INTERVAL
348 547
349our $SCHEDULER = cf::async_ext { 548our $SCHEDULER = cf::async_ext {
549 my $schedule_interval = Coro::Event->timer (after => 1, interval => $SCHEDULE_INTERVAL);
350 while () { 550 while () {
351 Coro::Timer::sleep $SCHEDULE_INTERVAL; 551 $schedule_interval->next;
352 552
353 # this weird form of iteration over values is used because 553 # this weird form of iteration over values is used because
354 # the hash changes underneath us frequently, and for 554 # the hash changes underneath us frequently, and for
355 # keeps a direct reference to the value without (in 5.8 perls) 555 # keeps a direct reference to the value without (in 5.8 perls)
356 # keeping a reference, so this is prone to crashes or worse. 556 # keeping a reference, so this is prone to crashes or worse.
360 or next; 560 or next;
361 $pl->valid or next; 561 $pl->valid or next;
362 562
363 eval { 563 eval {
364 if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) { 564 if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) {
565 cf::wait_for_tick_begin;
365 $pl->save; 566 $pl->save;
366 Coro::Timer::sleep $SAVE_INTERVAL;
367 }
368 567
369 unless ($pl->active) { 568 unless ($pl->active) {
370 # check refcounts, this is tricky and needs to be adjusted to fit server internals 569 # check refcounts, this is tricky and needs to be adjusted to fit server internals
371 my $ob = $pl->ob; 570 my $ob = $pl->ob;
372 Scalar::Util::weaken $pl; 571 Scalar::Util::weaken $pl;
373 Scalar::Util::weaken $ob; 572 Scalar::Util::weaken $ob;
374 my $a_ = $pl->refcnt; 573 my $a_ = $pl->refcnt;#d#
375 my $b_ = $ob->refcnt; 574 my $b_ = $ob->refcnt;#d#
376 my $pl_ref = $pl->refcnt_cnt; 575 my $pl_ref = $pl->refcnt_cnt;
377 my $ob_ref = $ob->refcnt_cnt; 576 my $ob_ref = $ob->refcnt_cnt;
378 577
379 if ($pl_ref == 2 && $ob_ref == 1) {
380 warn "player-scheduler destroy ", $ob->name;#d#
381 delete $cf::PLAYER{$ob->name};
382 # pl_ref == one from object + one from cf::PLAYER 578 ## pl_ref == one from object + one from cf::PLAYER
383 # ob_ref == one from simply being an object 579 ## ob_ref == one from simply being an object
580 if ($pl_ref == 2 && $ob_ref == 1) {
581 warn "player-scheduler destroy ", $ob->name;#d#
582
583 # remove from sight and get fresh "copies"
584 $pl = delete $cf::PLAYER{$ob->name};
585 $ob = $pl->ob;
586
384 $ob->destroy; 587 $ob->destroy;
385 $pl->destroy; 588 $pl->destroy;
386 } else { 589 } else {
387 warn "player-scheduler refcnt ", $ob->name, " $pl_ref,$a_ $ob_ref,$b_\n";#d# 590 warn "player-scheduler refcnt ", $ob->name, " pp$pl_ref,pc$a_ op$ob_ref,oc$b_\n";#d#
591 }
388 } 592 }
389 } 593 }
390 }; 594 };
391 warn $@ if $@; 595 warn $@ if $@;
392 Coro::cede; 596 Coro::cede;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines