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.4 by root, Mon Jul 2 03:15:30 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 name value # widget member set 10# w_s id @attr # widget member set
9# w_g id rid name # 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"],
66 [5, "Pow"], 128 [5, "Pow"],
67 [6, "Cha"], 129 [6, "Cha"],
68 ) { 130 ) {
69 my ($x, $label) = @$_; 131 my ($x, $label) = @$_;
70 132
71 $statstable->add ($x, 0, $ws->new (Label => 133 $statstable->add_at ($x, 0, $ws->new (Label =>
72 can_hover => 1, can_events => 1, 134 can_hover => 1, can_events => 1,
73 align => +1, text => $label, tooltip => "#stat_$label", 135 align => +1, text => $label, tooltip => "#stat_$label",
74 )); 136 ));
75 $statstable->add ($x, 1, $ws->{stat}{$label} = $ws->new (Label => 137 $statstable->add_at ($x, 1, $ws->{stat}{$label} = $ws->new (Label =>
76 can_hover => 1, can_events => 1, 138 can_hover => 1, can_events => 1,
77 align => +1, template => "88", tooltip => "#stat_$label", 139 align => +1, template => "88", tooltip => "#stat_$label",
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
96 csc_start $ns; 177 #csc_start $ns;
97 }, 178 },
98); 179);
99 180
100cf::register_exticmd w_e => sub { 181cf::register_exticmd w_e => sub {
101 my ($ns, $pkt) = @_; 182 my ($ns, $id, @args) = @_;
102 183
103 if (my $w = $ns->{widget}{$pkt->{id}}) { 184 if (my $cb = $ns->{widget_cb}{$id}) {
104 if (my $cb = $w->{ev}{$pkt->{name}}) { 185 $cb->(@args);
105 $_->($w, @{ $pkt->{args} || [] })
106 for @$cb;
107 }
108 }
109
110 ()
111};
112
113cf::register_exticmd w_r => sub {
114 my ($ns, $pkt) = @_;
115
116 if (my $cb = delete $ns->{widget_return}{$pkt->{rid}}) {
117 $cb->(@{$pkt->{res} || [] });
118 } 186 }
119 187
120 () 188 ()
121}; 189};
122 190
126 my $id = ++$self->{id}; 194 my $id = ++$self->{id};
127 195
128 my $ws = bless { 196 my $ws = bless {
129 id => $id, 197 id => $id,
130 ns => $self, 198 ns => $self,
131 w => {}, 199 _w => {},
132 }, "ext::widget::set"; 200 }, "ext::widget::set";
133 201
202 cf::weaken $ws->{ns};
203
134 $ws->msg (ws_n => id => $id); 204 $ws->msg (ws_n => $id);
135 205
136 $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];
137} 216}
138 217
139############################################################################# 218#############################################################################
140 219
141package ext::widget::set; 220package ext::widget::set;
145} 224}
146 225
147sub destroy { 226sub destroy {
148 my ($self) = @_; 227 my ($self) = @_;
149 228
150 $self->msg (ws_d => id => $self->{id}); 229 $self->msg (ws_d => $self->{id});
151 delete $self->{ns}; 230 delete $self->{ns};
152 $_->destroy 231 $_->destroy
153 for values %{ $self->{w} }; 232 for values %{ $self->{w} };
154} 233}
155 234
156sub msg { 235sub msg {
157 my ($self, $type, %msg) = @_; 236 my ($self, @msg) = @_;
158 237
159 if (my $ns = shift->{ns}) { 238 if (my $ns = shift->{ns}) {
160 $msg{msgtype} = $type; 239 return unless $ns->{json_coder};#d# might be gone at destroy time(??)
161 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\%msg)); 240 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
162 } 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
163} 257}
164 258
165sub new { 259sub new {
166 my ($self, $class, %args) = @_; 260 my ($self, $class, %args) = @_;
167 261
168 my $id = ++$self->{ns}{id}; 262 my $proxy = $self->alloc;
169 263
170 my $proxy = $self->{w}{$id} = bless { 264 cf::weaken
171 id => $id, 265 +($self->{_w}{$proxy->{id}} = $proxy),
172 }, "ext::widget::proxy"; 266 +($proxy->{ws} = $self);
173
174 Scalar::Util::weaken ($proxy->{ws} = $self);
175 Scalar::Util::weaken ($proxy->{ns} = $self->{ns});
176 Scalar::Util::weaken ($self->{ns}{widget}{$id} = $proxy);
177 267
178 for my $ev (grep /^on_/, keys %args) { 268 for my $ev (grep /^on_/, keys %args) {
179 push @{$proxy->{ev}{$ev}}, $args{$ev}; 269 $args{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args{$ev});
180 $args{$ev} = 0;
181 } 270 }
182 271
183 $self->msg (ws_c => 272 $self->msg (ws_c =>
184 ws => $self->{w}{id}, 273 $self->{id},
185 id => $id, 274 $proxy->{id},
186 class => $class, 275 $class,
187 args => \%args, 276 \%args,
188 ); 277 );
189 278
190 $proxy 279 $proxy
191} 280}
192 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
193############################################################################# 353#############################################################################
194 354
195package ext::widget::proxy; 355package ext::widget::proxy;
196 356
197sub DESTROY { 357sub msg {
198 my ($self) = @_; 358 my ($self, $type, @arg) = @_;
199 359
200 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) = @_;
201 368
202 if (my $ws = $self->{ws}) { 369 if (my $ws = $self->{ws}) {
203 delete $ws->{w}{$self->{id}};
204 $self->msg (w_c => name => "destroy");
205 }
206}
207
208sub msg {
209 my ($self, $type, %msg) = @_;
210
211 if (my $ws = $self->{ws}) {
212 $ws->msg ($type,
213 %msg,
214 id => $self->{id},
215 );
216 }
217}
218
219sub msg_cb {
220 my ($self, $cb, $type, %msg) = @_;
221
222 if (my $ws = $self->{ws}) {
223
224 my $rid = ++$ws->{ns}{id}; 370 my $rid = $ws->{ns}->alloc_wid;
225
226 $self->msg ($type, %msg, rid => $rid);
227 371
228 if ($cb) { 372 if ($cb) {
229 $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);
230 } else { 380 } else {
231 # synchronous case 381 # synchronous case
232 my $wait = new Coro::Signal; 382 my $wait = new Coro::Signal;
233 my @res; 383 my @res;
234 384
235 $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
236 @res = @_; 389 @res = @_;
237 $wait->send; 390 $wait->send;
238 }; 391 };
392 $self->msg ($type, $rid, @arg);
239 $wait->wait; 393 $wait->wait;
240 394
241 return @res; 395 return @res;
242 } 396 }
243 } 397 }
244 398
245 () 399 ()
246} 400}
247 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
248sub set { 442sub set {
249 my ($self, $member, $value) = @_; 443 my ($self, @kv) = @_;
250 444
251 $self->msg (w_s => name => $member, value => $value); 445 $self->msg (w_s => \@kv);
252} 446}
253 447
254sub get { 448sub get {
255 my ($self, $member, $cb) = @_; 449 my ($self, $member, $cb) = @_;
256 450
257 $self->msg_cb ($cb, w_g => name => $member); 451 $self->msg_cb ($cb, w_g => ref $member ? @$member : $member);
258} 452}
259 453
260sub TO_JSON { 454sub TO_JSON {
261 { __widget_ref__ => $_[0]{id} } 455 { "\fw" => $_[0]{id} }
262} 456}
263 457
264our $AUTOLOAD; 458our $AUTOLOAD;
265 459
266sub AUTOLOAD { 460sub AUTOLOAD {
267 $AUTOLOAD =~ s/^.*:// 461 $AUTOLOAD =~ s/^.*://
268 or return; 462 or return;
269 463
270 my $self = shift; 464 my $self = shift;
271 465
466 #TODO: handle non-void context
272 $self->msg (w_c => name => $AUTOLOAD, args => \@_); 467 $self->msg (w_c => 0, $AUTOLOAD, @_);
273 468
274 () 469 ()
275} 470}
276 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