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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
/* Copyright (C) 1989, 1995, 1996, 1997, 1998 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/*Id: zgstate.c */
/* Graphics state operators */
#include "math_.h"
#include "ghost.h"
#include "oper.h"
#include "ialloc.h"
#include "idict.h"
#include "istruct.h"
#include "igstate.h"
#include "gsmatrix.h"
#include "store.h"
/* Forward references */
private int num_param(P2(const_os_ptr, int (*)(P2(gs_state *, floatp))));
/* Structure descriptors */
private_st_int_gstate();
/* ------ Operations on the entire graphics state ------ */
/* The current graphics state */
gs_state *igs;
/* "Client" procedures */
private void *gs_istate_alloc(P1(gs_memory_t * mem));
private int gs_istate_copy(P2(void *to, const void *from));
private void gs_istate_free(P2(void *old, gs_memory_t * mem));
private const gs_state_client_procs istate_procs =
{
gs_istate_alloc,
gs_istate_copy,
gs_istate_free
};
/* Initialize the graphics stack. */
void
igs_init(void)
{
gs_register_struct_root(imemory, NULL, (void **)&igs, "igs");
igs = int_gstate_alloc(iimemory);
}
gs_state *
int_gstate_alloc(gs_ref_memory_t * mem)
{
int_gstate *iigs;
ref proc0;
gs_state *pgs = gs_state_alloc((gs_memory_t *) mem);
iigs = gs_alloc_struct((gs_memory_t *) mem, int_gstate, &st_int_gstate,
"int_gstate_alloc(int_gstate)");
int_gstate_map_refs(iigs, make_null);
make_empty_array(&iigs->dash_pattern, a_all);
gs_alloc_ref_array(mem, &proc0, a_readonly + a_executable, 2,
"int_gstate_alloc(proc0)");
make_oper(proc0.value.refs, 0, zpop);
make_real(proc0.value.refs + 1, 0.0);
iigs->black_generation = proc0;
iigs->undercolor_removal = proc0;
clear_pagedevice(iigs);
gs_state_set_client(pgs, iigs, &istate_procs);
/* PostScript code wants limit clamping enabled. */
gs_setlimitclamp(pgs, true);
/*
* gsave and grestore only work properly
* if there are always at least 2 entries on the stack.
* We count on the PostScript initialization code to do a gsave.
*/
return pgs;
}
/* - gsave - */
int
zgsave(register os_ptr op)
{
return gs_gsave(igs);
}
/* - grestore - */
int
zgrestore(register os_ptr op)
{
return gs_grestore(igs);
}
/* - grestoreall - */
int
zgrestoreall(register os_ptr op)
{
return gs_grestoreall(igs);
}
/* - initgraphics - */
private int
zinitgraphics(register os_ptr op)
{
/* gs_initgraphics does a setgray; we must clear the interpreter's */
/* cached copy of the color space object. */
int code = gs_initgraphics(igs);
if (code >= 0)
make_null(&istate->colorspace.array);
return code;
}
/* ------ Operations on graphics state elements ------ */
/* <num> setlinewidth - */
private int
zsetlinewidth(register os_ptr op)
{ /*
* The Red Book doesn't say anything about this, but Adobe
* interpreters return (or perhaps store) the absolute value
* of the width.
*/
double width;
int code = real_param(op, &width);
if (code < 0)
return_op_typecheck(op);
code = gs_setlinewidth(igs, fabs(width));
if (code >= 0)
pop(1);
return code;
}
/* - currentlinewidth <num> */
private int
zcurrentlinewidth(register os_ptr op)
{
push(1);
make_real(op, gs_currentlinewidth(igs));
return 0;
}
/* <cap_int> .setlinecap - */
private int
zsetlinecap(register os_ptr op)
{
int param;
int code = int_param(op, max_int, ¶m);
if (code < 0 || (code = gs_setlinecap(igs, (gs_line_cap) param)) < 0)
return code;
pop(1);
return 0;
}
/* - currentlinecap <cap_int> */
private int
zcurrentlinecap(register os_ptr op)
{
push(1);
make_int(op, (int)gs_currentlinecap(igs));
return 0;
}
/* <join_int> .setlinejoin - */
private int
zsetlinejoin(register os_ptr op)
{
int param;
int code = int_param(op, max_int, ¶m);
if (code < 0 || (code = gs_setlinejoin(igs, (gs_line_join) param)) < 0)
return code;
pop(1);
return 0;
}
/* - currentlinejoin <join_int> */
private int
zcurrentlinejoin(register os_ptr op)
{
push(1);
make_int(op, (int)gs_currentlinejoin(igs));
return 0;
}
/* <num> setmiterlimit - */
private int
zsetmiterlimit(register os_ptr op)
{
return num_param(op, gs_setmiterlimit);
}
/* - currentmiterlimit <num> */
private int
zcurrentmiterlimit(register os_ptr op)
{
push(1);
make_real(op, gs_currentmiterlimit(igs));
return 0;
}
/* <array> <offset> setdash - */
private int
zsetdash(register os_ptr op)
{
os_ptr op1 = op - 1;
double offset;
int code = real_param(op, &offset);
uint i, n;
gs_memory_t *mem = imemory;
float *pattern;
if (code < 0)
return_op_typecheck(op);
if (!r_is_array(op1))
return_op_typecheck(op1);
/* Adobe interpreters apparently don't check the array for */
/* read access, so we won't either. */
/*check_read(*op1); */
/* Unpack the dash pattern and check it */
n = r_size(op1);
pattern =
(float *)gs_alloc_byte_array(mem, n, sizeof(float), "setdash");
if (pattern == 0)
return_error(e_VMerror);
for (i = 0, code = 0; i < n && code >= 0; ++i) {
ref element;
array_get(op1, (long)i, &element);
code = float_param(&element, &pattern[i]);
}
if (code >= 0)
code = gs_setdash(igs, pattern, n, offset);
gs_free_object(mem, pattern, "setdash"); /* gs_setdash copies this */
if (code < 0)
return code;
ref_assign(&istate->dash_pattern, op1);
pop(2);
return code;
}
/* - currentdash <array> <offset> */
private int
zcurrentdash(register os_ptr op)
{
push(2);
ref_assign(op - 1, &istate->dash_pattern);
make_real(op, gs_currentdash_offset(igs));
return 0;
}
/* <num> setflat - */
private int
zsetflat(register os_ptr op)
{
return num_param(op, gs_setflat);
}
/* - currentflat <num> */
private int
zcurrentflat(register os_ptr op)
{
push(1);
make_real(op, gs_currentflat(igs));
return 0;
}
/* ------ Extensions ------ */
/* <bool> .setaccuratecurves - */
private int
zsetaccuratecurves(register os_ptr op)
{
check_type(*op, t_boolean);
gs_setaccuratecurves(igs, op->value.boolval);
pop(1);
return 0;
}
/* - .currentaccuratecurves <bool> */
private int
zcurrentaccuratecurves(register os_ptr op)
{
push(1);
make_bool(op, gs_currentaccuratecurves(igs));
return 0;
}
/* <adjust.x> <adjust.y> .setfilladjust2 - */
private int
zsetfilladjust2(register os_ptr op)
{
double adjust[2];
int code = num_params(op, 2, adjust);
if (code < 0)
return code;
code = gs_setfilladjust(igs, adjust[0], adjust[1]);
if (code < 0)
return code;
pop(2);
return 0;
}
/* - .currentfilladjust2 <adjust.x> <adjust.y> */
private int
zcurrentfilladjust2(register os_ptr op)
{
gs_point adjust;
push(2);
gs_currentfilladjust(igs, &adjust);
make_real(op - 1, adjust.x);
make_real(op, adjust.y);
return 0;
}
/* <bool> .setdashadapt - */
private int
zsetdashadapt(register os_ptr op)
{
check_type(*op, t_boolean);
gs_setdashadapt(igs, op->value.boolval);
pop(1);
return 0;
}
/* - .currentdashadapt <bool> */
private int
zcurrentdashadapt(register os_ptr op)
{
push(1);
make_bool(op, gs_currentdashadapt(igs));
return 0;
}
/* <num> <bool> .setdotlength - */
private int
zsetdotlength(register os_ptr op)
{
double length;
int code = real_param(op - 1, &length);
if (code < 0)
return code;
check_type(*op, t_boolean);
code = gs_setdotlength(igs, length, op->value.boolval);
if (code < 0)
return code;
pop(2);
return 0;
}
/* - .currentdotlength <num> <bool> */
private int
zcurrentdotlength(register os_ptr op)
{
push(2);
make_real(op - 1, gs_currentdotlength(igs));
make_bool(op, gs_currentdotlength_absolute(igs));
return 0;
}
/* ------ Initialization procedure ------ */
const op_def zgstate_op_defs[] =
{
{"0.currentaccuratecurves", zcurrentaccuratecurves},
{"0currentdash", zcurrentdash},
{"0.currentdashadapt", zcurrentdashadapt},
{"0.currentdotlength", zcurrentdotlength},
{"0.currentfilladjust2", zcurrentfilladjust2},
{"0currentflat", zcurrentflat},
{"0currentlinecap", zcurrentlinecap},
{"0currentlinejoin", zcurrentlinejoin},
{"0currentlinewidth", zcurrentlinewidth},
{"0currentmiterlimit", zcurrentmiterlimit},
{"0grestore", zgrestore},
{"0grestoreall", zgrestoreall},
{"0gsave", zgsave},
{"0initgraphics", zinitgraphics},
{"1.setaccuratecurves", zsetaccuratecurves},
{"2setdash", zsetdash},
{"1.setdashadapt", zsetdashadapt},
{"2.setdotlength", zsetdotlength},
{"2.setfilladjust2", zsetfilladjust2},
{"1setflat", zsetflat},
{"1.setlinecap", zsetlinecap},
{"1.setlinejoin", zsetlinejoin},
{"1setlinewidth", zsetlinewidth},
{"1setmiterlimit", zsetmiterlimit},
op_def_end(0)
};
/* ------ Internal routines ------ */
/* Allocate the interpreter's part of a graphics state. */
private void *
gs_istate_alloc(gs_memory_t * mem)
{
return gs_alloc_struct(mem, int_gstate, &st_int_gstate, "int_gsave");
}
/* Copy the interpreter's part of a graphics state. */
private int
gs_istate_copy(void *to, const void *from)
{
*(int_gstate *) to = *(const int_gstate *)from;
return 0;
}
/* Free the interpreter's part of a graphics state. */
private void
gs_istate_free(void *old, gs_memory_t * mem)
{
gs_free_object(mem, old, "int_grestore");
}
/* Get a numeric parameter */
private int
num_param(const_os_ptr op, int (*pproc)(P2(gs_state *, floatp)))
{
double param;
int code = real_param(op, ¶m);
if (code < 0)
return_op_typecheck(op);
code = (*pproc)(igs, param);
if (!code)
pop(1);
return code;
}
|