Subversion Repositories filter_foundry

Rev

Rev 166 | Rev 182 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 toby 1
/*
18 toby 2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
171 dmarschall 3
    Copyright (C) 2003-2019 Toby Thain, toby@telegraphics.com.au
2 toby 4
 
5
    This program is free software; you can redistribute it and/or modify
106 dmarschall 6
    it under the terms of the GNU General Public License as published by
2 toby 7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
9
 
10
    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
    GNU General Public License for more details.
14
 
106 dmarschall 15
    You should have received a copy of the GNU General Public License
2 toby 16
    along with this program; if not, write to the Free Software
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
19
 
20
#include "ff.h"
94 toby 21
 
2 toby 22
#include "symtab.h"
23
#include "node.h"
24
#include "funcs.h"
8 toby 25
#include "y.tab.h"
2 toby 26
 
128 dmarschall 27
// Strict compatibility to Filter Factory
28
//#define YUV_FILTER_FACTORY
29
 
2 toby 30
extern value_type var[];
94 toby 31
extern int nplanes,varused[],cnvused;
2 toby 32
extern struct node *tree[];
66 toby 33
 
34
// points to first row, first column of selection image data
35
// this is used by src() and cnv() functions to access pixels
36
unsigned char *image_ptr;
37
 
2 toby 38
int needinput;
150 dmarschall 39
int state_changing_funcs_used;
2 toby 40
 
41
/* get prepared to evaluate expression trees--
42
   this assumes that tree[] array is already set up
43
   return TRUE if we're ready to go
44
*/
45
 
94 toby 46
// minimum setup required when formulae have not changed,
47
// and a new preview is to be generated. (Called by recalc_preview())
48
void evalinit(){
142 dmarschall 49
        int i;
50
 
94 toby 51
        INITRANDSEED();
142 dmarschall 52
 
53
        for (i=0; i<NUM_CELLS; ++i) {
54
                cell[i] = 0;
55
        }
94 toby 56
}
57
 
58
// full setup for evaluation, called when formulae have changed.
2 toby 59
Boolean setup(FilterRecordPtr pb){
60
        int i;
61
 
117 dmarschall 62
        // Attention: If you introduce new variables, please define them also in lexer.l
53 toby 63
        var['X'] = pb->filterRect.right - pb->filterRect.left;
64
        var['Y'] = pb->filterRect.bottom - pb->filterRect.top;
2 toby 65
        var['Z'] = nplanes;
66
        var['D'] = 1024;
67
        var['M'] = ff_c2m(var['X'],var['Y'])/2;
68
 
69
        /* initialise flags for tracking special variable usage */
71 toby 70
        for(i = 0; i < 0x100; i++)
2 toby 71
                varused[i] = 0;
94 toby 72
        needall = cnvused = 0;
71 toby 73
        for(i = 0; i < nplanes; ++i){
2 toby 74
//char s[100];sprintf(s,"expr[%d]=%#x",i,expr[i]);dbg(s);
71 toby 75
                if( tree[i] || (tree[i] = parseexpr(expr[i])) )
150 dmarschall 76
                        checkvars(tree[i],varused,&cnvused,&needall,&state_changing_funcs_used);
2 toby 77
                else
78
                        break;
79
        }
94 toby 80
        needinput = ( cnvused || needall
71 toby 81
                || varused['r'] || varused['g'] || varused['b'] || varused['a']
82
                || varused['i'] || varused['u'] || varused['v'] || varused['c'] );
106 dmarschall 83
 
166 dmarschall 84
        /*
85
         * Workaround for PSPI for GIMP:
86
         * Filters will only fill the bottom of the picture, not the whole canvas.
87
         * The reason is that OnContinue/main.c:RequestNext() processes the image in chunks,
88
         * and probably due to a bug, PSPI only applies the image data of the last chunk.
89
         * Workaround applied in FF 1.7: If the host signature is 'GIMP', then we set
90
         * needall=1 to disable chunked processing.
91
         */
92
        #if MAC_ENV
93
        if (pb->hostSig == 'GIMP') needall = true;
94
        #else
95
        if (pb->hostSig == 'PMIG') needall = true;
96
        #endif
97
 
94 toby 98
        evalinit();
2 toby 99
        return i==nplanes; /* all required expressions parse OK */
100
}
101
 
102
void evalpixel(unsigned char *outp,unsigned char *inp){
103
        int f,k;
104
 
105
        if(needinput){
106
                var['r'] = inp[0];
107
                var['g'] = nplanes > 1 ? inp[1] : 0;
108
                var['b'] = nplanes > 2 ? inp[2] : 0;
109
                var['a'] = nplanes > 3 ? inp[3] : 0;
106 dmarschall 110
 
128 dmarschall 111
#ifdef YUV_FILTER_FACTORY
112
                if(varused['i']) var['i'] = (( 76L*var['r'])+(150L*var['g'])+( 29L*var['b']))/256; // range: [0..254]
113
                if(varused['u']) var['u'] = ((-19L*var['r'])+(-37L*var['g'])+( 56L*var['b']))/256; // range: [-55..55]
114
                if(varused['v']) var['v'] = (( 78L*var['r'])+(-65L*var['g'])+(-13L*var['b']))/256; // range: [-77..77]
115
#else
116
                // These formulas are more accurate, e.g. pure white has now i=255 instead of 254
117
 
118
                // For Y, the definition is Y := 0.299R + 0.587G + 0.114B
119
                if(varused['i']) var['i'] = ((    299L*var['r'])+(    587L*var['g'])+(    114L*var['b']))/1000;    // range: [0..255]
120
 
121
                // For U, the definition is U := (B-Y) * 0.493; the range would be [-111..111]
122
                // Filter Factory divided it by 2, resulting in a range of [-55..55].
123
                // Due to compatibility reasons, we adopt that behavior.
124
                if(varused['u']) var['u'] = ((-147407L*var['r'])+(-289391L*var['g'])+( 436798L*var['b']))/2000000; // range: [-55..55]
125
 
126
                // For V, the definition is V := (R-Y) * 0.877; the range would be [-156..156]
127
                // Filter Factory divided it by 2, resulting in a range of [-78..78].
128
                // Due to compatibility reasons, we adopt that behavior.
129
                if(varused['v']) var['v'] = (( 614777L*var['r'])+(-514799L*var['g'])+(- 99978L*var['b']))/2000000; // range: [-78..78]
130
#endif
131
 
2 toby 132
        }
66 toby 133
        if(varused['d']) var['d'] = ff_c2d(var['X']/2 - var['x'], var['Y']/2 - var['y']);
134
        if(varused['m']) var['m'] = ff_c2m(var['X']/2 - var['x'], var['Y']/2 - var['y']);
106 dmarschall 135
 
66 toby 136
        for(k = 0; k < nplanes; ++k){
2 toby 137
                if(needinput)
138
                        var['c'] = inp[k];
139
                var['z'] = k;
117 dmarschall 140
                var['p'] = k; // undocumented alias of z
2 toby 141
                f = eval(tree[k]);
150 dmarschall 142
                if (outp)
143
                        outp[k] = f<0 ? 0 : (f>255 ? 255 : f); // clamp channel value to 0-255
2 toby 144
        }
145
}
146
 
53 toby 147
/* Zoom and filter image.
66 toby 148
 * Parameters:  pb          - Photoshop Filter parameter block
149
 *              progress    - whether to use Photoshop's progress bar
53 toby 150
 *                            (not appropriate during preview)
66 toby 151
 *              filterRect  - rectangle (within pb->inRect)
53 toby 152
 *                            of area to be filtered. This may not correspond
153
 *                            to pb->filterRect, it may be just a piece.
66 toby 154
 *              outPiece    - rectangle defining scaled output buffer.
155
 *                            In case of zoomed preview, this is physically
156
 *                            scaled FROM filterRect (or equal to filterRect
157
 *                            for unscaled 1:1 filtering).
53 toby 158
 *              outData     - pointer to output data buffer
159
 *              outRowBytes - row stride of output data buffer
106 dmarschall 160
 *              zoom        - pixel scale factor (both horiz & vert)
53 toby 161
 *                            e.g. 2.0 means 1 output pixel per 2 input pixels.
162
 */
2 toby 163
 
154 dmarschall 164
//#define PROCESS_SCALED_GAP_DEBUG 1
165
 
