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.11 by root, Sun Jan 7 02:39:14 2007 UTC vs.
Revision 1.19 by root, Mon Jan 8 19:25:53 2007 UTC

21 21
22 $current 22 $current
23} 23}
24 24
25sub can_cleanup { 25sub can_cleanup {
26 my ($playerfile, $mtime) = @_; 26 my ($pl, $mtime) = @_;
27 27
28 my $age = time - $mtime; 28 my $age = time - $mtime;
29 my $level = $playerfile =~ /^level (\d+)$/m ? $1 : return; 29 my $level = $pl->ob->level;
30 30
31 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3 31 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3
32 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9 32 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9
33 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20 33 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20
34 || $age > 700 * 86400 # 2 years for everybody else 34 || $age > 700 * 86400 # 2 years for everybody else
145 local $cf::LOGIN_LOCK{$user} = 1; 145 local $cf::LOGIN_LOCK{$user} = 1;
146 146
147 check_playing $ns, $user and next; 147 check_playing $ns, $user and next;
148 148
149 # try to read the user file and check the password 149 # try to read the user file and check the password
150 if (my $fh = aio_open cf::player::path $user, O_RDONLY, 0) { 150 if (my $pl = cf::player::find $user) {
151 aio_stat $pl->path and next;
151 my $mtime = (stat $fh)[9]; 152 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; 153 my $hash = $pl->password;
156 154
157 if ($hash eq crypt $pass, $hash) { 155 if ($cf::CFG{ext_login_nocheck} or $hash eq crypt $pass, $hash) {
158 nuke_str $pass; 156 nuke_str $pass;
159 # password matches, wonderful 157 # password matches, wonderful
160 my $pl = cf::player::find $user or next; 158 my $pl = cf::player::find $user or next;
161 $pl->connect ($ns); 159 $pl->connect ($ns);
162 check_clean_save $pl; 160 check_clean_save $pl;
161 $pl->{clean_save} = 1;
163 last; 162 last;
164 } elsif (can_cleanup $buf, $mtime) { 163 } elsif (can_cleanup $pl, $mtime) {
165 Coro::Timer::sleep 1; 164 Coro::Timer::sleep 1;
166 165
167 $ns->send_drawinfo ( 166 $ns->send_drawinfo (
168 "Player exists, but password does not match. If this is your account, " 167 "Player exists, but password does not match. If this is your account, "
169 . "please try again. If not, you can now decide to take over this account " 168 . "please try again. If not, you can now decide to take over this account "
177 176
178 # check if the file hasn't changed 177 # check if the file hasn't changed
179 aio_stat cf::player::path $user and next; 178 aio_stat cf::player::path $user and next;
180 $mtime == (stat _)[9] or next; 179 $mtime == (stat _)[9] or next;
181 180
182 nuke_playerdir $user; 181 $pl->quit_character;
183 182
184 # fall through to creation 183 # fall through to creation
185 } else { 184 } else {
186 nuke_str $pass; 185 nuke_str $pass;
187 186
255 last; 254 last;
256 } 255 }
257 }); 256 });
258} 257}
259 258
260# "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit." 259cf::register_command quit => sub {
261# "Quitting will delete your character.\nAre you sure you want to quit (y/n):" 260 my ($ob, $arg) = @_;
262# quit, quit_character, save 261
262 $ob->reply (undef,
263 "Quitting will delete your character PERMANENTLY: It will be gone forever and any progress will be lost. "
264 . "If you are sure you want to do this, then use the quit_character command instead of quit.",
265 cf::NDI_UNIQUE | cf::NDI_RED);
266};
267
268cf::register_command quit_character => sub {
269 my ($ob, $arg) = @_;
270
271 my $pl = $ob->contr;
272
273 $pl->ns->query (cf::CS_QUERY_SINGLECHAR, "Do you want to PERMANENTLY delete your character and all associated data (y/n)?", sub {
274 if ($_[0] !~ /^[yY]/) {
275 $ob->reply (undef,
276 "Ok, not not quitting then.",
277 cf::NDI_UNIQUE | cf::NDI_RED);
278 } else {
279 $ob->reply (undef,
280 "Ok, quitting, hope to see you again.",
281 cf::NDI_UNIQUE | cf::NDI_RED);
282 $pl->ns->flush;
283 $pl->quit_character;
284 }
285 });
286};
263 287
264cf::object->attach ( 288cf::object->attach (
265 type => cf::SAVEBED, 289 type => cf::SAVEBED,
266 on_apply => sub { 290 on_apply => sub {
267 my ($bed, $ob) = @_; 291 my ($bed, $ob) = @_;
268 292
269 return cf::override 0 unless $ob->type == cf::PLAYER; 293 return cf::override 0 unless $ob->type == cf::PLAYER;
270 294
271 my $pl = $ob->pl; 295 my $pl = $ob->contr;
272 296
273 # update respawn position 297 # update respawn position
274 $pl->savebed ($bed->map->path, $bed->x, $bed->y); 298 $pl->savebed ($bed->map->path, $bed->x, $bed->y);
275 299
276 $pl->killer ("left"); 300 $pl->killer ("left");
282 if ($_[0] !~ /^[yY]/) { 306 if ($_[0] !~ /^[yY]/) {
283 $pl->invoke (cf::EVENT_PLAYER_LOGOUT, 1); 307 $pl->invoke (cf::EVENT_PLAYER_LOGOUT, 1);
284 $pl->deactivate; 308 $pl->deactivate;
285 $pl->ns->destroy; 309 $pl->ns->destroy;
286 } else { 310 } else {
287 cf::async { 311 cf::async { $pl->save };
288 $pl->{clean_save} = 1;
289 $pl->save;
290 };
291 } 312 }
292 }); 313 });
293 }, 314 },
294); 315);
295 316
306 327
307 if ($cleanly) { 328 if ($cleanly) {
308 $_->ob->message ("$name left the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list; 329 $_->ob->message ("$name left the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
309 } else { 330 } else {
310 $_->ob->message ("$name uncerimoniously disconnected.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list; 331 $_->ob->message ("$name uncerimoniously disconnected.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
332 delete $pl->{clean_save};
311 } 333 }
312 }, 334 },
313); 335);
314 336
315cf::client->attach ( 337cf::client->attach (
317); 339);
318 340
319############################################################################# 341#############################################################################
320 342
321our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs 343our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs
322our $SWAP_TIMEOUT = 30; # time after which an unused player is evicted form memory
323our $SAVE_TIMEOUT = 20; # save players every n seconds 344our $SAVE_TIMEOUT = 200; # save players every n seconds
324our $SAVE_INTERVAL = 0.1; # save at max. one player every $SAVE_INTERVAL 345our $SAVE_INTERVAL = 0.1; # save at max. one player every $SAVE_INTERVAL
325 346
326our $SCHEDULER = cf::async_ext { 347our $SCHEDULER = cf::async_ext {
327 while () { 348 while () {
328 Coro::Timer::sleep $SCHEDULE_INTERVAL; 349 Coro::Timer::sleep $SCHEDULE_INTERVAL;
340 eval { 361 eval {
341 if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) { 362 if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) {
342 $pl->save; 363 $pl->save;
343 Coro::Timer::sleep $SAVE_INTERVAL; 364 Coro::Timer::sleep $SAVE_INTERVAL;
344 } 365 }
366
367 unless ($pl->active) {
368 # check refcounts, this is tricky and needs to be adjusted to fit server internals
369 my $ob = $pl->ob;
370 Scalar::Util::weaken $pl;
371 Scalar::Util::weaken $ob;
372 my $a_ = $pl->refcnt;
373 my $b_ = $ob->refcnt;
374 my $pl_ref = $pl->refcnt_cnt;
375 my $ob_ref = $ob->refcnt_cnt;
376
377 if ($pl_ref == 2 && $ob_ref == 1) {
378 warn "player-scheduler destroy ", $ob->name;#d#
379 delete $cf::PLAYER{$ob->name};
380 # pl_ref == one from object + one from cf::PLAYER
381 # ob_ref == one from simply being an object
382 $ob->destroy;
383 $pl->destroy;
384 } else {
385 warn "player-scheduler refcnt ", $ob->name, " $pl_ref,$a_ $ob_ref,$b_\n";#d#
386 }
387 }
345 }; 388 };
346 warn $@ if $@; 389 warn $@ if $@;
347 Coro::cede; 390 Coro::cede;
348 }; 391 };
349 } 392 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines