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
|
/* Copyright (C) 1997 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.
*/
/* zdps.c */
/* Display PostScript extensions */
#include "ghost.h"
#include "errors.h"
#include "oper.h"
#include "gsstate.h"
#include "gsdps.h"
#include "igstate.h"
#include "iname.h"
#include "store.h"
/* Import the user name table. */
extern ref user_names;
/* ------ Graphics state ------ */
/* <screen_index> <x> <y> .setscreenphase - */
private int
zsetscreenphase(register os_ptr op)
{
int code;
long x, y;
check_type(op[-2], t_integer);
check_type(op[-1], t_integer);
check_type(*op, t_integer);
x = op[-1].value.intval;
y = op->value.intval;
if (x != (int)x || y != (int)y ||
op[-2].value.intval < -1 ||
op[-2].value.intval >= gs_color_select_count
)
return_error(e_rangecheck);
code = gs_setscreenphase(igs, (int)x, (int)y,
(gs_color_select_t) op[-2].value.intval);
if (code >= 0)
pop(3);
return code;
}
/* <screen_index> .currentscreenphase <x> <y> */
private int near
zcurrentscreenphase(register os_ptr op)
{
gs_int_point phase;
int code;
check_type(*op, t_integer);
if (op->value.intval < -1 ||
op->value.intval >= gs_color_select_count
)
return_error(e_rangecheck);
code = gs_currentscreenphase(igs, &phase,
(gs_color_select_t) op->value.intval);
if (code < 0)
return code;
push(1);
make_int(op - 1, phase.x);
make_int(op, phase.y);
return 0;
}
/* ------ View clipping ------ */
/* - viewclip - */
private int
zviewclip(register os_ptr op)
{
return gs_viewclip(igs);
}
/* - eoviewclip - */
private int
zeoviewclip(register os_ptr op)
{
return gs_eoviewclip(igs);
}
/* - initviewclip - */
private int
zinitviewclip(register os_ptr op)
{
return gs_initviewclip(igs);
}
/* - viewclippath - */
private int
zviewclippath(register os_ptr op)
{
return gs_viewclippath(igs);
}
/* ------ User names ------ */
/* <index> <name> defineusername - */
private int
zdefineusername(register os_ptr op)
{
ref uname;
check_int_ltu(op[-1], max_array_size);
check_type(*op, t_name);
if (array_get(&user_names, op[-1].value.intval, &uname) >= 0) {
switch (r_type(&uname)) {
case t_null:
break;
case t_name:
if (name_eq(&uname, op))
goto ret;
/* falls through */
default:
return_error(e_invalidaccess);
}
} else { /* Expand the array. */
ref new_array;
uint old_size = r_size(&user_names);
uint new_size = (uint) op[-1].value.intval + 1;
if (new_size < 100)
new_size = 100;
else if (new_size > max_array_size / 2)
new_size = max_array_size;
else if (new_size >> 1 < old_size)
new_size = (old_size > max_array_size / 2 ? max_array_size :
old_size << 1);
else
new_size <<= 1;
/* The user name array is always allocated in system VM, */
/* because it must be immune to save/restore. */
{
uint save_space = icurrent_space;
int code;
ialloc_set_space(idmemory, avm_system);
code = ialloc_ref_array(&new_array, a_all, new_size,
"defineusername(new)");
if (code < 0) {
ialloc_set_space(idmemory, save_space);
return code;
}
refcpy_to_new(new_array.value.refs, user_names.value.refs,
old_size);
refset_null(new_array.value.refs + old_size,
new_size - old_size);
ifree_ref_array(&user_names, "defineusername(old)");
ialloc_set_space(idmemory, save_space);
}
user_names = new_array;
}
ref_assign(user_names.value.refs + op[-1].value.intval, op);
ret:pop(2);
return 0;
}
/* ------ Initialization procedure ------ */
const op_def zdps_op_defs[] =
{
/* Graphics state */
{"1.currentscreenphase", zcurrentscreenphase},
{"3.setscreenphase", zsetscreenphase},
/* View clipping */
{"0eoviewclip", zeoviewclip},
{"0initviewclip", zinitviewclip},
{"0viewclip", zviewclip},
{"0viewclippath", zviewclippath},
/* User names */
{"2defineusername", zdefineusername},
op_def_end(0)
};
|