1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
|
/*
* File: macro.cc
* Summary: Crude macro-capability
* Written by: Juho Snellman <jsnell@lyseo.edu.ouka.fi>
*/
/*
* The macro-implementation works like this:
* - getchm() works by reading characters from an internal
* buffer. If none are available, new characters are read into
* the buffer with _getch_mul().
* - _getch_mul() reads at least one character, but will read more
* if available (determined using kbhit(), which should be defined
* in the platform specific libraries).
* - Before adding the characters read into the buffer, any keybindings
* in the sequence are replaced (see macro_add_buf_long for the
* details).
*
* (When the above text mentions characters, it actually means int).
*/
#include "AppHdr.h"
#include "macro.h"
#include "state.h"
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <map>
#include <deque>
#include <vector>
#include <cstdio> // for snprintf
#include <cctype> // for tolower
#include <cstdlib>
#include "cio.h"
#include "externs.h"
#include "files.h"
#include "libutil.h"
#include "options.h"
#include "message.h"
#include "state.h"
#include "stuff.h"
// for trim_string:
#include "initfile.h"
typedef std::deque<int> keybuf;
typedef std::map<keyseq,keyseq> macromap;
static macromap Keymaps[KMC_CONTEXT_COUNT];
static macromap Macros;
static macromap *all_maps[] =
{
&Keymaps[KMC_DEFAULT],
&Keymaps[KMC_LEVELMAP],
&Keymaps[KMC_TARGETING],
&Keymaps[KMC_CONFIRM],
&Macros,
};
static keybuf Buffer;
static keybuf SendKeysBuffer;
#define USERFUNCBASE -10000
static std::vector<std::string> userfunctions;
static std::vector<key_recorder*> recorders;
typedef std::map<std::string, int> name_to_cmd_map;
typedef std::map<int, std::string> cmd_to_name_map;
struct command_name
{
command_type cmd;
const char* name;
};
static command_name _command_name_list[] = {
#include "cmd-name.h"
};
static name_to_cmd_map _names_to_cmds;
static cmd_to_name_map _cmds_to_names;
struct default_binding
{
int key;
command_type cmd;
};
static default_binding _default_binding_list[] = {
#include "cmd-keys.h"
};
typedef std::map<int, int> key_to_cmd_map;
typedef std::map<int, int> cmd_to_key_map;
static key_to_cmd_map _keys_to_cmds[KMC_CONTEXT_COUNT];
static cmd_to_key_map _cmds_to_keys[KMC_CONTEXT_COUNT];
inline int userfunc_index(int key)
{
int index = (key <= USERFUNCBASE? USERFUNCBASE - key : -1);
return (index < 0 || index >= (int) userfunctions.size()? -1 : index);
}
static int userfunc_index(const keyseq &seq)
{
if (seq.empty())
return (-1);
return userfunc_index(seq.front());
}
bool is_userfunction(int key)
{
return (userfunc_index(key) != -1);
}
static bool is_userfunction(const keyseq &seq)
{
return (userfunc_index(seq) != -1);
}
std::string get_userfunction(int key)
{
int index = userfunc_index(key);
return (index == -1 ? NULL : userfunctions[index]);
}
static std::string get_userfunction(const keyseq &seq)
{
int index = userfunc_index(seq);
return (index == -1 ? NULL : userfunctions[index]);
}
static bool userfunc_referenced(int index, const macromap &mm)
{
for (macromap::const_iterator i = mm.begin(); i != mm.end(); i++)
{
if (userfunc_index(i->second) == index)
return (true);
}
return (false);
}
static bool userfunc_referenced(int index)
{
for (unsigned i = 0; i < sizeof(all_maps) / sizeof(*all_maps); ++i)
{
macromap *m = all_maps[i];
if (userfunc_referenced(index, *m))
return (true);
}
return (false);
}
// Expensive function to discard unused function names
static void userfunc_collectgarbage(void)
{
for (int i = userfunctions.size() - 1; i >= 0; --i)
{
if (!userfunctions.empty() && !userfunc_referenced(i))
userfunctions[i].clear();
}
}
static int userfunc_getindex(const std::string &fname)
{
if (fname.length() == 0)
return (-1);
userfunc_collectgarbage();
// Pass 1 to see if we have this string already
for (int i = 0, count = userfunctions.size(); i < count; ++i)
{
if (userfunctions[i] == fname)
return (i);
}
// Pass 2 to hunt for gaps.
for (int i = 0, count = userfunctions.size(); i < count; ++i)
{
if (userfunctions[i].empty())
{
userfunctions[i] = fname;
return (i);
}
}
userfunctions.push_back(fname);
return (userfunctions.size() - 1);
}
// Returns the name of the file that contains macros.
static std::string get_macro_file()
{
std::string dir = !Options.macro_dir.empty() ? Options.macro_dir :
!SysEnv.crawl_dir.empty() ? SysEnv.crawl_dir : "";
if (!dir.empty())
{
#ifndef DGL_MACRO_ABSOLUTE_PATH
if (dir[dir.length() - 1] != FILE_SEPARATOR)
dir += FILE_SEPARATOR;
#endif
}
#if defined(DGL_MACRO_ABSOLUTE_PATH)
return (dir.empty()? "macro.txt" : dir);
#endif
check_mkdir("Macro directory", &dir, true);
#if defined(DGL_NAMED_MACRO_FILE)
return (dir + strip_filename_unsafe_chars(you.your_name) + "-macro.txt");
#else
return (dir + "macro.txt");
#endif
}
static void buf2keyseq(const char *buff, keyseq &k)
{
// Sanity check
if (!buff)
return;
// convert c_str to keyseq
// Check for user functions
if (*buff == '=' && buff[1] == '=' && buff[2] == '=' && buff[3])
{
int index = userfunc_getindex(buff + 3);
if (index != -1)
k.push_back( USERFUNCBASE - index );
}
else
{
const int len = strlen( buff );
for (int i = 0; i < len; i++)
k.push_back( buff[i] );
}
}
static int read_key_code(std::string s)
{
if (s.empty())
return (0);
int base = 10;
if (s[0] == 'x')
{
s = s.substr(1);
base = 16;
}
else if (s[0] == '^')
{
// ^A = 1, etc.
return (1 + toupper(s[1]) - 'A');
}
char *tail;
return strtol(s.c_str(), &tail, base);
}
/*
* Takes as argument a string, and returns a sequence of keys described
* by the string. Most characters produce their own ASCII code. These
* are the cases:
* \\ produces the ASCII code of a single \
* \{123} produces 123 (decimal)
* \{^A} produces 1 (Ctrl-A)
* \{x40} produces 64 (hexadecimal code)
* \{!more} or \{!m} disables -more- prompt until the end of the macro.
*/
static keyseq parse_keyseq( std::string s )
{
int state = 0;
keyseq v;
int num;
if (s.find("===") == 0)
{
buf2keyseq(s.c_str(), v);
return (v);
}
bool more_reset = false;
for (int i = 0, size = s.length(); i < size; ++i)
{
char c = s[i];
switch (state)
{
case 0: // Normal state
if (c == '\\')
state = 1;
else
v.push_back(c);
break;
case 1: // Last char is a '\'
if (c == '\\')
{
state = 0;
v.push_back(c);
}
else if (c == '{')
{
state = 2;
num = 0;
}
// XXX Error handling
break;
case 2: // Inside \{}
{
const std::string::size_type clb = s.find('}', i);
if (clb == std::string::npos)
break;
const std::string arg = s.substr(i, clb - i);
if (!more_reset && (arg == "!more" || arg == "!m"))
{
more_reset = true;
v.push_back(KEY_MACRO_MORE_PROTECT);
}
else
{
const int key = read_key_code(arg);
v.push_back(key);
}
state = 0;
i = clb;
break;
}
}
}
return (v);
}
/*
* Serialises a key sequence into a string of the format described
* above.
*/
static std::string vtostr( const keyseq &seq )
{
std::ostringstream s;
const keyseq *v = &seq;
keyseq dummy;
if (is_userfunction(seq))
{
// Laboriously reconstruct the original user input
std::string newseq = std::string("==") + get_userfunction(seq);
buf2keyseq(newseq.c_str(), dummy);
dummy.push_front('=');
v = &dummy;
}
for (keyseq::const_iterator i = v->begin(); i != v->end(); i++)
{
if (*i <= 32 || *i > 127)
{
if (*i == KEY_MACRO_MORE_PROTECT)
s << "\\{!more}";
else
{
char buff[20];
snprintf( buff, sizeof(buff), "\\{%d}", *i );
s << buff;
}
}
else if (*i == '\\')
s << "\\\\";
else
s << static_cast<char>(*i);
}
return (s.str());
}
/*
* Add a macro (suprise, suprise).
*/
static void macro_add( macromap &mapref, keyseq key, keyseq action )
{
mapref[key] = action;
}
/*
* Remove a macro.
*/
static void macro_del( macromap &mapref, keyseq key )
{
mapref.erase( key );
}
static void _register_expanded_keys(int num, bool reverse);
// Safely add macro-expanded keystrokes to the end of Crawl's keyboard
// buffer. Macro-expanded keystrokes will be held in a separate
// keybuffer until the primary keybuffer is empty, at which point
// they'll be added to the primary keybuffer.
void macro_sendkeys_end_add_expanded(int key)
{
SendKeysBuffer.push_back(key);
}
// Effectively the same as macro_sendkeys_end_add_expanded, but adding to
// the front of the keybuffer.
void macro_sendkeys_start_add_expanded(int key)
{
macro_buf_add(key, true, true);
}
static void _macro_inject_sent_keys()
{
if (Buffer.empty() && !SendKeysBuffer.empty())
{
// Transfer keys from SendKeysBuffer to the main Buffer as
// expanded keystrokes and empty SendKeysBuffer.
macro_buf_add(SendKeysBuffer, false, true);
SendKeysBuffer.clear();
}
}
/*
* Adds keypresses from a sequence into the internal keybuffer. Ignores
* macros.
*/
void macro_buf_add(const keyseq &actions, bool reverse, bool expanded)
{
keyseq act;
bool need_more_reset = false;
for (keyseq::const_iterator i = actions.begin(); i != actions.end();
++i)
{
int key = *i;
if (key == KEY_MACRO_MORE_PROTECT)
{
key = KEY_MACRO_DISABLE_MORE;
need_more_reset = true;
}
act.push_back(key);
}
if (need_more_reset)
act.push_back(KEY_MACRO_ENABLE_MORE);
Buffer.insert(reverse? Buffer.begin() : Buffer.end(),
act.begin(), act.end());
if (expanded)
_register_expanded_keys(act.size(), reverse);
}
/*
* Adds a single keypress into the internal keybuffer.
*/
void macro_buf_add(int key, bool reverse, bool expanded)
{
if (reverse)
Buffer.push_front(key);
else
Buffer.push_back(key);
if (expanded)
_register_expanded_keys(1, reverse);
}
/*
* Add a command into the internal keybuffer.
*/
void macro_buf_add_cmd(command_type cmd, bool reverse)
{
ASSERT(cmd > CMD_NO_CMD && cmd < CMD_MIN_SYNTHETIC);
// There should be plenty of room between the synthetic keys
// (KEY_MACRO_MORE_PROTECT == -10) and USERFUNCBASE (-10000) for
// command_type to fit (currently 1000 through 2069).
macro_buf_add(-((int) cmd), reverse, true);
}
/*
* Adds keypresses from a sequence into the internal keybuffer. Does some
* O(N^2) analysis to the sequence to apply keymaps.
*/
static void macro_buf_add_long(keyseq actions,
macromap &keymap = Keymaps[KMC_DEFAULT])
{
keyseq tmp;
// debug << "Adding: " << vtostr(actions) << endl;
// debug.flush();
// Check whether any subsequences of the sequence are macros.
// The matching starts from as early as possible, and is
// as long as possible given the first constraint. I.e from
// the sequence "abcdef" and macros "ab", "bcde" and "de"
// "ab" and "de" are recognised as macros.
while (actions.size() > 0)
{
tmp = actions;
while (tmp.size() > 0)
{
macromap::const_iterator subst = keymap.find(tmp);
// Found a macro. Add the expansion (action) of the
// macro into the buffer.
if (subst != keymap.end() && !subst->second.empty())
{
macro_buf_add(subst->second, false, false);
break;
}
// Didn't find a macro. Remove a key from the end
// of the sequence, and try again.
tmp.pop_back();
}
if (tmp.size() == 0)
{
// Didn't find a macro. Add the first keypress of the sequence
// into the buffer, remove it from the sequence, and try again.
macro_buf_add(actions.front(), false, false);
actions.pop_front();
}
else
{
// Found a macro, which has already been added above. Now just
// remove the macroed keys from the sequence.
for (unsigned int i = 0; i < tmp.size(); i++)
actions.pop_front();
}
}
}
// Number of keys from start of buffer that have already gone through
// macro expansion.
static int expanded_keys_left = 0;
static void _register_expanded_keys(int num, bool reverse)
{
expanded_keys_left += num;
if (!reverse)
{
// We added at the end of the buffer, so the whole buffer had
// better be full of expanded keys.
ASSERT((int)Buffer.size() == expanded_keys_left);
expanded_keys_left = Buffer.size();
}
}
static int macro_keys_left = -1;
void macro_clear_buffers()
{
crawl_state.cancel_cmd_repeat();
crawl_state.cancel_cmd_again();
Buffer.clear();
SendKeysBuffer.clear();
expanded_keys_left = 0;
macro_keys_left = -1;
crawl_state.show_more_prompt = true;
}
bool is_processing_macro()
{
return (macro_keys_left >= 0);
}
/*
* Command macros are only applied from the immediate front of the
* buffer, and only when the game is expecting a command.
*/
static void macro_buf_apply_command_macro()
{
if (macro_keys_left > 0 || expanded_keys_left > 0)
return;
keyseq tmp = Buffer;
// find the longest match from the start of the buffer and replace it
while (tmp.size() > 0)
{
macromap::const_iterator expansion = Macros.find(tmp);
if (expansion != Macros.end() && !expansion->second.empty())
{
const keyseq &result = expansion->second;
// Found macro, remove match from front:
for (unsigned int i = 0; i < tmp.size(); i++)
Buffer.pop_front();
macro_keys_left = result.size();
macro_buf_add(result, true, true);
break;
}
tmp.pop_back();
}
}
/*
* Removes the earliest keypress from the keybuffer, and returns its
* value. If buffer was empty, returns -1;
*/
int macro_buf_get()
{
ASSERT(macro_keys_left <= (int)Buffer.size()
&& expanded_keys_left <= (int)Buffer.size());
_macro_inject_sent_keys();
if (Buffer.size() == 0)
{
// If we're trying to fetch a new keystroke, then the processing
// of the previous keystroke is complete.
if (macro_keys_left == 0)
macro_keys_left = -1;
return (-1);
}
int key = Buffer.front();
Buffer.pop_front();
if (macro_keys_left >= 0)
macro_keys_left--;
if (expanded_keys_left > 0)
expanded_keys_left--;
for (int i = 0, size_i = recorders.size(); i < size_i; i++)
recorders[i]->add_key(key);
return (key);
}
static void write_map(std::ofstream &f, const macromap &mp, const char *key)
{
for (macromap::const_iterator i = mp.begin(); i != mp.end(); i++)
{
// Need this check, since empty values are added into the
// macro struct for all used keyboard commands.
if (i->second.size())
{
f << key << vtostr((*i).first) << std::endl
<< "A:" << vtostr((*i).second) << std::endl << std::endl;
}
}
}
/*
* Saves macros into the macrofile, overwriting the old one.
*/
void macro_save()
{
std::ofstream f;
const std::string macrofile = get_macro_file();
f.open(macrofile.c_str());
if (!f)
{
mprf(MSGCH_ERROR, "Couldn't open %s for writing!", macrofile.c_str());
return;
}
f << "# " CRAWL " " << Version::Long() << " macro file" << std::endl
<< "# WARNING: This file is entirely auto-generated." << std::endl
<< std::endl << "# Key Mappings:" << std::endl;
for (int mc = KMC_DEFAULT; mc < KMC_CONTEXT_COUNT; ++mc)
{
char keybuf[30] = "K:";
if (mc)
snprintf(keybuf, sizeof keybuf, "K%d:", mc);
write_map(f, Keymaps[mc], keybuf);
}
f << "# Command Macros:" << std::endl;
write_map(f, Macros, "M:");
crawl_state.unsaved_macros = false;
f.close();
}
/*
* Reads as many keypresses as are available (waiting for at least one),
* and returns them as a single keyseq.
*/
static keyseq _getch_mul(int (*rgetch)() = NULL)
{
keyseq keys;
int a;
// Something's gone wrong with replaying keys if crawl needs to
// get new keys from the user.
if (crawl_state.is_replaying_keys())
{
mpr("(Key replay ran out of keys)", MSGCH_ERROR);
crawl_state.cancel_cmd_repeat();
crawl_state.cancel_cmd_again();
}
if (!rgetch)
rgetch = m_getch;
keys.push_back(a = rgetch());
// The a == 0 test is legacy code that I don't dare to remove. I
// have a vague recollection of it being a kludge for conio support.
while (kbhit() || a == 0)
keys.push_back(a = rgetch());
return (keys);
}
/*
* Replacement for getch(). Returns keys from the key buffer if available.
* If not, adds some content to the buffer, and returns some of it.
*/
int getchm(int (*rgetch)())
{
return getchm(KMC_DEFAULT, rgetch);
}
int getchm(KeymapContext mc, int (*rgetch)())
{
int a;
// Got data from buffer.
if ((a = macro_buf_get()) != -1)
return (a);
// Read some keys...
keyseq keys = _getch_mul(rgetch);
if (mc == KMC_NONE)
macro_buf_add(keys, false, false);
else
macro_buf_add_long(keys, Keymaps[mc]);
return (macro_buf_get());
}
/*
* Replacement for getch(). Returns keys from the key buffer if available.
* If not, adds some content to the buffer, and returns some of it.
*/
int getch_with_command_macros()
{
_macro_inject_sent_keys();
if (Buffer.size() == 0)
{
// Read some keys...
keyseq keys = _getch_mul();
// ... and add them into the buffer (apply keymaps)
macro_buf_add_long(keys);
}
// Apply longest matching macro at front of buffer:
macro_buf_apply_command_macro();
return (macro_buf_get());
}
/*
* Flush the buffer. Later we'll probably want to give the player options
* as to when this happens (ex. always before command input, casting failed).
*/
void flush_input_buffer( int reason )
{
ASSERT(reason != FLUSH_KEY_REPLAY_CANCEL
|| crawl_state.is_replaying_keys() || crawl_state.cmd_repeat_start);
ASSERT(reason != FLUSH_ABORT_MACRO || is_processing_macro());
// Any attempt to flush means that the processing of the previously
// fetched keystroke is complete.
if (macro_keys_left == 0)
macro_keys_left = -1;
if (crawl_state.is_replaying_keys() && reason != FLUSH_ABORT_MACRO
&& reason != FLUSH_KEY_REPLAY_CANCEL
&& reason != FLUSH_REPLAY_SETUP_FAILURE)
{
return;
}
if (Options.flush_input[ reason ] || reason == FLUSH_ABORT_MACRO
|| reason == FLUSH_KEY_REPLAY_CANCEL
|| reason == FLUSH_REPLAY_SETUP_FAILURE
|| reason == FLUSH_REPEAT_SETUP_DONE)
{
while (!Buffer.empty())
{
const int key = Buffer.front();
Buffer.pop_front();
if (key == KEY_MACRO_ENABLE_MORE)
crawl_state.show_more_prompt = true;
}
macro_keys_left = -1;
expanded_keys_left = 0;
}
}
static void _input_action_raw(keyseq* action)
{
msgwin_prompt("Input macro action: ");
const int x = wherex();
const int y = wherey();
bool done = false;
while (!done)
{
cgotoxy(x, y);
cprintf("%s", vtostr(*action).c_str());
int input = m_getch();
switch (input)
{
CASE_ESCAPE
done = true;
*action = keyseq();
break;
case '\n':
case '\r':
done = true;
break;
default:
action->push_back(input);
break;
}
}
msgwin_reply(vtostr(*action));
}
static void _input_action_text(keyseq* action)
{
char buff[1024];
msgwin_get_line_autohist("Input macro action: ", buff, sizeof(buff));
*action = parse_keyseq(buff);
}
void macro_add_query( void )
{
int input;
bool keymap = false;
bool raw = false;
KeymapContext keymc = KMC_DEFAULT;
mesclr();
mpr("(m)acro, (M)acro raw, keymap "
"[(k) default, (x) level-map, (t)argeting, (c)onfirm, m(e)nu], "
"(s)ave? ",
MSGCH_PROMPT);
input = m_getch();
int low = tolower( input );
if (low == 'k')
{
keymap = true;
keymc = KMC_DEFAULT;
}
else if (low == 'x')
{
keymap = true;
keymc = KMC_LEVELMAP;
}
else if (low == 't')
{
keymap = true;
keymc = KMC_TARGETING;
}
else if (low == 'c')
{
keymap = true;
keymc = KMC_CONFIRM;
}
else if (low == 'e')
{
keymap = true;
keymc = KMC_MENU;
}
else if (low == 'm')
{
keymap = false;
raw = (input == 'M');
}
else if (input == 's')
{
mpr("Saving macros.");
macro_save();
return;
}
else
{
mpr( "Aborting." );
return;
}
// reference to the appropriate mapping
macromap &mapref = (keymap ? Keymaps[keymc] : Macros);
std::string prompt = make_stringf("Input %s%s trigger key: ",
keymap ? (keymc == KMC_DEFAULT ? "default " :
keymc == KMC_LEVELMAP ? "level-map " :
keymc == KMC_TARGETING ? "targeting " :
keymc == KMC_CONFIRM ? "confirm " :
keymc == KMC_MENU ? "menu "
: "buggy") : "",
(keymap ? "keymap" : "macro"));
msgwin_prompt(prompt);
keyseq key;
mouse_control mc(MOUSE_MODE_MACRO);
key = _getch_mul();
msgwin_reply(vtostr(key));
if (mapref[key].size() > 0)
{
mprf(MSGCH_WARN, "Current Action: %s", vtostr(mapref[key]).c_str());
mpr("Do you wish to (r)edefine, (c)lear, or (a)bort? ", MSGCH_PROMPT);
input = m_getch();
input = tolower( input );
if (input == 'a' || key_is_escape(input))
{
mpr( "Aborting." );
return;
}
else if (input == 'c')
{
mpr( "Cleared." );
macro_del( mapref, key );
crawl_state.unsaved_macros = true;
return;
}
}
keyseq action;
if (raw)
_input_action_raw(&action);
else
_input_action_text(&action);
if (action.empty())
macro_del(mapref, key);
else
macro_add(mapref, key, action);
crawl_state.unsaved_macros = true;
redraw_screen();
}
/*
* Initialises the macros.
*/
static void _read_macros_from(const char* filename)
{
if (!file_exists(filename))
return;
std::string s;
std::ifstream f(filename);
keyseq key, action;
bool keymap = false;
KeymapContext keymc = KMC_DEFAULT;
while (f >> s)
{
trim_string(s); // remove white space from ends
if (s[0] == '#')
continue; // skip comments
else if (s.substr(0, 2) == "K:")
{
key = parse_keyseq(s.substr(2));
keymap = true;
keymc = KMC_DEFAULT;
}
else if (s.length() >= 3 && s[0] == 'K' && s[2] == ':')
{
keymc = KeymapContext( KMC_DEFAULT + s[1] - '0' );
if (keymc >= KMC_DEFAULT && keymc < KMC_CONTEXT_COUNT)
{
key = parse_keyseq(s.substr(3));
keymap = true;
}
}
else if (s.substr(0, 2) == "M:")
{
key = parse_keyseq(s.substr(2));
keymap = false;
}
else if (s.substr(0, 2) == "A:")
{
action = parse_keyseq(s.substr(2));
macro_add( (keymap ? Keymaps[keymc] : Macros), key, action );
}
}
}
void macro_init()
{
const std::vector<std::string>& files = Options.additional_macro_files;
for (std::vector<std::string>::const_iterator it = files.begin();
it != files.end();
++it)
{
_read_macros_from(it->c_str());
}
_read_macros_from(get_macro_file().c_str());
}
void macro_userfn(const char *keys, const char *regname)
{
// TODO: Implement.
// Converting 'keys' to a key sequence is the difficulty. Doing it portably
// requires a mapping of key names to whatever getch() spits back, unlikely
// to happen in a hurry.
}
bool is_synthetic_key(int key)
{
switch (key)
{
case KEY_MACRO_ENABLE_MORE:
case KEY_MACRO_DISABLE_MORE:
case KEY_MACRO_MORE_PROTECT:
#ifdef USE_TILE
case CK_MOUSE_CMD:
#endif
return (true);
default:
return (false);
}
}
key_recorder::key_recorder()
: paused(false)
{
keys.clear();
}
void key_recorder::add_key(int key, bool reverse)
{
if (paused)
return;
if (reverse)
keys.push_front(key);
else
keys.push_back(key);
}
void key_recorder::clear()
{
keys.clear();
}
pause_all_key_recorders::pause_all_key_recorders()
{
for (unsigned int i = 0; i < recorders.size(); i++)
{
prev_pause_status.push_back(recorders[i]->paused);
recorders[i]->paused = true;
}
}
pause_all_key_recorders::~pause_all_key_recorders()
{
for (unsigned int i = 0; i < recorders.size(); i++)
recorders[i]->paused = prev_pause_status[i];
}
void add_key_recorder(key_recorder* recorder)
{
for (int i = 0, size = recorders.size(); i < size; i++)
ASSERT(recorders[i] != recorder);
recorders.push_back(recorder);
}
void remove_key_recorder(key_recorder* recorder)
{
std::vector<key_recorder*>::iterator i;
for (i = recorders.begin(); i != recorders.end(); i++)
if (*i == recorder)
{
recorders.erase(i);
return;
}
}
int get_macro_buf_size()
{
return (Buffer.size());
}
///////////////////////////////////////////////////////////////
// Keybinding stuff
#define VALID_BIND_COMMAND(cmd) (cmd > CMD_NO_CMD && cmd < CMD_MIN_SYNTHETIC)
void init_keybindings()
{
int i;
for (i = 0; _command_name_list[i].cmd != CMD_NO_CMD
&& _command_name_list[i].name != NULL; i++)
{
command_name &data = _command_name_list[i];
ASSERT(VALID_BIND_COMMAND(data.cmd));
ASSERT(_names_to_cmds.find(data.name) == _names_to_cmds.end());
ASSERT(_cmds_to_names.find(data.cmd) == _cmds_to_names.end());
_names_to_cmds[data.name] = data.cmd;
_cmds_to_names[data.cmd] = data.name;
}
ASSERT(i >= 130);
for (i = 0; _default_binding_list[i].cmd != CMD_NO_CMD
&& _default_binding_list[i].key != '\0'; i++)
{
default_binding &data = _default_binding_list[i];
ASSERT(VALID_BIND_COMMAND(data.cmd));
KeymapContext context = context_for_command(data.cmd);
ASSERT(context < KMC_CONTEXT_COUNT);
key_to_cmd_map &key_map = _keys_to_cmds[context];
cmd_to_key_map &cmd_map = _cmds_to_keys[context];
// Only one command per key, but it's okay to have several
// keys map to the same command.
ASSERT(key_map.find(data.key) == key_map.end());
key_map[data.key] = data.cmd;
cmd_map[data.cmd] = data.key;
}
ASSERT(i >= 130);
}
command_type name_to_command(std::string name)
{
name_to_cmd_map::iterator it = _names_to_cmds.find(name);
if (it == _names_to_cmds.end())
return (CMD_NO_CMD);
return static_cast<command_type>(it->second);
}
std::string command_to_name(command_type cmd)
{
cmd_to_name_map::iterator it = _cmds_to_names.find(cmd);
if (it == _cmds_to_names.end())
return ("CMD_NO_CMD");
return (it->second);
}
command_type key_to_command(int key, KeymapContext context)
{
if (-key > CMD_NO_CMD && -key < CMD_MIN_SYNTHETIC)
{
command_type cmd = (command_type) -key;
KeymapContext cmd_context = context_for_command(cmd);
if (cmd == CMD_NO_CMD)
return (CMD_NO_CMD);
if (cmd_context != context)
{
mprf(MSGCH_ERROR,
"key_to_command(): command '%s' (%d:%d) wrong for desired "
"context",
command_to_name(cmd).c_str(), -key - CMD_NO_CMD,
CMD_MAX_CMD + key);
if (is_processing_macro())
flush_input_buffer(FLUSH_ABORT_MACRO);
if (crawl_state.is_replaying_keys()
|| crawl_state.cmd_repeat_start)
{
flush_input_buffer(FLUSH_KEY_REPLAY_CANCEL);
}
flush_input_buffer(FLUSH_BEFORE_COMMAND);
return (CMD_NO_CMD);
}
return (cmd);
}
key_to_cmd_map &key_map = _keys_to_cmds[context];
key_to_cmd_map::iterator it = key_map.find(key);
if (it == key_map.end())
return CMD_NO_CMD;
const command_type cmd = static_cast<command_type>(it->second);
ASSERT(context_for_command(cmd) == context);
return cmd;
}
int command_to_key(command_type cmd)
{
KeymapContext context = context_for_command(cmd);
if (context == KMC_NONE)
return ('\0');
cmd_to_key_map &cmd_map = _cmds_to_keys[context];
cmd_to_key_map::iterator it = cmd_map.find(cmd);
if (it == cmd_map.end())
return ('\0');
return (it->second);
}
KeymapContext context_for_command(command_type cmd)
{
if (cmd > CMD_NO_CMD && cmd <= CMD_MAX_NORMAL)
return KMC_DEFAULT;
if (cmd >= CMD_MIN_OVERMAP && cmd <= CMD_MAX_OVERMAP)
return KMC_LEVELMAP;
if (cmd >= CMD_MIN_TARGET && cmd <= CMD_MAX_TARGET)
return KMC_TARGETING;
#ifdef USE_TILE
if (cmd >= CMD_MIN_DOLL && cmd <= CMD_MAX_DOLL)
return KMC_DOLL;
#endif
return KMC_NONE;
}
void bind_command_to_key(command_type cmd, int key)
{
KeymapContext context = context_for_command(cmd);
std::string command_name = command_to_name(cmd);
if (context == KMC_NONE || command_name == "CMD_NO_CMD"
|| !VALID_BIND_COMMAND(cmd))
{
if (command_name == "CMD_NO_CMD")
{
mprf(MSGCH_ERROR, "Cannot bind command #%d to a key.",
(int) cmd);
return;
}
mprf(MSGCH_ERROR, "Cannot bind command '%s' to a key.",
command_name.c_str());
return;
}
if (is_userfunction(key))
{
mpr("Cannot bind user function keys to a command.", MSGCH_ERROR);
return;
}
if (is_synthetic_key(key))
{
mpr("Cannot bind synthetic keys to a command.", MSGCH_ERROR);
return;
}
// We're good.
key_to_cmd_map &key_map = _keys_to_cmds[context];
cmd_to_key_map &cmd_map = _cmds_to_keys[context];
key_map[key] = cmd;
cmd_map[cmd] = key;
}
static std::string _special_keys_to_string(int key)
{
const bool shift = (key >= CK_SHIFT_UP && key <= CK_SHIFT_PGDN);
const bool ctrl = (key >= CK_CTRL_UP && key <= CK_CTRL_PGDN);
std::string cmd = "";
if (shift)
{
key -= (CK_SHIFT_UP - CK_UP);
cmd = "Shift-";
}
else if (ctrl)
{
key -= (CK_CTRL_UP - CK_UP);
cmd = "Ctrl-";
}
switch (key)
{
case CK_ENTER: cmd += "Enter"; break;
case CK_BKSP: cmd += "Backspace"; break;
CASE_ESCAPE cmd += "Esc"; break;
case CK_DELETE: cmd += "Del"; break;
case CK_UP: cmd += "Up"; break;
case CK_DOWN: cmd += "Down"; break;
case CK_LEFT: cmd += "Left"; break;
case CK_RIGHT: cmd += "Right"; break;
case CK_INSERT: cmd += "Ins"; break;
case CK_HOME: cmd += "Home"; break;
case CK_END: cmd += "End"; break;
case CK_CLEAR: cmd += "Clear"; break;
case CK_PGUP: cmd += "PgUp"; break;
case CK_PGDN: cmd += "PgDn"; break;
}
return (cmd);
}
std::string command_to_string(command_type cmd)
{
const int key = command_to_key(cmd);
const std::string desc = _special_keys_to_string(key);
if (!desc.empty())
return (desc);
if (key >= 32 && key < 256)
snprintf(info, INFO_SIZE, "%c", (char) key);
else if (key > 1000 && key <= 1009)
{
const int numpad = (key - 1000);
snprintf(info, INFO_SIZE, "Numpad %d", numpad);
}
else
{
const int ch = key + 'A' - 1;
if (ch >= 'A' && ch <= 'Z')
snprintf(info, INFO_SIZE, "Ctrl-%c", (char) ch);
else
snprintf(info, INFO_SIZE, "%d", key);
}
std::string result = info;
return (result);
}
void insert_commands(std::string &desc, std::vector<command_type> cmds,
bool formatted)
{
for (unsigned int i = 0; i < cmds.size(); ++i)
{
const std::string::size_type found = desc.find("%");
if (found == std::string::npos)
break;
std::string command_name = command_to_string(cmds[i]);
if (formatted && command_name == "<")
command_name += "<";
else if (command_name == "%")
command_name = "percent";
desc.replace(found, 1, command_name);
}
desc = replace_all(desc, "percent", "%");
}
void insert_commands(std::string &desc, const int first, ...)
{
std::vector<command_type> cmd_vector;
cmd_vector.push_back((command_type) first);
va_list args;
va_start(args, first);
int nargs = 10;
while (nargs-- > 0)
{
int value = va_arg(args, int);
if (!value)
break;
cmd_vector.push_back((command_type) value);
}
ASSERT(nargs > 0);
va_end(args);
insert_commands(desc, cmd_vector);
}
#if 0
// Currently unused, might be useful somewhere.
static void _list_all_commands(std::string &commands)
{
for (int i = CMD_NO_CMD; i < CMD_MAX_CMD; i++)
{
const command_type cmd = (command_type) i;
const std::string command_name = command_to_name(cmd);
if (command_name == "CMD_NO_CMD")
continue;
if (context_for_command(cmd) != KMC_DEFAULT)
continue;
snprintf(info, INFO_SIZE, "%s: %s\n",
command_name.c_str(), command_to_string(cmd).c_str());
commands += info;
}
commands += "\n";
}
#endif
|