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.30 by root, Sun Feb 11 17:47:22 2007 UTC vs.
Revision 1.36 by root, Wed Apr 4 02:20:27 2007 UTC

2 2
3# login handling 3# login handling
4 4
5use Fcntl; 5use Fcntl;
6use Coro::AIO; 6use Coro::AIO;
7use List::Util qw(min max);
7 8
8my $PLAYERDIR = sprintf "%s/%s", cf::localdir, cf::playerdir; 9my $PLAYERDIR = sprintf "%s/%s", cf::localdir, cf::playerdir;
9 10
10# paranoia function to overwrite a string-in-place 11# paranoia function to overwrite a string-in-place
11sub nuke_str { 12sub nuke_str {
77 system "cd \Q$PLAYERDIR\E " 78 system "cd \Q$PLAYERDIR\E "
78 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null " 79 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null "
79 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)"; 80 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)";
80} 81}
81 82
83sub send_capabilities {
84 my ($ns) = @_;
85
86 return unless $ns->extcmd;
87
88 $ns->ext_event (capabilities =>
89 # id, name, flags (1 == 2d), edge length
90 tileset => [[1, "default 64x64 faceset", 1, 64], [0, "default 32x32 faceset", 1, 32]],
91 );
92}
93
94sub setup {
95 my ($ns, $args) = @_;
96
97 # run through the cmds of setup
98 # syntax is setup <cmdname1> <parameter> <cmdname2> <parameter> ...
99 #
100 # we send the status of the cmd back, or a FALSE is the cmd is the server unknown
101 # The client then must sort this out
102
103 my %setup = split / +/, $args;
104 while (my ($k, $v) = each %setup) {
105 if ($k eq "sound") {
106 $ns->sound ($v);
107
108 } elsif ($k eq "exp64") {
109 $setup{$k} = 1;
110
111 } elsif ($k eq "spellmon") {
112 $ns->monitor_spells ($v);
113
114 } elsif ($k eq "darkness") {
115 $ns->darkness ($v);
116
117 } elsif ($k eq "map1cmd") {
118 $ns->mapmode (cf::Map1Cmd) if $v > 0;
119
120 } elsif ($k eq "map1acmd") {
121 $ns->mapmode (cf::Map1aCmd) if $v > 0;
122
123 } elsif ($k eq "map2cmd") {
124 # gcfclient bug, map1acmd is sent too late
125 $ns->mapmode (cf::Map1aCmd);
126 $setup{$k} = "FALSE";
127
128 } elsif ($k eq "newmapcmd") {
129 $ns->newmapcmd ($v);
130
131 } elsif ($k eq "mapinfocmd") {
132 $ns->mapinfocmd ($v);
133
134 } elsif ($k eq "extcmd") {
135 $ns->extcmd ($v > 0);
136 send_capabilities $ns;
137
138 } elsif ($k eq "extmap") {
139 $ns->extmap ($v);
140
141 } elsif ($k eq "facecache") {
142 $ns->facecache ($v);
143
144 } elsif ($k eq "faceset") {
145 $ns->faceset (0);
146 $setup{$k} = 0;
147 # $ns->image2 (1)
148
149 } elsif ($k eq "tileset") {
150 $setup{$k} = $ns->faceset ($v & 1);
151
152 } elsif ($k eq "itemcmd") {
153 # Version of the item protocol command to use. Currently,
154 # only supported versions are 1 and 2. Using a numeric
155 # value will make it very easy to extend this in the future.
156 $ns->itemcmd ($v) if $v >= 1 && $v <= 2;
157
158 $setup{$k} = $ns->itemcmd;
159
160 } elsif ($k eq "mapsize") {
161 my ($x, $y) = split /x/, $v;
162
163 $ns->mapx ($x = max 9, min cf::MAP_CLIENT_X, ($x - 1) | 1);
164 $ns->mapy ($y = max 9, min cf::MAP_CLIENT_Y, ($y - 1) | 1);
165
166 $setup{$k} = "${x}x${y}";
167
168 } elsif ($k eq "extendedMapInfos") {
169 $ns->ext_mapinfos ($v);
170
171 } elsif ($k eq "extendedTextInfos") {
172 $ns->has_readable_type ($v);
173
174 } elsif ($k eq "fxix") {
175 $ns->fxix ($v);
176
177 } else {
178 # other commands:
179 # sexp: no idea, probably for oudated servers
180 # tick: more stupidity, server should sned a tick per tick
181
182 $setup{$k} = "FALSE";
183 }
184 }
185
186 $ns->send_packet (join " ", setup => %setup);
187
188 cf::datalog setup =>
189 request => $args,
190 reply => \%setup,
191 client => $ns->version,
192 ;
193}
194
82sub addme { 195sub addme {
83 my ($ns) = @_; 196 my ($ns) = @_;
84 197
85 $ns->destroy if $ns->pl; 198 if (!$ns->facecache)
199 {
200 $ns->send_drawinfo (<<EOF, cf::NDI_RED);
201
202
203***
204*** WARNING:
205*** Your client does not support face/image caching,
206*** or it has been disabled. Face caching is mandatory
207*** so please enable it or use a newer client.
208***
209*** Look at your client preferences:
210***
211*** CFPlus: all known versions automatically enable the facecache.
212*** cfclient: use the -cache commandline option.
213*** cfclient: map will not redraw automatically (bug).
214*** gcfclient: use -cache commandline option, or enable
215*** gcfclient: Client=>Configure=>Map & Image=>Cache Images.
216*** jcrossclient: your client is broken, use CFPlus or gcfclient.
217***
218***
219EOF
220 if ($ns->version =~ /jcrossclient/) {
221 # let them, for now
222 } else {
223 $ns->flush;
224 return $ns->destroy;
225 }
226
227 # $ns->facecache = true;
228 }
229
230 if ($ns->mapmode < cf::Map1aCmd) {
231 $ns->send_drawinfo (<<EOF, cf::NDI_RED);
232
233
234***
235*** WARNING:
236*** Your client is too old. Please upgrade to a newer version.
237EOF
238
239 $ns->flush;
240 return $ns->destroy;
241 }
242
243 $ns->pl and return $ns->destroy;
86 244
87 $ns->async (sub { 245 $ns->async (sub {
88 my ($user, $pass); 246 my ($user, $pass);
89 247
90 $ns->send_packet ("addme_success"); 248 $ns->send_packet ("addme_success");
283 } else { 441 } else {
284 $ob->reply (undef, 442 $ob->reply (undef,
285 "Ok, quitting, hope to see you again.", 443 "Ok, quitting, hope to see you again.",
286 cf::NDI_UNIQUE | cf::NDI_RED); 444 cf::NDI_UNIQUE | cf::NDI_RED);
287 $pl->ns->flush; 445 $pl->ns->flush;
288 $pl->quit_character; 446 cf::async { $pl->quit_character };
289 } 447 }
290 }); 448 });
291}; 449};
292 450
293cf::object->attach ( 451cf::object->attach (
340 }, 498 },
341); 499);
342 500
343cf::client->attach ( 501cf::client->attach (
344 on_addme => \&addme, 502 on_addme => \&addme,
503 on_setup => \&setup,
345); 504);
346 505
347############################################################################# 506#############################################################################
348 507
349our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs 508our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines