-
Notifications
You must be signed in to change notification settings - Fork 3
/
inspect_text.js
150 lines (145 loc) · 2.26 KB
/
inspect_text.js
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
/********************** public functions *********************/
var oldText=true;
var huff=undefined;
function setHuff(h)
{
if (h==undefined) return;
huff=h;
oldText=false;
}
function getText(id)
{
if (oldText) return getOldText(id);
if (id&0x8000)
return "<user>";
var p=new GFile(getObject(2,id));
var len;
var out='';
if (p.bits(1))
len=p.bits(0xf);
else
len=p.bits(7);
while (len--)
{
var v=p.peek32();
v>>=16-p.bit;
v&=0xffff;
var i;
for (i=0;i<huff.length-1;i++)
if (v<huff.masks[i]) break;
p.bit+=huff.lens[i];
if (p.bit&0x10)
{
p.bit&=0xf;
p.seek(2,p.cur);
}
var ch=huff.values[i];
if (ch==1)
ch=p.bits(7);
if (ch!=2)
out+=String.fromCharCode(ch);
else
{
var child;
if (p.bits(1))
{
var subval=p.bits(0xf);
child=getText(subval);
}
else
{
var subval=p.bits(8);
child=getNoun(subval);
}
if (child)
out+=child;
}
}
return toascii(out);
}
function capitalize(str)
{
return str.substr(0,1).toUpperCase()+str.substr(1);
}
/********************** private functions *********************/
function getOldText(id)
{
if (id&0x8000)
return "<user>";
var p=new GFile(getObject(2,id));
var lower=false;
var out='';
var len=p.r16();
while (len--)
{
var ch=p.bits(5);
if (ch>0 && ch<0x1b)
{
ch|=0x40;
if (lower) ch|=0x20;
lower=true;
out+=String.fromCharCode(ch);
}
else switch (ch)
{
case 0:
out+=' ';
break;
case 0x1b:
out+=lower?'.':',';
lower=true;
break;
case 0x1c:
out+=lower?"'":'"';
lower=true;
break;
case 0x1d:
var child;
var subval=p.bits(16);
if (subval&0x8000)
{
subval^=0xffff;
child=getNoun(subval);
}
else
child=getText(subval);
if (child)
out+=child;
lower=true;
break;
case 0x1e:
out+=String.fromCharCode(p.bits(8));
lower=true;
break;
case 0x1f:
lower=!lower;
break;
}
}
return toascii(out);
}
function getNoun(subval)
{
var obj;
if (subval&8)
obj="<target";
else
obj="<source";
if ((subval&3)==1)
obj+=".indir"; //he,she,it
else
{
switch (subval&3)
{
case 2:
obj+=".pfx";
break;
case 3:
obj+=".pfx2";
break;
}
}
if (subval&4)
obj+=".cap";
return obj+">";
}