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.9 by root, Fri Jul 20 22:34:56 2007 UTC vs.
Revision 1.29 by root, Mon Oct 29 23:56:43 2012 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) = @_;
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 36
37sub demo_map { 37my $cg_template = eval <<EOF;
38 my ($ns) = @_; 38[
39 39 Toplevel => {
40 my $ws = $ns->{csc} = $ns->new_widgetset; 40 s_id => "toplevel",
41 41 title => "Character Creation",
42 my $w = $ws->new (Toplevel =>
43 w => 200,
44 h => 200,
45 x => "center", 42 x => "center",
46 y => "center", 43 y => "center",
47 title => "Worldmap", 44 z => 5,
48 has_close_button => 1, 45 force_w => 760,
49 on_delete => sub { 46 force_h => 440,
50 $ws->destroy; 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 },
51 }, 93 ]}],
52 ); 94 },
53 95]
54 my $face = cf::face::find "res/worldmap.jpg"; 96EOF
55 $ns->send_face ($face); 97die if $@;
56
57 $w->add (my $sw = $ws->new (ScrolledWindow => scroll_x => 1, scroll_y => 1));
58 $sw->add (my $fixed = $ws->new (Fixed => expand => 1));
59 $fixed->add ($ws->new (Face => expand => 1, size_w => undef, size_h => undef, face => $face), abs => 0, 0, rel => 1, 1);
60 $fixed->add ($ws->new (Label => text => "lb1"), abs => 10, 10, rel => 1, 1);
61
62 $w->show;
63}
64 98
65sub csc_start { 99sub csc_start {
66 my ($ns) = @_; 100 my ($ns) = @_;
67 101
68 my $ws = $ns->{csc} = $ns->new_widgetset; 102 my $ws = $ns->{csc} = $ns->new_widgetset;
79 }, 113 },
80 ); 114 );
81 115
82 $w->add (my $ntb = $ws->new (Notebook => expand => 1)); 116 $w->add (my $ntb = $ws->new (Notebook => expand => 1));
83 117
84 $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");
85 119
86 $stats->add (0, 0, (my $statstable = $ws->new ("Table"))); 120 $stats->add_at (0, 0, (my $statstable = $ws->new ("Table")));
87 121
88 for ( 122 for (
89 [0, "Str"], 123 [0, "Str"],
90 [1, "Dex"], 124 [1, "Dex"],
91 [2, "Con"], 125 [2, "Con"],
106 )); 140 ));
107 } 141 }
108 142
109 csc_update_stats $ns; 143 csc_update_stats $ns;
110 144
145 $ws->{tl} = $w;
111 $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;
112} 166}
113 167
114cf::player->attach ( 168cf::player->attach (
115 on_login => sub { 169 on_login => sub {
116 my ($pl) = @_; 170 my ($pl) = @_;
117 171
172 my $ns = $pl->ns;
173 return unless $ns->{can_widget};
174
118 return unless $cf::CFG{devel}; 175 return unless $cf::CFG{devel};
119 176
120 my $ns = $pl->ns;
121
122 return unless $ns->{can_widget};
123
124 demo_map $ns;
125 #csc_start $ns; 177 #csc_start $ns;
126 }, 178 },
127); 179);
128 180
129cf::register_exticmd w_e => sub { 181cf::register_exticmd w_e => sub {
130 my ($ns, $pkt) = @_; 182 my ($ns, $id, @args) = @_;
131 183
132 if (my $w = $ns->{widget}{$pkt->{id}}) { 184 if (my $cb = $ns->{widget_cb}{$id}) {
133 if (my $cb = $w->{ev}{$pkt->{name}}) { 185 $cb->(@args);
134 $_->($w, @{ $pkt->{args} || [] })
135 for @$cb;
136 }
137 }
138
139 ()
140};
141
142cf::register_exticmd w_r => sub {
143 my ($ns, $pkt) = @_;
144
145 if (my $cb = delete $ns->{widget_return}{$pkt->{rid}}) {
146 $cb->(@{$pkt->{res} || [] });
147 } 186 }
148 187
149 () 188 ()
150}; 189};
151 190
155 my $id = ++$self->{id}; 194 my $id = ++$self->{id};
156 195
157 my $ws = bless { 196 my $ws = bless {
158 id => $id, 197 id => $id,
159 ns => $self, 198 ns => $self,
160 w => {}, 199 _w => {},
161 }, "ext::widget::set"; 200 }, "ext::widget::set";
162 201
202 cf::weaken $ws->{ns};
203
163 $ws->msg (ws_n => id => $id); 204 $ws->msg (ws_n => $id);
164 205
165 $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];
166} 216}
167 217
168############################################################################# 218#############################################################################
169 219
170package ext::widget::set; 220package ext::widget::set;
174} 224}
175 225
176sub destroy { 226sub destroy {
177 my ($self) = @_; 227 my ($self) = @_;
178 228
179 $self->msg (ws_d => id => $self->{id}); 229 $self->msg (ws_d => $self->{id});
180 delete $self->{ns}; 230 delete $self->{ns};
181 $_->destroy 231 $_->destroy
182 for values %{ $self->{w} }; 232 for values %{ $self->{w} };
183} 233}
184 234
185sub msg { 235sub msg {
186 my ($self, $type, %msg) = @_; 236 my ($self, @msg) = @_;
187 237
188 if (my $ns = shift->{ns}) { 238 if (my $ns = shift->{ns}) {
189 $msg{msgtype} = $type; 239 return unless $ns->{json_coder};#d# might be gone at destroy time(??)
190 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\%msg)); 240 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
191 } 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
192} 257}
193 258
194sub new { 259sub new {
195 my ($self, $class, %args) = @_; 260 my ($self, $class, %args) = @_;
196 261
197 my $id = ++$self->{ns}{id}; 262 my $proxy = $self->alloc;
198 263
199 my $proxy = $self->{w}{$id} = bless { 264 cf::weaken
200 id => $id, 265 +($self->{_w}{$proxy->{id}} = $proxy),
201 }, "ext::widget::proxy"; 266 +($proxy->{ws} = $self);
202
203 Scalar::Util::weaken ($proxy->{ws} = $self);
204 Scalar::Util::weaken ($proxy->{ns} = $self->{ns});
205 Scalar::Util::weaken ($self->{ns}{widget}{$id} = $proxy);
206 267
207 for my $ev (grep /^on_/, keys %args) { 268 for my $ev (grep /^on_/, keys %args) {
208 push @{$proxy->{ev}{$ev}}, $args{$ev}; 269 $args{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args{$ev});
209 $args{$ev} = 0;
210 } 270 }
211 271
212 $self->msg (ws_c => 272 $self->msg (ws_c =>
213 ws => $self->{w}{id}, 273 $self->{id},
214 id => $id, 274 $proxy->{id},
215 class => $class, 275 $class,
216 args => \%args, 276 \%args,
217 ); 277 );
218 278
219 $proxy 279 $proxy
220} 280}
221 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
222############################################################################# 353#############################################################################
223 354
224package ext::widget::proxy; 355package ext::widget::proxy;
225 356
226sub DESTROY { 357sub msg {
227 my ($self) = @_; 358 my ($self, $type, @arg) = @_;
228 359
229 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) = @_;
230 368
231 if (my $ws = $self->{ws}) { 369 if (my $ws = $self->{ws}) {
232 delete $ws->{w}{$self->{id}};
233 $self->msg (w_c => name => "destroy");
234 }
235}
236
237sub msg {
238 my ($self, $type, %msg) = @_;
239
240 if (my $ws = $self->{ws}) {
241 $ws->msg ($type,
242 %msg,
243 id => $self->{id},
244 );
245 }
246}
247
248sub msg_cb {
249 my ($self, $cb, $type, %msg) = @_;
250
251 if (my $ws = $self->{ws}) {
252
253 my $rid = ++$ws->{ns}{id}; 370 my $rid = $ws->{ns}->alloc_wid;
254
255 $self->msg ($type, %msg, rid => $rid);
256 371
257 if ($cb) { 372 if ($cb) {
258 $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);
259 } else { 380 } else {
260 # synchronous case 381 # synchronous case
261 my $wait = new Coro::Signal; 382 my $wait = new Coro::Signal;
262 my @res; 383 my @res;
263 384
264 $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
265 @res = @_; 389 @res = @_;
266 $wait->send; 390 $wait->send;
267 }; 391 };
392 $self->msg ($type, $rid, @arg);
268 $wait->wait; 393 $wait->wait;
269 394
270 return @res; 395 return @res;
271 } 396 }
272 } 397 }
273 398
274 () 399 ()
275} 400}
276 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
277sub set { 442sub set {
278 my ($self, $member, $value) = @_; 443 my ($self, @kv) = @_;
279 444
280 $self->msg (w_s => name => $member, value => $value); 445 $self->msg (w_s => \@kv);
281} 446}
282 447
283sub get { 448sub get {
284 my ($self, $member, $cb) = @_; 449 my ($self, $member, $cb) = @_;
285 450
286 $self->msg_cb ($cb, w_g => name => $member); 451 $self->msg_cb ($cb, w_g => ref $member ? @$member : $member);
287} 452}
288 453
289sub TO_JSON { 454sub TO_JSON {
290 { __widget_ref__ => $_[0]{id} } 455 { "\fw" => $_[0]{id} }
291} 456}
292 457
293our $AUTOLOAD; 458our $AUTOLOAD;
294 459
295sub AUTOLOAD { 460sub AUTOLOAD {
296 $AUTOLOAD =~ s/^.*:// 461 $AUTOLOAD =~ s/^.*://
297 or return; 462 or return;
298 463
299 my $self = shift; 464 my $self = shift;
300 465
466 #TODO: handle non-void context
301 $self->msg (w_c => name => $AUTOLOAD, args => \@_); 467 $self->msg (w_c => 0, $AUTOLOAD, @_);
302 468
303 () 469 ()
304} 470}
305 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