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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines