ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/setup.ext
Revision: 1.10
Committed: Fri Dec 19 22:47:29 2008 UTC (15 years, 5 months ago) by root
Branch: MAIN
Changes since 1.9: +4 -2 lines
Log Message:
new los code

File Contents

# User Rev Content
1 root 1.1 #! perl # mandatory
2    
3     # the setup command
4    
5     use List::Util qw(min max);
6    
7     sub send_capabilities {
8     my ($ns) = @_;
9    
10     return unless $ns->extcmd;
11    
12 root 1.3 $ns->ext_msg (capabilities =>
13 root 1.1 # id, name, flags (1 == 2d), edge length
14     tileset => [[1, "default 64x64 faceset", 1, 64], [0, "default 32x32 faceset", 1, 32]],
15     );
16     }
17    
18     cf::client->attach (on_setup => sub {
19     my ($ns, $args) = @_;
20    
21     # run through the cmds of setup
22     # syntax is setup <cmdname1> <parameter> <cmdname2> <parameter> ...
23     #
24     # we send the status of the cmd back, or a FALSE is the cmd is the server unknown
25     # The client then must sort this out
26    
27     my %setup = split / +/, $args;
28     while (my ($k, $v) = each %setup) {
29     if ($k eq "sound") {
30     $ns->sound ($v);
31    
32     } elsif ($k eq "exp64") {
33     $setup{$k} = 1;
34    
35     } elsif ($k eq "spellmon") {
36     $ns->monitor_spells ($v);
37    
38     } elsif ($k eq "darkness") {
39     $ns->darkness ($v);
40    
41     } elsif ($k eq "map1cmd") {
42     $ns->mapmode (cf::Map1Cmd) if $v > 0;
43    
44     } elsif ($k eq "map1acmd") {
45     $ns->mapmode (cf::Map1aCmd) if $v > 0;
46    
47     } elsif ($k eq "map2cmd") {
48     # gcfclient bug, map1acmd is sent too late
49     $ns->mapmode (cf::Map1aCmd);
50     $setup{$k} = "FALSE";
51    
52     } elsif ($k eq "newmapcmd") {
53     $ns->newmapcmd ($v);
54    
55     } elsif ($k eq "mapinfocmd") {
56     $ns->mapinfocmd ($v);
57    
58     } elsif ($k eq "extcmd") {
59 root 1.3 $ns->extcmd (min 2, $v);
60 root 1.1 send_capabilities $ns;
61    
62     } elsif ($k eq "extmap") {
63     $ns->extmap ($v);
64    
65     } elsif ($k eq "facecache") {
66     if (!$v) {
67     $v = 1;
68     $setup{$k} = $v;
69     $ns->send_drawinfo ("(trying to forcefully enable facecaching)", cf::NDI_RED);
70     }
71    
72     $ns->facecache ($v);
73    
74     } elsif ($k eq "faceset") {
75     $ns->faceset (0);
76     $setup{$k} = 0;
77     # $ns->image2 (1)
78    
79     } elsif ($k eq "tileset") {
80     $setup{$k} = $ns->faceset ($v & 1);
81    
82     } elsif ($k eq "itemcmd") {
83     # Version of the item protocol command to use. Currently,
84     # only supported versions are 1 and 2. Using a numeric
85     # value will make it very easy to extend this in the future.
86     $ns->itemcmd ($v) if $v >= 1 && $v <= 2;
87    
88     $setup{$k} = $ns->itemcmd;
89    
90     } elsif ($k eq "mapsize") {
91     my ($x, $y) = split /x/, $v;
92    
93 root 1.10 # we *need* to make sure we use an odd map size, as the remaining
94     # code relies on this.
95     $ns->mapx ($x = max 9, min +(cf::MAP_CLIENT_X - 1) | 1, ($x - 1) | 1);
96     $ns->mapy ($y = max 9, min +(cf::MAP_CLIENT_Y - 1) | 1, ($y - 1) | 1);
97 root 1.1
98     $setup{$k} = "${x}x${y}";
99    
100     } elsif ($k eq "extendedMapInfos") {
101     $ns->ext_mapinfos ($v);
102    
103     } elsif ($k eq "extendedTextInfos") {
104     $ns->has_readable_type ($v);
105    
106     } elsif ($k eq "smoothing") { # cfplus-style smoothing
107     $ns->smoothing ($v);
108    
109     } elsif ($k eq "fxix") {
110 root 1.4 $ns->fxix ($setup{$k} = min 3, $v);
111 root 1.1
112     } elsif ($k eq "msg") {
113     $ns->can_msg ($setup{$k} = min 2, $v);
114    
115 root 1.7 } elsif ($k eq "widget") {
116     # server-side widgets
117     $v = $v > 1;
118     $ns->{can_widget} = $v;
119 root 1.8 $ns->fx_want (6 => 1); # need support for RSRC
120 root 1.7 $setup{$k} = $v ? 2 : 0;
121 root 1.1
122 root 1.9 } elsif ($k eq "lzf") {
123     # the lzf packet simply contains an lzf-compressed packet as argument
124     $ns->{can_lzf} = $v == 1;
125    
126     } elsif ($k eq "frag") {
127     # the frag packet contains data which gets appended to the existing packet buffer.
128     # empty frag packet means end of packet.
129     $ns->{can_frag} = $v == 1;
130    
131 root 1.1 } elsif ($k eq "excmd") {
132     # we support it
133    
134     } else {
135     # other commands:
136     # sexp: no idea, probably for oudated servers
137     # tick: more stupidity, server should send a tick per tick
138    
139     $setup{$k} = "FALSE";
140     }
141     }
142    
143     $ns->send_packet (join " ", setup => %setup);
144    
145     cf::datalog setup =>
146     request => $args,
147     reply => \%setup,
148     client => $ns->version,
149     ;
150     });
151    
152