53 toby 166
OSErr process_scaled(FilterRecordPtr pb, Boolean progress,
66 toby 167
                          Rect *filterPiece, Rect *outPiece,
53 toby 168
                          void *outData, long outRowBytes, double zoom){
2 toby 169
        unsigned char *inrow,*outrow,*outp;
154 dmarschall 170
        int j,i;
2 toby 171
        long t,ticks = TICKCOUNT();
154 dmarschall 172
        double x,y,k;
66 toby 173
 
154 dmarschall 174
        #ifdef PROCESS_SCALED_GAP_DEBUG
175
        char s[0x200];
176
        int last_good_x, last_good_y;
177
        last_good_y = -1;
178
        #endif
179
 
106 dmarschall 180
        // find base pointer to selection image data
181
        image_ptr = (unsigned char*)pb->inData
182
                                + (long)pb->inRowBytes*(pb->filterRect.top - pb->inRect.top)
183
                                + (long)nplanes*(pb->filterRect.left - pb->inRect.left);
66 toby 184
 
150 dmarschall 185
        if (state_changing_funcs_used) {
154 dmarschall 186
                // Fill gap between selection/filter top border and top preview zoomed border
187
                for (y = 0; y < filterPiece->top - pb->filterRect.top; ++y) {
188
                        #ifdef PROCESS_SCALED_GAP_DEBUG
189
                        if (state_changing_funcs_used && last_good_y != (int)floor(y-1)) { sprintf(s, "Non calculated Y gap, type 1: %f, last good %d, zoom %f\n", y, last_good_y, zoom); simplealert(s); } last_good_y = (int)floor(y);
190
                        #endif
191
 
150 dmarschall 192
                        var['y'] = y;
193
                        inrow = image_ptr + (long)(y)*pb->inRowBytes;
154 dmarschall 194
 
195
                        #ifdef PROCESS_SCALED_GAP_DEBUG
196
                        last_good_x = -1;
197
                        #endif
198
 
199
                        for (x = 0; x < pb->filterRect.right - pb->filterRect.left; ++x) {
200
                                #ifdef PROCESS_SCALED_GAP_DEBUG
201
                                if (state_changing_funcs_used && last_good_x != (int)floor(x-1)) { sprintf(s, "Non calculated X gap, type 1a: %f, last good %d, zoom %f\n", x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(x);
202
                                #endif
203
 
150 dmarschall 204
                                var['x'] = x;
205
                                evalpixel(NULL,inrow + (long)(x)*nplanes);
206
                        }
154 dmarschall 207
 
208
                        #ifdef PROCESS_SCALED_GAP_DEBUG
209
                        if (var['x'] != var['X']-1) { sprintf(s, "X not at right border #1: x=%d, X=%d\n", var['x'], var['X']); simplealert(s); }
210
                        #endif
150 dmarschall 211
                }
212
        }
213
 
106 dmarschall 214
        // j indexes scaled output rows
215
        for( j = outPiece->top, outrow = (unsigned char*)outData, y = filterPiece->top - pb->filterRect.top ;
216
                 j < outPiece->bottom ; ++j, outrow += outRowBytes, y += zoom )
217
        {
154 dmarschall 218
                #ifdef PROCESS_SCALED_GAP_DEBUG
219
                if (state_changing_funcs_used && last_good_y != (int)floor(y-1)) { sprintf(s, "Non calculated Y gap, type 1: %f, last good %d, zoom %f\n", y, last_good_y, zoom); simplealert(s); } last_good_y = (int)floor(y);
220
                #endif
221
 
106 dmarschall 222
                var['y'] = y;  // index of corresponding *input* row, top of selection == 0
223
                inrow = image_ptr + (long)y*pb->inRowBytes;
66 toby 224
 
154 dmarschall 225
                #ifdef PROCESS_SCALED_GAP_DEBUG
226
                last_good_x = -1;
227
                #endif
228
 
150 dmarschall 229
                if (state_changing_funcs_used) {
154 dmarschall 230
                        // Fill gap between left selection/image border and left border of the preview-area
231
                        for (x = 0; x < filterPiece->left - pb->filterRect.left; ++x) {
232
                                #ifdef PROCESS_SCALED_GAP_DEBUG
233
                                if (state_changing_funcs_used && last_good_x != (int)floor(x-1)) { sprintf(s, "Non calculated X gap, type 2a: %f, last good %d, zoom %f\n", x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(x);
234
                                #endif
235
 
150 dmarschall 236
                                var['x'] = x;
237
                                evalpixel(NULL,inrow + (long)(x)*nplanes);
238
                        }
239
                }
240
 
106 dmarschall 241
                // i indexes scaled output columns
242
                for( outp = outrow, i = outPiece->left, x = filterPiece->left - pb->filterRect.left ;
243
                         i < outPiece->right ; ++i, outp += nplanes, x += zoom )
53 toby 244
                {
154 dmarschall 245
                        #ifdef PROCESS_SCALED_GAP_DEBUG
246
                        if (state_changing_funcs_used && last_good_x != (int)floor(x-1)) { sprintf(s, "Non calculated X gap, type 2b: %f, last good %d, zoom %f\n", x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(x);
247
                        #endif
248
 
106 dmarschall 249
                        var['x'] = x;  // index of corresponding *input* column, left of selection == 0
154 dmarschall 250
                        evalpixel(outp,inrow + (long)(x)*nplanes); /* var['x'] & var['y'] are implicit parameters */
150 dmarschall 251
 
252
                        if (state_changing_funcs_used) {
154 dmarschall 253
                                // Fill gap between each X-preview-pixel (discarded pixels due to zoom level)
254
                                for (k = x+1; floor(k) < floor(x + zoom); ++k) {
255
                                        #ifdef PROCESS_SCALED_GAP_DEBUG
256
                                        if (state_changing_funcs_used && last_good_x != (int)floor(k-1)) { sprintf(s, "Non calculated X gap, type 2c: %f (x=%f), last good %d, zoom %f\n", k, x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(k);
257
                                        #endif
258
 
150 dmarschall 259
                                        var['x'] = k;
154 dmarschall 260
                                        if (var['x'] >= var['X']) break;
150 dmarschall 261
                                        evalpixel(NULL,inrow + (long)(k)*nplanes);
262
                                }
263
                        }
106 dmarschall 264
                }
66 toby 265
 
154 dmarschall 266
                if (state_changing_funcs_used) {
267
                        // Fill gap between right border of preview-area and right border of selection/image border
268
 
269
                        for (x = var['x']+1; x < pb->filterRect.right - pb->filterRect.left; ++x) {
270
                                #ifdef PROCESS_SCALED_GAP_DEBUG
271
                                if (state_changing_funcs_used && last_good_x != (int)floor(x-1)) { sprintf(s, "Non calculated X gap, type 2d: %f, last good %d, zoom %f\n", x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(x);
272
                                #endif
273
 
274
                                var['x'] = x;
275
                                evalpixel(NULL,inrow + (long)(x)*nplanes);
150 dmarschall 276
                        }
154 dmarschall 277
 
278
                        #ifdef PROCESS_SCALED_GAP_DEBUG
279
                        if (var['x'] != var['X']-1) { sprintf(s, "X not at right border #2: x=%d, X=%d\n", var['x'], var['X']); simplealert(s);}
280
                        #endif
281
 
155 dmarschall 282
                        // Fill gap between each Y-preview-pixel (discarded pixels due to zoom level),
283
                        // but not for the very last line, since we are then done drawing our preview picture
284
                        for (k = y+1; floor(k) < floor(y + zoom) && (j < outPiece->bottom-1); ++k) {
154 dmarschall 285
                                #ifdef PROCESS_SCALED_GAP_DEBUG
286
                                if (state_changing_funcs_used && last_good_y != (int)floor(k-1)) { sprintf(s, "Non calculated Y gap, type 3a: %f (y=%f), last good %d, zoom %f\n", k, y, last_good_y, zoom); simplealert(s); } last_good_y = (int)floor(k);
287
                                #endif
288
 
150 dmarschall 289
                                var['y'] = k;
154 dmarschall 290
                                if (var['y'] >= var['Y']) break;
150 dmarschall 291
                                inrow = image_ptr + (long)(k)*pb->inRowBytes;
154 dmarschall 292
 
293
                                #ifdef PROCESS_SCALED_GAP_DEBUG
294
                                last_good_x = -1;
295
                                #endif
296
 
297
                                for (x = 0; x < pb->filterRect.right - pb->filterRect.left; ++x) {
298
                                        #ifdef PROCESS_SCALED_GAP_DEBUG
299
                                        if (state_changing_funcs_used && last_good_x != (int)floor(x-1)) { sprintf(s, "Non calculated X gap, type 3b: %f, last good %d, zoom %f\n", x, last_good_x, zoom); simplealert(s); } last_good_x = (int)floor(x);
300
                                        #endif
301
 
150 dmarschall 302
                                        var['x'] = x;
303
                                        evalpixel(NULL,inrow + (long)(x)*nplanes);
304
                                }
154 dmarschall 305
 
306
                                #ifdef PROCESS_SCALED_GAP_DEBUG
307
                                if (var['x'] != var['X']-1) {sprintf(s, "X not at right border #3: x=%d, X=%d\n", var['x'], var['X']); simplealert(s);}
308
                                #endif
150 dmarschall 309
                        }
310
                }
311
 
106 dmarschall 312
                if(progress){
313
                        if((t = TICKCOUNT()) > ticks){
314
                                ticks = t + TICKS_SEC/4;
315
                                if(pb->abortProc())
316
                                        return userCanceledErr;
317
                                else
318
                                        pb->progressProc((int)y - pb->filterRect.top,pb->filterRect.bottom - pb->filterRect.top);
2 toby 319
                        }
106 dmarschall 320
                }
2 toby 321
#ifdef MAC_ENV
106 dmarschall 322
                else{
323
                        /* to stop delays during typing of expressions,
324
                           immediately abort preview calculation if a key or mouse has been pressed. */
325
                        EventRecord event;
326
                        if(EventAvail(mDownMask|keyDownMask|autoKeyMask,&event))
327
                                return userCanceledErr;
328
                }
2 toby 329
#endif
106 dmarschall 330
        }
2 toby 331
 
154 dmarschall 332
        // Note for state_changing_funcs_used: We will not evaluate the gap between bottom border
333
        // of preview area and the bottom border of the selection/filter, because there are no
334
        // preview output pixels left that could be affected by these gap evaluations.
335
 
2 toby 336
        return noErr;
337
}