ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC.pm (file contents):
Revision 1.85 by root, Thu Jun 1 05:04:34 2006 UTC vs.
Revision 1.87 by root, Mon Jun 5 05:23:19 2006 UTC

24use utf8; 24use utf8;
25 25
26use Carp (); 26use Carp ();
27use AnyEvent (); 27use AnyEvent ();
28use BerkeleyDB; 28use BerkeleyDB;
29use Pod::POM;
29 30
30sub find_rcfile($) { 31sub find_rcfile($) {
31 my $path; 32 my $path;
32 33
33 for (grep !ref, @INC) { 34 for (grep !ref, @INC) {
68 } 69 }
69 70
70 close CFG; 71 close CFG;
71} 72}
72 73
73mkdir "$Crossfire::VARDIR/cfplus", 0777; 74sub load_pod($) {
75 my $pod = do {
76 local $/;
77 open my $pod, "<:utf8", $_[0]
78 or die "$_[0]: $!";
79 <$pod>
80 };
81
82 Pod::POM->new->parse_text ($pod);
83}
74 84
75our $DB_ENV; 85our $DB_ENV;
76 86
77{ 87{
78 use strict; 88 use strict;
79 89
90 mkdir "$Crossfire::VARDIR/cfplus", 0777;
80 my $recover = $BerkeleyDB::db_version >= 4.4 91 my $recover = $BerkeleyDB::db_version >= 4.4
81 ? eval "DB_REGISTER | DB_RECOVER" 92 ? eval "DB_REGISTER | DB_RECOVER"
82 : 0; 93 : 0;
83 94
84 $DB_ENV = new BerkeleyDB::Env 95 $DB_ENV = new BerkeleyDB::Env
276 } 287 }
277 288
278 if (($ev->{mod} & CFClient::KMOD_SHIFT) && $ev->{button} == 1) { 289 if (($ev->{mod} & CFClient::KMOD_SHIFT) && $ev->{button} == 1) {
279 $::CONN->send ("move $targ $self->{tag} 0") 290 $::CONN->send ("move $targ $self->{tag} 0")
280 if $targ || !($self->{flags} & F_LOCKED); 291 if $targ || !($self->{flags} & F_LOCKED);
292 } elsif (($ev->{mod} & CFClient::KMOD_SHIFT) && $ev->{button} == 2) {
293 $self->{flags} & F_LOCKED
294 ? $::CONN->send ("lock " . pack "CN", 0, $self->{tag})
295 : $::CONN->send ("lock " . pack "CN", 1, $self->{tag})
281 } elsif ($ev->{button} == 1) { 296 } elsif ($ev->{button} == 1) {
282 $::CONN->send ("examine $self->{tag}"); 297 $::CONN->send ("examine $self->{tag}");
283 } elsif ($ev->{button} == 2) { 298 } elsif ($ev->{button} == 2) {
284 $::CONN->send ("apply $self->{tag}"); 299 $::CONN->send ("apply $self->{tag}");
285 } elsif ($ev->{button} == 3) { 300 } elsif ($ev->{button} == 3) {
312 327
313 my $tooltip_std = "<small>" 328 my $tooltip_std = "<small>"
314 . "Left click - examine item\n" 329 . "Left click - examine item\n"
315 . "Shift-Left click - " . ($self->{container} ? "move or drop" : "take") . " item\n" 330 . "Shift-Left click - " . ($self->{container} ? "move or drop" : "take") . " item\n"
316 . "Middle click - apply\n" 331 . "Middle click - apply\n"
332 . "Shift-Middle click - lock/unlock\n"
317 . "Right click - further options" 333 . "Right click - further options"
318 . "</small>\n"; 334 . "</small>\n";
319 335
320 $self->{face_widget} ||= new CFClient::UI::Face 336 $self->{face_widget} ||= new CFClient::UI::Face
321 can_events => 1, 337 can_events => 1,
467 $mods .= "+" if $mods ne ''; 483 $mods .= "+" if $mods ne '';
468 484
469 return $mods . CFClient::SDL_GetKeyName ($sym); 485 return $mods . CFClient::SDL_GetKeyName ($sym);
470} 486}
471 487
488package CFClient::Pickup;
489# some pickup constants
490sub PU_NOTHING { 0x00000000 }
491
492sub PU_DEBUG { 0x10000000 }
493sub PU_INHIBIT { 0x20000000 }
494sub PU_STOP { 0x40000000 }
495sub PU_NEWMODE { 0x80000000 }
496
497sub PU_RATIO { 0x0000000F }
498
499sub PU_FOOD { 0x00000010 }
500sub PU_DRINK { 0x00000020 }
501sub PU_VALUABLES { 0x00000040 }
502sub PU_BOW { 0x00000080 }
503
504sub PU_ARROW { 0x00000100 }
505sub PU_HELMET { 0x00000200 }
506sub PU_SHIELD { 0x00000400 }
507sub PU_ARMOUR { 0x00000800 }
508
509sub PU_BOOTS { 0x00001000 }
510sub PU_GLOVES { 0x00002000 }
511sub PU_CLOAK { 0x00004000 }
512sub PU_KEY { 0x00008000 }
513
514sub PU_MISSILEWEAPON { 0x00010000 }
515sub PU_ALLWEAPON { 0x00020000 }
516sub PU_MAGICAL { 0x00040000 }
517sub PU_POTION { 0x00080000 }
518
519sub PU_SPELLBOOK { 0x00100000 }
520sub PU_SKILLSCROLL { 0x00200000 }
521sub PU_READABLES { 0x00400000 }
522sub PU_MAGIC_DEVICE { 0x00800000 }
523
524sub PU_NOT_CURSED { 0x01000000 }
525
526sub PU_JEWELS { 0x02000000 }
527
528
4721; 5291;
473 530
474=back 531=back
475 532
476=head1 AUTHOR 533=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines