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
|
/* SCCS Id: @(#)gnbind.c 3.4 2000/07/16 */
/* Copyright (C) 1998 by Erik Andersen <andersee@debian.org> */
/* NetHack may be freely redistributed. See license for details. */
/*
* This file implements the interface between the window port specific
* code in the Gnome port and the rest of the nethack game engine.
*/
#include "gnbind.h"
#include "gnmain.h"
#include "gnmenu.h"
#include "gnaskstr.h"
#include "gnyesno.h"
GNHWinData gnome_windowlist[MAXWINDOWS];
winid WIN_WORN = WIN_ERR;
extern void tty_raw_print(const char *);
extern void tty_raw_print_bold(const char *);
/* Interface definition, for windows.c */
struct window_procs Gnome_procs = {
"Gnome",
WC_COLOR|WC_HILITE_PET|WC_INVERSE,
0L,
gnome_init_nhwindows,
gnome_player_selection,
gnome_askname,
gnome_get_nh_event,
gnome_exit_nhwindows,
gnome_suspend_nhwindows,
gnome_resume_nhwindows,
gnome_create_nhwindow,
gnome_clear_nhwindow,
gnome_display_nhwindow,
gnome_destroy_nhwindow,
gnome_curs,
gnome_putstr,
gnome_display_file,
gnome_start_menu,
gnome_add_menu,
gnome_end_menu,
gnome_select_menu,
genl_message_menu, /* no need for X-specific handling */
gnome_update_inventory,
gnome_mark_synch,
gnome_wait_synch,
#ifdef CLIPPING
gnome_cliparound,
#endif
#ifdef POSITIONBAR
donull,
#endif
gnome_print_glyph,
gnome_raw_print,
gnome_raw_print_bold,
gnome_nhgetch,
gnome_nh_poskey,
gnome_nhbell,
gnome_doprev_message,
gnome_yn_function,
gnome_getlin,
gnome_get_ext_cmd,
gnome_number_pad,
gnome_delay_output,
#ifdef CHANGE_COLOR /* only a Mac option currently */
donull,
donull,
#endif
/* other defs that really should go away (they're tty specific) */
gnome_start_screen,
gnome_end_screen,
gnome_outrip,
genl_preference_update,
};
/*
init_nhwindows(int* argcp, char** argv)
-- Initialize the windows used by NetHack. This can also
create the standard windows listed at the top, but does
not display them.
-- Any commandline arguments relevant to the windowport
should be interpreted, and *argcp and *argv should
be changed to remove those arguments.
-- When the message window is created, the variable
iflags.window_inited needs to be set to TRUE. Otherwise
all plines() will be done via raw_print().
** Why not have init_nhwindows() create all of the "standard"
** windows? Or at least all but WIN_INFO? -dean
*/
void gnome_init_nhwindows(int* argc, char** argv)
{
/* Main window */
ghack_init_main_window( *argc, argv);
ghack_init_signals( );
#ifdef HACKDIR
//if (ghack_init_glyphs(HACKDIR "/t32-1024.xpm"))
if (ghack_init_glyphs(HACKDIR "/x11tiles"))
g_error ("ERROR: Could not initialize glyphs.\n");
#else
# error HACKDIR is not defined!
#endif
// gnome/gtk is not reentrant
set_option_mod_status("ignintr", DISP_IN_GAME);
flags.ignintr = TRUE;
iflags.window_inited = TRUE;
/* gnome-specific window creation */
WIN_WORN = gnome_create_nhwindow(NHW_WORN);
}
/* Do a window-port specific player type selection. If player_selection()
offers a Quit option, it is its responsibility to clean up and terminate
the process. You need to fill in pl_character[0].
*/
void
gnome_player_selection()
{
int n, i, sel;
const char** choices;
int* pickmap;
/* prevent an unnecessary prompt */
rigid_role_checks();
if (!flags.randomall && flags.initrole < 0) {
/* select a role */
for (n = 0; roles[n].name.m; n++) continue;
choices = (const char **)alloc(sizeof(char *) * (n+1));
pickmap = (int*)alloc(sizeof(int) * (n+1));
for (;;) {
for (n = 0, i = 0; roles[i].name.m; i++) {
if (ok_role(i, flags.initrace,
flags.initgend, flags.initalign)) {
if (flags.initgend >= 0 && flags.female && roles[i].name.f)
choices[n] = roles[i].name.f;
else
choices[n] = roles[i].name.m;
pickmap[n++] = i;
}
}
if (n > 0) break;
else if (flags.initalign >= 0) flags.initalign = -1; /* reset */
else if (flags.initgend >= 0) flags.initgend = -1;
else if (flags.initrace >= 0) flags.initrace = -1;
else panic("no available ROLE+race+gender+alignment combinations");
}
choices[n] = (const char *) 0;
if (n > 1)
sel = ghack_player_sel_dialog(choices,
_("Player selection"), _("Choose one of the following roles:"));
else sel = 0;
if (sel >= 0) sel = pickmap[sel];
else if (sel == ROLE_NONE) { /* Quit */
clearlocks();
gnome_exit_nhwindows(0);
}
free(choices);
free(pickmap);
} else if (flags.initrole < 0) sel = ROLE_RANDOM;
else sel = flags.initrole;
if (sel == ROLE_RANDOM) { /* Random role */
sel = pick_role(flags.initrace, flags.initgend,
flags.initalign, PICK_RANDOM);
if (sel < 0) sel = randrole();
}
flags.initrole = sel;
/* Select a race, if necessary */
/* force compatibility with role, try for compatibility with
* pre-selected gender/alignment */
if (flags.initrace < 0 || !validrace(flags.initrole, flags.initrace)) {
if (flags.initrace == ROLE_RANDOM || flags.randomall) {
flags.initrace = pick_race(flags.initrole, flags.initgend,
flags.initalign, PICK_RANDOM);
if (flags.initrace < 0) flags.initrace = randrace(flags.initrole);
} else {
/* Count the number of valid races */
n = 0; /* number valid */
for (i = 0; races[i].noun; i++) {
if (ok_race(flags.initrole, i, flags.initgend, flags.initalign))
n++;
}
if (n == 0) {
for (i = 0; races[i].noun; i++) {
if (validrace(flags.initrole, i)) n++;
}
}
choices = (const char **)alloc(sizeof(char *) * (n+1));
pickmap = (int*)alloc(sizeof(int) * (n + 1));
for (n = 0, i = 0; races[i].noun; i++) {
if (ok_race(flags.initrole, i, flags.initgend,
flags.initalign)) {
choices[n] = races[i].noun;
pickmap[n++] = i;
}
}
choices[n] = (const char *) 0;
/* Permit the user to pick, if there is more than one */
if (n > 1)
sel = ghack_player_sel_dialog(choices, _("Race selection"),
_("Choose one of the following races:"));
else sel = 0;
if (sel >= 0) sel = pickmap[sel];
else if (sel == ROLE_NONE) { /* Quit */
clearlocks();
gnome_exit_nhwindows(0);
}
flags.initrace = sel;
free(choices);
free(pickmap);
}
if (flags.initrace == ROLE_RANDOM) { /* Random role */
sel = pick_race(flags.initrole, flags.initgend,
flags.initalign, PICK_RANDOM);
if (sel < 0) sel = randrace(flags.initrole);
flags.initrace = sel;
}
}
/* Select a gender, if necessary */
/* force compatibility with role/race, try for compatibility with
* pre-selected alignment */
if (flags.initgend < 0 ||
!validgend(flags.initrole, flags.initrace, flags.initgend)) {
if (flags.initgend == ROLE_RANDOM || flags.randomall) {
flags.initgend = pick_gend(flags.initrole, flags.initrace,
flags.initalign, PICK_RANDOM);
if (flags.initgend < 0)
flags.initgend = randgend(flags.initrole, flags.initrace);
} else {
/* Count the number of valid genders */
n = 0; /* number valid */
for (i = 0; i < ROLE_GENDERS; i++) {
if (ok_gend(flags.initrole, flags.initrace, i, flags.initalign))
n++;
}
if (n == 0) {
for (i = 0; i < ROLE_GENDERS; i++) {
if (validgend(flags.initrole, flags.initrace, i)) n++;
}
}
choices = (const char **)alloc(sizeof(char *) * (n+1));
pickmap = (int*)alloc(sizeof(int) * (n + 1));
for (n = 0, i = 0; i < ROLE_GENDERS; i++) {
if (ok_gend(flags.initrole, flags.initrace, i,
flags.initalign)) {
choices[n] = genders[i].adj;
pickmap[n++] = i;
}
}
choices[n] = (const char *) 0;
/* Permit the user to pick, if there is more than one */
if (n > 1)
sel = ghack_player_sel_dialog(choices, _("Gender selection"),
_("Choose one of the following genders:"));
else sel = 0;
if (sel >= 0) sel = pickmap[sel];
else if (sel == ROLE_NONE) { /* Quit */
clearlocks();
gnome_exit_nhwindows(0);
}
flags.initgend = sel;
free(choices);
free(pickmap);
}
if (flags.initgend == ROLE_RANDOM) { /* Random gender */
sel = pick_gend(flags.initrole, flags.initrace,
flags.initalign, PICK_RANDOM);
if (sel < 0) sel = randgend(flags.initrole, flags.initrace);
flags.initgend = sel;
}
}
/* Select an alignment, if necessary */
/* force compatibility with role/race/gender */
if (flags.initalign < 0 ||
!validalign(flags.initrole, flags.initrace, flags.initalign)) {
if (flags.initalign == ROLE_RANDOM || flags.randomall) {
flags.initalign = pick_align(flags.initrole, flags.initrace,
flags.initgend, PICK_RANDOM);
if (flags.initalign < 0)
flags.initalign = randalign(flags.initrole, flags.initrace);
} else {
/* Count the number of valid alignments */
n = 0; /* number valid */
for (i = 0; i < ROLE_ALIGNS; i++) {
if (ok_align(flags.initrole, flags.initrace, flags.initgend, i))
n++;
}
if (n == 0) {
for (i = 0; i < ROLE_ALIGNS; i++)
if (validalign(flags.initrole, flags.initrace, i)) n++;
}
choices = (const char **)alloc(sizeof(char *) * (n+1));
pickmap = (int*)alloc(sizeof(int) * (n + 1));
for (n = 0, i = 0; i < ROLE_ALIGNS; i++) {
if (ok_align(flags.initrole,
flags.initrace, flags.initgend, i)) {
choices[n] = aligns[i].adj;
pickmap[n++] = i;
}
}
choices[n] = (const char *) 0;
/* Permit the user to pick, if there is more than one */
if (n > 1)
sel = ghack_player_sel_dialog(choices, _("Alignment selection"),
_("Choose one of the following alignments:"));
else sel = 0;
if (sel >= 0) sel = pickmap[sel];
else if (sel == ROLE_NONE) { /* Quit */
clearlocks();
gnome_exit_nhwindows(0);
}
flags.initalign = sel;
free(choices);
free(pickmap);
}
if (flags.initalign == ROLE_RANDOM) {
sel = pick_align(flags.initrole, flags.initrace,
flags.initgend, PICK_RANDOM);
if (sel < 0) sel = randalign(flags.initrole, flags.initrace);
flags.initalign = sel;
}
}
}
/* Ask the user for a player name. */
void gnome_askname()
{
int ret;
g_message("Asking name....");
/* Ask for a name and stuff the response into plname, a nethack global */
ret = ghack_ask_string_dialog("What is your name?", "gandalf",
"GnomeHack", plname);
/* Quit if they want to quit... */
if (ret==-1)
{
gnome_exit_nhwindows(0);
}
}
/* Does window event processing (e.g. exposure events).
A noop for the tty and X window-ports.
*/
void gnome_get_nh_event()
{
/* We handle our own events. */
return;
}
/* Exits the window system. This should dismiss all windows,
except the "window" used for raw_print(). str is printed if possible.
*/
void gnome_exit_nhwindows(const char *str)
{
gtk_exit (0);
terminate(EXIT_SUCCESS);
}
/* Prepare the window to be suspended. */
void gnome_suspend_nhwindows(const char *str)
{
/* I don't think we need to do anything here... */
return;
}
/* Restore the windows after being suspended. */
void gnome_resume_nhwindows()
{
/* Do Nothing. Un-necessary since the GUI will refresh itself. */
return;
}
/* Create a window of type "type" which can be
NHW_MESSAGE (top line)
NHW_STATUS (bottom lines)
NHW_MAP (main dungeon)
NHW_MENU (inventory or other "corner" windows)
NHW_TEXT (help/text, full screen paged window)
*/
winid
gnome_create_nhwindow(int type)
{
winid i = 0;
/* Return the next available winid
*/
for (i=0; i<MAXWINDOWS; i++)
if (gnome_windowlist[i].win == NULL)
break;
if (i == MAXWINDOWS)
g_error ("ERROR: No windows available...\n");
gnome_create_nhwindow_by_id( type, i);
return i;
}
void
gnome_create_nhwindow_by_id( int type, winid i)
{
switch (type)
{
case NHW_MAP:
{
gnome_windowlist[i].win = ghack_init_map_window( );
gnome_windowlist[i].type = NHW_MAP;
ghack_main_window_add_map_window( gnome_windowlist[i].win);
break;
}
case NHW_MESSAGE:
{
gnome_windowlist[i].win = ghack_init_message_window( );
gnome_windowlist[i].type = NHW_MESSAGE;
ghack_main_window_add_message_window( gnome_windowlist[i].win);
break;
}
case NHW_STATUS:
{
gnome_windowlist[i].win = ghack_init_status_window( );
gnome_windowlist[i].type = NHW_STATUS;
ghack_main_window_add_status_window( gnome_windowlist[i].win);
break;
}
case NHW_WORN:
{
gnome_windowlist[i].win = ghack_init_worn_window( );
gnome_windowlist[i].type = NHW_WORN;
ghack_main_window_add_worn_window(gnome_windowlist[i].win);
break;
}
case NHW_MENU:
{
gnome_windowlist[i].type = NHW_MENU;
gnome_windowlist[i].win = ghack_init_menu_window( );
break;
}
case NHW_TEXT:
{
gnome_windowlist[i].win = ghack_init_text_window( );
gnome_windowlist[i].type = NHW_TEXT;
break;
}
}
}
/* This widget is being destroyed before its time--
* clear its entry from the windowlist.
*/
void gnome_delete_nhwindow_by_reference( GtkWidget *menuWin)
{
int i;
for (i = 0; i < MAXWINDOWS; i++) {
if (gnome_windowlist[i].win == menuWin) {
gnome_windowlist[i].win = NULL;
gnome_windowlist[i].type = 0;
break;
}
}
}
/* Clear the given window, when asked to. */
void gnome_clear_nhwindow(winid wid)
{
if (gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit (GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_CLEAR]);
}
}
/* -- Display the window on the screen. If there is data
pending for output in that window, it should be sent.
If blocking is TRUE, display_nhwindow() will not
return until the data has been displayed on the screen,
and acknowledged by the user where appropriate.
-- All calls are blocking in the tty window-port.
-- Calling display_nhwindow(WIN_MESSAGE,???) will do a
--more--, if necessary, in the tty window-port.
*/
void gnome_display_nhwindow(winid wid, BOOLEAN_P block)
{
if (gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_DISPLAY],
block);
if (block && (gnome_windowlist[wid].type == NHW_MAP))
(void) gnome_nhgetch();
}
}
/* Destroy will dismiss the window if the window has not
* already been dismissed.
*/
void gnome_destroy_nhwindow(winid wid)
{
if ((wid == WIN_MAP) ||
(wid == WIN_MESSAGE) ||
(wid == WIN_STATUS)) {
/* no thanks, I'll do these myself */
return;
}
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
gtk_widget_destroy(gnome_windowlist[wid].win);
gnome_windowlist[wid].win = NULL;
gnome_windowlist[wid].type = 0;
}
}
/* Next output to window will start at (x,y), also moves
displayable cursor to (x,y). For backward compatibility,
1 <= x < cols, 0 <= y < rows, where cols and rows are
the size of window.
*/
void gnome_curs(winid wid, int x, int y)
{
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_CURS], x, y);
}
}
/*
putstr(window, attr, str)
-- Print str on the window with the given attribute. Only
printable ASCII characters (040-0126) must be supported.
Multiple putstr()s are output on separate lines.
Attributes
can be one of
ATR_NONE (or 0)
ATR_ULINE
ATR_BOLD
ATR_BLINK
ATR_INVERSE
If a window-port does not support all of these, it may map
unsupported attributes to a supported one (e.g. map them
all to ATR_INVERSE). putstr() may compress spaces out of
str, break str, or truncate str, if necessary for the
display. Where putstr() breaks a line, it has to clear
to end-of-line.
-- putstr should be implemented such that if two putstr()s
are done consecutively the user will see the first and
then the second. In the tty port, pline() achieves this
by calling more() or displaying both on the same line.
*/
void gnome_putstr(winid wid, int attr, const char *text)
{
if ((wid >= 0) &&
(wid < MAXWINDOWS) &&
(gnome_windowlist[wid].win != NULL))
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_PUTSTR],
(guint) attr,
text);
}
}
/* Display the file named str. Complain about missing files
iff complain is TRUE.
*/
void gnome_display_file(const char *filename,BOOLEAN_P must_exist)
{
/* Strange -- for some reason it makes us create a new text window
* instead of reusing any existing ones -- perhaps we can work out
* some way to reuse stuff -- but for now just make and destroy new
* ones each time */
dlb *f;
f = dlb_fopen(filename, "r");
if (!f) {
if (must_exist) {
GtkWidget *box;
char message[90];
sprintf(message, "Warning! Could not find file: %s\n",filename);
box = gnome_message_box_new (_(message),
GNOME_MESSAGE_BOX_ERROR,
GNOME_STOCK_BUTTON_OK,
NULL);
gnome_dialog_set_default( GNOME_DIALOG(box), 0);
gnome_dialog_set_parent (GNOME_DIALOG (box),
GTK_WINDOW (ghack_get_main_window ()) );
gtk_window_set_modal( GTK_WINDOW(box), TRUE);
gtk_widget_show (box);
}
}
else {
GtkWidget *txtwin, *gless, *frametxt;
#define LLEN 128
char line[LLEN], *textlines;
int num_lines, charcount;
txtwin = gnome_dialog_new("Text Window", GNOME_STOCK_BUTTON_OK,
NULL);
gtk_widget_set_usize(GTK_WIDGET(txtwin), 500, 400);
gtk_window_set_policy(GTK_WINDOW(txtwin), TRUE, TRUE, FALSE);
gtk_window_set_title(GTK_WINDOW(txtwin), "Text Window");
gnome_dialog_set_default( GNOME_DIALOG(txtwin), 0);
gtk_window_set_modal( GTK_WINDOW(txtwin), TRUE);
frametxt = gtk_frame_new ("");
gtk_widget_show (frametxt);
/*
* Count the number of lines and characters in the file.
*/
num_lines = 0;
charcount = 1;
while (dlb_fgets(line, LLEN, f)) {
num_lines++;
charcount += strlen(line);
}
(void) dlb_fclose(f);
/* Ignore empty files */
if (num_lines == 0) return;
/*
* Re-open the file and read the data into a buffer.
*/
textlines = (char *) alloc((unsigned int) charcount);
textlines[0] = '\0';
f = dlb_fopen( filename, RDTMODE);
while (dlb_fgets(line, LLEN, f)) {
(void) strcat(textlines, line);
}
(void) dlb_fclose(f);
gless = gnome_less_new ();
gnome_less_show_string (GNOME_LESS (gless), textlines);
gtk_container_add (GTK_CONTAINER (frametxt), gless);
gtk_box_pack_start(GTK_BOX (GNOME_DIALOG (txtwin)->vbox), frametxt,
TRUE, TRUE, 0);
gtk_widget_show_all( txtwin);
gtk_window_set_modal( GTK_WINDOW(txtwin), TRUE);
gnome_dialog_set_parent (GNOME_DIALOG (txtwin),
GTK_WINDOW (ghack_get_main_window ()) );
gnome_dialog_run_and_close (GNOME_DIALOG (txtwin));
free(textlines);
}
}
/* Start using window as a menu. You must call start_menu()
before add_menu(). After calling start_menu() you may not
putstr() to the window. Only windows of type NHW_MENU may
be used for menus.
*/
void gnome_start_menu(winid wid)
{
if (wid != -1)
{
if (gnome_windowlist[wid].win == NULL && gnome_windowlist[wid].type != 0)
{
gnome_create_nhwindow_by_id(gnome_windowlist[wid].type, wid);
}
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_START_MENU]);
}
}
/*
add_menu(windid window, int glyph, const anything identifier,
char accelerator, char groupacc,
int attr, char *str, boolean preselected)
-- Add a text line str to the given menu window. If identifier
is 0, then the line cannot be selected (e.g. a title).
Otherwise, identifier is the value returned if the line is
selected. Accelerator is a keyboard key that can be used
to select the line. If the accelerator of a selectable
item is 0, the window system is free to select its own
accelerator. It is up to the window-port to make the
accelerator visible to the user (e.g. put "a - " in front
of str). The value attr is the same as in putstr().
Glyph is an optional glyph to accompany the line. If
window port cannot or does not want to display it, this
is OK. If there is no glyph applicable, then this
value will be NO_GLYPH.
-- All accelerators should be in the range [A-Za-z].
-- It is expected that callers do not mix accelerator
choices. Either all selectable items have an accelerator
or let the window system pick them. Don't do both.
-- Groupacc is a group accelerator. It may be any character
outside of the standard accelerator (see above) or a
number. If 0, the item is unaffected by any group
accelerator. If this accelerator conflicts with
the menu command (or their user defined alises), it loses.
The menu commands and aliases take care not to interfere
with the default object class symbols.
-- If you want this choice to be preselected when the
menu is displayed, set preselected to TRUE.
*/
void gnome_add_menu(winid wid, int glyph, const ANY_P * identifier,
CHAR_P accelerator, CHAR_P group_accel, int attr,
const char *str, BOOLEAN_P presel)
{
GHackMenuItem item;
item.glyph = glyph;
item.identifier = identifier;
item.accelerator = accelerator;
item.group_accel = group_accel;
item.attr = attr;
item.str = str;
item.presel = presel;
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_ADD_MENU],
&item);
}
}
/*
end_menu(window, prompt)
-- Stop adding entries to the menu and flushes the window
to the screen (brings to front?). Prompt is a prompt
to give the user. If prompt is NULL, no prompt will
be printed.
** This probably shouldn't flush the window any more (if
** it ever did). That should be select_menu's job. -dean
*/
void gnome_end_menu(winid wid, const char *prompt)
{
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_END_MENU],
prompt);
}
}
/*
int select_menu(windid window, int how, menu_item **selected)
-- Return the number of items selected; 0 if none were chosen,
-1 when explicitly cancelled. If items were selected, then
selected is filled in with an allocated array of menu_item
structures, one for each selected line. The caller must
free this array when done with it. The "count" field
of selected is a user supplied count. If the user did
not supply a count, then the count field is filled with
-1 (meaning all). A count of zero is equivalent to not
being selected and should not be in the list. If no items
were selected, then selected is NULL'ed out. How is the
mode of the menu. Three valid values are PICK_NONE,
PICK_ONE, and PICK_N, meaning: nothing is selectable,
only one thing is selectable, and any number valid items
may selected. If how is PICK_NONE, this function should
never return anything but 0 or -1.
-- You may call select_menu() on a window multiple times --
the menu is saved until start_menu() or destroy_nhwindow()
is called on the window.
-- Note that NHW_MENU windows need not have select_menu()
called for them. There is no way of knowing whether
select_menu() will be called for the window at
create_nhwindow() time.
*/
int gnome_select_menu(winid wid, int how, MENU_ITEM_P **selected)
{
int nReturned = -1;
if (wid != -1 && gnome_windowlist[wid].win != NULL &&
gnome_windowlist[wid].type == NHW_MENU)
{
nReturned=ghack_menu_window_select_menu (gnome_windowlist[wid].win,
selected, how);
}
return nReturned;
}
/*
-- Indicate to the window port that the inventory has been changed.
-- Merely calls display_inventory() for window-ports that leave the
window up, otherwise empty.
*/
void gnome_update_inventory()
{
ghack_main_window_update_inventory();
}
/*
mark_synch() -- Don't go beyond this point in I/O on any channel until
all channels are caught up to here. Can be an empty call
for the moment
*/
void gnome_mark_synch()
{
/* Do nothing */
}
/*
wait_synch() -- Wait until all pending output is complete (*flush*() for
streams goes here).
-- May also deal with exposure events etc. so that the
display is OK when return from wait_synch().
*/
void gnome_wait_synch()
{
/* Do nothing */
}
/*
cliparound(x, y)-- Make sure that the user is more-or-less centered on the
screen if the playing area is larger than the screen.
-- This function is only defined if CLIPPING is defined.
*/
void gnome_cliparound(int x, int y)
{
/* FIXME!!! winid should be a parameter!!!
* Call a function that Does The Right Thing(tm).
*/
gnome_cliparound_proper(WIN_MAP,x,y);
}
void gnome_cliparound_proper(winid wid, int x, int y)
{
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_CLIPAROUND],
(guint) x,
(guint) y);
}
}
/*
print_glyph(window, x, y, glyph)
-- Print the glyph at (x,y) on the given window. Glyphs are
integers at the interface, mapped to whatever the window-
port wants (symbol, font, color, attributes, ...there's
a 1-1 map between glyphs and distinct things on the map).
*/
void gnome_print_glyph(winid wid,XCHAR_P x,XCHAR_P y,int glyph)
{
if (wid != -1 && gnome_windowlist[wid].win != NULL)
{
GdkImlibImage *im;
im = ghack_image_from_glyph( glyph, FALSE);
gtk_signal_emit (GTK_OBJECT (gnome_windowlist[wid].win),
ghack_signals[GHSIG_PRINT_GLYPH],
(guint) x,
(guint) y,
im,
NULL);
}
}
/*
raw_print(str) -- Print directly to a screen, or otherwise guarantee that
the user sees str. raw_print() appends a newline to str.
It need not recognize ASCII control characters. This is
used during startup (before windowing system initialization
-- maybe this means only error startup messages are raw),
for error messages, and maybe other "msg" uses. E.g.
updating status for micros (i.e, "saving").
*/
void gnome_raw_print(const char *str)
{
tty_raw_print(str);
}
/*
raw_print_bold(str)
-- Like raw_print(), but prints in bold/standout (if
possible).
*/
void gnome_raw_print_bold(const char *str)
{
tty_raw_print_bold(str);
}
/*
int nhgetch() -- Returns a single character input from the user.
-- In the tty window-port, nhgetch() assumes that tgetch()
will be the routine the OS provides to read a character.
Returned character _must_ be non-zero.
*/
int gnome_nhgetch()
{
int key;
GList *theFirst;
gtk_signal_emit (GTK_OBJECT (gnome_windowlist[WIN_STATUS].win),
ghack_signals[GHSIG_FADE_HIGHLIGHT]);
g_askingQuestion = 1;
/* Process events until a key press event arrives. */
while ( g_numKeys == 0 )
gtk_main_iteration();
theFirst = g_list_first( g_keyBuffer);
g_keyBuffer = g_list_remove_link(g_keyBuffer, theFirst);
key = GPOINTER_TO_INT( theFirst->data);
g_list_free_1( theFirst);
g_numKeys--;
g_askingQuestion = 0;
return ( key);
}
/*
int nh_poskey(int *x, int *y, int *mod)
-- Returns a single character input from the user or a
a positioning event (perhaps from a mouse). If the
return value is non-zero, a character was typed, else,
a position in the MAP window is returned in x, y and mod.
mod may be one of
CLICK_1 -- mouse click type 1
CLICK_2 -- mouse click type 2
The different click types can map to whatever the
hardware supports. If no mouse is supported, this
routine always returns a non-zero character.
*/
int gnome_nh_poskey(int *x, int *y, int *mod)
{
gtk_signal_emit (GTK_OBJECT (gnome_windowlist[WIN_STATUS].win),
ghack_signals[GHSIG_FADE_HIGHLIGHT]);
g_askingQuestion = 0;
/* Process events until a key or map-click arrives. */
while ( g_numKeys == 0 && g_numClicks == 0 )
gtk_main_iteration();
if (g_numKeys > 0) {
int key;
GList *theFirst;
theFirst = g_list_first( g_keyBuffer);
g_keyBuffer = g_list_remove_link(g_keyBuffer, theFirst);
key = GPOINTER_TO_INT( theFirst->data);
g_list_free_1( theFirst);
g_numKeys--;
return ( key);
}
else {
GHClick *click;
GList *theFirst;
theFirst = g_list_first( g_clickBuffer);
g_clickBuffer = g_list_remove_link(g_clickBuffer, theFirst);
click = (GHClick*) theFirst->data;
*x=click->x;
*y=click->y;
*mod=click->mod;
g_free( click);
g_list_free_1( theFirst);
g_numClicks--;
return ( 0);
}
}
/*
nhbell() -- Beep at user. [This will exist at least until sounds are
redone, since sounds aren't attributable to windows anyway.]
*/
void gnome_nhbell()
{
/* FIXME!!! Play a cool GNOME sound instead */
gdk_beep();
}
/*
doprev_message()
-- Display previous messages. Used by the ^P command.
-- On the tty-port this scrolls WIN_MESSAGE back one line.
*/
int gnome_doprev_message()
{
/* Do Nothing. They can read old messages using the scrollbar. */
return 0;
}
/*
char yn_function(const char *ques, const char *choices, char default)
-- Print a prompt made up of ques, choices and default.
Read a single character response that is contained in
choices or default. If choices is NULL, all possible
inputs are accepted and returned. This overrides
everything else. The choices are expected to be in
lower case. Entering ESC always maps to 'q', or 'n',
in that order, if present in choices, otherwise it maps
to default. Entering any other quit character (SPACE,
RETURN, NEWLINE) maps to default.
-- If the choices string contains ESC, then anything after
it is an acceptable response, but the ESC and whatever
follows is not included in the prompt.
-- If the choices string contains a '#' then accept a count.
Place this value in the global "yn_number" and return '#'.
-- This uses the top line in the tty window-port, other
ports might use a popup.
*/
char gnome_yn_function(const char *question, const char *choices,
CHAR_P def)
{
int ch;
int result=-1;
char message[BUFSZ];
char yn_esc_map='\033';
GtkWidget *mainWnd = ghack_get_main_window();
if (choices) {
char *cb, choicebuf[QBUFSZ];
Strcpy(choicebuf, choices);
if ((cb = index(choicebuf, '\033')) != 0) {
/* anything beyond <esc> is hidden */
*cb = '\0';
}
sprintf(message, "%s [%s] ", question, choicebuf);
if (def) sprintf(eos(message), "(%c) ", def);
/* escape maps to 'q' or 'n' or default, in that order */
yn_esc_map = (index(choices, 'q') ? 'q' :
(index(choices, 'n') ? 'n' : def));
} else {
Strcpy(message, question);
}
gnome_putstr(WIN_MESSAGE, ATR_BOLD, message);
if (mainWnd != NULL && choices && !index(choices,ch)) {
return(ghack_yes_no_dialog( question, choices, def));
}
/* Only here if main window is not present */
while (result<0) {
ch=gnome_nhgetch();
if (ch=='\033') {
result=yn_esc_map;
} else if (choices && !index(choices,ch)) {
/* FYI: ch==-115 is for KP_ENTER */
if (def && (ch==' ' || ch=='\r' || ch=='\n' || ch==-115)) {
result=def;
} else {
gnome_nhbell();
/* and try again... */
}
} else {
result=ch;
}
}
return result;
}
/*
getlin(const char *ques, char *input)
-- Prints ques as a prompt and reads a single line of text,
up to a newline. The string entered is returned without the
newline. ESC is used to cancel, in which case the string
"\033\000" is returned.
-- getlin() must call flush_screen(1) before doing anything.
-- This uses the top line in the tty window-port, other
ports might use a popup.
*/
void gnome_getlin(const char *question, char *input)
{
int ret;
ret = ghack_ask_string_dialog(question, "", "nethack", input);
if (ret == -1)
input[0] = 0;
}
/*
int get_ext_cmd(void)
-- Get an extended command in a window-port specific way.
An index into extcmdlist[] is returned on a successful
selection, -1 otherwise.
*/
int gnome_get_ext_cmd()
{
return ghack_menu_ext_cmd();
}
/*
number_pad(state)
-- Initialize the number pad to the given state.
*/
void gnome_number_pad(int state)
{
/* Do Nothing */
}
/*
delay_output() -- Causes a visible delay of 50ms in the output.
Conceptually, this is similar to wait_synch() followed
by a nap(50ms), but allows asynchronous operation.
*/
void gnome_delay_output()
{
if (gnome_windowlist[WIN_MESSAGE].win != NULL) {
gtk_signal_emit( GTK_OBJECT (gnome_windowlist[WIN_MESSAGE].win),
ghack_signals[GHSIG_DELAY],
(guint) 50);
}
}
/*
start_screen() -- Only used on Unix tty ports, but must be declared for
completeness. Sets up the tty to work in full-screen
graphics mode. Look at win/tty/termcap.c for an
example. If your window-port does not need this function
just declare an empty function.
*/
void gnome_start_screen()
{
/* Do Nothing */
}
/*
end_screen() -- Only used on Unix tty ports, but must be declared for
completeness. The complement of start_screen().
*/
void gnome_end_screen()
{
/* Do Nothing */
}
/*
outrip(winid, int)
-- The tombstone code. If you want the traditional code use
genl_outrip for the value and check the #if in rip.c.
*/
void gnome_outrip(winid wid, int how)
{
/* Follows roughly the same algorithm as genl_outrip() */
char buf[BUFSZ];
char ripString[BUFSZ]="\0";
extern const char *killed_by_prefix[];
/* Put name on stone */
Sprintf(buf, "%s\n", plname);
Strcat(ripString, buf);
/* Put $ on stone */
Sprintf(buf, "%ld Au\n",
#ifndef GOLDOBJ
u.ugold);
#else
done_money);
#endif
Strcat(ripString, buf);
/* Put together death description */
switch (killer_format) {
default: impossible("bad killer format?");
case KILLED_BY_AN:
Strcpy(buf, killed_by_prefix[how]);
Strcat(buf, an(killer));
break;
case KILLED_BY:
Strcpy(buf, killed_by_prefix[how]);
Strcat(buf, killer);
break;
case NO_KILLER_PREFIX:
Strcpy(buf, killer);
break;
}
/* Put death type on stone */
Strcat(ripString, buf);
Strcat(ripString, "\n");
/* Put year on stone */
Sprintf(buf, "%4d\n", getyear());
Strcat(ripString, buf);
ghack_text_window_rip_string( ripString);
}
|