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 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
|
/* $EPIC: status.c,v 1.37 2004/10/01 20:37:30 jnelson Exp $ */
/*
* status.c: handles the status line updating, etc for IRCII
*
* Copyright (c) 1990 Michael Sandroff.
* Copyright (c) 1991, 1992 Troy Rollo.
* Copyright (c) 1992-1996 Matthew Green.
* Copyright 1994 Jake Khuon.
* Copyright 1995, 2003 EPIC Software Labs.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notices, the above paragraph (the one permitting redistribution),
* this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The names of the author(s) may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#define __need_putchar_x__
#include "irc.h"
#include "dcc.h"
#include "term.h"
#include "status.h"
#include "server.h"
#include "vars.h"
#include "hook.h"
#include "input.h"
#include "commands.h"
#include "window.h"
#include "screen.h"
#include "mail.h"
#include "output.h"
#include "names.h"
#include "ircaux.h"
#include "alias.h"
#include "clock.h"
#ifdef Char
#undef Char
#endif
#define Char const char
/*
* Maximum number of "%" expressions in a status line format. If you change
* this number, you must manually change the snprintf() in make_status
*/
#define STATUS_FUNCTION(x) Char * x (Window *window, int map, int key)
#define MAX_FUNCTIONS 40
#define MAX_STATUS_USER 39
STATUS_FUNCTION(status_nickname);
STATUS_FUNCTION(status_query_nick);
STATUS_FUNCTION(status_right_justify);
STATUS_FUNCTION(status_chanop);
STATUS_FUNCTION(status_ssl);
STATUS_FUNCTION(status_channel);
STATUS_FUNCTION(status_server);
STATUS_FUNCTION(status_mode);
STATUS_FUNCTION(status_umode);
STATUS_FUNCTION(status_insert_mode);
STATUS_FUNCTION(status_overwrite_mode);
STATUS_FUNCTION(status_away);
STATUS_FUNCTION(status_oper);
STATUS_FUNCTION(status_user);
STATUS_FUNCTION(status_dcc);
STATUS_FUNCTION(status_dcc_all);
STATUS_FUNCTION(status_hold);
STATUS_FUNCTION(status_version);
STATUS_FUNCTION(status_clock);
STATUS_FUNCTION(status_hold_lines);
STATUS_FUNCTION(status_window);
STATUS_FUNCTION(status_mail);
STATUS_FUNCTION(status_refnum);
STATUS_FUNCTION(status_refnum_real);
STATUS_FUNCTION(status_null_function);
STATUS_FUNCTION(status_notify_windows);
STATUS_FUNCTION(status_voice);
STATUS_FUNCTION(status_cpu_saver_mode);
STATUS_FUNCTION(status_position);
STATUS_FUNCTION(status_scrollback);
STATUS_FUNCTION(status_scroll_info);
STATUS_FUNCTION(status_windowspec);
STATUS_FUNCTION(status_percent);
STATUS_FUNCTION(status_test);
STATUS_FUNCTION(status_swappable);
/* These are used as placeholders for some expandos */
static char *mode_format = (char *) 0;
static char *umode_format = (char *) 0;
static char *query_format = (char *) 0;
static char *clock_format = (char *) 0;
static char *hold_lines_format = (char *) 0;
static char *channel_format = (char *) 0;
static char *cpu_saver_format = (char *) 0;
static char *mail_format = (char *) 0;
static char *nick_format = (char *) 0;
static char *server_format = (char *) 0;
static char *notify_format = (char *) 0;
Status main_status;
int main_status_init = 0;
static void init_status (void);
/*
* Status updates are not permitted until we are connected to a server.
* Got_initial_version_28 will set this to 1 when we first get connected
* to a server.
*/
int status_updates_permitted = 0;
/*
* This is the list of possible expandos. Note that you should not use
* the '{' character, as it would be confusing. It is already used for
* specifying the map.
*/
struct status_formats {
int map;
char key;
Char *(*callback_function)(Window *, int, int);
char **format_var;
int format_set;
};
struct status_formats status_expandos[] = {
{ 0, 'A', status_away, NULL, -1 },
{ 0, 'B', status_hold_lines, &hold_lines_format, STATUS_HOLD_LINES_VAR },
{ 0, 'C', status_channel, &channel_format, STATUS_CHANNEL_VAR },
{ 0, 'D', status_dcc, NULL, -1 },
{ 0, 'F', status_notify_windows,¬ify_format, STATUS_NOTIFY_VAR },
{ 0, 'H', status_hold, NULL, -1 },
{ 0, 'I', status_insert_mode, NULL, -1 },
{ 0, 'K', status_scrollback, NULL, -1 },
{ 0, 'L', status_cpu_saver_mode,&cpu_saver_format, STATUS_CPU_SAVER_VAR },
{ 0, 'M', status_mail, &mail_format, STATUS_MAIL_VAR },
{ 0, 'N', status_nickname, &nick_format, STATUS_NICK_VAR },
{ 0, 'O', status_overwrite_mode,NULL, -1 },
{ 0, 'P', status_position, NULL, -1 },
{ 0, 'Q', status_query_nick, &query_format, STATUS_QUERY_VAR },
{ 0, 'R', status_refnum, NULL, -1 },
{ 0, 'S', status_server, &server_format, STATUS_SERVER_VAR },
{ 0, 'T', status_clock, &clock_format, STATUS_CLOCK_VAR },
{ 0, 'U', status_user, NULL, -1 },
{ 0, 'V', status_version, NULL, -1 },
{ 0, 'W', status_window, NULL, -1 },
{ 0, 'X', status_user, NULL, -1 },
{ 0, 'Y', status_user, NULL, -1 },
{ 0, 'Z', status_user, NULL, -1 },
{ 0, '#', status_umode, &umode_format, STATUS_UMODE_VAR },
{ 0, '%', status_percent, NULL, -1 },
{ 0, '*', status_oper, NULL, -1 },
{ 0, '+', status_mode, &mode_format, STATUS_MODE_VAR },
{ 0, '.', status_windowspec, NULL, -1 },
{ 0, '=', status_voice, NULL, -1 },
{ 0, '>', status_right_justify, NULL, -1 },
{ 0, '@', status_chanop, NULL, -1 },
{ 0, '|', status_ssl, NULL, -1 },
{ 0, '0', status_user, NULL, -1 },
{ 0, '1', status_user, NULL, -1 },
{ 0, '2', status_user, NULL, -1 },
{ 0, '3', status_user, NULL, -1 },
{ 0, '4', status_user, NULL, -1 },
{ 0, '5', status_user, NULL, -1 },
{ 0, '6', status_user, NULL, -1 },
{ 0, '7', status_user, NULL, -1 },
{ 0, '8', status_user, NULL, -1 },
{ 0, '9', status_user, NULL, -1 },
{ 1, '0', status_user, NULL, -1 },
{ 1, '1', status_user, NULL, -1 },
{ 1, '2', status_user, NULL, -1 },
{ 1, '3', status_user, NULL, -1 },
{ 1, '4', status_user, NULL, -1 },
{ 1, '5', status_user, NULL, -1 },
{ 1, '6', status_user, NULL, -1 },
{ 1, '7', status_user, NULL, -1 },
{ 1, '8', status_user, NULL, -1 },
{ 1, '9', status_user, NULL, -1 },
{ 1, 'D', status_dcc_all, NULL, -1 },
{ 1, 'F', status_notify_windows,¬ify_format, STATUS_NOTIFY_VAR },
{ 1, 'K', status_scroll_info, NULL, -1 },
{ 1, 'R', status_refnum_real, NULL, -1 },
{ 1, 'S', status_server, &server_format, STATUS_SERVER_VAR },
{ 1, 'T', status_test, NULL, -1 },
{ 1, 'W', status_swappable, NULL, -1 },
{ 1, '+', status_mode, &mode_format, STATUS_MODE_VAR },
{ 2, '0', status_user, NULL, -1 },
{ 2, '1', status_user, NULL, -1 },
{ 2, '2', status_user, NULL, -1 },
{ 2, '3', status_user, NULL, -1 },
{ 2, '4', status_user, NULL, -1 },
{ 2, '5', status_user, NULL, -1 },
{ 2, '6', status_user, NULL, -1 },
{ 2, '7', status_user, NULL, -1 },
{ 2, '8', status_user, NULL, -1 },
{ 2, '9', status_user, NULL, -1 },
{ 2, 'S', status_server, &server_format, STATUS_SERVER_VAR },
{ 2, 'W', status_window, NULL, -1 },
{ 3, '0', status_user, NULL, -1 },
{ 3, '1', status_user, NULL, -1 },
{ 3, '2', status_user, NULL, -1 },
{ 3, '3', status_user, NULL, -1 },
{ 3, '4', status_user, NULL, -1 },
{ 3, '5', status_user, NULL, -1 },
{ 3, '6', status_user, NULL, -1 },
{ 3, '7', status_user, NULL, -1 },
{ 3, '8', status_user, NULL, -1 },
{ 3, '9', status_user, NULL, -1 },
{ 3, 'W', status_window, NULL, -1 }
};
#define NUMBER_OF_EXPANDOS (sizeof(status_expandos) / sizeof(struct status_formats))
/*
* convert_sub_format: This is used to convert the formats of the
* sub-portions of the status line to a format statement specially designed
* for that sub-portions. convert_sub_format looks for a single occurence of
* %c (where c is passed to the function). When found, it is replaced by "%s"
* for use in a snprintf. All other occurences of % followed by any other
* character are left unchanged. Only the first occurence of %c is
* converted, all subsequence occurences are left unchanged. This routine
* mallocs the returned string.
*/
char *convert_sub_format (const char *format, char c)
{
char buffer[BIG_BUFFER_SIZE + 1];
int pos = 0;
int dont_got_it = 1;
if (!format)
return NULL; /* NULL in, NULL out */
while (*format && pos < BIG_BUFFER_SIZE - 4)
{
if (*format != '%')
{
buffer[pos++] = *format++;
continue;
}
format++;
if (*format == c && dont_got_it)
{
dont_got_it = 0;
buffer[pos++] = '%';
buffer[pos++] = 's';
format++;
}
else if (*format != '%')
{
buffer[pos++] = '%';
buffer[pos++] = '%';
buffer[pos++] = *format;
format++;
}
else
{
buffer[pos++] = '%';
buffer[pos++] = '%';
}
}
buffer[pos] = 0;
return malloc_strdup(buffer);
}
/*
* This walks a raw format string and parses out any expandos that it finds.
* An expando is handled by pre-fetching any string variable that is used
* by the callback function, the callback function is registered, and a
* %s format is put in the snprintf()-able return value (stored in buffer).
* All other characters are copied as-is to the return value.
*/
static void build_status_format (Status *s, int k)
{
char buffer[BIG_BUFFER_SIZE + 1];
int cp;
int map;
char key;
unsigned i;
Char *raw = s->line[k].raw;
char *format = buffer;
cp = s->line[k].count = 0;
while (raw && *raw && (format - buffer < BIG_BUFFER_SIZE - 4))
{
if (*raw != '%')
{
*format++ = *raw++;
continue;
}
/* It is a % */
map = 0;
/* Find the map, if neccesary */
if (*++raw == '{')
{
char *endptr;
raw++;
map = strtoul(raw, &endptr, 10);
if (*endptr != '}')
{
/* Unrecognized */
continue;
}
raw = endptr + 1;
}
key = *raw++;
/* Choke once we get to the maximum number of expandos */
if (cp >= MAX_FUNCTIONS)
continue;
for (i = 0; i < NUMBER_OF_EXPANDOS; i++)
{
if (status_expandos[i].map != map ||
status_expandos[i].key != key)
continue;
if (status_expandos[i].format_var)
new_free(status_expandos[i].format_var);
if (status_expandos[i].format_set != -1)
*(status_expandos[i].format_var) =
convert_sub_format(get_string_var(status_expandos[i].format_set), key);
*format++ = '%';
*format++ = 's';
s->line[k].func[cp] =
status_expandos[i].callback_function;
s->line[k].map[cp] = map;
s->line[k].key[cp] = key;
cp++;
break;
}
}
s->line[k].count = cp;
*format = 0;
malloc_strcpy(&(s->line[k].format), buffer);
while (cp < MAX_FUNCTIONS)
{
s->line[k].func[cp] = status_null_function;
s->line[k].map[cp] = 0;
s->line[k].key[cp] = 0;
cp++;
}
}
/*
* This function either rebuilds the status_func[] tables for each of the
* three possible status_format's (single, lower double, upper double) for
* a particular window (w != NULL) or for the global default status bars
* (w == NULL)
*
* This function should only by the functions that actually change the
* status formats (build_status, new_window, and window_status_format*)
*/
void rebuild_a_status (Window *w)
{
int i,
k;
Status *s;
if (w)
s = &w->status;
else
s = &main_status;
for (k = 0; k < 3; k++)
{
new_free((char **)&s->line[k].format);
s->line[k].count = 0;
/*
* If we have an overriding status_format, then we parse
* that out.
*/
if (w && s->line[k].raw)
build_status_format(s, k);
/*
* Otherwise, If this is for a window, just copy the essential
* information over from the main status lines.
*/
else if (w)
{
s->line[k].format = malloc_strdup(main_status.line[k].format);
for (i = 0; i < MAX_FUNCTIONS; i++)
{
s->line[k].func[i] = main_status.line[k].func[i];
s->line[k].map[i] = main_status.line[k].map[i];
s->line[k].key[i] = main_status.line[k].key[i];
}
s->line[k].count = main_status.line[k].count;
}
/*
* Otherwise, this *is* the main status lines we are generating
* and we need to do all the normal shenanigans.
*/
else
{
if (k == 0)
s->line[k].raw = get_string_var(STATUS_FORMAT_VAR);
else if (k == 1)
s->line[k].raw = get_string_var(STATUS_FORMAT1_VAR);
else /* (k == 2) */
s->line[k].raw = get_string_var(STATUS_FORMAT2_VAR);
build_status_format(s, k);
}
}
}
/*
* This function causes every status bar, both global and per-window to be
* rebuilt, and marks every window as needing its status bar redrawn.
* This function can be quite expensive.
*
* This function should be called whenever you change the global status format
* (/SET STATUS_FORMAT*) or one of the sub-components (/SET STATUS_*)
*
* This function is a /SET callback, so it must always take a (char *) as an
* argument even though we don't care about it.
*/
void build_status (const void *stuff)
{
Window *w = NULL;
if (!main_status_init)
init_status();
rebuild_a_status(w);
while (traverse_all_windows(&w))
rebuild_a_status(w);
update_all_status();
}
static void init_status (void)
{
int i, k;
main_status.double_status = 0;
main_status.special = 0;
for (i = 0; i < 3; i++)
{
main_status.line[i].raw = NULL;
main_status.line[i].format = NULL;
main_status.line[i].count = 0;
main_status.line[i].result = NULL;
for (k = 0; k < MAX_FUNCTIONS; k++)
{
main_status.line[i].func[k] = NULL;
main_status.line[i].map[k] = 0;
main_status.line[i].key[k] = 0;
}
}
main_status_init = 1;
}
/*
* permit_status_update: sets the status_update_flag to whatever flag is.
*/
int permit_status_update (int flag)
{
int old_flag = status_updates_permitted;
status_updates_permitted = flag;
return old_flag;
}
/*
* This just sucked beyond words. I was always planning on rewriting this,
* but the crecendo of complaints with regards to this just got to be too
* irritating, so i fixed it early.
*/
int make_status (Window *window, int must_redraw)
{
int status_line;
u_char buffer [BIG_BUFFER_SIZE + 1];
u_char lhs_buffer [BIG_BUFFER_SIZE + 1];
u_char rhs_buffer [BIG_BUFFER_SIZE + 1];
Char *func_value [MAX_FUNCTIONS];
u_char *ptr;
size_t save_size;
/* We do NOT redraw status bars for hidden windows */
if (!window->screen || !status_updates_permitted)
return -1;
for (status_line = 0; status_line < window->status.double_status + 1; status_line++)
{
u_char lhs_fillchar[6],
rhs_fillchar[6],
*fillchar = lhs_fillchar,
*lhp = lhs_buffer,
*rhp = rhs_buffer,
*cp,
*start_rhs = 0,
*str;
int in_rhs = 0,
pr_lhs = 0,
pr_rhs = 0,
line,
*prc = &pr_lhs,
i;
fillchar[0] = fillchar[1] = 0;
/*
* If status line gets to one, then that means that
* window->double_status is not zero. That means that
* the status line we're working on is STATUS2.
*/
if (status_line)
line = 2;
/*
* If status_line is zero, and window->double_status is
* not zero (double status line is on) then we're working
* on STATUS1.
*/
else if (window->status.double_status)
line = 1;
/*
* So status_line is zero and window->double_status is zero.
* So we're working on STATUS (0).
*/
else
line = 0;
/*
* Sanity check: If the status format doesnt exist, dont do
* anything for it.
*/
if (!window->status.line[line].format)
continue;
/*
* Run each of the status-generating functions from the the
* status list. Note that the retval of the functions is no
* longer malloc()ed. This saves 40-some odd malloc/free sets
* each time the status bar is updated, which is non-trivial.
*/
for (i = 0; i < MAX_FUNCTIONS; i++)
{
if (window->screen == NULL)
return -1;
if (window->status.line[line].func[i] == NULL)
panic("status callback null. Window [%d], line [%d], function [%d]", window->refnum, line, i);
func_value[i] = window->status.line[line].func[i]
(window, window->status.line[line].map[i],
window->status.line[line].key[i]);
}
/*
* If the REVERSE_STATUS_LINE var is on, then put a reverse
* character in the first position (itll get translated to
* the tcap code in the output code.
*/
if (get_int_var(REVERSE_STATUS_LINE_VAR))
*buffer = REV_TOG , str = buffer + 1;
else
str = buffer;
/*
* Now press the status line into "buffer". The magic about
* setting status_format is handled elsewhere.
*/
snprintf(str, BIG_BUFFER_SIZE - 1, window->status.line[line].format,
func_value[0], func_value[1], func_value[2],
func_value[3], func_value[4], func_value[5],
func_value[6], func_value[7], func_value[8], func_value[9],
func_value[10], func_value[11], func_value[12],
func_value[13], func_value[14], func_value[15],
func_value[16], func_value[17], func_value[18],
func_value[19], func_value[20], func_value[21],
func_value[22], func_value[23], func_value[24],
func_value[25], func_value[26], func_value[27],
func_value[28], func_value[29], func_value[30],
func_value[31], func_value[32], func_value[33],
func_value[34], func_value[35], func_value[36],
func_value[37], func_value[38], func_value[39]);
/*
* If the user wants us to, pass the status bar through the
* expander to pick any variables/function calls.
* This is horribly expensive, but what do i care if you
* want to waste cpu cycles? ;-)
*/
if (get_int_var(STATUS_DOES_EXPANDOS_VAR))
{
int af = 0;
int old_fs = from_server;
Window *old = current_window;
int owd = window_display;
current_window = window;
from_server = current_window->server;
window_display = 0;
str = expand_alias(buffer, empty_string, &af, NULL);
window_display = owd;
from_server = old_fs;
current_window = old;
strlcpy(buffer, str, sizeof buffer);
new_free(&str);
}
/*
* This converts away any ansi codes in the status line
* in accordance with the currenet settings. This leaves us
* with nothing but logical characters, which are then easy
* to count. :-)
*/
str = normalize_string(buffer, 3);
/*
* Count out the characters.
* Walk the entire string, looking for nonprintable
* characters. We count all the printable characters
* on both sides of the %> tag.
*/
ptr = str;
cp = lhp;
lhs_buffer[0] = rhs_buffer[0] = 0;
while (*ptr)
{
/*
* The FIRST such %> tag is used.
* Using multiple %>s is bogus.
*/
if (*ptr == '\f' && start_rhs == NULL)
{
ptr++;
start_rhs = ptr;
fillchar = rhs_fillchar;
in_rhs = 1;
*cp = 0;
cp = rhp;
prc = &pr_rhs;
}
/*
* Skip over attribute changes, not useful.
*/
else if (*ptr == '\006')
{
/* Copy the next 5 values */
*cp++ = *ptr++;
*cp++ = *ptr++;
*cp++ = *ptr++;
*cp++ = *ptr++;
*cp++ = *ptr++;
}
/*
* XXXXX This is a bletcherous hack.
* If i knew what was good for me id not do this.
*/
else if (*ptr == 9) /* TAB */
{
fillchar[0] = ' ';
fillchar[1] = 0;
do
*cp++ = ' ';
while (++(*prc) % 8);
ptr++;
}
/*
* So it is a printable character.
*/
else
{
*prc += 1;
fillchar[0] = *cp++ = *ptr++;
fillchar[1] = 0;
}
/*
* Dont allow more than CO printable characters
*/
if (pr_lhs + pr_rhs >= window->screen->co)
{
*cp = 0;
break;
}
}
*cp = 0;
/* What will we be filling with? */
if (get_int_var(STATUS_NO_REPEAT_VAR))
{
lhs_fillchar[0] = ' ';
lhs_fillchar[1] = 0;
rhs_fillchar[0] = ' ';
rhs_fillchar[1] = 0;
}
/*
* Now if we have a rhs, then we have to adjust it.
*/
if (start_rhs)
{
int numf = 0;
numf = window->screen->co - pr_lhs - pr_rhs -1;
while (numf-- >= 0)
strlcat(lhs_buffer, lhs_fillchar,
sizeof lhs_buffer);
}
/*
* No rhs? If the user wants us to pad it out, do so.
*/
else if (get_int_var(FULL_STATUS_LINE_VAR))
{
int chars = window->screen->co - pr_lhs - 1;
while (chars-- >= 0)
strlcat(lhs_buffer, lhs_fillchar,
sizeof lhs_buffer);
}
save_size = strlen(all_off());
strlcpy(buffer, lhs_buffer, sizeof buffer - save_size);
strlcat(buffer, rhs_buffer, sizeof buffer - save_size);
strlcat(buffer, all_off(), sizeof buffer);
new_free(&str);
/*
* Ends up that BitchX always throws this hook and
* people seem to like having this thrown in standard
* mode, so i'll go along with that.
*/
do_hook(STATUS_UPDATE_LIST, "%d %d %s",
window->refnum,
status_line,
buffer);
if (dumb_mode || !foreground)
continue;
/*
* Update the status line on the screen.
* First check to see if it has changed
* Remember this is only done in full screen mode.
*/
if (must_redraw || !window->status.line[status_line].result ||
strcmp(buffer, window->status.line[status_line].result))
{
/*
* Roll the new back onto the old
*/
malloc_strcpy(&window->status.line[status_line].result,
buffer);
/*
* Output the status line to the screen
*/
output_screen = window->screen;
term_move_cursor(0, window->bottom + status_line);
output_with_count(buffer, 1, 1);
cursor_in_display(window);
}
}
cursor_to_input();
return 0;
}
/* Some useful macros */
/*
* This is used to get the current window on a window's screen
*/
#define CURRENT_WINDOW window->screen->current_window
/*
* This tests to see if the window IS the current window on its screen
*/
#define IS_CURRENT_WINDOW (window->screen->current_window == window)
/*
* This tests to see if all expandoes are to appear in all status bars
*/
#define SHOW_ALL_WINDOWS (get_int_var(SHOW_STATUS_ALL_VAR))
/*
* "Current-type" window expandoes occur only on the current window for a
* screen. However, if /set show_status_all is on, then ALL windows act as
* "Current-type" windows.
*/
#define DISPLAY_ON_WINDOW (IS_CURRENT_WINDOW || SHOW_ALL_WINDOWS)
/*
* These are the functions that all of the status expandoes invoke
*/
/*
* This is your current nickname in the window.
*/
STATUS_FUNCTION(status_nickname)
{
static char my_buffer[64];
snprintf(my_buffer, 63, nick_format,
get_server_nickname(window->server));
return my_buffer;
}
/*
* This displays the server that the window is connected to.
*/
STATUS_FUNCTION(status_server)
{
char *rest;
const char *n;
char *name;
char *next;
static char my_buffer[64];
size_t len;
#ifdef OLD_STATUS_S_EXPANDO_BEHAVIOR
/*
* If there is only one server, dont bother telling the user
* what it is.
*/
if (connected_to_server == 1 && map == 0)
return empty_string;
#endif
/*
* If this window isnt connected to a server, say so.
*/
if (window->server == NOSERV)
return "No Server";
/*
* If the user doesnt want this expando, dont force it.
*/
if (!server_format)
return empty_string;
/* Figure out what server this window is on */
n = get_server_name(window->server);
if (map == 2)
{
snprintf(my_buffer, 63, server_format, n);
return my_buffer;
}
name = LOCAL_COPY(n);
/*
* If the first segment before the first dot is a number,
* then its an ip address, and use the whole thing.
*/
if (strtoul(name, &next, 10) && *next == '.')
{
snprintf(my_buffer, 63, server_format, name);
return my_buffer;
}
/*
* Get the stuff to the left of the first dot.
*/
if (!(rest = strchr(name, '.')))
{
snprintf(my_buffer, 63, server_format, name);
return my_buffer;
}
/*
* If the first segment is 'irc', thats not terribly
* helpful, so get the next segment.
*/
if (!strncmp(name, "irc", 3))
{
name = rest + 1;
if (!(rest = strchr(name + 1, '.')))
rest = name + strlen(name);
}
/*
* If the name of the server is > 60 chars, crop it back to 60.
*/
if ((len = rest - name) > 60)
len = 60;
/*
* Plop the server into the server_format and return it.
*/
name[len] = 0;
snprintf(my_buffer, 63, server_format, name);
return my_buffer;
}
/*
* This displays any nicks that you may have as your current query in the
* given window.
*/
STATUS_FUNCTION(status_query_nick)
{
static char my_buffer[BIG_BUFFER_SIZE + 1];
if (window->query_nick && query_format)
{
snprintf(my_buffer, BIG_BUFFER_SIZE,
query_format, window->query_nick);
return my_buffer;
}
return empty_string;
}
/*
* This forces anything to the right of this point to be right-justified
* (if possible) on the status bar. Note that the right hand side is always
* cropped, and not the left hand side. That is to say, this is a hint that
* if the left hand side is too short, that the "filler" should be put here
* at this point rather than at the end of the status line.
*/
STATUS_FUNCTION(status_right_justify)
{
static char my_buffer[] = "\f";
return my_buffer;
}
/*
* Displays whatever windows are notifying, and have notified
* (usually when output happens on hidden windows that you marked with
* /window notify on)
*/
STATUS_FUNCTION(status_notify_windows)
{
int doneone = 0;
char buf2[BIG_BUFFER_SIZE];
static char my_buffer[BIG_BUFFER_SIZE];
/*
* This only goes to a current-type window.
*/
if (!DISPLAY_ON_WINDOW)
return empty_string;
*my_buffer = 0;
*buf2 = 0;
/*
* Look for any notifying windows that have had some output since
* they have been hidden and collect their refnums.
*/
window = NULL;
while (traverse_all_windows(&window))
{
if (window->miscflags & WINDOW_NOTIFIED)
{
if (doneone++)
strlcat(buf2, ",", sizeof buf2);
strlcat(buf2, (map == 1 && window->name) ?
window->name :
ltoa(window->refnum), sizeof buf2);
}
}
/*
* Only do the snprintf if there are windows to process.
*/
if (doneone && notify_format)
snprintf(my_buffer, sizeof my_buffer, notify_format, buf2);
return my_buffer;
}
/*
* Displays what time it is on the current-type window
*/
STATUS_FUNCTION(status_clock)
{
static char my_buffer[81];
if (get_int_var(CLOCK_VAR) && clock_format && DISPLAY_ON_WINDOW)
snprintf(my_buffer, 80, clock_format, get_clock());
else
*my_buffer = 0;
return my_buffer;
}
/*
* The current channel mode for the current channel (if any)
*/
STATUS_FUNCTION(status_mode)
{
const char * mode = NULL;
const char * chan = NULL;
static char my_buffer[81];
/* If anything goes wrong, we return an empty string */
*my_buffer = 0;
/* If the user has no mode format, or we're not connected, punt. */
if (!mode_format || window->server == NOSERV)
return my_buffer;
/* If there is a current channel, get it's mode */
if ((chan = get_echannel_by_refnum(window->refnum)))
mode = get_channel_mode(chan, window->server);
/* If this is %+, and there is not a mode, punt. */
if (mode == 0 && (!mode || !*mode))
return my_buffer;
/* If this is %{1}+, and there is not a mode, use empty string */
if (!mode)
mode = empty_string;
/*
* This gross hack is required to make sure that the
* channel key doesnt accidentally contain anything
* dangerous...
*/
if (get_int_var(STATUS_DOES_EXPANDOS_VAR))
{
char *mode2 = alloca(strlen(mode) * 2 + 1);
double_quote(mode, "$", mode2);
mode = mode2;
}
/* Press the mode into the status format. */
snprintf(my_buffer, 80, mode_format, mode);
return my_buffer;
}
/*
* Your user mode for the server in this window.
*/
STATUS_FUNCTION(status_umode)
{
char localbuf[20];
static char my_buffer[81];
/*
* If we are only on one server and this isnt the current-type
* window, then dont display it here.
*/
if (connected_to_server == 1 && !DISPLAY_ON_WINDOW)
return empty_string;
/*
* Punt if the window isnt connected to a server.
*/
if (window->server < 0)
return empty_string;
strlcpy(localbuf, get_umode(window->server), sizeof localbuf);
if (!*localbuf)
return empty_string;
snprintf(my_buffer, 80, umode_format, localbuf);
return my_buffer;
}
/*
* Figures out whether or not youre a channel operator on the current
* channel for this window.
*/
STATUS_FUNCTION(status_chanop)
{
char *text;
const char *chan;
if (window->server == NOSERV ||
(!(chan = get_echannel_by_refnum(window->refnum))))
return empty_string;
if (get_channel_oper(chan, window->server) &&
(text = get_string_var(STATUS_CHANOP_VAR)))
return text;
if (get_channel_halfop(chan, window->server) &&
(text = get_string_var(STATUS_HALFOP_VAR)))
return text;
return empty_string;
}
/*
* are we using SSL conenction?
*/
STATUS_FUNCTION(status_ssl)
{
char *text;
if (window->server != NOSERV && get_server_isssl(window->server) &&
(text = get_string_var(STATUS_SSL_ON_VAR)))
return text;
else if ((text = get_string_var(STATUS_SSL_OFF_VAR)))
return text;
return empty_string;
}
/*
* Figures out how many lines are being "held" (never been displayed, usually
* because of hold_mode or scrollback being on) for this window.
*/
STATUS_FUNCTION(status_hold_lines)
{
int num;
static char my_buffer[81];
int interval = window->hold_interval;
int lines_held;
if (interval == 0)
interval = 1; /* XXX WHAT-ever */
if (window->holding_distance_from_display_ip > window->scrollback_distance_from_display_ip)
lines_held = window->holding_distance_from_display_ip - window->display_size;
else
lines_held = window->scrollback_distance_from_display_ip - window->display_size;
if (lines_held <= 0)
return empty_string;
if ((num = (lines_held / interval) * interval))
{
snprintf(my_buffer, 80, hold_lines_format, ltoa(num));
return my_buffer;
}
return empty_string;
}
/*
* Figures out what the current channel is for the window.
*/
STATUS_FUNCTION(status_channel)
{
const char *chan;
char channel[IRCD_BUFFER_SIZE + 1];
static char my_buffer[IRCD_BUFFER_SIZE + 1];
int num;
if (window->server == NOSERV || !channel_format)
return empty_string;
if (!(chan = get_echannel_by_refnum(window->refnum)))
return empty_string;
if (get_int_var(HIDE_PRIVATE_CHANNELS_VAR) &&
is_channel_private(chan, window->server))
strlcpy(channel, "*private*", sizeof channel);
else
strlcpy(channel, chan, sizeof channel);
num = get_int_var(CHANNEL_NAME_WIDTH_VAR);
if (num > 0 && (int)strlen(channel) > num)
channel[num] = 0;
snprintf(my_buffer, IRCD_BUFFER_SIZE,
channel_format, check_channel_type(channel));
return my_buffer;
}
/*
* Figures out if you are a channel voice for the current channel in this
* window. For whatever reason, this wont display if youre also a channel
* operator on the current channel in this window.
*/
STATUS_FUNCTION(status_voice)
{
char *text;
const char *chan;
if (window->server == NOSERV ||
(chan = get_echannel_by_refnum(window->refnum)) == NULL)
return empty_string;
if (get_channel_voice(chan, window->server) &&
!get_channel_oper(chan, window->server) &&
(text = get_string_var(STATUS_VOICE_VAR)))
return text;
return empty_string;
}
/*
* Displays how much mail we think you have.
*/
STATUS_FUNCTION(status_mail)
{
const char * number;
static char my_buffer[81];
/*
* The order is important here. We check to see whether or not
* this is a current-type window *FIRST* because most of the time
* that will be false, and check_mail() is very expensive; we dont
* want to do it if we're going to ignore the result.
*/
if (get_int_var(MAIL_VAR) && mail_format &&
DISPLAY_ON_WINDOW && (number = check_mail()))
{
snprintf(my_buffer, 80, mail_format, number);
return my_buffer;
}
return empty_string;
}
/*
* Display if "insert mode" is ON for the input line.
*/
STATUS_FUNCTION(status_insert_mode)
{
char *text;
if (get_int_var(INSERT_MODE_VAR) && DISPLAY_ON_WINDOW &&
(text = get_string_var(STATUS_INSERT_VAR)))
return text;
return empty_string;
}
/*
* Displays if "insert mode" is OFF for the input line.
*/
STATUS_FUNCTION(status_overwrite_mode)
{
char *text;
if (!get_int_var(INSERT_MODE_VAR) && DISPLAY_ON_WINDOW &&
(text = get_string_var(STATUS_OVERWRITE_VAR)))
return text;
return empty_string;
}
/*
* Displays if you are AWAY (protocol away) on the current server for
* the window.
*/
STATUS_FUNCTION(status_away)
{
char *text;
/*
* If we're only on one server, only do this for the
* current-type window.
*/
if (connected_to_server == 1 && !DISPLAY_ON_WINDOW)
return empty_string;
if (window->server != NOSERV &&
get_server_away(window->server) &&
(text = get_string_var(STATUS_AWAY_VAR)))
return text;
return empty_string;
}
/*
* This is a generic status_userX variable.
*/
STATUS_FUNCTION(status_user)
{
char * text;
int i;
/* XXX Ick. Oh well. */
struct dummystruct {
int map;
char key;
enum VAR_TYPES var;
} lookup[] = {
{ 0, 'U', STATUS_USER0_VAR }, { 0, 'X', STATUS_USER1_VAR },
{ 0, 'Y', STATUS_USER2_VAR }, { 0, 'Z', STATUS_USER3_VAR },
{ 0, '0', STATUS_USER0_VAR }, { 0, '1', STATUS_USER1_VAR },
{ 0, '2', STATUS_USER2_VAR }, { 0, '3', STATUS_USER3_VAR },
{ 0, '4', STATUS_USER4_VAR }, { 0, '5', STATUS_USER5_VAR },
{ 0, '6', STATUS_USER6_VAR }, { 0, '7', STATUS_USER7_VAR },
{ 0, '8', STATUS_USER8_VAR }, { 0, '9', STATUS_USER9_VAR },
{ 1, '0', STATUS_USER10_VAR }, { 1, '1', STATUS_USER11_VAR },
{ 1, '2', STATUS_USER12_VAR }, { 1, '3', STATUS_USER13_VAR },
{ 1, '4', STATUS_USER14_VAR }, { 1, '5', STATUS_USER15_VAR },
{ 1, '6', STATUS_USER16_VAR }, { 1, '7', STATUS_USER17_VAR },
{ 1, '8', STATUS_USER18_VAR }, { 1, '9', STATUS_USER19_VAR },
{ 2, '0', STATUS_USER20_VAR }, { 2, '1', STATUS_USER21_VAR },
{ 2, '2', STATUS_USER22_VAR }, { 2, '3', STATUS_USER23_VAR },
{ 2, '4', STATUS_USER24_VAR }, { 2, '5', STATUS_USER25_VAR },
{ 2, '6', STATUS_USER26_VAR }, { 2, '7', STATUS_USER27_VAR },
{ 2, '8', STATUS_USER28_VAR }, { 2, '9', STATUS_USER29_VAR },
{ 3, '0', STATUS_USER30_VAR }, { 3, '1', STATUS_USER31_VAR },
{ 3, '2', STATUS_USER32_VAR }, { 3, '3', STATUS_USER33_VAR },
{ 3, '4', STATUS_USER34_VAR }, { 3, '5', STATUS_USER35_VAR },
{ 3, '6', STATUS_USER36_VAR }, { 3, '7', STATUS_USER37_VAR },
{ 3, '8', STATUS_USER38_VAR }, { 3, '9', STATUS_USER39_VAR },
{ 0, 0, 0 },
};
text = NULL;
for (i = 0; lookup[i].var; i++)
{
if (map == lookup[i].map && key == lookup[i].key)
{
text = get_string_var(lookup[i].var);
break;
}
}
if (text && (DISPLAY_ON_WINDOW || map > 1))
return text;
return empty_string;
}
STATUS_FUNCTION(status_hold)
{
char *text;
if (window->holding_distance_from_display_ip > window->display_size ||
window->scrollback_distance_from_display_ip > window->display_size)
if ((text = get_string_var(STATUS_HOLD_VAR)))
return text;
return empty_string;
}
STATUS_FUNCTION(status_oper)
{
char *text;
if (window->server != NOSERV && get_server_operator(window->server) &&
(text = get_string_var(STATUS_OPER_VAR)) &&
(connected_to_server != 1 || DISPLAY_ON_WINDOW))
return text;
else
return empty_string;
}
STATUS_FUNCTION(status_window)
{
const char *text;
if (!(text = get_string_var(STATUS_WINDOW_VAR)))
text = empty_string;
switch (map)
{
case 0:
if (number_of_windows_on_screen(window) <= 1)
break;
/* FALLTHROUGH */
case 3:
if (!IS_CURRENT_WINDOW)
break;
/* FALLTHROUGH */
case 2:
return text;
}
return empty_string;
}
STATUS_FUNCTION(status_refnum)
{
static char my_buffer[81];
strlcpy(my_buffer, window->name ? window->name
: ltoa(window->refnum), sizeof my_buffer);
return my_buffer;
}
STATUS_FUNCTION(status_refnum_real)
{
static char my_buffer[81];
strlcpy(my_buffer, ltoa(window->refnum), sizeof my_buffer);
return my_buffer;
}
STATUS_FUNCTION(status_version)
{
if (DISPLAY_ON_WINDOW)
return irc_version; /* XXXX */
return empty_string;
}
STATUS_FUNCTION(status_null_function)
{
return empty_string;
}
/*
* This displays the DCC "Progress Meter", which goes to the window that
* has level DCC. OR, if "current_window_level" includes DCC, then this
* goes to the current window.
*/
STATUS_FUNCTION(status_dcc)
{
if ((current_window_level & LOG_DCC && IS_CURRENT_WINDOW) ||
(window->window_level & LOG_DCC))
return DCC_get_current_transfer();
return empty_string;
}
/*
* As above, but always return the indicator.
*/
STATUS_FUNCTION(status_dcc_all)
{
return DCC_get_current_transfer();
}
/*
* This displays something if the client is in 'cpu saver' mode.
* A discussion of that mode should be found in irc.c, so i wont get
* into it here.
*/
STATUS_FUNCTION(status_cpu_saver_mode)
{
static char my_buffer[81];
if (cpu_saver && cpu_saver_format)
{
snprintf(my_buffer, 80, cpu_saver_format, "CPU");
return my_buffer;
}
return empty_string;
}
/*
* This is a private expando that i use for testing. But if you want to
* use it, more power to you! I reserve the right to change this expando
* at my whims. You should not rely on anything specific happening here.
*/
STATUS_FUNCTION(status_position)
{
static char my_buffer[81];
snprintf(my_buffer, 80, "(%d/%d/%d-%d-%d)",
window->scrolling_distance_from_display_ip,
window->holding_distance_from_display_ip,
window->scrollback_distance_from_display_ip,
window->display_size, window->cursor);
#if 0
window->screen->input_line,
window->screen->input_cursor);
#endif
return my_buffer;
}
/*
* This returns something if this window is currently in scrollback mode.
* Useful if you sometimes forget!
*/
STATUS_FUNCTION(status_scrollback)
{
char *stuff;
if (window->scrollback_top_of_display &&
(stuff = get_string_var(STATUS_SCROLLBACK_VAR)))
return stuff;
else
return empty_string;
}
STATUS_FUNCTION(status_scroll_info)
{
static char my_buffer[81];
if (window->scrollback_top_of_display)
{
snprintf(my_buffer, 80, " (Scroll: %d of %d)",
window->scrollback_distance_from_display_ip,
window->display_buffer_size - 1);
}
else
*my_buffer = 0;
return my_buffer;
}
STATUS_FUNCTION(status_windowspec)
{
static char my_buffer[81];
if (window->status.special)
strlcpy(my_buffer, window->status.special, sizeof my_buffer);
else
*my_buffer = 0;
return my_buffer;
}
STATUS_FUNCTION(status_percent)
{
static char percent[] = "%";
return percent;
}
STATUS_FUNCTION(status_test)
{
static char retval[] = "TEST";
return retval;
}
/*
* This returns something if this window is currently in scrollback mode.
* Useful if you sometimes forget!
*/
STATUS_FUNCTION(status_swappable)
{
char *stuff;
if (!window->swappable &&
(stuff = get_string_var(STATUS_NOSWAP_VAR)))
return stuff;
else
return empty_string;
}
|