ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Deliantra/Protocol.pm
Revision: 1.36
Committed: Sat May 13 23:08:59 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.35: +7 -1 lines
Log Message:
fix item protocol - its horribly redundant

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3     Crossfire::Protocol - client protocol module
4    
5     =head1 SYNOPSIS
6    
7     use base Crossfire::Protocol; # you have to subclass
8    
9     =head1 DESCRIPTION
10    
11     Base class to implement a corssfire client.
12    
13     =over 4
14    
15     =cut
16    
17     package Crossfire::Protocol;
18    
19     our $VERSION = '0.1';
20    
21     use strict;
22    
23     use AnyEvent;
24     use IO::Socket::INET;
25    
26 root 1.33 BEGIN {
27     my %CONSTANTS = (
28     TICK => 0.120, # one server tick, not exposed through the protocol of course
29     CS_QUERY_YESNO => 0x1,
30     CS_QUERY_SINGLECHAR => 0x2,
31     CS_QUERY_HIDEINPUT => 0x4,
32     CS_SAY_NORMAL => 0x1,
33     CS_SAY_SHOUT => 0x2,
34     CS_SAY_GSAY => 0x4,
35     FLOAT_MULTI => 100000,
36     FLOAT_MULTF => 100000.0,
37     CS_STAT_HP => 1,
38     CS_STAT_MAXHP => 2,
39     CS_STAT_SP => 3,
40     CS_STAT_MAXSP => 4,
41     CS_STAT_STR => 5,
42     CS_STAT_INT => 6,
43     CS_STAT_WIS => 7,
44     CS_STAT_DEX => 8,
45     CS_STAT_CON => 9,
46     CS_STAT_CHA => 10,
47     CS_STAT_EXP => 11,
48     CS_STAT_LEVEL => 12,
49     CS_STAT_WC => 13,
50     CS_STAT_AC => 14,
51     CS_STAT_DAM => 15,
52     CS_STAT_ARMOUR => 16,
53     CS_STAT_SPEED => 17,
54     CS_STAT_FOOD => 18,
55     CS_STAT_WEAP_SP => 19,
56     CS_STAT_RANGE => 20,
57     CS_STAT_TITLE => 21,
58     CS_STAT_POW => 22,
59     CS_STAT_GRACE => 23,
60     CS_STAT_MAXGRACE => 24,
61     CS_STAT_FLAGS => 25,
62     CS_STAT_WEIGHT_LIM => 26,
63     CS_STAT_EXP64 => 28,
64     CS_STAT_SPELL_ATTUNE => 29,
65     CS_STAT_SPELL_REPEL => 30,
66     CS_STAT_SPELL_DENY => 31,
67     CS_STAT_RESIST_START => 100,
68     CS_STAT_RESIST_END => 117,
69     CS_STAT_RES_PHYS => 100,
70     CS_STAT_RES_MAG => 101,
71     CS_STAT_RES_FIRE => 102,
72     CS_STAT_RES_ELEC => 103,
73     CS_STAT_RES_COLD => 104,
74     CS_STAT_RES_CONF => 105,
75     CS_STAT_RES_ACID => 106,
76     CS_STAT_RES_DRAIN => 107,
77     CS_STAT_RES_GHOSTHIT => 108,
78     CS_STAT_RES_POISON => 109,
79     CS_STAT_RES_SLOW => 110,
80     CS_STAT_RES_PARA => 111,
81     CS_STAT_TURN_UNDEAD => 112,
82     CS_STAT_RES_FEAR => 113,
83     CS_STAT_RES_DEPLETE => 114,
84     CS_STAT_RES_DEATH => 115,
85     CS_STAT_RES_HOLYWORD => 116,
86     CS_STAT_RES_BLIND => 117,
87     CS_STAT_SKILLEXP_START => 118,
88     CS_STAT_SKILLEXP_END => 129,
89     CS_STAT_SKILLEXP_AGILITY => 118,
90     CS_STAT_SKILLEXP_AGLEVEL => 119,
91     CS_STAT_SKILLEXP_PERSONAL => 120,
92     CS_STAT_SKILLEXP_PELEVEL => 121,
93     CS_STAT_SKILLEXP_MENTAL => 122,
94     CS_STAT_SKILLEXP_MELEVEL => 123,
95     CS_STAT_SKILLEXP_PHYSIQUE => 124,
96     CS_STAT_SKILLEXP_PHLEVEL => 125,
97     CS_STAT_SKILLEXP_MAGIC => 126,
98     CS_STAT_SKILLEXP_MALEVEL => 127,
99     CS_STAT_SKILLEXP_WISDOM => 128,
100     CS_STAT_SKILLEXP_WILEVEL => 129,
101     CS_STAT_SKILLINFO => 140,
102     CS_NUM_SKILLS => 50,
103     SF_FIREON => 0x01,
104     SF_RUNON => 0x02,
105     NDI_BLACK => 0,
106     NDI_WHITE => 1,
107     NDI_NAVY => 2,
108     NDI_RED => 3,
109     NDI_ORANGE => 4,
110     NDI_BLUE => 5,
111     NDI_DK_ORANGE => 6,
112     NDI_GREEN => 7,
113     NDI_LT_GREEN => 8,
114     NDI_GREY => 9,
115     NDI_BROWN => 10,
116     NDI_GOLD => 11,
117     NDI_TAN => 12,
118     NDI_MAX_COLOR => 12,
119     NDI_COLOR_MASK => 0xff,
120     NDI_UNIQUE => 0x100,
121     NDI_ALL => 0x200,
122     a_none => 0,
123     a_readied => 1,
124     a_wielded => 2,
125     a_worn => 3,
126     a_active => 4,
127     a_applied => 5,
128     F_APPLIED => 0x000F,
129     F_LOCATION => 0x00F0,
130     F_UNPAID => 0x0200,
131     F_MAGIC => 0x0400,
132     F_CURSED => 0x0800,
133     F_DAMNED => 0x1000,
134     F_OPEN => 0x2000,
135     F_NOPICK => 0x4000,
136     F_LOCKED => 0x8000,
137     CF_FACE_NONE => 0,
138     CF_FACE_BITMAP => 1,
139     CF_FACE_XPM => 2,
140     CF_FACE_PNG => 3,
141     CF_FACE_CACHE => 0x10,
142     FACE_FLOOR => 0x80,
143     FACE_COLOR_MASK => 0xf,
144     UPD_LOCATION => 0x01,
145     UPD_FLAGS => 0x02,
146     UPD_WEIGHT => 0x04,
147     UPD_FACE => 0x08,
148     UPD_NAME => 0x10,
149     UPD_ANIM => 0x20,
150     UPD_ANIMSPEED => 0x40,
151     UPD_NROF => 0x80,
152     UPD_SP_MANA => 0x01,
153     UPD_SP_GRACE => 0x02,
154     UPD_SP_DAMAGE => 0x04,
155     SOUND_NORMAL => 0,
156     SOUND_SPELL => 1,
157     );
158    
159     while (my ($k, $v) = each %CONSTANTS) {
160     eval "sub $k () { $v } 1"
161     or die;
162     }
163     }
164 root 1.29
165 root 1.10 =item new Crossfire::Protocol host => ..., port => ...
166 root 1.1
167     =cut
168    
169     sub new {
170     my $class = shift;
171 root 1.10 my $self = bless {
172 root 1.17 mapw => 13,
173     maph => 13,
174 root 1.33 max_outstanding => 2,
175 root 1.24 token => "a0",
176 root 1.10 @_
177     }, $class;
178 root 1.1
179     $self->{fh} = new IO::Socket::INET PeerHost => $self->{host}, PeerPort => $self->{port}
180     or die "$self->{host}:$self->{port}: $!";
181     $self->{fh}->blocking (0); # stupid nonblock default
182    
183     my $buf;
184    
185     $self->{w} = AnyEvent->io (fh => $self->{fh}, poll => 'r', cb => sub {
186 root 1.35 if (0 < sysread $self->{fh}, $buf, 16384, length $buf) {
187 root 1.8 for (;;) {
188     last unless 2 <= length $buf;
189 root 1.1 my $len = unpack "n", $buf;
190 root 1.8 last unless $len + 2 <= length $buf;
191    
192     substr $buf, 0, 2, "";
193     $self->feed (substr $buf, 0, $len, "");
194 root 1.1 }
195     } else {
196 root 1.35 $self->feed_eof;
197 root 1.1 }
198     });
199    
200 root 1.11 $self->{setup_req} = {
201     sound => 1,
202     exp64 => 1,
203     map1acmd => 1,
204     itemcmd => 2,
205     darkness => 1,
206     facecache => 1,
207     newmapcmd => 1,
208 root 1.22 mapinfocmd => 1,
209     plugincmd => 1,
210 root 1.11 extendedTextInfos => 1,
211 root 1.29 spellmon => 1,
212 root 1.11 };
213    
214 root 1.1 $self->send ("version 1023 1027 perlclient");
215 root 1.11 $self->send_setup;
216 root 1.29 $self->send ("requestinfo skill_info");
217     $self->send ("requestinfo spell_paths");
218 root 1.1
219     $self
220     }
221    
222     sub feed {
223     my ($self, $data) = @_;
224    
225 root 1.11 $data =~ s/^(\S+)(?:\s|$)//
226 root 1.1 or return;
227    
228     my $command = "feed_$1";
229    
230     $self->$command ($data);
231     }
232    
233     sub feed_version {
234     my ($self, $version) = @_;
235     }
236    
237     sub feed_setup {
238     my ($self, $data) = @_;
239    
240     $data =~ s/^ +//;
241    
242     $self->{setup} = { split / +/, $data };
243    
244 root 1.35 if ($self->{setup}{extendedTextInfos} > 0) {
245     $self->send ("toggleextendedtext 1"); # books
246     $self->send ("toggleextendedtext 2"); # cards
247     $self->send ("toggleextendedtext 3"); # papers
248     $self->send ("toggleextendedtext 4"); # signs
249     $self->send ("toggleextendedtext 5"); # monuments
250     #$self->send ("toggleextendedtext 6"); # scripted dialogs (yeah)
251     $self->send ("toggleextendedtext 7"); # motd
252     }
253    
254 root 1.10 my ($mapw, $maph) = split /x/, $self->{setup}{mapsize};
255    
256     if ($mapw != $self->{mapw} || $maph != $self->{maph}) {
257     ($self->{mapw}, $self->{maph}) = ($mapw, $maph);
258 root 1.11 $self->send_setup;
259     } else {
260     $self->send ("addme");
261 root 1.10 }
262 root 1.1
263     $self->feed_newmap;
264     }
265    
266 root 1.35 sub feed_eof {
267     my ($self) = @_;
268    
269     delete $self->{w};
270     close delete $self->{fh};
271    
272     for my $tag (sort { $b <=> $a } %{ $self->{container} || {} }) {
273     $self->_del_items (@{ $self->{container}{$tag} });
274     $self->container_clear ($tag);
275     }
276    
277     $self->eof;
278     }
279    
280 root 1.11 sub feed_addme_success {
281     my ($self, $data) = @_;
282 root 1.30
283     $self->addme_success ($data);
284 root 1.11 }
285    
286     sub feed_addme_failure {
287     my ($self, $data) = @_;
288 root 1.30
289     $self->addme_failure ($data);
290 root 1.11 }
291    
292 root 1.35 sub logout {
293     my ($self) = @_;
294    
295     $self->{fh} or return;
296    
297     $self->feed_eof;
298     }
299    
300     sub destroy {
301     my ($self) = @_;
302    
303     $self->logout;
304    
305     %$self = ();
306     }
307    
308 root 1.14 =back
309    
310     =head2 METHODS THAT CAN/MUST BE OVERWRITTEN
311    
312     =over 4
313    
314 root 1.30 =item $self->addme_success
315    
316     =item $self->addme_failure
317    
318 root 1.35 =item $self->eof
319    
320 root 1.14 =cut
321    
322 root 1.30 sub addme_success { }
323     sub addme_failure { }
324 root 1.35 sub eof { }
325 root 1.30
326 root 1.14 sub feed_face1 {
327     my ($self, $data) = @_;
328    
329     my ($num, $chksum, $name) = unpack "nNa*", $data;
330    
331 root 1.29 $self->need_face ($num, $name, $chksum);
332     }
333    
334     sub need_face {
335     my ($self, $num, $name, $chksum) = @_;
336    
337     return if $self->{face}[$num];
338    
339 root 1.14 my $face = $self->{face}[$num] = { name => $name, chksum => $chksum };
340    
341 root 1.23 if (my $data = $self->face_find ($num, $face)) {
342 root 1.14 $face->{image} = $data;
343 root 1.20 $self->face_update ($num, $face);
344 root 1.14 } else {
345 root 1.17 $self->send_queue ("askface $num");
346 root 1.14 }
347     }
348    
349     =item $conn->anim_update ($num) [OVERWRITE]
350    
351     =cut
352    
353     sub anim_update { }
354    
355     sub feed_anim {
356     my ($self, $data) = @_;
357    
358     my ($num, @faces) = unpack "n*", $data;
359    
360     $self->{anim}[$num] = \@faces;
361    
362     $self->anim_update ($num);
363     }
364    
365 root 1.28 =item $conn->sound_play ($x, $y, $soundnum, $type)
366 root 1.11
367     =cut
368    
369     sub sound_play { }
370    
371     sub feed_sound {
372     my ($self, $data) = @_;
373    
374 root 1.28 $self->sound_play (unpack "ccnC", $data);
375 root 1.11 }
376    
377 root 1.14 =item $conn->query ($flags, $prompt)
378 root 1.6
379     =cut
380    
381 root 1.14 sub query { }
382 root 1.6
383 root 1.1 sub feed_query {
384     my ($self, $data) = @_;
385 root 1.6
386     my ($flags, $prompt) = split /\s+/, $data, 2;
387    
388     if ($flags == 0 && $prompt =~ /^What is your name\?\s+:$/ && length $self->{user}) {
389     $self->send ("reply $self->{user}");
390     } elsif ($flags == 4 && $prompt =~ /^What is your password\?\s+:$/ && length $self->{pass}) {
391     $self->send ("reply $self->{pass}");
392     } elsif ($flags == 4 && $prompt =~ /^Please type your password again\.\s+:$/ && length $self->{pass}) {
393     $self->send ("reply $self->{pass}");
394     } else {
395     $self->query ($flags, $prompt);
396     }
397 root 1.1 }
398    
399 root 1.35 =item $conn->drawextinfo ($color, $type, $subtype, $message)
400    
401 root 1.14 =item $conn->drawinfo ($color, $text)
402    
403     =cut
404    
405 root 1.35 sub drawextinfo { }
406    
407 root 1.14 sub drawinfo { }
408    
409 root 1.35 sub feed_ExtendedTextSet {
410     my ($self, $data) = @_;
411     }
412    
413     sub feed_drawextinfo {
414     my ($self, $data) = @_;
415    
416     my ($color, $type, $subtype, $message) = split /\s+/, $data, 4;
417    
418     $self->drawextinfo ($color, $type, $subtype, $message);
419     }
420    
421 root 1.14 sub feed_drawinfo {
422     my ($self, $data) = @_;
423    
424 root 1.25 my ($flags, $text) = split / /, $data, 2;
425    
426     utf8::decode $text if utf8::valid $text;
427    
428     $self->drawinfo ($flags, $text);
429 root 1.14 }
430    
431     =item $conn->player_update ($player)
432 root 1.6
433     tag, weight, face, name
434    
435     =cut
436    
437     sub player_update { }
438    
439     sub feed_player {
440     my ($self, $data) = @_;
441    
442     my ($tag, $weight, $face, $name) = unpack "NNN C/a", $data;
443    
444     $self->player_update ($self->{player} = {
445     tag => $tag,
446     weight => $weight,
447     face => $face,
448     name => $name,
449     });
450     }
451    
452 root 1.14 =item $conn->stats_update ($stats)
453 root 1.6
454     =cut
455    
456     sub stats_update { }
457    
458 root 1.33 my %stat_32bit = map +($_ => 1),
459     CS_STAT_WEIGHT_LIM,
460     CS_STAT_SPELL_ATTUNE,
461     CS_STAT_SPELL_REPEL,
462     CS_STAT_SPELL_DENY,
463     CS_STAT_EXP;
464    
465 root 1.1 sub feed_stats {
466     my ($self, $data) = @_;
467 root 1.6
468     while (length $data) {
469     my $stat = unpack "C", substr $data, 0, 1, "";
470     my $value;
471    
472 root 1.33 if ($stat_32bit{$stat}) {
473 root 1.6 $value = unpack "N", substr $data, 0, 4, "";
474 root 1.33 } elsif ($stat == CS_STAT_SPEED || $stat == CS_STAT_WEAP_SP) {
475     $value = (1 / FLOAT_MULTF) * unpack "N", substr $data, 0, 4, "";
476     } elsif ($stat == CS_STAT_RANGE || $stat == CS_STAT_TITLE) {
477 root 1.6 my $len = unpack "C", substr $data, 0, 1, "";
478     $value = substr $data, 0, $len, "";
479 root 1.33 } elsif ($stat == CS_STAT_EXP64) {
480 root 1.31 my ($hi, $lo) = unpack "NN", substr $data, 0, 8, "";
481 root 1.6 $value = $hi * 2**32 + $lo;
482 root 1.33 } elsif (($stat >= CS_STAT_SKILLEXP_START && $stat <= CS_STAT_SKILLEXP_END)
483     || ($stat >= CS_STAT_SKILLINFO && $stat < CS_STAT_SKILLINFO + CS_NUM_SKILLS)) {
484 root 1.6 my ($level, $lo, $hi) = unpack "CNN", substr $data, 0, 9, "";
485     $value = [$level, $hi * 2**32 + $lo];
486     } else {
487 root 1.31 $value = unpack "s", pack "S", unpack "n", substr $data, 0, 2, "";
488 root 1.6 }
489    
490     $self->{stat}{$stat} = $value;
491     }
492    
493     $self->stats_update ($self->{stat});
494 root 1.1 }
495    
496 root 1.33 =item $conn->container_add ($id, $item...)
497 root 1.14
498 root 1.33 =item $conn->container_clear ($id)
499 root 1.14
500 root 1.33 =item $conn->item_update ($item)
501 root 1.14
502 root 1.33 =item $conn->item_delete ($item...)
503 root 1.1
504 root 1.33 =cut
505 root 1.3
506 root 1.33 sub container_add { }
507     sub container_clear { }
508     sub item_delete { }
509     sub item_update { }
510 root 1.1
511 root 1.33 sub _del_items {
512     my ($self, @items) = @_;
513 root 1.6
514 root 1.33 for my $item (@items) {
515     delete $self->{item}{$item->{tag}};
516 root 1.34 $self->{container}{$item->{container}} = [
517     grep $_ != $item, @{ $self->{container}{$item->{container}} }
518     ];
519 root 1.33 }
520     }
521 root 1.6
522 root 1.33 sub feed_delinv {
523 root 1.6 my ($self, $data) = @_;
524    
525 root 1.34 $self->_del_items (@{ $self->{container}{$data} });
526 root 1.33 $self->container_clear ($data);
527 root 1.14 }
528    
529 root 1.33 sub feed_delitem {
530     my ($self, $data) = @_;
531 root 1.6
532 root 1.33 my @items = map $self->{item}{$_}, unpack "N*", $data;
533 root 1.36
534 root 1.33 $self->_del_items (@items);
535     $self->item_delete (@items);
536 root 1.6 }
537    
538 root 1.14 sub feed_item2 {
539 root 1.1 my ($self, $data) = @_;
540 root 1.14
541     my ($location, @values) = unpack "N (NNNN C/a* nC Nn)*", $data;
542    
543     my @items;
544    
545     while (@values) {
546     my ($tag, $flags, $weight, $face, $names, $anim, $animspeed, $nrof, $type) =
547     splice @values, 0, 9, ();
548    
549 root 1.33 utf8::decode $names if utf8::valid $names;
550     my ($name, $name_pl) = split /\x00/, $names;
551 root 1.14
552 root 1.33 my $item = {
553     container => $location,
554 root 1.14 tag => $tag,
555     flags => $flags,
556     weight => $weight,
557     face => $face,
558     name => $name,
559     name_pl => $name_pl,
560     anim => $anim,
561 root 1.33 animspeed => $animspeed * TICK, #???
562 root 1.14 nrof => $nrof,
563     type => $type,
564     };
565 root 1.33
566 root 1.36 if (my $prev = $self->{item}{$tag}) {
567     $self->_del_items ($prev);
568     $self->item_delete ($prev);
569     }
570    
571 root 1.33 $self->{item}{$tag} = $item;
572 root 1.34 push @{ $self->{container}{$location} }, $item;
573 root 1.33 push @items, $item;
574 root 1.14 }
575    
576 root 1.33 $self->container_add ($location, \@items);
577 root 1.1 }
578    
579 root 1.33 sub feed_upditem {
580     my ($self, $data) = @_;
581    
582 root 1.36 my ($flags, $tag) = unpack "CN", substr $data, 0, 5, "";
583 root 1.33
584     my $item = $self->{item}{$tag};
585    
586     if ($flags & UPD_LOCATION) {
587     $self->item_delete ($item);
588 root 1.34 $self->{container}{$item->{container}} = [
589     grep $_ != $item, @{ $self->{container}{$item->{container}} }
590     ];
591 root 1.33
592     $item->{container} = unpack "N", substr $data, 0, 4, "";
593 root 1.14
594 root 1.34 push @{ $self->{container}{$item->{container}} }, $item;
595 root 1.33 $self->container_add ($item->{location}, $item);
596     }
597    
598     $item->{flags} = unpack "N", substr $data, 0, 4, "" if $flags & UPD_FLAGS;
599     $item->{weight} = unpack "N", substr $data, 0, 4, "" if $flags & UPD_WEIGHT;
600     $item->{face} = unpack "N", substr $data, 0, 4, "" if $flags & UPD_FACE;
601    
602     if ($flags & UPD_NAME) {
603     my $len = unpack "C", substr $data, 0, 1, "";
604    
605     my $names = substr $data, 0, $len, "";
606     utf8::decode $names if utf8::valid $names;
607     @$item{qw(name name_pl)} = split /\x00/, $names;
608     }
609 root 1.14
610 root 1.33 $item->{anim} = unpack "n", substr $data, 0, 2, "" if $flags & UPD_ANIM;
611     $item->{animspeed} = TICK * unpack "C", substr $data, 0, 1, "" if $flags & UPD_ANIMSPEED;
612     $item->{nrof} = unpack "N", substr $data, 0, 4, "" if $flags & UPD_NROF;
613 root 1.1
614 root 1.33 $self->item_update ($item);
615 root 1.29 }
616    
617     =item $conn->spell_add ($spell)
618    
619     $spell = {
620     tag => ...,
621     level => ...,
622     casting_time => ...,
623     mana => ...,
624     grace => ...,
625     damage => ...,
626     skill => ...,
627     path => ...,
628     face => ...,
629     name => ...,
630     message => ...,
631     };
632    
633     =item $conn->spell_update ($spell)
634    
635     (the default implementation calls delete then add)
636    
637     =item $conn->spell_delete ($spell)
638    
639     =cut
640    
641     sub spell_add { }
642    
643     sub spell_update {
644     my ($self, $spell) = @_;
645    
646     $self->spell_delete ($spell);
647     $self->spell_add ($spell);
648     }
649    
650     sub spell_delete { }
651    
652     sub feed_addspell {
653     my ($self, $data) = @_;
654    
655     my @data = unpack "(NnnnnnCNN C/a n/a)*", $data;
656    
657     while (@data) {
658     my $spell = {
659     tag => (shift @data),
660     level => (shift @data),
661     casting_time => (shift @data),
662     mana => (shift @data),
663     grace => (shift @data),
664     damage => (shift @data),
665     skill => (shift @data),
666     path => (shift @data),
667     face => (shift @data),
668     name => (shift @data),
669     message => (shift @data),
670     };
671    
672     $self->send ("requestinfo image_sums $spell->{face} $spell->{face}")
673     unless $self->{spell_face}[$spell->{face}]++;
674    
675     $self->spell_add ($self->{spell}{$spell->{tag}} = $spell);
676     }
677     }
678    
679     sub feed_updspell {
680     my ($self, $data) = @_;
681    
682     my ($flags, $tag) = unpack "CN", substr $data, 0, 5, "";
683    
684     # only 1, 2, 4 supported
685     # completely untested
686    
687     my $spell = $self->{spell}{$tag};
688    
689 root 1.33 $spell->{mana} = unpack "n", substr $data, 0, 2, "" if $flags & UPD_SP_MANA;
690     $spell->{grace} = unpack "n", substr $data, 0, 2, "" if $flags & UPD_SP_GRACE;
691     $spell->{damage} = unpack "n", substr $data, 0, 2, "" if $flags & UPD_SP_DAMAGE;
692 root 1.29
693     $self->spell_update ($spell);
694     }
695    
696     sub feed_delspell {
697     my ($self, $data) = @_;
698    
699     $self->spell_delete (delete $self->{spell}{unpack "N", $data});
700 root 1.1 }
701    
702     sub feed_map1a {
703     my ($self, $data) = @_;
704    
705     my $map = $self->{map} ||= [];
706    
707 root 1.14 my ($dx, $dy) = delete @$self{qw(delayed_scroll_x delayed_scroll_y)};
708    
709     if ($dx || $dy) {
710     my ($mx, $my, $mw, $mh) = @$self{qw(mapx mapy mapw maph)};
711    
712     {
713     my @darkness;
714    
715     if ($dx > 0) {
716     push @darkness, [$mx, $my, $dx - 1, $mh];
717     } elsif ($dx < 0) {
718     push @darkness, [$mx + $mw + $dx + 1, $my, 1 - $dx, $mh];
719     }
720    
721     if ($dy > 0) {
722     push @darkness, [$mx, $my, $mw, $dy - 1];
723     } elsif ($dy < 0) {
724     push @darkness, [$mx, $my + $mh + $dy + 1, $mw, 1 - $dy];
725     }
726    
727     for (@darkness) {
728     my ($x0, $y0, $w, $h) = @$_;
729     for my $x ($x0 .. $x0 + $w) {
730     for my $y ($y0 .. $y0 + $h) {
731    
732     my $cell = $map->[$x][$y]
733     or next;
734    
735     $cell->[0] = -1;
736     }
737     }
738     }
739     }
740    
741     # now scroll
742    
743     $self->{mapx} += $dx;
744     $self->{mapy} += $dy;
745    
746     # shift in new space if moving to "negative indices"
747     if ($self->{mapy} < 0) {
748 root 1.16 unshift @$_, (undef) x -$self->{mapy} for @$map;
749 root 1.14 $self->{mapy} = 0;
750     }
751    
752     if ($self->{mapx} < 0) {
753 root 1.16 unshift @$map, (undef) x -$self->{mapx};
754 root 1.14 $self->{mapx} = 0;
755     }
756    
757     $self->map_scroll ($dx, $dy);
758     }
759    
760 root 1.1 my @dirty;
761     my ($coord, $x, $y, $darkness, $fa, $fb, $fc, $cell);
762    
763     while (length $data) {
764     $coord = unpack "n", substr $data, 0, 2, "";
765    
766 root 1.10 $x = (($coord >> 10) & 63) + $self->{mapx};
767     $y = (($coord >> 4) & 63) + $self->{mapy};
768 root 1.1
769     $cell = $map->[$x][$y] ||= [];
770    
771 root 1.10 if ($coord & 15) {
772 root 1.14 @$cell = () if $cell->[0] < 0;
773    
774 root 1.10 $cell->[0] = $coord & 8
775     ? unpack "C", substr $data, 0, 1, ""
776     : 255;
777    
778     $cell->[1] = unpack "n", substr $data, 0, 2, ""
779     if $coord & 4;
780     $cell->[2] = unpack "n", substr $data, 0, 2, ""
781     if $coord & 2;
782     $cell->[3] = unpack "n", substr $data, 0, 2, ""
783     if $coord & 1;
784     } else {
785     $cell->[0] = -1;
786     }
787 root 1.1
788     push @dirty, [$x, $y];
789     }
790    
791     $self->map_update (\@dirty);
792     }
793    
794     sub feed_map_scroll {
795     my ($self, $data) = @_;
796    
797     my ($dx, $dy) = split / /, $data;
798    
799 root 1.14 $self->{delayed_scroll_x} += $dx;
800     $self->{delayed_scroll_y} += $dy;
801 root 1.24
802     $self->map_scroll ($dx, $dy);
803 root 1.1 }
804    
805     sub feed_newmap {
806     my ($self) = @_;
807    
808     $self->{map} = [];
809     $self->{mapx} = 0;
810     $self->{mapy} = 0;
811    
812 root 1.14 delete $self->{delayed_scroll_x};
813     delete $self->{delayed_scroll_y};
814    
815 root 1.1 $self->map_clear;
816     }
817    
818 root 1.22 sub feed_mapinfo {
819     my ($self, $data) = @_;
820 root 1.24
821     my ($token, @data) = split / /, $data;
822    
823     (delete $self->{mapinfo_cb}{$token})->(@data)
824     if $self->{mapinfo_cb}{$token};
825 root 1.22
826 root 1.24 $self->map_change (@data) if $token eq "-";
827     }
828    
829     sub send_mapinfo {
830     my ($self, $data, $cb) = @_;
831    
832     my $token = ++$self->{token};
833    
834 root 1.32 $self->{mapinfo_cb}{$token} = sub {
835     $self->send_queue;
836     $cb->(@_);
837     };
838     $self->send_queue ("mapinfo $token $data");
839 root 1.22 }
840    
841 root 1.1 sub feed_image {
842     my ($self, $data) = @_;
843    
844 root 1.3 my ($num, $len, $data) = unpack "NNa*", $data;
845 root 1.1
846 root 1.22 $self->send_queue;
847 root 1.3 $self->{face}[$num]{image} = $data;
848 root 1.20 $self->face_update ($num, $self->{face}[$num]);
849 root 1.1
850 root 1.3 my @dirty;
851 root 1.2
852     for my $x (0..$self->{mapw} - 1) {
853     for my $y (0..$self->{maph} - 1) {
854     push @dirty, [$x, $y]
855     if grep $_ == $num, @{$self->{map}[$x][$y] || []};
856     }
857     }
858 root 1.6
859 root 1.2 $self->map_update (\@dirty);
860 root 1.1 }
861    
862 root 1.29 sub feed_replyinfo {
863     my ($self, $data) = @_;
864    
865     if ($data =~ s/^image_sums \d+ \d+ //) {
866     my ($num, $chksum, $faceset, $name) = unpack "n N C C/Z*", $data;
867    
868     $self->need_face ($num, $name, $chksum);
869     } elsif ($data =~ s/^skill_info\s+//) {
870     for (split /\012/, $data) {
871     my ($id, $name) = split /:/, $_, 2;
872     $self->{skill_info}{$id} = $name;
873     }
874     } elsif ($data =~ s/^spell_paths\s+//) {
875     for (split /\012/, $data) {
876     my ($id, $name) = split /:/, $_, 2;
877     $self->{spell_paths}{$id} = $name;
878     }
879     }
880     }
881    
882 root 1.24 =item $conn->map_change ($mode, ...) [OVERWRITE]
883 root 1.22
884     current <flags> <x> <y> <width> <height> <hashstring>
885    
886     =cut
887    
888     sub map_info { }
889    
890 root 1.1 =item $conn->map_clear [OVERWRITE]
891    
892     Called whenever the map is to be erased completely.
893    
894     =cut
895    
896     sub map_clear { }
897    
898     =item $conn->map_update ([ [x,y], [x,y], ...]) [OVERWRITE]
899    
900     Called with a list of x|y coordinate pairs (as arrayrefs) for cells that
901     have been updated and need refreshing.
902    
903     =cut
904    
905     sub map_update { }
906    
907     =item $conn->map_scroll ($dx, $dy) [OVERWRITE]
908    
909     Called whenever the map has been scrolled.
910    
911     =cut
912    
913     sub map_scroll { }
914    
915 root 1.20 =item $conn->face_update ($facenum, $facedata) [OVERWRITE]
916 root 1.1
917     Called with the face number of face structure whenever a face image has
918     changed.
919    
920     =cut
921    
922     sub face_update { }
923    
924 root 1.23 =item $conn->face_find ($facenum, $facedata) [OVERWRITE]
925 root 1.3
926     Find and return the png image for the given face, or the empty list if no
927     face could be found, in which case it will be requested from the server.
928    
929     =cut
930    
931     sub face_find { }
932    
933 root 1.1 =item $conn->send ($data)
934    
935     Send a single packet/line to the server.
936    
937     =cut
938    
939     sub send {
940     my ($self, $data) = @_;
941    
942     $data = pack "na*", length $data, $data;
943    
944     syswrite $self->{fh}, $data;
945     }
946    
947 root 1.27 =item $conn->send_command ($command)
948    
949     Uses either command or ncom to send a user-level command to the
950     server. Encodes the command to UTF-8.
951    
952     =cut
953    
954 root 1.26 sub send_command {
955     my ($self, $command) = @_;
956    
957     utf8::encode $command;
958     $self->send ("command $command");
959     }
960    
961 root 1.17 sub send_queue {
962     my ($self, $cmd) = @_;
963    
964     if (defined $cmd) {
965     push @{ $self->{send_queue} }, $cmd;
966     } else {
967     --$self->{outstanding};
968     }
969    
970 root 1.19 if ($self->{outstanding} < $self->{max_outstanding} && @{ $self->{send_queue} }) {
971 root 1.17 ++$self->{outstanding};
972 root 1.32 $self->send (shift @{ $self->{send_queue} });
973 root 1.17 }
974     }
975    
976 root 1.11 sub send_setup {
977     my ($self) = @_;
978    
979     my $setup = join " ", setup => %{$self->{setup_req}},
980     mapsize => "$self->{mapw}x$self->{maph}";
981 root 1.15
982 root 1.11 $self->send ($setup);
983     }
984    
985 root 1.1 =back
986    
987     =head1 AUTHOR
988    
989     Marc Lehmann <schmorp@schmorp.de>
990     http://home.schmorp.de/
991    
992     Robin Redeker <elmex@ta-sa.org>
993     http://www.ta-sa.org/
994    
995     =cut
996    
997     1