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
|
//
// Copyright(C) 2005-2014 Simon Howard
//
// This program 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.
//
// This program 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.
//
//
// Parses Text substitution sections in dehacked files
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "doomtype.h"
#include "z_zone.h"
#include "deh_defs.h"
#include "deh_io.h"
#include "deh_main.h"
// Given a string length, find the maximum length of a
// string that can replace it.
static int TXT_MaxStringLength(int len)
{
// Enough bytes for the string and the NUL terminator
len += 1;
// All strings in doom.exe are on 4-byte boundaries, so we may be able
// to support a slightly longer string.
// Extend up to the next 4-byte boundary
len += (4 - (len % 4)) % 4;
// Less one for the NUL terminator.
return len - 1;
}
static void *DEH_TextStart(deh_context_t *context, char *line)
{
char *from_text, *to_text;
int fromlen, tolen;
int i;
if (sscanf(line, "Text %i %i", &fromlen, &tolen) != 2)
{
DEH_Warning(context, "Parse error on section start");
return NULL;
}
// Only allow string replacements that are possible in Vanilla Doom.
// Chocolate Doom is unforgiving!
if (!deh_allow_long_strings && tolen > TXT_MaxStringLength(fromlen))
{
DEH_Error(context, "Replacement string is longer than the maximum "
"possible in doom.exe");
return NULL;
}
from_text = malloc(fromlen + 1);
to_text = malloc(tolen + 1);
// read in the "from" text
for (i=0; i<fromlen; ++i)
{
from_text[i] = DEH_GetChar(context);
}
from_text[fromlen] = '\0';
// read in the "to" text
for (i=0; i<tolen; ++i)
{
to_text[i] = DEH_GetChar(context);
}
to_text[tolen] = '\0';
DEH_AddStringReplacement(from_text, to_text);
free(from_text);
free(to_text);
return NULL;
}
static void DEH_TextParseLine(deh_context_t *context, char *line, void *tag)
{
// not used
}
deh_section_t deh_section_text =
{
"Text",
NULL,
DEH_TextStart,
DEH_TextParseLine,
NULL,
NULL,
};
|