ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/widget.ext
(Generate patch)

Comparing deliantra/server/ext/widget.ext (file contents):
Revision 1.11 by root, Sat Jul 21 18:01:26 2007 UTC vs.
Revision 1.28 by root, Thu Apr 29 07:52:02 2010 UTC

1#! perl # mandatory depends=login 1#! perl # mandatory depends=login
2 2
3# sends the following ext message types 3# sends the following ext message types
4# ws_a id name... # associate well-known widget with given id
4# ws_n id # widgetset new 5# ws_n ws # widgetset new
5# ws_d id # widgetset destroy 6# ws_d ws # widgetset destroy
6# ws_c ws id class args # widgetset create 7# ws_c ws id class @args # widgetset create
8# ws_ct ws ttype ttext done_cb \%cfg # widgetset create from template
7# w_c id [rid] name args # widget method call 9# w_c id rid name @args # widget method call
8# w_s id @attr # widget member set 10# w_s id @attr # widget member set
9# w_g id rid @attr # widget member get 11# w_g id rid @attr # widget member get
10# 12#
11# and expects the following exti message types 13# and expects the following exti message types
12# w_r rid res # widget call return
13# w_e id name args # widget_event 14# w_e id @args # widget_call
14 15
15cf::client->attach ( 16cf::client->attach (
16 on_connect => sub { 17 on_connect => sub {
17 my ($ns) = @_; 18 my ($ns) = @_;
18 19
19 Scalar::Util::weaken (my $weakns = $ns);
20
21 $ns->{id} = "a"; 20 $ns->{id} = "a";
22 $ns->{json_coder}->filter_json_single_key_object (__widget_ref__ => sub { 21 $ns->{json_coder}->filter_json_single_key_object ("\fw" => sub {
23 # cannot deserialise ATM 22 $ns->{widget}{$_[0]}
24 undef
25 }); 23 });
24
25 cf::weaken $ns;
26 }, 26 },
27); 27);
28 28
29sub csc_update_stats { 29sub csc_update_stats {
30 my ($ns) = @_; 30 my ($ns) = @_;
31 31
32 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) { 32 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) {
33 $v->set_text ($ns->pl->ob->stats->$k); 33 $v->set_text ($ns->pl->ob->stats->$k);
34 } 34 }
35} 35}
36
37my $cg_template = eval <<EOF;
38[
39 Toplevel => {
40 s_id => "toplevel",
41 title => "Character Creation",
42 x => "center",
43 y => "center",
44 z => 5,
45 force_w => 760,
46 force_h => 440,
47 s_cl => [VBox => { s_cl => [
48 Label => {
49 text => "Character Creation",
50 fontsize => 1,
51 align => 0,
52 },
53 Label => {
54 markup => "View or Edit your character attributes below, then press <b>Finish</b> to create your character",
55 fontsize => 0.8,
56 align => 0,
57 },
58 HBox => { s_cl => [
59 Face => {
60 s_id => "face",
61 face => 0,
62 bg => [.2, .2, .2, 1],
63 min_w => 64,
64 min_h => 64,
65 },
66 Label => {
67 s_id => "desc",
68 fontsize => 0.8,
69 ellipsize => 0,
70 },
71 ]},
72 Notebook => {
73 expand => 1,
74 s_cl => [
75 Table => {
76 c_tab => ["Basics", "Title, background and other information of your character."],
77 },
78 Table => {
79 c_tab => ["Stats", "Your character's primary stats such as strength, dexterity and so on."],
80 },
81 Table => {
82 c_tab => ["Race", "Your character's race."],
83 },
84 Table => {
85 c_tab => ["Class", "Your character's initial class."],
86 },
87 ],
88 },
89 Button => {
90 s_id => "finish",
91 text => "Finish",
92 },
93 ]}],
94 },
95]
96EOF
97die if $@;
36 98
37sub csc_start { 99sub csc_start {
38 my ($ns) = @_; 100 my ($ns) = @_;
39 101
40 my $ws = $ns->{csc} = $ns->new_widgetset; 102 my $ws = $ns->{csc} = $ns->new_widgetset;
51 }, 113 },
52 ); 114 );
53 115
54 $w->add (my $ntb = $ws->new (Notebook => expand => 1)); 116 $w->add (my $ntb = $ws->new (Notebook => expand => 1));
55 117
56 $ntb->add (Statistics => (my $stats = $ws->new (Table => expand => 1)), "Basic statistics of your new character"); 118 $ntb->add_tab (Statistics => (my $stats = $ws->new (Table => expand => 1)), "Basic statistics of your new character");
57 119
58 $stats->add (0, 0, (my $statstable = $ws->new ("Table"))); 120 $stats->add_at (0, 0, (my $statstable = $ws->new ("Table")));
59 121
60 for ( 122 for (
61 [0, "Str"], 123 [0, "Str"],
62 [1, "Dex"], 124 [1, "Dex"],
63 [2, "Con"], 125 [2, "Con"],
78 )); 140 ));
79 } 141 }
80 142
81 csc_update_stats $ns; 143 csc_update_stats $ns;
82 144
145 $ws->{tl} = $w;
83 $w->show; 146 $w->show;
147
148# my ($tl, $entry) = $ws->template (inline => $cg_template,
149# [
150# toplevel => {},
151# entry => {
152# text => "xyz",
153# on_changed => sub {
154# warn "changed<@_>\n";#d#
155# },
156# },
157# ],
158# );
159#
160# $tl->show;
161#
162# $ns->{xxxw} = [$tl, $entry];#d#
163#
164# $ws->find ("setup_notebook")->add ($ws->{tab});
165# $ws->find ("setup_dialog")->toggle_visibility;
84} 166}
85 167
86cf::player->attach ( 168cf::player->attach (
87 on_login => sub { 169 on_login => sub {
88 my ($pl) = @_; 170 my ($pl) = @_;
89 171
172 my $ns = $pl->ns;
173 return unless $ns->{can_widget};
174
90 return unless $cf::CFG{devel}; 175 return unless $cf::CFG{devel};
91 176
92 my $ns = $pl->ns;
93
94 return unless $ns->{can_widget};
95 #csc_start $ns; 177 #csc_start $ns;
96 }, 178 },
97); 179);
98 180
99cf::register_exticmd w_e => sub { 181cf::register_exticmd w_e => sub {
100 my ($ns, $pkt) = @_; 182 my ($ns, $id, @args) = @_;
101 183
102 if (my $w = $ns->{widget}{$pkt->{id}}) { 184 if (my $cb = $ns->{widget_cb}{$id}) {
103 if (my $cb = $w->{ev}{$pkt->{name}}) { 185 $cb->(@args);
104 $_->($w, @{ $pkt->{args} || [] })
105 for @$cb;
106 }
107 }
108
109 ()
110};
111
112cf::register_exticmd w_r => sub {
113 my ($ns, $pkt) = @_;
114
115 if (my $cb = delete $ns->{widget_return}{$pkt->{rid}}) {
116 $cb->(@{$pkt->{res} || [] });
117 } 186 }
118 187
119 () 188 ()
120}; 189};
121 190
125 my $id = ++$self->{id}; 194 my $id = ++$self->{id};
126 195
127 my $ws = bless { 196 my $ws = bless {
128 id => $id, 197 id => $id,
129 ns => $self, 198 ns => $self,
130 w => {}, 199 _w => {},
131 }, "ext::widget::set"; 200 }, "ext::widget::set";
132 201
202 cf::weaken $ws->{ns};
203
133 $ws->msg (ws_n => id => $id); 204 $ws->msg (ws_n => $id);
134 205
135 $ws 206 $ws
207}
208
209sub cf::client::alloc_wid {
210 pop @{ $_[0]{ids} }
211 or ++$_[0]{id}
212}
213
214sub cf::client::free_wid {
215 push @{ $_[0]{ids} }, $_[1];
136} 216}
137 217
138############################################################################# 218#############################################################################
139 219
140package ext::widget::set; 220package ext::widget::set;
144} 224}
145 225
146sub destroy { 226sub destroy {
147 my ($self) = @_; 227 my ($self) = @_;
148 228
149 $self->msg (ws_d => id => $self->{id}); 229 $self->msg (ws_d => $self->{id});
150 delete $self->{ns}; 230 delete $self->{ns};
151 $_->destroy 231 $_->destroy
152 for values %{ $self->{w} }; 232 for values %{ $self->{w} };
153} 233}
154 234
155sub msg { 235sub msg {
156 my ($self, $type, %msg) = @_; 236 my ($self, @msg) = @_;
157 237
158 if (my $ns = shift->{ns}) { 238 if (my $ns = shift->{ns}) {
159 $msg{msgtype} = $type; 239 return unless $ns->{json_coder};#d# might be gone at destroy time(??)
160 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\%msg)); 240 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
161 } 241 }
242}
243
244sub alloc {
245 my ($self) = @_;
246
247 my $id = $self->{ns}->alloc_wid;
248
249 my $proxy = bless {
250 id => $id,
251 }, "ext::widget::proxy";
252
253 cf::weaken ($proxy->{ns} = $self->{ns});
254 cf::weaken ($self->{ns}{widget}{$id} = $proxy);
255
256 $proxy
162} 257}
163 258
164sub new { 259sub new {
165 my ($self, $class, %args) = @_; 260 my ($self, $class, %args) = @_;
166 261
167 my $id = ++$self->{ns}{id}; 262 my $proxy = $self->alloc;
168 263
169 my $proxy = $self->{w}{$id} = bless { 264 cf::weaken
170 id => $id, 265 +($self->{_w}{$proxy->{id}} = $proxy),
171 }, "ext::widget::proxy"; 266 +($proxy->{ws} = $self);
172
173 Scalar::Util::weaken ($proxy->{ws} = $self);
174 Scalar::Util::weaken ($proxy->{ns} = $self->{ns});
175 Scalar::Util::weaken ($self->{ns}{widget}{$id} = $proxy);
176 267
177 for my $ev (grep /^on_/, keys %args) { 268 for my $ev (grep /^on_/, keys %args) {
178 push @{$proxy->{ev}{$ev}}, $args{$ev}; 269 $args{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args{$ev});
179 $args{$ev} = 0;
180 } 270 }
181 271
182 $self->msg (ws_c => 272 $self->msg (ws_c =>
183 ws => $self->{w}{id}, 273 $self->{id},
184 id => $id, 274 $proxy->{id},
185 class => $class, 275 $class,
186 args => \%args, 276 \%args,
187 ); 277 );
188 278
189 $proxy 279 $proxy
190} 280}
191 281
282sub template {
283 my ($self, $type, $template, $args, $done_cb) = @_;
284
285 my %cfg;
286
287 while (@$args) {
288 my ($name, $args) = splice @$args, 0, 2, ();
289
290 my $proxy = $self->alloc;
291
292 $self->{delete $args->{alias} or $name} = $proxy;
293
294 cf::weaken
295 +($self->{_w}{$proxy->{id}} = $proxy),
296 +($proxy->{ws} = $self);
297
298 for my $ev (grep /^on_/, keys %$args) {
299 $args->{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args->{$ev});
300 }
301
302 $cfg{$name} = {
303 %$args,
304 id => $proxy->{id},
305 };
306 }
307
308 if ($done_cb) {
309 my $proxy = $self->alloc;
310 my $ocb = $done_cb;
311 $done_cb = $proxy->cb (sub {
312 undef $proxy;
313 undef $done_cb;
314 &$ocb
315 });
316 }
317
318 if ($type eq "face") {
319 $self->{ns}->send_face ($template, 100);
320 $self->{ns}->flush_fx;
321 }
322
323 $self->msg (ws_ct =>
324 $self->{id},
325 $type => $template,
326 $done_cb,
327 \%cfg,
328 );
329}
330
331sub find {
332 my ($self, @names) = @_;
333
334 my @res;
335 my @alloc;
336
337 for my $name (@names) {
338 push @res, $self->{ns}{widget_wkw}{$name} ||= do {
339 my $proxy = $self->alloc;
340
341 push @alloc, $proxy->{id} => $name;
342
343 $proxy
344 };
345 }
346
347 $self->msg (ws_a => @alloc)
348 if @alloc;
349
350 wantarray ? @res : $res[0]
351}
352
192############################################################################# 353#############################################################################
193 354
194package ext::widget::proxy; 355package ext::widget::proxy;
195 356
196sub DESTROY { 357sub msg {
197 my ($self) = @_; 358 my ($self, $type, @arg) = @_;
198 359
199 delete $self->{ns}{widget}{$self->{id}}; 360 if (my $ns = $self->{ns}) {
361 my @msg = ($type, $self->{id}, @arg);
362 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
363 }
364}
365
366sub msg_cb {
367 my ($self, $cb, $type, @arg) = @_;
200 368
201 if (my $ws = $self->{ws}) { 369 if (my $ws = $self->{ws}) {
202 delete $ws->{w}{$self->{id}};
203 $self->msg (w_c => name => "destroy");
204 }
205}
206
207sub msg {
208 my ($self, $type, %msg) = @_;
209
210 if (my $ws = $self->{ws}) {
211 $ws->msg ($type,
212 %msg,
213 id => $self->{id},
214 );
215 }
216}
217
218sub msg_cb {
219 my ($self, $cb, $type, %msg) = @_;
220
221 if (my $ws = $self->{ws}) {
222
223 my $rid = ++$ws->{ns}{id}; 370 my $rid = $ws->{ns}->alloc_wid;
224
225 $self->msg ($type, %msg, rid => $rid);
226 371
227 if ($cb) { 372 if ($cb) {
228 $ws->{ns}{widget_return}{$rid} = $cb; 373 $ws->{ns}{widget_cb}{$rid} = sub {
374 delete $ws->{ns}{widget_cb}{$rid};
375 $ws->{ns}->free_wid ($rid);
376 &$cb
377 };
378
379 $self->msg ($type, $rid, @arg);
229 } else { 380 } else {
230 # synchronous case 381 # synchronous case
231 my $wait = new Coro::Signal; 382 my $wait = new Coro::Signal;
232 my @res; 383 my @res;
233 384
234 $ws->{ns}{widget_return}{$rid} = sub { 385 $ws->{ns}{widget_cb}{$rid} = sub {
386 delete $ws->{ns}{widget_cb}{$rid};
387 $ws->{ns}->free_wid ($rid);
388
235 @res = @_; 389 @res = @_;
236 $wait->send; 390 $wait->send;
237 }; 391 };
392 $self->msg ($type, $rid, @arg);
238 $wait->wait; 393 $wait->wait;
239 394
240 return @res; 395 return @res;
241 } 396 }
242 } 397 }
243 398
244 () 399 ()
245} 400}
246 401
402sub DESTROY {
403 my ($self) = @_;
404
405 delete $self->{ns}{widget}{$self->{id}};
406
407 if (my $ws = $self->{ws}) {
408 $self->msg (w_c => 0, "destroy");
409 delete $ws->{_w}{$self->{id}};
410 }
411}
412
413sub cb {
414 my ($self, $cb) = @_;
415
416 my $proxy = bless {
417 ns => $self->{ns},
418 id => $self->{ns}->alloc_wid,
419 }, "ext::widget::callback";
420
421 cf::weaken $proxy->{ns};
422
423 $self->{ns}{widget_cb}{$proxy->{id}} = $cb;
424
425 $proxy
426}
427
428sub oneshot_cb {
429 my ($self, $cb) = @_;
430
431 if ("CODE" eq ref $cb) {
432 my $ocb = $cb;
433 $cb = cb $self, sub {
434 undef $cb;
435 &$ocb
436 };
437 }
438
439 $cb
440}
441
247sub set { 442sub set {
248 my ($self, $member, $value) = @_; 443 my ($self, @kv) = @_;
249 444
250 $self->msg (w_s => attr => [ [$member, $value] ]); 445 $self->msg (w_s => \@kv);
251} 446}
252 447
253sub get { 448sub get {
254 my ($self, $member, $cb) = @_; 449 my ($self, $member, $cb) = @_;
255 450
256 $self->msg_cb ($cb, w_g => attr => [$member]); 451 $self->msg_cb ($cb, w_g => ref $member ? @$member : $member);
257} 452}
258 453
259sub TO_JSON { 454sub TO_JSON {
260 { __widget_ref__ => $_[0]{id} } 455 { "\fw" => $_[0]{id} }
261} 456}
262 457
263our $AUTOLOAD; 458our $AUTOLOAD;
264 459
265sub AUTOLOAD { 460sub AUTOLOAD {
266 $AUTOLOAD =~ s/^.*:// 461 $AUTOLOAD =~ s/^.*://
267 or return; 462 or return;
268 463
269 my $self = shift; 464 my $self = shift;
270 465
466 #TODO: handle non-void context
271 $self->msg (w_c => name => $AUTOLOAD, args => \@_); 467 $self->msg (w_c => 0, $AUTOLOAD, @_);
272 468
273 () 469 ()
274} 470}
275 471
472package ext::widget::callback;
473
474sub DESTROY {
475 my ($self) = @_;
476
477 if (my $ns = $self->{ns}) {
478 delete $ns->{widget_cb}{$self->{id}};
479 $ns->free_wid ($self->{id});
480 }
481}
482
483sub TO_JSON {
484 { "\fc" => $_[0]{id} }
485}
486

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines