-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathglulx.c
72 lines (59 loc) · 1.8 KB
/
glulx.c
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
/* glulx.c Treaty of Babel module for Glulx files
* 2006 By L. Ross Raszewski
*
* This file depends on treaty_builder.h
*
* This file is public domain, but note that any changes to this file
* may render it noncompliant with the Treaty of Babel
*/
#define FORMAT glulx
#define HOME_PAGE "http://eblong.com/zarf/glulx"
#define FORMAT_EXT ".ulx"
#define NO_METADATA
#define NO_COVER
#include "treaty_builder.h"
#include "ifiction.h"
#include <ctype.h>
#include <stdio.h>
static uint32 read_int(unsigned char *mem)
{
uint32 i4 = mem[0],
i3 = mem[1],
i2 = mem[2],
i1 = mem[3];
return i1 | (i2<<8) | (i3<<16) | (i4<<24);
}
static int32 get_story_file_IFID(void *story_file, int32 extent, char *output, int32 output_extent)
{
int32 i,j, k;
char ser[7];
char buffer[32];
if (extent<256) return INVALID_STORY_FILE_RV;
i = find_uuid_ifid_marker(story_file, extent, output, output_extent);
if (i == VALID_STORY_FILE_RV || i == INVALID_USAGE_RV)
return i;
/* Did not find intact IFID. Build one */
j=read_int((unsigned char *)story_file+32);
k=read_int((unsigned char *)story_file+12);
if (memcmp((char *)story_file+36,"Info",4)==0)
{ /* Inform generated */
char *bb=(char *)story_file+52;
k= (int) bb[0]<<8 | (int) bb[1];
memcpy(ser,bb+2,6);
ser[6]=0;
for(i=0;i<6;i++) if (!isalnum(ser[i])) ser[i]='-';
sprintf(buffer,"GLULX-%u-%s-%04X",k,ser,j);
}
else
sprintf(buffer,"GLULX-%08X-%08X",k,j);
ASSERT_OUTPUT_SIZE((signed) strlen(buffer)+1);
strcpy((char *)output,buffer);
return 1;
}
static int32 claim_story_file(void *story_file, int32 extent)
{
if (extent<256 ||
memcmp(story_file,"Glul",4)
) return INVALID_STORY_FILE_RV;
return VALID_STORY_FILE_RV;
}