39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
|
|
/*
|
||
|
|
* Super-Rogue
|
||
|
|
* Copyright (C) 1984 Robert D. Kindelberger
|
||
|
|
* All rights reserved.
|
||
|
|
*
|
||
|
|
* See the file LICENSE.TXT for full copyright and licensing information.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
# define CBREAK FALSE
|
||
|
|
# define _IOSTRG 01
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
* mv functions
|
||
|
|
*/
|
||
|
|
#define mvwaddch(win,y,x,ch) VOID(wmove(win,y,x)==ERR?ERR:waddch(win,ch))
|
||
|
|
#define mvwgetch(win,y,x,ch) VOID(wmove(win,y,x)==ERR?ERR:wgetch(win,ch))
|
||
|
|
#define mvwaddstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:waddstr(win,str))
|
||
|
|
#define mvwgetstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:wgetstr(win,str))
|
||
|
|
#define mvwinch(win,y,x) VOID(wmove(win,y,x) == ERR ? ERR : winch(win))
|
||
|
|
#define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
|
||
|
|
#define mvgetch(y,x,ch) mvwgetch(stdscr,y,x,ch)
|
||
|
|
#define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
|
||
|
|
#define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
|
||
|
|
#define mvinch(y,x) mvwinch(stdscr,y,x)
|
||
|
|
|
||
|
|
/*
|
||
|
|
* psuedo functions
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define clearok(win,bf) (win->_clear = bf)
|
||
|
|
#define leaveok(win,bf) (win->_leave = bf)
|
||
|
|
#define scrollok(win,bf) (win->_scroll = bf)
|
||
|
|
#define getyx(win,y,x) y = win->_cury, x = win->_curx
|
||
|
|
#define winch(win) (win->_y[win->_cury][win->_curx])
|
||
|
|
|
||
|
|
WINDOW *initscr(), *newwin();
|