Files
@ 68699f9ab89e
Branch filter:
Location: libtransport.git/backends/frotz/dfrotz/common/fastmem.c
68699f9ab89e
22.3 KiB
text/plain
Merge branch 'master' of github.com:vitalyster/libtransport
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 | /* fastmem.c - Memory related functions (fast version without virtual memory)
* Copyright (c) 1995-1997 Stefan Jokisch
*
* This file is part of Frotz.
*
* Frotz is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Frotz is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
/*
* New undo mechanism added by Jim Dunleavy <jim.dunleavy@erha.ie>
*/
#include <stdio.h>
#include <string.h>
#include "frotz.h"
#ifdef MSDOS_16BIT
#include <alloc.h>
#define malloc(size) farmalloc (size)
#define realloc(size,p) farrealloc (size,p)
#define free(size) farfree (size)
#define memcpy(d,s,n) _fmemcpy (d,s,n)
#else
#include <stdlib.h>
#ifndef SEEK_SET
#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2
#endif
#define far
#endif
extern void seed_random (int);
extern void restart_screen (void);
extern void refresh_text_style (void);
extern void call (zword, int, zword *, int);
extern void split_window (zword);
extern void script_open (void);
extern void script_close (void);
extern FILE *os_path_open (const char *, const char *);
extern zword save_quetzal (FILE *, FILE *);
extern zword restore_quetzal (FILE *, FILE *);
extern void erase_window (zword);
extern void (*op0_opcodes[]) (void);
extern void (*op1_opcodes[]) (void);
extern void (*op2_opcodes[]) (void);
extern void (*var_opcodes[]) (void);
char save_name[MAX_FILE_NAME + 1] = DEFAULT_SAVE_NAME;
char auxilary_name[MAX_FILE_NAME + 1] = DEFAULT_AUXILARY_NAME;
zbyte far *zmp = NULL;
zbyte far *pcp = NULL;
static FILE *story_fp = NULL;
/*
* Data for the undo mechanism.
* This undo mechanism is based on the scheme used in Evin Robertson's
* Nitfol interpreter.
* Undo blocks are stored as differences between states.
*/
typedef struct undo_struct undo_t;
struct undo_struct {
undo_t *next;
undo_t *prev;
long pc;
long diff_size;
zword frame_count;
zword stack_size;
zword frame_offset;
/* undo diff and stack data follow */
};
static undo_t *first_undo = NULL, *last_undo = NULL, *curr_undo = NULL;
static zbyte *undo_mem = NULL, *prev_zmp, *undo_diff;
static int undo_count = 0;
/*
* get_header_extension
*
* Read a value from the header extension (former mouse table).
*
*/
zword get_header_extension (int entry)
{
zword addr;
zword val;
if (h_extension_table == 0 || entry > hx_table_size)
return 0;
addr = h_extension_table + 2 * entry;
LOW_WORD (addr, val)
return val;
}/* get_header_extension */
/*
* set_header_extension
*
* Set an entry in the header extension (former mouse table).
*
*/
void set_header_extension (int entry, zword val)
{
zword addr;
if (h_extension_table == 0 || entry > hx_table_size)
return;
addr = h_extension_table + 2 * entry;
SET_WORD (addr, val)
}/* set_header_extension */
/*
* restart_header
*
* Set all header fields which hold information about the interpreter.
*
*/
void restart_header (void)
{
zword screen_x_size;
zword screen_y_size;
zbyte font_x_size;
zbyte font_y_size;
int i;
SET_BYTE (H_CONFIG, h_config)
SET_WORD (H_FLAGS, h_flags)
if (h_version >= V4) {
SET_BYTE (H_INTERPRETER_NUMBER, h_interpreter_number)
SET_BYTE (H_INTERPRETER_VERSION, h_interpreter_version)
SET_BYTE (H_SCREEN_ROWS, h_screen_rows)
SET_BYTE (H_SCREEN_COLS, h_screen_cols)
}
/* It's less trouble to use font size 1x1 for V5 games, especially
because of a bug in the unreleased German version of "Zork 1" */
if (h_version != V6) {
screen_x_size = (zword) h_screen_cols;
screen_y_size = (zword) h_screen_rows;
font_x_size = 1;
font_y_size = 1;
} else {
screen_x_size = h_screen_width;
screen_y_size = h_screen_height;
font_x_size = h_font_width;
font_y_size = h_font_height;
}
if (h_version >= V5) {
SET_WORD (H_SCREEN_WIDTH, screen_x_size)
SET_WORD (H_SCREEN_HEIGHT, screen_y_size)
SET_BYTE (H_FONT_HEIGHT, font_y_size)
SET_BYTE (H_FONT_WIDTH, font_x_size)
SET_BYTE (H_DEFAULT_BACKGROUND, h_default_background)
SET_BYTE (H_DEFAULT_FOREGROUND, h_default_foreground)
}
if (h_version == V6)
for (i = 0; i < 8; i++)
storeb ((zword) (H_USER_NAME + i), h_user_name[i]);
SET_BYTE (H_STANDARD_HIGH, h_standard_high)
SET_BYTE (H_STANDARD_LOW, h_standard_low)
}/* restart_header */
/*
* init_memory
*
* Allocate memory and load the story file.
*
*/
void init_memory (void)
{
long size;
zword addr;
unsigned n;
int i, j;
static struct {
enum story story_id;
zword release;
zbyte serial[6];
} records[] = {
{ SHERLOCK, 21, "871214" },
{ SHERLOCK, 26, "880127" },
{ BEYOND_ZORK, 47, "870915" },
{ BEYOND_ZORK, 49, "870917" },
{ BEYOND_ZORK, 51, "870923" },
{ BEYOND_ZORK, 57, "871221" },
{ ZORK_ZERO, 296, "881019" },
{ ZORK_ZERO, 366, "890323" },
{ ZORK_ZERO, 383, "890602" },
{ ZORK_ZERO, 393, "890714" },
{ SHOGUN, 292, "890314" },
{ SHOGUN, 295, "890321" },
{ SHOGUN, 311, "890510" },
{ SHOGUN, 322, "890706" },
{ ARTHUR, 54, "890606" },
{ ARTHUR, 63, "890622" },
{ ARTHUR, 74, "890714" },
{ JOURNEY, 26, "890316" },
{ JOURNEY, 30, "890322" },
{ JOURNEY, 77, "890616" },
{ JOURNEY, 83, "890706" },
{ LURKING_HORROR, 203, "870506" },
{ LURKING_HORROR, 219, "870912" },
{ LURKING_HORROR, 221, "870918" },
{ UNKNOWN, 0, "------" }
};
/* Open story file */
if ((story_fp = os_path_open(story_name, "rb")) == NULL)
os_fatal ("Cannot open story file");
/* Allocate memory for story header */
if ((zmp = (zbyte far *) malloc (64)) == NULL)
os_fatal ("Out of memory");
/* Load header into memory */
if (fread (zmp, 1, 64, story_fp) != 64)
os_fatal ("Story file read error");
/* Copy header fields to global variables */
LOW_BYTE (H_VERSION, h_version)
if (h_version < V1 || h_version > V8)
os_fatal ("Unknown Z-code version");
LOW_BYTE (H_CONFIG, h_config)
if (h_version == V3 && (h_config & CONFIG_BYTE_SWAPPED))
os_fatal ("Byte swapped story file");
LOW_WORD (H_RELEASE, h_release)
LOW_WORD (H_RESIDENT_SIZE, h_resident_size)
LOW_WORD (H_START_PC, h_start_pc)
LOW_WORD (H_DICTIONARY, h_dictionary)
LOW_WORD (H_OBJECTS, h_objects)
LOW_WORD (H_GLOBALS, h_globals)
LOW_WORD (H_DYNAMIC_SIZE, h_dynamic_size)
LOW_WORD (H_FLAGS, h_flags)
for (i = 0, addr = H_SERIAL; i < 6; i++, addr++)
LOW_BYTE (addr, h_serial[i])
/* Auto-detect buggy story files that need special fixes */
story_id = UNKNOWN;
for (i = 0; records[i].story_id != UNKNOWN; i++) {
if (h_release == records[i].release) {
for (j = 0; j < 6; j++)
if (h_serial[j] != records[i].serial[j])
goto no_match;
story_id = records[i].story_id;
}
no_match: ; /* null statement */
}
LOW_WORD (H_ABBREVIATIONS, h_abbreviations)
LOW_WORD (H_FILE_SIZE, h_file_size)
/* Calculate story file size in bytes */
if (h_file_size != 0) {
story_size = (long) 2 * h_file_size;
if (h_version >= V4)
story_size *= 2;
if (h_version >= V6)
story_size *= 2;
} else { /* some old games lack the file size entry */
fseek (story_fp, 0, SEEK_END);
story_size = ftell (story_fp);
fseek (story_fp, 64, SEEK_SET);
}
LOW_WORD (H_CHECKSUM, h_checksum)
LOW_WORD (H_ALPHABET, h_alphabet)
LOW_WORD (H_FUNCTIONS_OFFSET, h_functions_offset)
LOW_WORD (H_STRINGS_OFFSET, h_strings_offset)
LOW_WORD (H_TERMINATING_KEYS, h_terminating_keys)
LOW_WORD (H_EXTENSION_TABLE, h_extension_table)
/* Zork Zero Macintosh doesn't have the graphics flag set */
if (story_id == ZORK_ZERO && h_release == 296)
h_flags |= GRAPHICS_FLAG;
/* Adjust opcode tables */
if (h_version <= V4) {
op0_opcodes[0x09] = z_pop;
op1_opcodes[0x0f] = z_not;
} else {
op0_opcodes[0x09] = z_catch;
op1_opcodes[0x0f] = z_call_n;
}
/* Allocate memory for story data */
if ((zmp = (zbyte far *) realloc (zmp, story_size)) == NULL)
os_fatal ("Out of memory");
/* Load story file in chunks of 32KB */
n = 0x8000;
for (size = 64; size < story_size; size += n) {
if (story_size - size < 0x8000)
n = (unsigned) (story_size - size);
SET_PC (size)
if (fread (pcp, 1, n, story_fp) != n)
os_fatal ("Story file read error");
}
/* Read header extension table */
hx_table_size = get_header_extension (HX_TABLE_SIZE);
hx_unicode_table = get_header_extension (HX_UNICODE_TABLE);
}/* init_memory */
/*
* init_undo
*
* Allocate memory for multiple undo. It is important not to occupy
* all the memory available, since the IO interface may need memory
* during the game, e.g. for loading sounds or pictures.
*
*/
void init_undo (void)
{
void far *reserved;
reserved = NULL; /* makes compilers shut up */
if (reserve_mem != 0) {
if ((reserved = malloc (reserve_mem)) == NULL)
return;
}
/* Allocate h_dynamic_size bytes for previous dynamic zmp state
+ 1.5 h_dynamic_size for Quetzal diff + 2. */
undo_mem = malloc ((h_dynamic_size * 5) / 2 + 2);
if (undo_mem != NULL) {
prev_zmp = undo_mem;
undo_diff = undo_mem + h_dynamic_size;
memcpy (prev_zmp, zmp, h_dynamic_size);
} else
f_setup.undo_slots = 0;
if (reserve_mem != 0)
free (reserved);
}/* init_undo */
/*
* free_undo
*
* Free count undo blocks from the beginning of the undo list.
*
*/
static void free_undo (int count)
{
undo_t *p;
if (count > undo_count)
count = undo_count;
while (count--) {
p = first_undo;
if (curr_undo == first_undo)
curr_undo = curr_undo->next;
first_undo = first_undo->next;
free (p);
undo_count--;
}
if (first_undo)
first_undo->prev = NULL;
else
last_undo = NULL;
}/* free_undo */
/*
* reset_memory
*
* Close the story file and deallocate memory.
*
*/
void reset_memory (void)
{
if (story_fp)
fclose (story_fp);
story_fp = NULL;
if (undo_mem) {
free_undo (undo_count);
free (undo_mem);
}
undo_mem = NULL;
undo_count = 0;
if (zmp)
free (zmp);
zmp = NULL;
}/* reset_memory */
/*
* storeb
*
* Write a byte value to the dynamic Z-machine memory.
*
*/
void storeb (zword addr, zbyte value)
{
if (addr >= h_dynamic_size)
runtime_error (ERR_STORE_RANGE);
if (addr == H_FLAGS + 1) { /* flags register is modified */
h_flags &= ~(SCRIPTING_FLAG | FIXED_FONT_FLAG);
h_flags |= value & (SCRIPTING_FLAG | FIXED_FONT_FLAG);
if (value & SCRIPTING_FLAG) {
if (!ostream_script)
script_open ();
} else {
if (ostream_script)
script_close ();
}
refresh_text_style ();
}
SET_BYTE (addr, value)
}/* storeb */
/*
* storew
*
* Write a word value to the dynamic Z-machine memory.
*
*/
void storew (zword addr, zword value)
{
storeb ((zword) (addr + 0), hi (value));
storeb ((zword) (addr + 1), lo (value));
}/* storew */
/*
* z_restart, re-load dynamic area, clear the stack and set the PC.
*
* no zargs used
*
*/
void z_restart (void)
{
static bool first_restart = TRUE;
flush_buffer ();
os_restart_game (RESTART_BEGIN);
seed_random (0);
if (!first_restart) {
fseek (story_fp, 0, SEEK_SET);
if (fread (zmp, 1, h_dynamic_size, story_fp) != h_dynamic_size)
os_fatal ("Story file read error");
} else first_restart = FALSE;
restart_header ();
restart_screen ();
sp = fp = stack + STACK_SIZE;
frame_count = 0;
if (h_version != V6) {
long pc = (long) h_start_pc;
SET_PC (pc)
} else call (h_start_pc, 0, NULL, 0);
os_restart_game (RESTART_END);
}/* z_restart */
/*
* get_default_name
*
* Read a default file name from the memory of the Z-machine and
* copy it to a string.
*
*/
static void get_default_name (char *default_name, zword addr)
{
if (addr != 0) {
zbyte len;
int i;
LOW_BYTE (addr, len)
addr++;
for (i = 0; i < len; i++) {
zbyte c;
LOW_BYTE (addr, c)
addr++;
if (c >= 'A' && c <= 'Z')
c += 'a' - 'A';
default_name[i] = c;
}
default_name[i] = 0;
if (strchr (default_name, '.') == NULL)
strcpy (default_name + i, ".AUX");
} else strcpy (default_name, auxilary_name);
}/* get_default_name */
/*
* z_restore, restore [a part of] a Z-machine state from disk
*
* zargs[0] = address of area to restore (optional)
* zargs[1] = number of bytes to restore
* zargs[2] = address of suggested file name
*
*/
void z_restore (void)
{
char new_name[MAX_FILE_NAME + 1];
char default_name[MAX_FILE_NAME + 1];
FILE *gfp;
zword success = 0;
if (zargc != 0) {
/* Get the file name */
get_default_name (default_name, (zargc >= 3) ? zargs[2] : 0);
if (os_read_file_name (new_name, default_name, FILE_LOAD_AUX) == 0)
goto finished;
strcpy (auxilary_name, default_name);
/* Open auxilary file */
if ((gfp = fopen (new_name, "rb")) == NULL)
goto finished;
/* Load auxilary file */
success = fread (zmp + zargs[0], 1, zargs[1], gfp);
/* Close auxilary file */
fclose (gfp);
} else {
long pc;
zword release;
zword addr;
int i;
/* Get the file name */
if (os_read_file_name (new_name, save_name, FILE_RESTORE) == 0)
goto finished;
strcpy (save_name, new_name);
/* Open game file */
if ((gfp = fopen (new_name, "rb")) == NULL)
goto finished;
if (f_setup.save_quetzal) {
success = restore_quetzal (gfp, story_fp);
} else {
/* Load game file */
release = (unsigned) fgetc (gfp) << 8;
release |= fgetc (gfp);
(void) fgetc (gfp);
(void) fgetc (gfp);
/* Check the release number */
if (release == h_release) {
pc = (long) fgetc (gfp) << 16;
pc |= (unsigned) fgetc (gfp) << 8;
pc |= fgetc (gfp);
SET_PC (pc)
sp = stack + (fgetc (gfp) << 8);
sp += fgetc (gfp);
fp = stack + (fgetc (gfp) << 8);
fp += fgetc (gfp);
for (i = (int) (sp - stack); i < STACK_SIZE; i++) {
stack[i] = (unsigned) fgetc (gfp) << 8;
stack[i] |= fgetc (gfp);
}
fseek (story_fp, 0, SEEK_SET);
for (addr = 0; addr < h_dynamic_size; addr++) {
int skip = fgetc (gfp);
for (i = 0; i < skip; i++)
zmp[addr++] = fgetc (story_fp);
zmp[addr] = fgetc (gfp);
(void) fgetc (story_fp);
}
/* Check for errors */
if (ferror (gfp) || ferror (story_fp) || addr != h_dynamic_size)
success = -1;
else
/* Success */
success = 2;
} else print_string ("Invalid save file\n");
}
if ((short) success >= 0) {
/* Close game file */
fclose (gfp);
if ((short) success > 0) {
zbyte old_screen_rows;
zbyte old_screen_cols;
/* In V3, reset the upper window. */
if (h_version == V3)
split_window (0);
LOW_BYTE (H_SCREEN_ROWS, old_screen_rows);
LOW_BYTE (H_SCREEN_COLS, old_screen_cols);
/* Reload cached header fields. */
restart_header ();
/*
* Since QUETZAL files may be saved on many different machines,
* the screen sizes may vary a lot. Erasing the status window
* seems to cover up most of the resulting badness.
*/
if (h_version > V3 && h_version != V6
&& (h_screen_rows != old_screen_rows
|| h_screen_cols != old_screen_cols))
erase_window (1);
}
} else
os_fatal ("Error reading save file");
}
finished:
if (h_version <= V3)
branch (success);
else
store (success);
}/* z_restore */
/*
* mem_diff
*
* Set diff to a Quetzal-like difference between a and b,
* copying a to b as we go. It is assumed that diff points to a
* buffer which is large enough to hold the diff.
* mem_size is the number of bytes to compare.
* Returns the number of bytes copied to diff.
*
*/
static long mem_diff (zbyte *a, zbyte *b, zword mem_size, zbyte *diff)
{
unsigned size = mem_size;
zbyte *p = diff;
unsigned j;
zbyte c;
for (;;) {
for (j = 0; size > 0 && (c = *a++ ^ *b++) == 0; j++)
size--;
if (size == 0) break;
size--;
if (j > 0x8000) {
*p++ = 0;
*p++ = 0xff;
*p++ = 0xff;
j -= 0x8000;
}
if (j > 0) {
*p++ = 0;
j--;
if (j <= 0x7f) {
*p++ = j;
} else {
*p++ = (j & 0x7f) | 0x80;
*p++ = (j & 0x7f80) >> 7;
}
}
*p++ = c;
*(b - 1) ^= c;
}
return p - diff;
}/* mem_diff */
/*
* mem_undiff
*
* Applies a quetzal-like diff to dest
*
*/
static void mem_undiff (zbyte *diff, long diff_length, zbyte *dest)
{
zbyte c;
while (diff_length) {
c = *diff++;
diff_length--;
if (c == 0) {
unsigned runlen;
if (!diff_length)
return; /* Incomplete run */
runlen = *diff++;
diff_length--;
if (runlen & 0x80) {
if (!diff_length)
return; /* Incomplete extended run */
c = *diff++;
diff_length--;
runlen = (runlen & 0x7f) | (((unsigned) c) << 7);
}
dest += runlen + 1;
} else {
*dest++ ^= c;
}
}
}/* mem_undiff */
/*
* restore_undo
*
* This function does the dirty work for z_restore_undo.
*
*/
int restore_undo (void)
{
if (f_setup.undo_slots == 0) /* undo feature unavailable */
return -1;
if (curr_undo == NULL) /* no saved game state */
return 0;
/* undo possible */
memcpy (zmp, prev_zmp, h_dynamic_size);
SET_PC (curr_undo->pc)
sp = stack + STACK_SIZE - curr_undo->stack_size;
fp = stack + curr_undo->frame_offset;
frame_count = curr_undo->frame_count;
mem_undiff ((zbyte *) (curr_undo + 1), curr_undo->diff_size, prev_zmp);
memcpy (sp, (zbyte *)(curr_undo + 1) + curr_undo->diff_size,
curr_undo->stack_size * sizeof (*sp));
curr_undo = curr_undo->prev;
restart_header ();
return 2;
}/* restore_undo */
/*
* z_restore_undo, restore a Z-machine state from memory.
*
* no zargs used
*
*/
void z_restore_undo (void)
{
store ((zword) restore_undo ());
}/* z_restore_undo */
/*
* z_save, save [a part of] the Z-machine state to disk.
*
* zargs[0] = address of memory area to save (optional)
* zargs[1] = number of bytes to save
* zargs[2] = address of suggested file name
*
*/
void z_save (void)
{
char new_name[MAX_FILE_NAME + 1];
char default_name[MAX_FILE_NAME + 1];
FILE *gfp;
zword success = 0;
if (zargc != 0) {
/* Get the file name */
get_default_name (default_name, (zargc >= 3) ? zargs[2] : 0);
if (os_read_file_name (new_name, default_name, FILE_SAVE_AUX) == 0)
goto finished;
strcpy (auxilary_name, default_name);
/* Open auxilary file */
if ((gfp = fopen (new_name, "wb")) == NULL)
goto finished;
/* Write auxilary file */
success = fwrite (zmp + zargs[0], zargs[1], 1, gfp);
/* Close auxilary file */
fclose (gfp);
} else {
long pc;
zword addr;
zword nsp, nfp;
int skip;
int i;
/* Get the file name */
if (os_read_file_name (new_name, save_name, FILE_SAVE) == 0)
goto finished;
strcpy (save_name, new_name);
/* Open game file */
if ((gfp = fopen (new_name, "wb")) == NULL)
goto finished;
if (f_setup.save_quetzal) {
success = save_quetzal (gfp, story_fp);
} else {
/* Write game file */
fputc ((int) hi (h_release), gfp);
fputc ((int) lo (h_release), gfp);
fputc ((int) hi (h_checksum), gfp);
fputc ((int) lo (h_checksum), gfp);
GET_PC (pc)
fputc ((int) (pc >> 16) & 0xff, gfp);
fputc ((int) (pc >> 8) & 0xff, gfp);
fputc ((int) (pc) & 0xff, gfp);
nsp = (int) (sp - stack);
nfp = (int) (fp - stack);
fputc ((int) hi (nsp), gfp);
fputc ((int) lo (nsp), gfp);
fputc ((int) hi (nfp), gfp);
fputc ((int) lo (nfp), gfp);
for (i = nsp; i < STACK_SIZE; i++) {
fputc ((int) hi (stack[i]), gfp);
fputc ((int) lo (stack[i]), gfp);
}
fseek (story_fp, 0, SEEK_SET);
for (addr = 0, skip = 0; addr < h_dynamic_size; addr++)
if (zmp[addr] != fgetc (story_fp) || skip == 255 || addr + 1 == h_dynamic_size) {
fputc (skip, gfp);
fputc (zmp[addr], gfp);
skip = 0;
} else skip++;
}
/* Close game file and check for errors */
if (fclose (gfp) == EOF || ferror (story_fp)) {
print_string ("Error writing save file\n");
goto finished;
}
/* Success */
success = 1;
}
finished:
if (h_version <= V3)
branch (success);
else
store (success);
}/* z_save */
/*
* save_undo
*
* This function does the dirty work for z_save_undo.
*
*/
int save_undo (void)
{
long diff_size;
zword stack_size;
undo_t *p;
if (f_setup.undo_slots == 0) /* undo feature unavailable */
return -1;
/* save undo possible */
while (last_undo != curr_undo) {
p = last_undo;
last_undo = last_undo->prev;
free (p);
undo_count--;
}
if (last_undo)
last_undo->next = NULL;
else
first_undo = NULL;
if (undo_count == f_setup.undo_slots)
free_undo (1);
diff_size = mem_diff (zmp, prev_zmp, h_dynamic_size, undo_diff);
stack_size = stack + STACK_SIZE - sp;
do {
p = malloc (sizeof (undo_t) + diff_size + stack_size * sizeof (*sp));
if (p == NULL)
free_undo (1);
} while (!p && undo_count);
if (p == NULL)
return -1;
GET_PC (p->pc)
p->frame_count = frame_count;
p->diff_size = diff_size;
p->stack_size = stack_size;
p->frame_offset = fp - stack;
memcpy (p + 1, undo_diff, diff_size);
memcpy ((zbyte *)(p + 1) + diff_size, sp, stack_size * sizeof (*sp));
if (!first_undo) {
p->prev = NULL;
first_undo = p;
} else {
last_undo->next = p;
p->prev = last_undo;
}
p->next = NULL;
curr_undo = last_undo = p;
undo_count++;
return 1;
}/* save_undo */
/*
* z_save_undo, save the current Z-machine state for a future undo.
*
* no zargs used
*
*/
void z_save_undo (void)
{
store ((zword) save_undo ());
}/* z_save_undo */
/*
* z_verify, check the story file integrity.
*
* no zargs used
*
*/
void z_verify (void)
{
zword checksum = 0;
long i;
/* Sum all bytes in story file except header bytes */
fseek (story_fp, 64, SEEK_SET);
for (i = 64; i < story_size; i++)
checksum += fgetc (story_fp);
/* Branch if the checksums are equal */
branch (checksum == h_checksum);
}/* z_verify */
|