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
|
/* Copyright (C) 1989, 1991, 1993, 1994 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* zmatrix.c */
/* Matrix operators */
#include "ghost.h"
#include "errors.h"
#include "oper.h"
#include "igstate.h"
#include "gsmatrix.h"
#include "gscoord.h"
#include "store.h"
/* Forward references */
private int near common_transform(P3(os_ptr,
int (*)(P4(gs_state *, floatp, floatp, gs_point *)),
int (*)(P4(floatp, floatp, const gs_matrix *, gs_point *))));
/* - initmatrix - */
private int
zinitmatrix(os_ptr op)
{ return gs_initmatrix(igs);
}
/* <matrix> defaultmatrix <matrix> */
private int
zdefaultmatrix(register os_ptr op)
{ gs_matrix mat;
gs_defaultmatrix(igs, &mat);
return write_matrix(op, &mat);
}
/* <matrix> currentmatrix <matrix> */
private int
zcurrentmatrix(register os_ptr op)
{ gs_matrix mat;
gs_currentmatrix(igs, &mat);
return write_matrix(op, &mat);
}
/* <matrix> setmatrix - */
private int
zsetmatrix(register os_ptr op)
{ gs_matrix mat;
int code = read_matrix(op, &mat);
if ( code < 0 )
return code;
if ( (code = gs_setmatrix(igs, &mat)) < 0 )
return code;
pop(1);
return 0;
}
/* <tx> <ty> translate - */
/* <tx> <ty> <matrix> translate <matrix> */
private int
ztranslate(register os_ptr op)
{ int code;
float trans[2];
if ( (code = num_params(op, 2, trans)) >= 0 )
{ code = gs_translate(igs, trans[0], trans[1]);
if ( code < 0 )
return code;
}
else /* matrix operand */
{ gs_matrix mat;
/* The num_params failure might be a stack underflow. */
check_op(2);
if ( (code = num_params(op - 1, 2, trans)) < 0 ||
(code = gs_make_translation(trans[0], trans[1], &mat)) < 0 ||
(code = write_matrix(op, &mat)) < 0
)
{ /* Might be a stack underflow. */
check_op(3);
return code;
}
op[-2] = *op;
}
pop(2);
return code;
}
/* <sx> <sy> scale - */
/* <sx> <sy> <matrix> scale <matrix> */
private int
zscale(register os_ptr op)
{ int code;
float scale[2];
if ( (code = num_params(op, 2, scale)) >= 0 )
{ code = gs_scale(igs, scale[0], scale[1]);
if ( code < 0 )
return code;
}
else /* matrix operand */
{ gs_matrix mat;
/* The num_params failure might be a stack underflow. */
check_op(2);
if ( (code = num_params(op - 1, 2, scale)) < 0 ||
(code = gs_make_scaling(scale[0], scale[1], &mat)) < 0 ||
(code = write_matrix(op, &mat)) < 0
)
{ /* Might be a stack underflow. */
check_op(3);
return code;
}
op[-2] = *op;
}
pop(2);
return code;
}
/* <angle> rotate - */
/* <angle> <matrix> rotate <matrix> */
private int
zrotate(register os_ptr op)
{ int code;
float ang;
if ( (code = num_params(op, 1, &ang)) >= 0 )
{ code = gs_rotate(igs, ang);
if ( code < 0 )
return code;
}
else /* matrix operand */
{ gs_matrix mat;
/* The num_params failure might be a stack underflow. */
check_op(1);
if ( (code = num_params(op - 1, 1, &ang)) < 0 ||
(code = gs_make_rotation(ang, &mat)) < 0 ||
(code = write_matrix(op, &mat)) < 0
)
{ /* Might be a stack underflow. */
check_op(2);
return code;
}
op[-1] = *op;
}
pop(1);
return code;
}
/* <matrix> concat - */
private int
zconcat(register os_ptr op)
{ gs_matrix mat;
int code = read_matrix(op, &mat);
if ( code < 0 ) return code;
code = gs_concat(igs, &mat);
if ( code < 0 ) return code;
pop(1);
return 0;
}
/* <matrix1> <matrix2> <matrix> concatmatrix <matrix> */
private int
zconcatmatrix(register os_ptr op)
{ gs_matrix m1, m2, mp;
int code;
if ( (code = read_matrix(op - 2, &m1)) < 0 ||
(code = read_matrix(op - 1, &m2)) < 0 ||
(code = gs_matrix_multiply(&m1, &m2, &mp)) < 0 ||
(code = write_matrix(op, &mp)) < 0
) return code;
op[-2] = *op;
pop(2);
return code;
}
/* <x> <y> transform <xt> <yt> */
/* <x> <y> <matrix> transform <xt> <yt> */
private int
ztransform(register os_ptr op)
{ return common_transform(op, gs_transform, gs_point_transform);
}
/* <dx> <dy> dtransform <dxt> <dyt> */
/* <dx> <dy> <matrix> dtransform <dxt> <dyt> */
private int
zdtransform(register os_ptr op)
{ return common_transform(op, gs_dtransform, gs_distance_transform);
}
/* <xt> <yt> itransform <x> <y> */
/* <xt> <yt> <matrix> itransform <x> <y> */
private int
zitransform(register os_ptr op)
{ return common_transform(op, gs_itransform, gs_point_transform_inverse);
}
/* <dxt> <dyt> idtransform <dx> <dy> */
/* <dxt> <dyt> <matrix> idtransform <dx> <dy> */
private int
zidtransform(register os_ptr op)
{ return common_transform(op, gs_idtransform, gs_distance_transform_inverse);
}
/* Common logic for [i][d]transform */
private int near
common_transform(register os_ptr op,
int (*ptproc)(P4(gs_state *, floatp, floatp, gs_point *)),
int (*matproc)(P4(floatp, floatp, const gs_matrix *, gs_point *)))
{ float opxy[2];
gs_point pt;
int code;
/* Optimize for the non-matrix case */
switch ( r_type(op) )
{
case t_real:
opxy[1] = op->value.realval;
break;
case t_integer:
opxy[1] = op->value.intval;
break;
case t_array: /* might be a matrix */
{ gs_matrix mat;
gs_matrix *pmat = &mat;
if ( (code = read_matrix(op, pmat)) < 0 ||
(code = num_params(op - 1, 2, opxy)) < 0 ||
(code = (*matproc)(opxy[0], opxy[1], pmat, &pt)) < 0
)
{ /* Might be a stack underflow. */
check_op(3);
return code;
}
op--;
pop(1);
goto out;
}
default:
return_op_typecheck(op);
}
switch ( r_type(op - 1) )
{
case t_real:
opxy[0] = (op - 1)->value.realval;
break;
case t_integer:
opxy[0] = (op - 1)->value.intval;
break;
default:
return_op_typecheck(op - 1);
}
if ( (code = (*ptproc)(igs, opxy[0], opxy[1], &pt)) < 0 )
return code;
out: make_real(op - 1, pt.x);
make_real(op, pt.y);
return 0;
}
/* <matrix> <inv_matrix> invertmatrix <inv_matrix> */
private int
zinvertmatrix(register os_ptr op)
{ gs_matrix m;
int code;
if ( (code = read_matrix(op - 1, &m)) < 0 ||
(code = gs_matrix_invert(&m, &m)) < 0 ||
(code = write_matrix(op, &m)) < 0
) return code;
op[-1] = *op;
pop(1);
return code;
}
/* ------ Initialization procedure ------ */
BEGIN_OP_DEFS(zmatrix_op_defs) {
{"1concat", zconcat},
{"2dtransform", zdtransform},
{"3concatmatrix", zconcatmatrix},
{"1currentmatrix", zcurrentmatrix},
{"1defaultmatrix", zdefaultmatrix},
{"2idtransform", zidtransform},
{"0initmatrix", zinitmatrix},
{"2invertmatrix", zinvertmatrix},
{"2itransform", zitransform},
{"1rotate", zrotate},
{"2scale", zscale},
{"1setmatrix", zsetmatrix},
{"2transform", ztransform},
{"2translate", ztranslate},
END_OP_DEFS(0) }
|