summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/font/vfpacket.w
blob: 14a6ca611699fdc4357d92218385baa95a41ad82 (plain)
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
% vfpacket.w
%
% Copyright 1996-2006 Han The Thanh <thanh@@pdftex.org>
% Copyright 2006-2013 Taco Hoekwater <taco@@luatex.org>
%
% This file is part of LuaTeX.
%
% LuaTeX 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.
%
% LuaTeX 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 Lesser General Public
% License for more details.
%
% You should have received a copy of the GNU General Public License along
% with LuaTeX; if not, see <http://www.gnu.org/licenses/>.

@ @c


#include "ptexlib.h"

@ Some macros for processing character packets.
@c
#define packet_number(fw) {    \
    fw = *(vfp++);             \
    fw = fw * 256 + *(vfp++);  \
    fw = fw * 256 + *(vfp++);  \
    fw = fw * 256 + *(vfp++);  \
}

#define packet_scaled(a, fs) {  \
    int fw;                     \
    fw = *(vfp++);              \
    if (fw > 127)               \
        fw = fw - 256;          \
    fw = fw * 256 + *(vfp++);   \
    fw = fw * 256 + *(vfp++);   \
    fw = fw * 256 + *(vfp++);   \
    a = store_scaled_f(fw, fs); \
}

@ @c
vf_struct *new_vfstruct(void)
{
    vf_struct *vp = (vf_struct *) xmalloc(sizeof(vf_struct));
    vp->packet_stack_level = vp->packet_stack_minlevel = 0;
    vp->packet_stack =
        (packet_stack_record *) xmalloc(packet_stack_size *
                                        sizeof(packet_stack_record));
    vp->lf = 0;
    vp->fs_f = 0;
    vp->packet_cur_s = 0;
    vp->refpos = NULL;
    vp->vflua = false;
    return vp;
}

@ Count the number of bytes in a command packet.
@c
int vf_packet_bytes(charinfo * co)
{
    eight_bits *vf_packets, *vfp;
    unsigned k;
    int cmd;

    vfp = vf_packets = get_charinfo_packets(co);
    if (vf_packets == NULL) {
        return 0;
    }
    while ((cmd = *(vfp++)) != packet_end_code) {
        switch (cmd) {
        case packet_nop_code:
        case packet_pop_code:
        case packet_push_code:
            break;
        case packet_char_code:
        case packet_down_code:
        case packet_font_code:
        case packet_image_code:
        case packet_node_code:
        case packet_right_code:
            vfp += 4;
            break;
        case packet_rule_code:
            vfp += 8;
            break;
        case packet_pdf_code:
            vfp += 4;
            /* plus a string so we fall through */
        case packet_special_code:
            packet_number(k);   /* +4 */
            vfp += (int) k;
            break;
        default:
            normal_error("vf", "invalid DVI command (1)");
        }
    };
    return (vfp - vf_packets);
}

@ Typeset the \.{DVI} commands in the character packet
  for character |c| in current font |f|.
@c
const char *packet_command_names[] = {
    "char", "font", "pop", "push", "special", "image",
    "right", "down", "rule", "node", "nop", "end", "scale", "lua", "pdf", NULL
};

@ @c
static float packet_float(eight_bits ** vfpp)
{
    unsigned int i;
    union U {
        float a;
        eight_bits b[sizeof(float)];
    } u;
    eight_bits *vfp = *vfpp;
    for (i = 0; i < sizeof(float); i++)
        u.b[i] = *(vfp++);
    *vfpp = vfp;
    return u.a;
}

@ The |do_vf_packet| procedure is called in order to interpret the
  character packet for a virtual character. Such a packet may contain
  the instruction to typeset a character from the same or an other
  virtual font; in such cases |do_vf_packet| calls itself
  recursively. The recursion level, i.e., the number of times this has
  happened, is kept in the global variable |packet_cur_s| and should
  not exceed |packet_max_recursion|.
@c
void do_vf_packet(PDF pdf, internal_font_number vf_f, int c, int ex_glyph)
{
    eight_bits *vfp;
    posstructure *save_posstruct, localpos;
    vf_struct *save_vfstruct, localvfstruct, *vp;
    int cmd, w, mode;
    unsigned k;
    scaledpos size;
    scaled i;
    str_number s;
    float f;
    packet_stack_record *mat_p;

    vfp = get_charinfo_packets(get_charinfo(vf_f, c));
    assert(vfp != NULL);

    save_posstruct = pdf->posstruct;
    pdf->posstruct = &localpos; /* use local structure for recursion */
    localpos.pos = save_posstruct->pos;
    localpos.dir = dir_TLT;     /* invariably for vf */

    save_vfstruct = pdf->vfstruct;
    vp = pdf->vfstruct = &localvfstruct;
    localvfstruct = *save_vfstruct;

    vp->packet_stack_minlevel = ++(vp->packet_stack_level);
    vp->lf = 0;
    vp->fs_f = font_size(vf_f);
    vp->ex_glyph = ex_glyph;
    vp->packet_cur_s++;
    if (vp->packet_cur_s == packet_max_recursion)
        overflow("max level recursion of virtual fonts", packet_max_recursion);
    vp->refpos = save_posstruct;
    vp->vflua = false;

    mat_p = &(vp->packet_stack[vp->packet_stack_level]);
    mat_p->c0 = 1.0;
    mat_p->c1 = 0.0;
    mat_p->c2 = 0.0;
    mat_p->c3 = 1.0;
    mat_p->pos.h = 0;
    mat_p->pos.v = 0;

    while ((cmd = *(vfp++)) != packet_end_code) {
#ifdef DEBUG
        if (cmd > packet_end_code) {
            fprintf(stdout, "do_vf_packet(%i,%i) command code = illegal \n",
                    vf_f, c);
        } else {
            fprintf(stdout, "do_vf_packet(%i,%i) command code = %s\n", vf_f, c,
                    packet_command_names[cmd]);
        }
#endif
        switch (cmd) {
        case packet_font_code:
            packet_number(vp->lf);
            break;
        case packet_push_code:
            vp->packet_stack_level++;
            if (vp->packet_stack_level == packet_stack_size)
                normal_error("vf", "packet_stack_level overflow");
            vp->packet_stack[vp->packet_stack_level] = *mat_p;
            mat_p = &(vp->packet_stack[vp->packet_stack_level]);
            break;
        case packet_pop_code:
            if (vp->packet_stack_level == vp->packet_stack_minlevel)
                normal_error("vf", "packet_stack_level underflow");
            vp->packet_stack_level--;
            mat_p = &(vp->packet_stack[vp->packet_stack_level]);
            break;
        case packet_char_code:
            packet_number(k);
            /* we also check if c == k and font(c) == font)k) */
            if (!char_exists(vp->lf, (int) k)) {
                char_warning(vp->lf, (int) k);
            } else if (! ((c == k && vp->lf == vf_f)) && (has_packet(vp->lf, (int) k))) {
                do_vf_packet(pdf, vp->lf, (int) k, ex_glyph);
            } else {
                backend_out[glyph_node] (pdf, vp->lf, (int) k, ex_glyph);
            }
            w = char_width(vp->lf, (int) k);
            mat_p->pos.h += round_xn_over_d(w, 1000 + ex_glyph, 1000);
            break;
        case packet_rule_code:
            packet_scaled(size.v, vp->fs_f);    /* height (where is depth?) */
            packet_scaled(size.h, vp->fs_f);
            if (size.h > 0 && size.v > 0)
                backend_out[rule_node](pdf, 0, size);  /* the 0 is unused */
            mat_p->pos.h += size.h;
            break;
        case packet_right_code:
            packet_scaled(i, vp->fs_f);
            mat_p->pos.h += i;
            break;
        case packet_down_code:
            packet_scaled(i, vp->fs_f);
            mat_p->pos.v += i;
            break;
        case packet_pdf_code:
            packet_number(mode);
            packet_number(k);
            str_room(k);
            while (k > 0) {
                k--;
                append_char(*(vfp++));
            }
            s = make_string();
            pdf_literal(pdf, s, mode, false);
            flush_str(s);
            break;
        case packet_special_code:
            packet_number(k);
            str_room(k);
            while (k > 0) {
                k--;
                append_char(*(vfp++));
            }
            s = make_string();
            pdf_literal(pdf, s, scan_special, false);
            flush_str(s);
            break;
        case packet_lua_code:
            packet_number(k);
            vp->vflua = true;
            if (luaL_loadbuffer
                (Luas, (const char *) vfp, (size_t) k, "packet_lua_code")
                || lua_pcall(Luas, 0, LUA_MULTRET, 0))
                lua_error(Luas);
            vp->vflua = false;
            vfp += k;
            break;
        case packet_image_code:
            packet_number(k);
            vf_out_image(pdf, k);
            break;
        case packet_node_code:
            packet_number(k);
            hlist_out(pdf, (halfword) k, 0);
            break;
        case packet_nop_code:
            break;
        case packet_scale_code:
            f = packet_float(&vfp);
            mat_p->c0 = mat_p->c0 * f;
            mat_p->c3 = mat_p->c3 * f;
            /* pdf->pstruct->scale = f; *//* scale is still NOP */
            pdf->pstruct->need_tm = true;
            pdf->pstruct->need_tf = true;
            break;
        default:
            normal_error("vf", "invalid DVI command (2)");
        }
        synch_pos_with_cur(&localpos, save_posstruct, mat_p->pos);      /* trivial case, always TLT */
    }
    pdf->posstruct = save_posstruct;
    pdf->vfstruct = save_vfstruct;
}

