ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Macro.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/Macro.pm (file contents):
Revision 1.5 by root, Sat Dec 9 23:06:39 2006 UTC vs.
Revision 1.9 by root, Tue Aug 28 01:23:47 2007 UTC

1package CFPlus::Macro; 1package CFPlus::Macro;
2 2
3use strict; 3use strict;
4 4
5use List::Util ();
5use CFPlus::UI; 6use CFPlus::UI;
6 7
7our $REFRESH_MACRO_LIST; 8our $REFRESH_MACRO_LIST;
9
10our %DEFAULT_KEYMAP = (
11 (map +($_ => "!completer $_"), "a" .. "z"),
12 "(!)" => "!completer shout ",
13 "(\")" => "!completer say ",
14 "(')" => "!completer",
15
16 "LShift-tab" => "!toggle-messagewindow",
17 "RShift-tab" => "!toggle-messagewindow",
18 "tab" => "!toggle-playerbook",
19 "f1" => "!toggle-help",
20 "f2" => "!toggle-stats",
21 "f3" => "!toggle-skills",
22 "f4" => "!toggle-spells",
23 "f5" => "!toggle-inventory",
24 "f9" => "!toggle-setup",
25 (map +("LAlt-$_" => "!switch-tab $_"), 0..9),
26 (map +("RAlt-$_" => "!switch-tab $_"), 0..9),
27 "return" => "!activate-chat",
28 "." => "!repeat-command",
29
30 "," => "take",
31 "space" => "apply",
32 "[+]" => "rotateshoottype +",
33 "[-]" => "rotateshoottype -",
34);
8 35
9# allowed modifiers 36# allowed modifiers
10our %MODIFIER = ( 37our %MODIFIER = (
11 "LShift" => CFPlus::KMOD_LSHIFT, 38 "LShift" => CFPlus::KMOD_LSHIFT,
12 "RShift" => CFPlus::KMOD_RSHIFT, 39 "RShift" => CFPlus::KMOD_RSHIFT,
40# "Shift" => CFPlus::KMOD_LSHIFT | CFPlus::KMOD_RSHIFT,
13 "LCtrl" => CFPlus::KMOD_LCTRL, 41 "LCtrl" => CFPlus::KMOD_LCTRL,
14 "RCtrl" => CFPlus::KMOD_RCTRL, 42 "RCtrl" => CFPlus::KMOD_RCTRL,
43# "Ctrl" => CFPlus::KMOD_LCTRL | CFPlus::KMOD_RCTRL,
15 "LAlt" => CFPlus::KMOD_LALT, 44 "LAlt" => CFPlus::KMOD_LALT,
16 "RAlt" => CFPlus::KMOD_RALT, 45 "RAlt" => CFPlus::KMOD_RALT,
46# "Alt" => CFPlus::KMOD_LALT | CFPlus::KMOD_RALT,
17 "LMeta" => CFPlus::KMOD_LMETA, 47 "LMeta" => CFPlus::KMOD_LMETA,
18 "RMeta" => CFPlus::KMOD_RMETA, 48 "RMeta" => CFPlus::KMOD_RMETA,
49# "Meta" => CFPlus::KMOD_LMETA | CFPlus::KMOD_RMETA,
19); 50);
20 51
21# allowed modifiers 52# allowed modifiers
22our $MODIFIER_MASK |= $_ for values %MODIFIER; 53our $MODIFIER_MASK |= $_ for values %MODIFIER;
23 54
40 CFPlus::SDLK_F13, 71 CFPlus::SDLK_F13,
41 CFPlus::SDLK_F14, 72 CFPlus::SDLK_F14,
42 CFPlus::SDLK_F15, 73 CFPlus::SDLK_F15,
43); 74);
44 75
76our %MACRO_FUNCTION = (
77 "toggle-messagewindow" => sub { $::MESSAGE_WINDOW->toggle_visibility },
78 "toggle-playerbook" => sub { $::PL_WINDOW->toggle_visibility },
79 "toggle-help" => sub { $::HELP_WINDOW->toggle_visibility },
80 "toggle-stats" => sub { ::toggle_player_page ($::STATS_PAGE) },
81 "toggle-skills" => sub { ::toggle_player_page ($::SKILL_PAGE) },
82 "toggle-spells" => sub { ::toggle_player_page ($::SPELL_PAGE) },
83 "toggle-inventory" => sub { ::toggle_player_page ($::INVENTORY_PAGE) },
84 "toggle-pickup" => sub { ::toggle_player_page ($::PICKUP_PAGE) },
85 "toggle-setup" => sub { $::SETUP_DIALOG->toggle_visibility },
86 "toggle-setup" => sub { $::SETUP_DIALOG->toggle_visibility },
87 "switch-tab" => sub { $::MESSAGE_WINDOW->user_switch_to_page (0 + shift) },
88 "activate-chat" => sub { $::MESSAGE_WINDOW->activate_current },
89 "repeat-command" => sub {
90 $::CONN->user_send ($::COMPLETER->{last_command})
91 if $::CONN && exists $::COMPLETER->{last_command};
92 },
93 "completer" => sub {
94 if ($::CONN) {
95 $::COMPLETER->set_prefix (shift);
96 $::COMPLETER->show;
97 }
98 },
99);
100
101our $DEFAULT_KEYMAP;
102
103sub init {
104 $DEFAULT_KEYMAP ||= do {
105 my %sym = map +(CFPlus::SDL_GetKeyName $_, $_), CFPlus::SDLK_FIRST .. CFPlus::SDLK_LAST;
106 my $map;
107
108 while (my ($k, $v) = each %DEFAULT_KEYMAP) {
109 if ($k =~ /^\((.)\)$/) {
110 $map->{U}{ord $1} = $v;
111 } else {
112 my @mod = split /-/, $k;
113 my $sym = $sym{pop @mod}
114 or warn "unknown keysym $k\n";
115
116 my $mod = 0; $mod |= $MODIFIER{$_} for @mod;
117
118 $map->{K}[CFPlus::popcount $mod]{$mod}{$sym} = $v;
119 }
120 }
121
122 %DEFAULT_KEYMAP = ();
123 $map
124 };
125}
126
45sub accelkey_to_string($) { 127sub accelkey_to_string($) {
46 join "-", 128 join "-",
47 (grep $_[0][0] & $MODIFIER{$_}, 129 (grep $_[0][0] & $MODIFIER{$_}, keys %MODIFIER),
48 keys %MODIFIER),
49 CFPlus::SDL_GetKeyName $_[0][1] 130 CFPlus::SDL_GetKeyName $_[0][1]
50} 131}
51 132
52sub trigger_to_string($) { 133sub trigger_to_string($) {
53 my ($macro) = @_; 134 my ($macro) = @_;
156 237
157 $window->grab_focus; 238 $window->grab_focus;
158 $window->show; 239 $window->show;
159} 240}
160 241
242sub find_default($) {
243 my ($ev) = @_;
244
245 if (my $cmd = $DEFAULT_KEYMAP->{U}{$ev->{unicode}}) {
246 return $cmd;
247 }
248
249 for my $m (reverse grep $_, @{ $DEFAULT_KEYMAP->{K} }) {
250 for (keys %$m) {
251 if ($_ == ($ev->{mod} & $_)) {
252 if (defined (my $cmd = $m->{$_}{$ev->{sym}})) {
253 return $cmd;
254 }
255 }
256 }
257 }
258
259 ()
260}
261
161# find macro by event 262# find macro by event
162sub match_event($) { 263sub find($) {
163 my ($ev) = @_; 264 my ($ev) = @_;
164 265
266 # try user-defined macros
267 if (my @user =
165 grep { 268 grep {
166 if (my $key = $_->{accelkey}) { 269 if (my $key = $_->{accelkey}) {
167 $key->[1] == $ev->{sym} 270 $key->[1] == $ev->{sym}
168 && $key->[0] == ($ev->{mod} & $MODIFIER_MASK) 271 && $key->[0] == ($ev->{mod} & $MODIFIER_MASK)
272 } else {
273 0
274 }
275 } @{ $::PROFILE->{macro} || [] }
276 ) {
277 return @user;
278 }
279
280 # now try default keymap
281 if (defined (my $def = find_default $ev)) {
282 return {
283 action => [$def],
284 };
285 }
286
287 ()
288}
289
290sub execute {
291 my ($macro) = @_;
292
293 for (@{ $macro->{action} }) {
294 if (/^\!(\S+)\s?(.*)$/) {
295 $MACRO_FUNCTION{$1}->($2)
296 if exists $MACRO_FUNCTION{$1};
169 } else { 297 } else {
170 0 298 $::CONN->send_command ($_)
299 if $::CONN;
171 } 300 }
172 } @{ $::PROFILE->{macro} || [] } 301 }
173} 302}
174 303
175sub keyboard_setup { 304sub keyboard_setup {
176 my $kbd_setup = new CFPlus::UI::VBox; 305 my $kbd_setup = new CFPlus::UI::VBox;
177 306
221 $kbd_setup->add (new CFPlus::UI::FancyFrame 350 $kbd_setup->add (new CFPlus::UI::FancyFrame
222 label => "Edit Macro", 351 label => "Edit Macro",
223 child => (my $editor = new CFPlus::UI::Table col_expand => [0, 1]), 352 child => (my $editor = new CFPlus::UI::Table col_expand => [0, 1]),
224 ); 353 );
225 354
226 $editor->add (0, 1, new CFPlus::UI::Label 355 $editor->add_at (0, 1, new CFPlus::UI::Label
227 text => "Trigger", 356 text => "Trigger",
228 tooltip => $tooltip_trigger, 357 tooltip => $tooltip_trigger,
229 can_hover => 1, 358 can_hover => 1,
230 can_events => 1, 359 can_events => 1,
231 ); 360 );
232 $editor->add (0, 2, new CFPlus::UI::Label 361 $editor->add_at (0, 2, new CFPlus::UI::Label
233 text => "Actions", 362 text => "Actions",
234 tooltip => $tooltip_commands, 363 tooltip => $tooltip_commands,
235 can_hover => 1, 364 can_hover => 1,
236 can_events => 1, 365 can_events => 1,
237 ); 366 );
238 367
239 $editor->add (1, 2, my $textedit = new CFPlus::UI::TextEdit 368 $editor->add_at (1, 2, my $textedit = new CFPlus::UI::TextEdit
240 text => macro_to_text $macro, 369 text => macro_to_text $macro,
241 tooltip => $tooltip_commands, 370 tooltip => $tooltip_commands,
242 on_changed => sub { 371 on_changed => sub {
243 $macro->{action} = macro_from_text $macro, $_[1]; 372 $macro->{action} = macro_from_text $macro, $_[1];
244 }, 373 },
245 ); 374 );
246 375
247 $editor->add (1, 1, my $accel = new CFPlus::UI::Button 376 $editor->add_at (1, 1, my $accel = new CFPlus::UI::Button
248 text => trigger_to_string $macro, 377 text => trigger_to_string $macro,
249 tooltip => "To change the trigger for a macro, activate this button.", 378 tooltip => "To change the trigger for a macro, activate this button.",
250 on_activate => sub { 379 on_activate => sub {
251 my ($accel) = @_; 380 my ($accel) = @_;
252 trigger_edit $macro, sub { 381 trigger_edit $macro, sub {
255 1 384 1
256 }, 385 },
257 ); 386 );
258 387
259 my $recording; 388 my $recording;
260 $editor->add (1, 3, new CFPlus::UI::Button 389 $editor->add_at (1, 3, new CFPlus::UI::Button
261 text => "Start Recording", 390 text => "Start Recording",
262 tooltip => "Start/Stop command recording: when recording, " 391 tooltip => "Start/Stop command recording: when recording, "
263 . "actions and commands you invoke are appended to this macro. " 392 . "actions and commands you invoke are appended to this macro. "
264 . "You can only record when you are logged in.", 393 . "You can only record when you are logged in.",
265 on_destroy => sub { 394 on_destroy => sub {
269 my ($widget) = @_; 398 my ($widget) = @_;
270 399
271 $recording = $::CONN && !$recording; 400 $recording = $::CONN && !$recording;
272 if ($recording) { 401 if ($recording) {
273 $widget->set_text ("Stop Recording"); 402 $widget->set_text ("Stop Recording");
274 my $action = $macro->{action} ||= [];
275 $::CONN->record (sub { 403 $::CONN->record (sub {
276 push @$action, $_[0]; 404 push @{ $macro->{action} }, $_[0];
277 $textedit->set_text (macro_to_text $macro); 405 $textedit->set_text (macro_to_text $macro);
278 }) if $::CONN; 406 }) if $::CONN;
279 } else { 407 } else {
280 $widget->set_text ("Start Recording"); 408 $widget->set_text ("Start Recording");
281 $::CONN->record if $::CONN; 409 $::CONN->record if $::CONN;
297 $macros->add (my $macrolist = new CFPlus::UI::Table col_expand => [0, 1]); 425 $macros->add (my $macrolist = new CFPlus::UI::Table col_expand => [0, 1]);
298 426
299 $REFRESH_MACRO_LIST = $refresh = sub { 427 $REFRESH_MACRO_LIST = $refresh = sub {
300 $macrolist->clear; 428 $macrolist->clear;
301 429
302 $macrolist->add (0, 1, new CFPlus::UI::Label 430 $macrolist->add_at (0, 1, new CFPlus::UI::Label
303 text => "Trigger", 431 text => "Trigger",
304 align => 0, 432 align => 0,
305 tooltip => $tooltip_trigger . $tooltip_common, 433 tooltip => $tooltip_trigger . $tooltip_common,
306 ); 434 );
307 $macrolist->add (1, 1, new CFPlus::UI::Label 435 $macrolist->add_at (1, 1, new CFPlus::UI::Label
308 text => "Commands", 436 text => "Commands",
309 tooltip => $tooltip_commands . $tooltip_common, 437 tooltip => $tooltip_commands . $tooltip_common,
310 ); 438 );
311 439
312 for my $idx (0 .. $#{$::PROFILE->{macro} || []}) { 440 for my $idx (0 .. $#{$::PROFILE->{macro} || []}) {
337 } 465 }
338 466
339 1 467 1
340 }; 468 };
341 469
342 $macrolist->add (0, $y, new CFPlus::UI::Label 470 $macrolist->add_at (0, $y, new CFPlus::UI::Label
343 text => trigger_to_string $macro, 471 text => trigger_to_string $macro,
344 tooltip => $tooltip_trigger . $tooltip_common, 472 tooltip => $tooltip_trigger . $tooltip_common,
345 align => 0, 473 align => 0,
346 can_hover => 1, 474 can_hover => 1,
347 can_events => 1, 475 can_events => 1,
348 on_button_down => $macro_cb, 476 on_button_down => $macro_cb,
349 ); 477 );
350 478
351 $macrolist->add (1, $y, new CFPlus::UI::Label 479 $macrolist->add_at (1, $y, new CFPlus::UI::Label
352 text => (join "; ", @{ $macro->{action} || [] }), 480 text => (join "; ", @{ $macro->{action} || [] }),
353 tooltip => $tooltip_commands . $tooltip_common, 481 tooltip => $tooltip_commands . $tooltip_common,
354 expand => 1, 482 expand => 1,
355 ellipsise => 3, 483 ellipsise => 3,
356 can_hover => 1, 484 can_hover => 1,
382 510
383 &$end_cb if $end_cb; 511 &$end_cb if $end_cb;
384 }; 512 };
385} 513}
386 514
5151

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines