- Move secondary preprocessor defines down further in config.h
so that they can be overridden via [platform]conf.h which is
included from global.h, specifically:
LIVELOGFILE when LIVELOG is defined
DUMPLOG_FILE when DUMPLOG is defined
- Minimize platform-specific, or compiler-specific code in hack.h and decl.h.
- reorganize src/decl.c to align with include/decl.h.
- a new header file cstd.h added, containing calls to C99
standard header files.
- hack.h, decl.h, and decl.c have been cleaned up and had code
moved so that things line up as follows:
hack.h defines values that are available to all
NetHack source files, contains enums for use in all
NetHack source files, and contains a number of
struct definitions for use in all NetHack source files.
It does not contain variable declarations or variable
definitions.
decl.h contains the extern declarations for variables that
are defined in decl.c. These variables are global and
available to all NetHack source files. The location of
the variables within decl.h was random, so give it some
order for now.
decl.c contains the definition of the variables declared in
decl.h, and initializes them where appropriate. The
variable definitions are laid out in much the
same order as their declarations in decl.h.
- wintty.h: There were some varying terminal-related prototypes in
system.h, and that was the only thing left that demanded that
system.h be included. Those have been replaced by an #include
<term.h> in include/wintty.h to get the more current (and hopefully
more correct) prototypes, rather than hardcoding them in NetHack
sources.
For edge-case platform compatiblity, there is no #include <term.h>
if the build defines NO_TERMCAP_HEADERS. In that case one set of
hardcoded prototypes is still used in include/wintty.h.
The added #include "term.h" is also bypassed for NO_TERMS builds (builds
that don't link to terminfo/termcap at all, but still present a tty
interface using platform or window-port specific functions to fulfill
the same role as that of terminfo/termcap).
- some scattered, unnecessary #include "integer.h" were removed from
various files, since that's always included in current NetHack-3.7
sources, either directly from config.h or indirectly from #include
"hack.h".
- system.h references removed.
- new cstd.h added; the #include "system.h" references in Makefiles
and project files (Xcode, visual studio), were replaced
with #include "cstd.h" references. A "make depends" is probably
warranted.
Also:
- Use of <term.h>, which defines clear_screen() as a macro, conflicts
with an actual function with that name in win/tty/termcap.c. The most
straight-forward course of action was to rename the NetHack function,
and change the references to it, from clear_screen() to
term_clear_screen(), so that was done.
344 lines
11 KiB
C
344 lines
11 KiB
C
/* NetHack 3.7 wintty.h $NHDT-Date: 1656014599 2022/06/23 20:03:19 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.55 $ */
|
|
/* Copyright (c) David Cohrs, 1991,1992 */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef WINTTY_H
|
|
#define WINTTY_H
|
|
|
|
#define E extern
|
|
|
|
#ifndef WINDOW_STRUCTS
|
|
#define WINDOW_STRUCTS
|
|
|
|
#ifdef TTY_PERM_INVENT
|
|
|
|
enum { tty_perminv_minrow = 28, tty_perminv_mincol = 79 };
|
|
/* for static init of zerottycell, put pointer first */
|
|
union ttycellcontent {
|
|
glyph_info *gi;
|
|
char ttychar;
|
|
};
|
|
struct tty_perminvent_cell {
|
|
Bitfield(refresh, 1);
|
|
Bitfield(text, 1);
|
|
Bitfield(glyph, 1);
|
|
union ttycellcontent content;
|
|
int32_t color; /* adjusted color 0 = ignore
|
|
* 1-16 = NetHack color + 1
|
|
* 17..16,777,233 = 24-bit color + 17
|
|
*/
|
|
};
|
|
#endif
|
|
|
|
/* menu structure */
|
|
typedef struct tty_mi {
|
|
struct tty_mi *next;
|
|
anything identifier; /* user identifier */
|
|
long count; /* user count */
|
|
char *str; /* description string (including accelerator) */
|
|
int attr; /* string attribute */
|
|
boolean selected; /* TRUE if selected by user */
|
|
unsigned itemflags; /* item flags */
|
|
char selector; /* keyboard accelerator */
|
|
char gselector; /* group accelerator */
|
|
} tty_menu_item;
|
|
|
|
/* descriptor for tty-based windows */
|
|
struct WinDesc {
|
|
int flags; /* window flags */
|
|
xint16 type; /* type of window */
|
|
boolean active; /* true if window is active */
|
|
short offx, offy; /* offset from topleft of display */
|
|
long rows, cols; /* dimensions */
|
|
long curx, cury; /* current cursor position */
|
|
long maxrow, maxcol; /* the maximum size used -- for MENU wins */
|
|
unsigned long mbehavior; /* menu behavior flags (MENU) */
|
|
/* maxcol is also used by WIN_MESSAGE for */
|
|
/* tracking the ^P command */
|
|
short *datlen; /* allocation size for *data */
|
|
char **data; /* window data [row][column] */
|
|
char *morestr; /* string to display instead of default */
|
|
tty_menu_item *mlist; /* menu information (MENU) */
|
|
tty_menu_item **plist; /* menu page pointers (MENU) */
|
|
long plist_size; /* size of allocated plist (MENU) */
|
|
long npages; /* number of pages in menu (MENU) */
|
|
long nitems; /* total number of items (MENU) */
|
|
short how; /* menu mode - pick 1 or N (MENU) */
|
|
char menu_ch; /* menu char (MENU) */
|
|
#ifdef TTY_PERM_INVENT
|
|
struct tty_perminvent_cell **cells;
|
|
#endif
|
|
};
|
|
|
|
/* window flags */
|
|
#define WIN_CANCELLED 1
|
|
#define WIN_STOP 1 /* for NHW_MESSAGE; stops output; sticks until
|
|
* next input request or reversed by WIN_NOSTOP */
|
|
#define WIN_LOCKHISTORY 2 /* for NHW_MESSAGE; suppress history updates */
|
|
#define WIN_NOSTOP 4 /* current message has been designated as urgent;
|
|
* prevents WIN_STOP from becoming set if current
|
|
* message triggers --More-- and user types ESC
|
|
* (current message won't have been seen yet) */
|
|
|
|
/* topline states */
|
|
#define TOPLINE_EMPTY 0 /* empty */
|
|
#define TOPLINE_NEED_MORE 1 /* non-empty, need --More-- */
|
|
#define TOPLINE_NON_EMPTY 2 /* non-empty, no --More-- required */
|
|
#define TOPLINE_SPECIAL_PROMPT 3 /* special prompt state */
|
|
|
|
/* descriptor for tty-based displays -- all the per-display data */
|
|
struct DisplayDesc {
|
|
short rows, cols; /* width and height of tty display */
|
|
short curx, cury; /* current cursor position on the screen */
|
|
#ifdef TEXTCOLOR
|
|
int color; /* current color */
|
|
uint32 framecolor; /* current background color */
|
|
#endif
|
|
int attrs; /* attributes in effect */
|
|
int toplin; /* flag for topl stuff */
|
|
int rawprint; /* number of raw_printed lines since synch */
|
|
int inmore; /* non-zero if more() is active */
|
|
int inread; /* non-zero if reading a character */
|
|
int intr; /* non-zero if inread was interrupted */
|
|
winid lastwin; /* last window used for I/O */
|
|
char dismiss_more; /* extra character accepted at --More-- */
|
|
int topl_utf8; /* non-zero if utf8 in str */
|
|
};
|
|
|
|
#endif /* WINDOW_STRUCTS */
|
|
|
|
#ifdef STATUS_HILITES
|
|
struct tty_status_fields {
|
|
int idx;
|
|
int color;
|
|
int attr;
|
|
int x, y;
|
|
size_t lth;
|
|
boolean valid;
|
|
boolean dirty;
|
|
boolean redraw;
|
|
boolean sanitycheck; /* was 'last_in_row' */
|
|
};
|
|
#endif
|
|
|
|
#define MAXWIN 20 /* maximum number of windows, cop-out */
|
|
|
|
/* tty dependent window types */
|
|
#ifdef NHW_BASE
|
|
#undef NHW_BASE
|
|
#endif
|
|
#define NHW_BASE (NHW_LAST_TYPE + 1)
|
|
|
|
extern struct window_procs tty_procs;
|
|
|
|
/* port specific variable declarations */
|
|
extern winid BASE_WINDOW;
|
|
|
|
extern struct WinDesc *wins[MAXWIN];
|
|
|
|
extern struct DisplayDesc *ttyDisplay; /* the tty display descriptor */
|
|
|
|
extern char morc; /* last character typed to xwaitforspace */
|
|
extern char defmorestr[]; /* default --more-- prompt */
|
|
|
|
/* port specific external function references */
|
|
|
|
/* ### getline.c ### */
|
|
E void xwaitforspace(const char *);
|
|
|
|
/* ### termcap.c, video.c ### */
|
|
|
|
E void tty_startup(int *, int *);
|
|
#ifndef NO_TERMS
|
|
E void tty_shutdown(void);
|
|
#endif
|
|
E int xputc(int);
|
|
E void xputs(const char *);
|
|
#if defined(SCREEN_VGA) || defined(SCREEN_8514) || defined(SCREEN_VESA)
|
|
E void xputg(const glyph_info *, const glyph_info *);
|
|
#endif
|
|
E void cl_end(void);
|
|
E void term_clear_screen(void);
|
|
E void home(void);
|
|
E void standoutbeg(void);
|
|
E void standoutend(void);
|
|
#if 0
|
|
E void revbeg(void);
|
|
E void boldbeg(void);
|
|
E void blinkbeg(void);
|
|
E void dimbeg(void);
|
|
E void m_end(void);
|
|
#endif
|
|
E void backsp(void);
|
|
E void graph_on(void);
|
|
E void graph_off(void);
|
|
E void cl_eos(void);
|
|
|
|
/*
|
|
* termcap.c (or facsimiles in other ports) is the right place for doing
|
|
* strange and arcane things such as outputting escape sequences to select
|
|
* a color or whatever. wintty.c should concern itself with WHERE to put
|
|
* stuff in a window.
|
|
*/
|
|
E int term_attr_fixup(int);
|
|
E void term_start_attr(int attr);
|
|
E void term_end_attr(int attr);
|
|
E void term_start_raw_bold(void);
|
|
E void term_end_raw_bold(void);
|
|
|
|
#ifdef TEXTCOLOR
|
|
E void term_end_color(void);
|
|
E void term_start_color(int color);
|
|
E void term_start_bgcolor(int color);
|
|
#endif /* TEXTCOLOR */
|
|
#ifdef ENHANCED_SYMBOLS
|
|
extern void term_start_24bitcolor(struct unicode_representation *);
|
|
extern void term_end_24bitcolor(void); /* termcap.c, consoletty.c */
|
|
#endif
|
|
|
|
/* ### topl.c ### */
|
|
|
|
E void show_topl(const char *);
|
|
E void remember_topl(void);
|
|
E void addtopl(const char *);
|
|
E void more(void);
|
|
E void update_topl(const char *);
|
|
E void putsyms(const char *);
|
|
|
|
/* ### wintty.c ### */
|
|
#ifdef CLIPPING
|
|
E void setclipped(void);
|
|
#endif
|
|
E void docorner(int, int, int);
|
|
E void end_glyphout(void);
|
|
E void g_putch(int);
|
|
#ifdef ENHANCED_SYMBOLS
|
|
#if defined(WIN32) || defined(UNIX)
|
|
E void g_pututf8(uint8 *);
|
|
#endif
|
|
#endif /* ENHANCED_SYMBOLS */
|
|
E void win_tty_init(int);
|
|
|
|
/* external declarations */
|
|
E void tty_init_nhwindows(int *, char **);
|
|
E void tty_preference_update(const char *);
|
|
E void tty_player_selection(void);
|
|
E void tty_askname(void);
|
|
E void tty_get_nh_event(void);
|
|
E void tty_exit_nhwindows(const char *);
|
|
E void tty_suspend_nhwindows(const char *);
|
|
E void tty_resume_nhwindows(void);
|
|
E winid tty_create_nhwindow(int);
|
|
E void tty_clear_nhwindow(winid);
|
|
E void tty_display_nhwindow(winid, boolean);
|
|
E void tty_dismiss_nhwindow(winid);
|
|
E void tty_destroy_nhwindow(winid);
|
|
E void tty_curs(winid, int, int);
|
|
E void tty_putstr(winid, int, const char *);
|
|
E void tty_putmixed(winid window, int attr, const char *str);
|
|
E void tty_display_file(const char *, boolean);
|
|
E void tty_start_menu(winid, unsigned long);
|
|
E void tty_add_menu(winid, const glyph_info *, const ANY_P *, char, char,
|
|
int, int, const char *, unsigned int);
|
|
E void tty_end_menu(winid, const char *);
|
|
E int tty_select_menu(winid, int, MENU_ITEM_P **);
|
|
E char tty_message_menu(char, int, const char *);
|
|
E void tty_mark_synch(void);
|
|
E void tty_wait_synch(void);
|
|
#ifdef CLIPPING
|
|
E void tty_cliparound(int, int);
|
|
#endif
|
|
#ifdef POSITIONBAR
|
|
E void tty_update_positionbar(char *);
|
|
#endif
|
|
E void tty_print_glyph(winid, coordxy, coordxy, const glyph_info *,
|
|
const glyph_info *);
|
|
E void tty_raw_print(const char *);
|
|
E void tty_raw_print_bold(const char *);
|
|
E int tty_nhgetch(void);
|
|
E int tty_nh_poskey(coordxy *, coordxy *, int *);
|
|
E void tty_nhbell(void);
|
|
E int tty_doprev_message(void);
|
|
E char tty_yn_function(const char *, const char *, char);
|
|
E void tty_getlin(const char *, char *);
|
|
E int tty_get_ext_cmd(void);
|
|
E void tty_number_pad(int);
|
|
E void tty_delay_output(void);
|
|
#ifdef CHANGE_COLOR
|
|
E void tty_change_color(int color, long rgb, int reverse);
|
|
#ifdef MAC
|
|
E void tty_change_background(int white_or_black);
|
|
E short set_tty_font_name(winid, char *);
|
|
#endif
|
|
E char *tty_get_color_string(void);
|
|
#endif
|
|
E void tty_status_enablefield(int, const char *, const char *, boolean);
|
|
E void tty_status_init(void);
|
|
E void tty_status_update(int, genericptr_t, int, int, int, unsigned long *);
|
|
|
|
/* other defs that really should go away (they're tty specific) */
|
|
E void tty_start_screen(void);
|
|
E void tty_end_screen(void);
|
|
|
|
E void genl_outrip(winid, int, time_t);
|
|
|
|
E char *tty_getmsghistory(boolean);
|
|
E void tty_putmsghistory(const char *, boolean);
|
|
E void tty_update_inventory(int);
|
|
E win_request_info *tty_ctrl_nhwindow(winid, int, win_request_info *);
|
|
|
|
#ifdef TTY_PERM_INVENT
|
|
E void tty_refresh_inventory(int start, int stop, int y);
|
|
#endif
|
|
|
|
/* termcap is implied if NO_TERMS is not defined */
|
|
#ifndef NO_TERMS
|
|
#ifndef NO_TERMCAP_HEADERS
|
|
#ifdef delay_output /* avoid conflict in curses.h */
|
|
#undef delay_output
|
|
#endif
|
|
#include <curses.h>
|
|
#ifdef clear_screen /* avoid a conflict */
|
|
#undef clear_screen
|
|
#endif
|
|
#include <term.h>
|
|
#else
|
|
extern int tgetent(char *, const char *);
|
|
extern void tputs(const char *, int, int (*)(int));
|
|
extern int tgetnum(const char *);
|
|
extern int tgetflag(const char *);
|
|
extern char *tgetstr(const char *, char **);
|
|
extern char *tgoto(const char *, int, int);
|
|
#endif /* NO_TERMCAP_HEADERS */
|
|
#else /* ?NO_TERMS */
|
|
#ifdef MAC
|
|
#ifdef putchar
|
|
#undef putchar
|
|
#undef putc
|
|
#endif
|
|
#define putchar term_putc
|
|
#define fflush term_flush
|
|
#define puts term_puts
|
|
E int term_putc(int c);
|
|
E int term_flush(void *desc);
|
|
E int term_puts(const char *str);
|
|
#endif /* MAC */
|
|
#if defined(MSDOS) || defined(WIN32)
|
|
#if defined(SCREEN_BIOS) || defined(SCREEN_DJGPPFAST) || defined(WIN32)
|
|
#undef putchar
|
|
#undef putc
|
|
#undef puts
|
|
#define putchar(x) xputc(x) /* these are in video.c, nttty.c */
|
|
#define putc(x) xputc(x)
|
|
#define puts(x) xputs(x)
|
|
#endif /*SCREEN_BIOS || SCREEN_DJGPPFAST || WIN32 */
|
|
#ifdef POSITIONBAR
|
|
E void video_update_positionbar(char *);
|
|
#endif
|
|
#endif /*MSDOS*/
|
|
#endif /* NO_TERMS */
|
|
|
|
#undef E
|
|
|
|
#endif /* WINTTY_H */
|