/* $Id: text.c,v 1.1.1.1 2006/03/17 19:56:37 zicodxx Exp $ */ /* THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE. COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. */ /* * * Code for localizable text * */ #ifdef HAVE_CONFIG_H #include #endif #ifdef RCS static char rcsid[] = "$Id: text.c,v 1.1.1.1 2006/03/17 19:56:37 zicodxx Exp $"; #endif #include #include #include "pstypes.h" #include "cfile.h" #include "u_mem.h" #include "error.h" #include "inferno.h" #include "text.h" #include "args.h" #define SHAREWARE_TEXTSIZE 14677 char *text; char *Text_string[N_TEXT_STRINGS]; void free_text() { d_free(text); } // rotates a byte left one bit, preserving the bit falling off the right void encode_rotate_left(char *c) { int found; found = 0; if (*c & 0x80) found = 1; *c = *c << 1; if (found) *c |= 0x01; } #define BITMAP_TBL_XOR 0xD3 //decode an encoded line of text of bitmaps.tbl void decode_text_line(char *p) { for (;*p;p++) { encode_rotate_left(p); *p = *p ^ BITMAP_TBL_XOR; encode_rotate_left(p); } } // decode buffer of text, preserves newlines void decode_text(char *buf, int len) { char *ptr; int i; for (i = 0, ptr = buf; i < len; i++, ptr++) { if (*ptr != '\n') { encode_rotate_left(ptr); *ptr = *ptr ^ BITMAP_TBL_XOR; encode_rotate_left(ptr); } } } #if !defined(_MSC_VER) && !defined(macintosh) #include #endif //load all the text strings for Descent void load_text() { CFILE *tfile; CFILE *ifile; int len,i, have_binary = 0; char *tptr; char *filename="descent.tex"; if ((i=FindArg("-text"))!=0) filename = Args[i+1]; if ((tfile = cfopen(filename,"rb")) == NULL) { filename="descent.txb"; if ((ifile = cfopen(filename, "rb")) == NULL) { Error("Cannot open file DESCENT.TEX or DESCENT.TXB"); return; } have_binary = 1; len = cfilelength(ifile); MALLOC(text,char,len); atexit(free_text); cfread(text,1,len,ifile); cfclose(ifile); } else { int c; char * p; len = cfilelength(tfile); MALLOC(text,char,len); atexit(free_text); //fread(text,1,len,tfile); p = text; do { c = cfgetc( tfile ); if ( c != 13 ) *p++ = c; } while ( c!=EOF ); cfclose(tfile); } for (i=0,tptr=text;i on line %d of file <%s>",p[1],i+1,filename); p[0] = newchar; // strcpy(p+1,p+2); MALLOC(buf,char,len+1); strcpy(buf,p+2); strcpy(p+1,buf); d_free(buf); p++; } } if (i == 644) { if (len == SHAREWARE_TEXTSIZE) { Text_string[173] = Text_string[172]; Text_string[172] = Text_string[171]; Text_string[171] = Text_string[170]; Text_string[170] = Text_string[169]; Text_string[169] = "Windows Joystick"; } Text_string[644] = "Z1"; Text_string[645] = "UN"; Text_string[646] = "P1"; Text_string[647] = "R1"; Text_string[648] = "Y1"; } //Assert(tptr==text+len || tptr==text+len-2); }