@ @c
int *packet_local_fonts(internal_font_number f, int *num)
{
    int c, cmd, lf, k, l, i;
    int localfonts[256] = { 0 };
    int *lfs;
    charinfo *co;

    eight_bits *vf_packets, *vfp;
    k = 0;
    for (c = font_bc(f); c <= font_ec(f); c++) {
        if (quick_char_exists(f, c)) {
            co = get_charinfo(f, c);
            vfp = vf_packets = get_charinfo_packets(co);
            if (vf_packets == NULL)
                continue;
            while ((cmd = *(vfp++)) != packet_end_code) {
                switch (cmd) {
                case packet_font_code:
                    packet_number(lf);
                    for (l = 0; l < k; l++) {
                        if (localfonts[l] == lf) {
                            break;
                        }
                    }
                    if (l == k) {
                        localfonts[k++] = lf;
                    }
                    break;
                case packet_nop_code:
                case packet_pop_code:
                case packet_push_code:
                    break;
                case packet_char_code:
                case packet_down_code:
                case packet_image_code:
                case packet_node_code:
                case packet_right_code:
                    vfp += 4;
                    break;
                case packet_rule_code:
                    vfp += 8;
                    break;
                case packet_special_code:
                    packet_number(i);
                    vfp += i;
                    break;
                default:
                    normal_error("vf", "invalid DVI command (3)");
                }
            }
        }
    }
    *num = k;
    if (k > 0) {
        lfs = xmalloc((unsigned) ((unsigned) k * sizeof(int)));
        memcpy(lfs, localfonts, (size_t) ((unsigned) k * sizeof(int)));
        return lfs;
    }
    return NULL;
}

@ @c
void
replace_packet_fonts(internal_font_number f, int *old_fontid,
                     int *new_fontid, int count)
{
    int c, cmd, lf, k, l;
    charinfo *co;
    eight_bits *vf_packets, *vfp;

    for (c = font_bc(f); c <= font_ec(f); c++) {
        if (quick_char_exists(f, c)) {
            co = get_charinfo(f, c);
            vfp = vf_packets = get_charinfo_packets(co);
            if (vf_packets == NULL)
                continue;
            while ((cmd = *(vfp++)) != packet_end_code) {
                switch (cmd) {
                case packet_font_code:
                    packet_number(lf);
                    for (l = 0; l < count; l++) {
                        if (old_fontid[l] == lf) {
                            break;
                        }
                    }
                    if (l < count) {
                        k = new_fontid[l];
                        *(vfp - 4) = (eight_bits)
                            ((k & 0xFF000000) >> 24);
                        *(vfp - 3) = (eight_bits)
                            ((k & 0x00FF0000) >> 16);
                        *(vfp - 2) = (eight_bits)
                            ((k & 0x0000FF00) >> 8);
                        *(vfp - 1) = (eight_bits) (k & 0x000000FF);
                    }
                    break;
                case packet_nop_code:
                case packet_pop_code:
                case packet_push_code:
                    break;
                case packet_char_code:
                case packet_down_code:
                case packet_image_code:
                case packet_node_code:
                case packet_right_code:
                    vfp += 4;
                    break;
                case packet_rule_code:
                    vfp += 8;
                    break;
                case packet_pdf_code:
                    vfp += 4;
                    /* plus a string so we fall through */
                case packet_special_code:
                    packet_number(k);
                    vfp += k;
                    break;
                default:
                    normal_error("vf", "invalid DVI command (4)");
                }
            }
        }
    }
}