Mercurial > hg > early-roguelike
view rogue4/state.c @ 140:856017d63519
xrogue: don't segfault when backstabbing while empty-handed.
The code for backstabbing checked the weapon's properties without
making sure it was not NULL.
| author | John "Elwin" Edwards |
|---|---|
| date | Tue, 05 May 2015 12:12:20 -0400 |
| parents | 09db0cf536af |
| children | 1b73a8641b37 |
line wrap: on
line source
/* state.c - Portable Rogue Save State Code Copyright (C) 1999, 2000, 2005 Nicholas J. Kisseberth 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 notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name(s) of the author(s) nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTORS ``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 AUTHOR(S) OR CONTRIBUTORS 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. */ /************************************************************************/ /* Save State Code */ /************************************************************************/ #define RSID_STATS 0xABCD0001 #define RSID_THING 0xABCD0002 #define RSID_THING_NULL 0xDEAD0002 #define RSID_OBJECT 0xABCD0003 #define RSID_MAGICITEMS 0xABCD0004 #define RSID_KNOWS 0xABCD0005 #define RSID_GUESSES 0xABCD0006 #define RSID_OBJECTLIST 0xABCD0007 #define RSID_BAGOBJECT 0xABCD0008 #define RSID_MONSTERLIST 0xABCD0009 #define RSID_MONSTERSTATS 0xABCD000A #define RSID_MONSTERS 0xABCD000B #define RSID_TRAP 0xABCD000C #define RSID_WINDOW 0xABCD000D #define RSID_DAEMONS 0xABCD000E #define RSID_IWEAPS 0xABCD000F #define RSID_IARMOR 0xABCD0010 #define RSID_SPELLS 0xABCD0011 #define RSID_ILIST 0xABCD0012 #define RSID_HLIST 0xABCD0013 #define RSID_DEATHTYPE 0xABCD0014 #define RSID_CTYPES 0XABCD0015 #define RSID_COORDLIST 0XABCD0016 #define RSID_ROOMS 0XABCD0017 #include <curses.h> #include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <string.h> #include "rogue.h" #define READSTAT ((format_error == 0) && (read_error == 0)) #define WRITESTAT (write_error == 0) int read_error = FALSE; int write_error = FALSE; int format_error = FALSE; int end_of_file = FALSE; int big_endian = 0; void * get_list_item(THING *l, int i) { int count = 0; while(l != NULL) { if (count == i) return(l); l = l->l_next; count++; } return(NULL); } int find_list_ptr(THING *l, void *ptr) { int count = 0; while(l != NULL) { if (l == ptr) return(count); l = l->l_next; count++; } return(-1); } int list_size(THING *l) { int count = 0; while(l != NULL) { if (l == NULL) return(count); count++; l = l->l_next; } return(count); } int rs_write(FILE *savef, void *ptr, int size) { if (!write_error) encwrite(ptr,size,savef); if (0) write_error = TRUE; assert(write_error == 0); return(WRITESTAT); } int rs_write_char(FILE *savef, char c) { rs_write(savef, &c, 1); return(WRITESTAT); } int rs_write_boolean(FILE *savef, bool c) { unsigned char buf = (c == 0) ? 0 : 1; rs_write(savef, &buf, 1); return(WRITESTAT); } int rs_write_booleans(FILE *savef, bool *c, int count) { int n = 0; rs_write_int(savef,count); for(n = 0; n < count; n++) rs_write_boolean(savef,c[n]); return(WRITESTAT); }
