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.9 by root, Fri Jul 20 22:34:56 2007 UTC

14 14
15cf::client->attach ( 15cf::client->attach (
16 on_connect => sub { 16 on_connect => sub {
17 my ($ns) = @_; 17 my ($ns) = @_;
18 18
19 Scalar::Util::weaken (my $weakns = $ns);
20
19 $ns->{id} = "a"; 21 $ns->{id} = "a";
22 $ns->{json_coder}->filter_json_single_key_object (__widget_ref__ => sub {
23 # cannot deserialise ATM
24 undef
25 });
20 }, 26 },
21); 27);
22 28
23sub csc_update_stats { 29sub csc_update_stats {
24 my ($ns) = @_; 30 my ($ns) = @_;
25 31
26 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) { 32 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) {
27 $v->set_text ($ns->pl->ob->stats->$k); 33 $v->set_text ($ns->pl->ob->stats->$k);
28 } 34 }
35}
36
37sub demo_map {
38 my ($ns) = @_;
39
40 my $ws = $ns->{csc} = $ns->new_widgetset;
41
42 my $w = $ws->new (Toplevel =>
43 w => 200,
44 h => 200,
45 x => "center",
46 y => "center",
47 title => "Worldmap",
48 has_close_button => 1,
49 on_delete => sub {
50 $ws->destroy;
51 },
52 );
53
54 my $face = cf::face::find "res/worldmap.jpg";
55 $ns->send_face ($face);
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;
29} 63}
30 64
31sub csc_start { 65sub csc_start {
32 my ($ns) = @_; 66 my ($ns) = @_;
33 67
60 [5, "Pow"], 94 [5, "Pow"],
61 [6, "Cha"], 95 [6, "Cha"],
62 ) { 96 ) {
63 my ($x, $label) = @$_; 97 my ($x, $label) = @$_;
64 98
65 $statstable->add ($x, 0, $ws->new (Label => 99 $statstable->add_at ($x, 0, $ws->new (Label =>
66 can_hover => 1, can_events => 1, 100 can_hover => 1, can_events => 1,
67 align => +1, text => $label, tooltip => "#stat_$label", 101 align => +1, text => $label, tooltip => "#stat_$label",
68 )); 102 ));
69 $statstable->add ($x, 1, $ws->{stat}{$label} = $ws->new (Label => 103 $statstable->add_at ($x, 1, $ws->{stat}{$label} = $ws->new (Label =>
70 can_hover => 1, can_events => 1, 104 can_hover => 1, can_events => 1,
71 align => +1, template => "88", tooltip => "#stat_$label", 105 align => +1, template => "88", tooltip => "#stat_$label",
72 )); 106 ));
73 } 107 }
74 108
85 119
86 my $ns = $pl->ns; 120 my $ns = $pl->ns;
87 121
88 return unless $ns->{can_widget}; 122 return unless $ns->{can_widget};
89 123
124 demo_map $ns;
90 csc_start $ns; 125 #csc_start $ns;
91 }, 126 },
92); 127);
93 128
94cf::register_exticmd w_e => sub { 129cf::register_exticmd w_e => sub {
95 my ($ns, $pkt) = @_; 130 my ($ns, $pkt) = @_;
150sub msg { 185sub msg {
151 my ($self, $type, %msg) = @_; 186 my ($self, $type, %msg) = @_;
152 187
153 if (my $ns = shift->{ns}) { 188 if (my $ns = shift->{ns}) {
154 $msg{msgtype} = $type; 189 $msg{msgtype} = $type;
155 $ns->send_packet ("ext " . cf::to_json \%msg); 190 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\%msg));
156 } 191 }
157} 192}
158 193
159sub new { 194sub new {
160 my ($self, $class, %args) = @_; 195 my ($self, $class, %args) = @_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines