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.1 by root, Sat Dec 9 02:21:25 2006 UTC vs.
Revision 1.10 by root, Sun Sep 2 03:55:03 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 "LAlt-s" => "ready_skill find traps",
35 "LAlt-d" => "ready_skill disarm traps",
36 "LAlt-p" => "ready_skill praying",
37);
8 38
9# allowed modifiers 39# allowed modifiers
10our %MODIFIER = ( 40our %MODIFIER = (
11 "LShift" => CFPlus::KMOD_LSHIFT, 41 "LShift" => CFPlus::KMOD_LSHIFT,
12 "RShift" => CFPlus::KMOD_RSHIFT, 42 "RShift" => CFPlus::KMOD_RSHIFT,
43# "Shift" => CFPlus::KMOD_LSHIFT | CFPlus::KMOD_RSHIFT,
13 "LCtrl" => CFPlus::KMOD_LCTRL, 44 "LCtrl" => CFPlus::KMOD_LCTRL,
14 "RCtrl" => CFPlus::KMOD_RCTRL, 45 "RCtrl" => CFPlus::KMOD_RCTRL,
46# "Ctrl" => CFPlus::KMOD_LCTRL | CFPlus::KMOD_RCTRL,
15 "LAlt" => CFPlus::KMOD_LALT, 47 "LAlt" => CFPlus::KMOD_LALT,
16 "RAlt" => CFPlus::KMOD_RALT, 48 "RAlt" => CFPlus::KMOD_RALT,
49# "Alt" => CFPlus::KMOD_LALT | CFPlus::KMOD_RALT,
17 "LMeta" => CFPlus::KMOD_LMETA, 50 "LMeta" => CFPlus::KMOD_LMETA,
18 "RMeta" => CFPlus::KMOD_RMETA, 51 "RMeta" => CFPlus::KMOD_RMETA,
52# "Meta" => CFPlus::KMOD_LMETA | CFPlus::KMOD_RMETA,
19); 53);
20 54
21# allowed modifiers 55# allowed modifiers
22our $MODIFIER_MASK |= $_ for values %MODIFIER; 56our $MODIFIER_MASK |= $_ for values %MODIFIER;
23 57
40 CFPlus::SDLK_F13, 74 CFPlus::SDLK_F13,
41 CFPlus::SDLK_F14, 75 CFPlus::SDLK_F14,
42 CFPlus::SDLK_F15, 76 CFPlus::SDLK_F15,
43); 77);
44 78
79our %MACRO_FUNCTION = (
80 "toggle-messagewindow" => sub { $::MESSAGE_WINDOW->toggle_visibility },
81 "toggle-playerbook" => sub { $::PL_WINDOW->toggle_visibility },
82 "toggle-help" => sub { $::HELP_WINDOW->toggle_visibility },
83 "toggle-stats" => sub { ::toggle_player_page ($::STATS_PAGE) },
84 "toggle-skills" => sub { ::toggle_player_page ($::SKILL_PAGE) },
85 "toggle-spells" => sub { ::toggle_player_page ($::SPELL_PAGE) },
86 "toggle-inventory" => sub { ::toggle_player_page ($::INVENTORY_PAGE) },
87 "toggle-pickup" => sub { ::toggle_player_page ($::PICKUP_PAGE) },
88 "toggle-setup" => sub { $::SETUP_DIALOG->toggle_visibility },
89 "toggle-setup" => sub { $::SETUP_DIALOG->toggle_visibility },
90 "switch-tab" => sub { $::MESSAGE_WINDOW->user_switch_to_page (0 + shift) },
91 "activate-chat" => sub { $::MESSAGE_WINDOW->activate_current },
92 "repeat-command" => sub {
93 $::CONN->user_send ($::COMPLETER->{last_command})
94 if $::CONN && exists $::COMPLETER->{last_command};
95 },
96 "completer" => sub {
97 if ($::CONN) {
98 $::COMPLETER->set_prefix (shift);
99 $::COMPLETER->show;
100 }
101 },
102);
103
104our $DEFAULT_KEYMAP;
105
106sub init {
107 $DEFAULT_KEYMAP ||= do {
108 my %sym = map +(CFPlus::SDL_GetKeyName $_, $_), CFPlus::SDLK_FIRST .. CFPlus::SDLK_LAST;
109 my $map;
110
111 while (my ($k, $v) = each %DEFAULT_KEYMAP) {
112 if ($k =~ /^\((.)\)$/) {
113 $map->{U}{ord $1} = $v;
114 } else {
115 my @mod = split /-/, $k;
116 my $sym = $sym{pop @mod}
117 or warn "unknown keysym $k\n";
118
119 my $mod = 0; $mod |= $MODIFIER{$_} for @mod;
120
121 $map->{K}[CFPlus::popcount $mod]{$mod}{$sym} = $v;
122 }
123 }
124
125 %DEFAULT_KEYMAP = ();
126 $map
127 };
128}
129
45sub accelkey_to_string($) { 130sub accelkey_to_string($) {
46 join "-", 131 join "-",
47 (grep $_[0][0] & $MODIFIER{$_}, 132 (grep $_[0][0] & $MODIFIER{$_}, keys %MODIFIER),
48 keys %MODIFIER),
49 CFPlus::SDL_GetKeyName $_[0][1] 133 CFPlus::SDL_GetKeyName $_[0][1]
50} 134}
51 135
52sub trigger_to_string($) { 136sub trigger_to_string($) {
53 my ($macro) = @_; 137 my ($macro) = @_;
156 240
157 $window->grab_focus; 241 $window->grab_focus;
158 $window->show; 242 $window->show;
159} 243}
160 244
245sub find_default($) {
246 my ($ev) = @_;
247
248 if (my $cmd = $DEFAULT_KEYMAP->{U}{$ev->{unicode}}) {
249 return $cmd;
250 }
251
252 for my $m (reverse grep $_, @{ $DEFAULT_KEYMAP->{K} }) {
253 for (keys %$m) {
254 if ($_ == ($ev->{mod} & $_)) {
255 if (defined (my $cmd = $m->{$_}{$ev->{sym}})) {
256 return $cmd;
257 }
258 }
259 }
260 }
261
262 ()
263}
264
265# find macro by event
266sub find($) {
267 my ($ev) = @_;
268
269 # try user-defined macros
270 if (my @user =
271 grep {
272 if (my $key = $_->{accelkey}) {
273 $key->[1] == $ev->{sym}
274 && $key->[0] == ($ev->{mod} & $MODIFIER_MASK)
275 } else {
276 0
277 }
278 } @{ $::PROFILE->{macro} || [] }
279 ) {
280 return @user;
281 }
282
283 # now try default keymap
284 if (defined (my $def = find_default $ev)) {
285 return {
286 action => [$def],
287 };
288 }
289
290 ()
291}
292
293sub execute {
294 my ($macro) = @_;
295
296 for (@{ $macro->{action} }) {
297 if (/^\!(\S+)\s?(.*)$/) {
298 $MACRO_FUNCTION{$1}->($2)
299 if exists $MACRO_FUNCTION{$1};
300 } else {
301 $::CONN->send_command ($_)
302 if $::CONN;
303 }
304 }
305}
306
161sub keyboard_setup { 307sub keyboard_setup {
162 my $kbd_setup = new CFPlus::UI::VBox; 308 my $kbd_setup = new CFPlus::UI::VBox;
163 309
164 $kbd_setup->add (my $list = new CFPlus::UI::VBox); 310 $kbd_setup->add (my $list = new CFPlus::UI::VBox);
165 311
178 0 324 0
179 }, 325 },
180 ); 326 );
181 327
182 $list->add (new CFPlus::UI::FancyFrame 328 $list->add (new CFPlus::UI::FancyFrame
183 label => "Bindings", 329 label => "Macros",
184 child => (my $macros = new CFPlus::UI::Table), 330 child => (my $macros = new CFPlus::UI::VBox),
185 ); 331 );
186 332
187 my $refresh; 333 my $refresh;
188 334
189 my $tooltip_common = "\n\n<small>Left click - edit macro\nMiddle click - invoke macro\nRight click - further options</small>"; 335 my $tooltip_common = "\n\n<small>Left click - edit macro\nMiddle click - invoke macro\nRight click - further options</small>";
207 $kbd_setup->add (new CFPlus::UI::FancyFrame 353 $kbd_setup->add (new CFPlus::UI::FancyFrame
208 label => "Edit Macro", 354 label => "Edit Macro",
209 child => (my $editor = new CFPlus::UI::Table col_expand => [0, 1]), 355 child => (my $editor = new CFPlus::UI::Table col_expand => [0, 1]),
210 ); 356 );
211 357
212 $editor->add (0, 1, new CFPlus::UI::Label 358 $editor->add_at (0, 1, new CFPlus::UI::Label
213 text => "Trigger", 359 text => "Trigger",
214 tooltip => $tooltip_trigger, 360 tooltip => $tooltip_trigger,
215 can_hover => 1, 361 can_hover => 1,
216 can_events => 1, 362 can_events => 1,
217 ); 363 );
218 $editor->add (0, 2, new CFPlus::UI::Label 364 $editor->add_at (0, 2, new CFPlus::UI::Label
219 text => "Actions", 365 text => "Actions",
220 tooltip => $tooltip_commands, 366 tooltip => $tooltip_commands,
221 can_hover => 1, 367 can_hover => 1,
222 can_events => 1, 368 can_events => 1,
223 ); 369 );
224 370
225 $editor->add (1, 2, my $textedit = new CFPlus::UI::TextEdit 371 $editor->add_at (1, 2, my $textedit = new CFPlus::UI::TextEdit
226 text => macro_to_text $macro, 372 text => macro_to_text $macro,
227 tooltip => $tooltip_commands, 373 tooltip => $tooltip_commands,
228 on_changed => sub { 374 on_changed => sub {
229 $macro->{action} = macro_from_text $macro, $_[1]; 375 $macro->{action} = macro_from_text $macro, $_[1];
230 }, 376 },
231 ); 377 );
232 378
233 $editor->add (1, 1, my $accel = new CFPlus::UI::Button 379 $editor->add_at (1, 1, my $accel = new CFPlus::UI::Button
234 text => trigger_to_string $macro, 380 text => trigger_to_string $macro,
235 tooltip => "To change the trigger for a macro, activate this button.", 381 tooltip => "To change the trigger for a macro, activate this button.",
236 on_activate => sub { 382 on_activate => sub {
237 my ($accel) = @_; 383 my ($accel) = @_;
238 trigger_edit $macro, sub { 384 trigger_edit $macro, sub {
241 1 387 1
242 }, 388 },
243 ); 389 );
244 390
245 my $recording; 391 my $recording;
246 $editor->add (1, 3, new CFPlus::UI::Button 392 $editor->add_at (1, 3, new CFPlus::UI::Button
247 text => "Start Recording", 393 text => "Start Recording",
248 tooltip => "Start/Stop command recording: when recording, " 394 tooltip => "Start/Stop command recording: when recording, "
249 . "actions and commands you invoke are appended to this macro. " 395 . "actions and commands you invoke are appended to this macro. "
250 . "You can only record when you are logged in.", 396 . "You can only record when you are logged in.",
251 on_destroy => sub { 397 on_destroy => sub {
255 my ($widget) = @_; 401 my ($widget) = @_;
256 402
257 $recording = $::CONN && !$recording; 403 $recording = $::CONN && !$recording;
258 if ($recording) { 404 if ($recording) {
259 $widget->set_text ("Stop Recording"); 405 $widget->set_text ("Stop Recording");
260 my $action = $macro->{action} ||= [];
261 $::CONN->record (sub { 406 $::CONN->record (sub {
262 push @$action, $_[0]; 407 push @{ $macro->{action} }, $_[0];
263 $textedit->set_text (macro_to_text $macro); 408 $textedit->set_text (macro_to_text $macro);
264 }) if $::CONN; 409 }) if $::CONN;
265 } else { 410 } else {
266 $widget->set_text ("Start Recording"); 411 $widget->set_text ("Start Recording");
267 $::CONN->record if $::CONN; 412 $::CONN->record if $::CONN;
268 } 413 }
269 }, 414 },
270 ); 415 );
271 }; 416 };
272 417
418 $macros->add (new CFPlus::UI::Button
419 text => "New Macro",
420 tooltip => "Creates a new, empty, macro you can edit.",
421 on_activate => sub {
422 my $macro = { };
423 push @{ $::PROFILE->{macro} }, $macro;
424 $edit_macro->($macro);
425 },
426 );
427
428 $macros->add (my $macrolist = new CFPlus::UI::Table col_expand => [0, 1]);
429
273 $REFRESH_MACRO_LIST = $refresh = sub { 430 $REFRESH_MACRO_LIST = $refresh = sub {
274 $macros->clear; 431 $macrolist->clear;
275 432
276 $macros->add (0, 0, new CFPlus::UI::Label 433 $macrolist->add_at (0, 1, new CFPlus::UI::Label
277 text => "Trigger", 434 text => "Trigger",
278 align => 0, 435 align => 0,
279 tooltip => $tooltip_trigger . $tooltip_common, 436 tooltip => $tooltip_trigger . $tooltip_common,
280 ); 437 );
281 $macros->add (1, 0, new CFPlus::UI::Label 438 $macrolist->add_at (1, 1, new CFPlus::UI::Label
282 text => "Commands", 439 text => "Commands",
283 tooltip => $tooltip_commands . $tooltip_common, 440 tooltip => $tooltip_commands . $tooltip_common,
284 ); 441 );
285 442
286 for my $idx (0 .. $#{$::PROFILE->{macro} || []}) { 443 for my $idx (0 .. $#{$::PROFILE->{macro} || []}) {
287 my $macro = $::PROFILE->{macro}[$idx]; 444 my $macro = $::PROFILE->{macro}[$idx];
288 my $y = $idx + 1; 445 my $y = $idx + 2;
289 446
290 my $macro_cb = sub { 447 my $macro_cb = sub {
291 my ($widget, $ev) = @_; 448 my ($widget, $ev) = @_;
292 449
293 if ($ev->{button} == 1) { 450 if ($ev->{button} == 1) {
311 } 468 }
312 469
313 1 470 1
314 }; 471 };
315 472
316 $macros->add (0, $y, new CFPlus::UI::Label 473 $macrolist->add_at (0, $y, new CFPlus::UI::Label
317 text => trigger_to_string $macro, 474 text => trigger_to_string $macro,
318 tooltip => $tooltip_trigger . $tooltip_common, 475 tooltip => $tooltip_trigger . $tooltip_common,
319 align => 0, 476 align => 0,
320 can_hover => 1, 477 can_hover => 1,
321 can_events => 1, 478 can_events => 1,
322 on_button_down => $macro_cb, 479 on_button_down => $macro_cb,
323 ); 480 );
324 481
325 $macros->add (1, $y, new CFPlus::UI::Label 482 $macrolist->add_at (1, $y, new CFPlus::UI::Label
326 text => (join "; ", @{ $macro->{action} }), 483 text => (join "; ", @{ $macro->{action} || [] }),
327 tooltip => $tooltip_commands . $tooltip_common, 484 tooltip => $tooltip_commands . $tooltip_common,
328 expand => 1, 485 expand => 1,
329 ellipsise => 3, 486 ellipsise => 3,
330 can_hover => 1, 487 can_hover => 1,
331 can_events => 1, 488 can_events => 1,
340} 497}
341 498
342# this is a shortcut method that asks for a binding 499# this is a shortcut method that asks for a binding
343# and then just binds it. 500# and then just binds it.
344sub quick_macro { 501sub quick_macro {
345 my ($self, $cmds, $end_cb) = @_; 502 my ($cmds, $end_cb) = @_;
346 503
347 my $macro = { 504 my $macro = {
348 action => $cmds, 505 action => $cmds,
349 }; 506 };
350 507
351 trigger_edit $macro, sub { 508 trigger_edit $macro, sub {
352
353 if ($_[0]) { 509 if ($_[0]) {
354 push @{ $::PROFILE->{macro} }, $macro; 510 push @{ $::PROFILE->{macro} }, $macro;
355 $REFRESH_MACRO_LIST->(); 511 $REFRESH_MACRO_LIST->();
356 } 512 }
357 513
358 &$end_cb if $end_cb; 514 &$end_cb if $end_cb;
359 }; 515 };
360} 516}
361 517
5181

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines