Mercurial > hg > early-roguelike
view srogue/bsdtty.c @ 115:1cf517d5d2a8
arogue5: make alchemy jugs survive a save and restore.
Alchemy jugs are refilled by the alchemy() fuse, which takes a pointer
to the jug object as an argument. When written to a save file and read
back out, the pointer is unlikely to point anywhere useful.
Instead, rs_write_daemons() now stores an index into the player's pack
or the list of objects on the floor. rs_read_daemons() uses this
number to locate the object when restoring.
This change should not cause any new issues with old savefiles, but it
is unable to make a broken alchemy jug work again.
author | John "Elwin" Edwards |
---|---|
date | Fri, 28 Mar 2014 15:51:43 -0700 |
parents | 2128c7dc8a40 |
children |
line wrap: on
line source
/* * Super-Rogue * Copyright (C) 1984 Robert D. Kindelberger * All rights reserved. * * See the file LICENSE.TXT for full copyright and licensing information. */ #include "rogue.h" extern bool NONL; raw() { /* VERSION 5.0 _tty.c_lflag &= ~ICANON; _tty.c_cc[VMIN] = 1; _tty.c_cc[VTIME] = 255; _tty.c_oflag &= ~OPOST; */ _rawmode = TRUE; _tty.sg_flags |= CBREAK; ioctl(_tty_ch, TIOCSETN, &_tty); } noraw() { /* VERSION 5.0 _tty.c_lflag |= ICANON; _tty.c_cc[VMIN] = _res_flg.c_cc[VMIN]; _tty.c_cc[VTIME] = _res_flg.c_cc[VTIME]; _tty.c_oflag |= OPOST; */ _rawmode = FALSE; _tty.sg_flags &= ~CBREAK; ioctl(_tty_ch, TIOCSETN, &_tty); } crmode() { /* VERSION 5.0 _tty.c_lflag &= ~ICANON; _tty.c_oflag |= ONLCR; _tty.c_cc[VMIN] = 1; _tty.c_cc[VTIME]=255; */ _rawmode = TRUE; _tty.sg_flags |= (CBREAK | CRMOD); ioctl(_tty_ch, TIOCSETN, &_tty); } nocrmode() { /* _tty.c_lflag |= ICANON; _tty.c_cc[VMIN]=_res_flg.c_cc[VMIN]; _tty.c_cc[VTIME]=_res_flg.c_cc[VTIME]; */ _rawmode = FALSE; _tty.sg_flags &= ~CBREAK; ioctl(_tty_ch, TIOCSETN, &_tty); } echo() { _tty.sg_flags |= ECHO; _echoit=TRUE; ioctl(_tty_ch, TIOCSETN, &_tty); } noecho() { _tty.sg_flags &= ~ECHO; _echoit = FALSE; ioctl(_tty_ch, TIOCSETN, &_tty); } nl() { /* VERSION 5.0 _tty.c_iflag |= ICRNL; _tty.c_oflag |= ONLCR; */ _tty.sg_flags |= CRMOD; NONL = TRUE; ioctl(_tty_ch, TIOCSETN, &_tty); } nonl() { /* VERSION 5.0 _tty.c_iflag &= ~ICRNL; _tty.c_oflag &= ~ONLCR; */ _tty.sg_flags &= ~CRMOD; NONL = FALSE; ioctl(_tty_ch, TIOCSETN, &_tty); } savetty() { ioctl(_tty_ch, TIOCGETP, &_tty); _res_flg = _tty; } resetty() { _tty = _res_flg; ioctl(_tty_ch, TIOCSETN, &_tty); }