Subversion Repositories filter_foundry

Rev

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

Rev Author Line No. Line
259 daniel-mar 1
/*
268 daniel-mar 2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
312 daniel-mar 3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
503 daniel-mar 4
    Copyright (C) 2018-2022 Daniel Marschall, ViaThinkSoft
259 daniel-mar 5
 
312 daniel-mar 6
    This program is free software; you can redistribute it and/or modify
7
    it under the terms of the GNU General Public License as published by
8
    the Free Software Foundation; either version 2 of the License, or
9
    (at your option) any later version.
259 daniel-mar 10
 
312 daniel-mar 11
    This program is distributed in the hope that it will be useful,
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU General Public License for more details.
259 daniel-mar 15
 
312 daniel-mar 16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
259 daniel-mar 19
*/
20
 
21
//#include <stdio.h>
22
//#include <sound.h>
23
 
24
#include "ff.h"
25
 
444 daniel-mar 26
#include "str.h"
259 daniel-mar 27
#include "node.h"
28
#include "funcs.h"
29
#include "y.tab.h"
30
#include "scripting.h"
31
#include <math.h>
32
#include "PIBufferSuite.h"
33
 
34
// GIMP (PSPI) and IrfanView preserve neither *data(gdata), nor pb->parameters between invocations!
35
// For debugging, we can simulate it here
36
//#define DEBUG_SIMULATE_GIMP
37
 
264 daniel-mar 38
// Used to find out which host signatures and memory settings a plugin host has
39
//#define SHOW_HOST_DEBUG
40
 
480 daniel-mar 41
// Here are working variables:
259 daniel-mar 42
struct node *tree[4];
492 daniel-mar 43
TCHAR *err[4];
259 daniel-mar 44
int errpos[4],errstart[4],nplanes,cnvused,chunksize,toprow;
381 daniel-mar 45
uint8_t slider[8]; // this is the "working data". We cannot always use gdata->parm, because parm will not be loaded if a AFS file is read
46
char* expr[4]; // this is the "working data". We cannot always use gdata->parm, because parm will not be loaded if a AFS file is read
301 daniel-mar 47
value_type cell[NUM_CELLS];
480 daniel-mar 48
 
49
// this is the only memory area that keeps preserved by Photoshop:
259 daniel-mar 50
globals_t *gdata;
51
FilterRecordPtr gpb;
52
 
53
#ifdef MAC_ENV
483 daniel-mar 54
#define HINSTANCE HANDLE
55
#define hDllInstance NULL /* fake this Windows-only global */
259 daniel-mar 56
#endif
57
 
58
#ifdef WIN_ENV
59
#include "manifest.h"
60
#endif
61
 
62
extern struct sym_rec predefs[];
63
extern int nplanes,varused[];
64
 
65
int checkandinitparams(Handle params);
66
 
67
// MPW MrC requires prototype
68
DLLEXPORT MACPASCAL
69
void ENTRYPOINT(short selector,FilterRecordPtr pb,intptr_t *data,short *result);
70
 
276 daniel-mar 71
unsigned long get_parm_hash(PARM_T *parm) {
259 daniel-mar 72
        unsigned long hash;
73
        int i;
74
 
393 daniel-mar 75
        hash = djb2(parm->szCategory);
76
        hash += djb2(parm->szTitle);
77
        hash += djb2(parm->szCopyright);
78
        hash += djb2(parm->szAuthor);
79
        for (i = 0; i < 4; i++) hash += djb2(parm->szMap[i]);
80
        for (i = 0; i < 8; i++) hash += djb2(parm->szCtl[i]);
81
        for (i = 0; i < 4; i++) hash += djb2(parm->szFormula[i]);
259 daniel-mar 82
 
83
        return hash;
84
}
85
 
444 daniel-mar 86
size_t get_temp_afs(LPTSTR outfilename, Boolean isStandalone, PARM_T *parm) {
87
        char* atempdir;
373 daniel-mar 88
        int hash;
444 daniel-mar 89
        size_t i, j;
90
        TCHAR out[MAX_PATH + 1];
91
        char ahash[20];
373 daniel-mar 92
 
444 daniel-mar 93
        // out = getenv("TMP")
94
        atempdir = getenv("TMP");
95
        for (i = 0; i < strlen(atempdir); i++) {
96
                out[i] = (TCHAR)atempdir[i];
97
                out[i + 1] = 0;
98
        }
99
 
373 daniel-mar 100
        #ifdef WIN_ENV
444 daniel-mar 101
        if (xstrlen(out) > 0) xstrcat(out, TEXT("\\"));
373 daniel-mar 102
        #else
444 daniel-mar 103
        if (xstrlen(out) > 0) xstrcat(out, TEXT("/"));
373 daniel-mar 104
        #endif
105
 
106
        hash = (isStandalone) ? get_parm_hash(parm) : 0;
444 daniel-mar 107
 
108
        // sprintf(outfilename, "%sFilterFoundry%d.afs", atempdir, hash);
109
        xstrcat(out, TEXT("FilterFoundry"));
110
        _itoa(hash, &ahash[0], 10);
111
        for (i = 0; i < strlen(ahash); i++) {
112
                j = xstrlen(out);
113
                out[j] = (TCHAR)ahash[i];
114
                out[j + 1] = 0;
115
        }
116
        xstrcat(out, TEXT(".afs"));
117
        if (outfilename != NULL) {
118
                xstrcpy(outfilename, out);
119
        }
120
        return xstrlen(out);
373 daniel-mar 121
}
122
 
461 daniel-mar 123
void CALLBACK FakeRundll32(HWND hwnd, HINSTANCE hinst, LPSTR lpszCmdLine, int nCmdShow) {
463 daniel-mar 124
        UNREFERENCED_PARAMETER(hwnd);
125
        UNREFERENCED_PARAMETER(hinst);
126
        UNREFERENCED_PARAMETER(lpszCmdLine);
127
        UNREFERENCED_PARAMETER(nCmdShow);
461 daniel-mar 128
 
462 daniel-mar 129
        /*
463 daniel-mar 130
        char* tmp = (char*)malloc(512);
461 daniel-mar 131
        if (tmp != 0) {
132
                sprintf(tmp, "hwnd: %p\nhinst: %p\nlpszCmdLine: %s\nCmdShow: %d", (void*)(hwnd), (void*)(hinst), lpszCmdLine, nCmdShow);
133
                MessageBoxA(0, tmp, 0, 0);
134
                free(tmp);
135
        }
462 daniel-mar 136
        */
461 daniel-mar 137
 
492 daniel-mar 138
        simplealert_id(MSG_RUNDLL_ERR_ID);
139
 
461 daniel-mar 140
        return;
141
}
142
 
479 daniel-mar 143
void CreateDataPointer(intptr_t* data) {
144
        // Register "gdata" that contains the PARM information and other things which need to be persistant
145
        // and preserve them in *data
146
        // This memory allocation is never freed, because the filter can always be invoked again.
147
        // The memory allocation will be kept for the lifetime of the Photoshop process and
148
        // freed together with the application termination.
149
 
150
        // We have at least 5 options to allocate memory:
480 daniel-mar 151
 
152
        // (Method 1)
481 daniel-mar 153
        // 1. The deprecated Standard Buffer Suite (pb->bufferProcs) - works fine!
486 daniel-mar 154
        /*
155
        BufferID tempId;
156
        if (gpb->bufferProcs->allocateProc(sizeof(globals_t), &tempId) != noErr) {
157
                *data = NULL;
158
        }
159
        else {
160
                *data = (void*)gpb->bufferProcs->lockProc(tempId, true);
161
                if (*data) memset((void*)*data, 0, sizeof(globals_t));
162
        }
163
        */
480 daniel-mar 164
 
165
        // (Method 2) *DOES NOT WORK*
166
        // 2. The recommended buffer suite (kPSBufferSuite),
167
        //    It does not work, since it causes memory corruption when the filter is invoked a second time.
168
        //    Probably the BufferSuite cannot be used to share data between filter invocations?
169
        //    Also, the buffer suite is only available in a Adobe Photoshop host.
486 daniel-mar 170
        /*
171
        FFBuffer buf;
172
        newBuffer(&buf, sizeof(globals_t));
173
        *data = (intptr_t)lockBuffer(&buf);
174
        if (*data) memset((void*)*data, 0, sizeof(globals_t));
175
        */
480 daniel-mar 176
 
177
        // (Method 3)
479 daniel-mar 178
        // 3. Using malloc(), which works also fine and is more independent from the host. It is also easier.
179
        //    However, we do not know how malloc() is implemented, and it might cause problems if the
180
        //    DLL is unloaded between invocations.
486 daniel-mar 181
        /*
182
        *data = (intptr_t)malloc(sizeof(globals_t));
183
        if (*data) memset((void*)*data, 0, sizeof(globals_t));
184
        */
480 daniel-mar 185
 
186
        // (Method 4)
479 daniel-mar 187
        // 4. Using PLUGIN.DLL:NewPtr(). This does FilterFactory 3.0.4, but requires an Adobe host.
480 daniel-mar 188
        //    In Plugin.dll, the function NewPtr() and NewPtrClear() are implemented as GlobalAlloc/GlobalLock.
189
        //    Nothing special.
190
 
191
        // (Method 5)
479 daniel-mar 192
        // 5. Using GlobalAlloc/GlobalLock. This does FilterFactory 3.00 (Flags GHND = GMEM_MOVEABLE and GMEM_ZEROINIT).
193
        //    This is Windows dependant. (However, on Mac we will just call NewPtr.)
194
        //    GlobalAlloc and LocalAlloc are equal in 32-bit windows. The memory allocation is NOT global anymore,
195
        //    instead it is on the private heap of the application. (Therefore we do not cause a leak when
196
        //    Photoshop is closed).
480 daniel-mar 197
        // In Filter Foundry 1.7.0.17 we define a function called NewPtrClear, which is natively supported by Mac,
198
        // and in Windows it will be implemented using GlobalAlloc/GlobalLock.
479 daniel-mar 199
        *data = (intptr_t)NewPtrClear(sizeof(globals_t));
200
}
201
 
461 daniel-mar 202
DLLEXPORT MACPASCAL
259 daniel-mar 203
void ENTRYPOINT(short selector, FilterRecordPtr pb, intptr_t *data, short *result){
204
        static Boolean wantdialog = false;
205
        static Boolean premiereWarnedOnce = false;
393 daniel-mar 206
 
284 daniel-mar 207
        #ifdef SHOW_HOST_DEBUG
208
        char* tmp;
209
        #endif
268 daniel-mar 210
 
211
        #ifdef WIN_ENV
259 daniel-mar 212
        // For Windows, we use an activation context to enforce that our Manifest resource will
213
        // be used. This allows us to use Visual Styles, even if the host application does not
214
        // support it.
215
        ManifestActivationCtx manifestVars;
216
        BOOL activationContextUsed;
268 daniel-mar 217
        #endif
259 daniel-mar 218
 
284 daniel-mar 219
        // ---------------------------------------------------------------------
220
 
221
        EnterCodeResource();
222
 
283 daniel-mar 223
        #ifdef WIN_ENV
483 daniel-mar 224
        activationContextUsed = ActivateManifest((HMODULE)hDllInstance, 1, &manifestVars);
225
        #endif
226
 
227
        #ifdef WIN_ENV
461 daniel-mar 228
        if ((intptr_t)result == SW_SHOWDEFAULT) {
283 daniel-mar 229
                // When the 8BF file is analyzed with VirusTotal.com, it will invoke each
230
                // exported function by calling
461 daniel-mar 231
                // loaddll64.exe 'C:\Users\user\Desktop\attachment.dll'
232
                //        ==>  rundll32.exe C:\Users\user\Desktop\attachment.dll,PluginMain
233
                //           ==> C:\Windows\system32\WerFault.exe -u -p 6612 -s 480
234
                //
283 daniel-mar 235
                // But RunDLL32 requires following signature:
461 daniel-mar 236
                //    void __stdcall EntryPoint(HWND hwnd,      HINSTANCE hinst,    LPSTR lpszCmdLine, int nCmdShow);
237
                // Our signature is:
238
                //    void           PluginMain(short selector, FilterRecordPtr pb, intptr_t *data,    short *result);
239
                // 
283 daniel-mar 240
                // Obviously, this will cause an Exception. (It crashes at *result=e because result is 0xA)
241
                // Here is the problem: The crash will be handled by WerFault.exe inside the
242
                // VirusTotal virtual machine. WerFault connects to various servers (9 DNS resolutions!) and does
243
                // a lot of weird things, but VirusTotal thinks that our plugin does all that stuff,
244
                // and so they mark our plugin as "malware"!
245
                // This is a problem with VirusTotal! It shall not assume that WerFault.exe actions are our actions!
246
                // Even processes like "MicrosoftEdgeUpdate.exe" and "SpeechRuntime.exe" are reported to be our
247
                // actions, although they have nothing to do with us!
248
                // See https://www.virustotal.com/gui/file/1f1012c567208186be455b81afc1ee407ae6476c197d633c70cc70929113223a/behavior
393 daniel-mar 249
                //
461 daniel-mar 250
                // TODO: Usually, The first 64KB of address space are always invalid. However, in Win32s (Windows 3.11), the
251
                //       variable "result" is <=0xFFFF ! Let's just hope that it is never 0x000A (SW_SHOWDEFAULT),
252
                //       otherwise we have a problem here!
253
                // I don't understand why this works! Aren't we __cdecl and rundll expected __stdcall? But why is the parameter order correct and not reversed?
463 daniel-mar 254
                FakeRundll32((HWND)(intptr_t)selector, (HINSTANCE)pb, (LPSTR)data, (int)(intptr_t)result);
483 daniel-mar 255
                goto endmain;
283 daniel-mar 256
        }
483 daniel-mar 257
        else {
258
                // will be changed if an error happens
259
                *result = noErr;
260
        }
283 daniel-mar 261
        #endif
393 daniel-mar 262
 
264 daniel-mar 263
        #ifdef SHOW_HOST_DEBUG
284 daniel-mar 264
        tmp = (char*)malloc(512);
459 daniel-mar 265
        sprintf(tmp, "Host signature: '%c%c%c%c' (%d)\nMaxSpace32 = %d\nMaxSpace64 = %lld\nNum buffer procs: %d", (pb->hostSig >> 24) & 0xFF, (pb->hostSig >> 16) & 0xFF, (pb->hostSig >> 8) & 0xFF, pb->hostSig & 0xFF, pb->hostSig, pb->maxSpace, pb->maxSpace64, pb->bufferProcs == 0 ? -999/*About has no BufferProcs*/ : pb->bufferProcs->numBufferProcs);
284 daniel-mar 266
        simplealert(tmp);
424 daniel-mar 267
        free(tmp);
264 daniel-mar 268
        #endif
259 daniel-mar 269
 
270
        if (pb->hostSig == HOSTSIG_ADOBE_PREMIERE) {
491 daniel-mar 271
                // DM 19.07.2021 : Tried running the 8BF file in Adobe Premiere 5 + Win98 (yes, that's possible,
396 daniel-mar 272
                // and there is even a FilterFactory for Premiere!),
259 daniel-mar 273
                // but it crashes in evalpixel() where there is write-access to the "outp".
491 daniel-mar 274
                // DM 24.04.2022 : On Adobe Premiere 6 + Win10, the filter opens sometimes (and sometimes crashes inside DialogBoxParam),
275
                // but the filter is not applied when you click "OK" (because it crashes internally; only the debugger sees it)...
259 daniel-mar 276
                // Probably the canvas structure is different (maybe it contains frames to achieve transitions?)
277
                if (!premiereWarnedOnce) {
492 daniel-mar 278
                        simplealert_id(MSG_PREMIERE_COMPAT_ID);
259 daniel-mar 279
                }
280
                premiereWarnedOnce = true;
281
                *result = errPlugInHostInsufficient;
483 daniel-mar 282
                goto endmain;
259 daniel-mar 283
        }
284
 
285
        #ifdef DEBUG_SIMULATE_GIMP
286
        *data = 0;
287
        pb->parameters = pb->handleProcs->newProc(1);
288
        #endif
289
 
483 daniel-mar 290
        gpb = pb; // required for CreateDataPointer()
480 daniel-mar 291
 
259 daniel-mar 292
        if (selector != filterSelectorAbout && !*data) {
479 daniel-mar 293
                // The filter was never called before. We allocate (zeroed) memory now.
294
                // Note: gdata->standalone and gdata->parmloaded will be set later
295
                CreateDataPointer(data);
296
                if (!*data) {
297
                        *result = memFullErr;
483 daniel-mar 298
                        goto endmain;
259 daniel-mar 299
                }
300
        }
301
 
479 daniel-mar 302
        gdata = (globals_t*)*data;
303
 
259 daniel-mar 304
        nplanes = MIN(pb->planes,4);
305
 
306
        switch (selector){
307
        case filterSelectorAbout:
308
                if (!gdata) {
479 daniel-mar 309
                        // This is a temporary gdata structure just for the About dialog!
310
                        // Not to be confused with the "real" gdata during the filter invocation (containing more data).
259 daniel-mar 311
                        gdata = (globals_t*)malloc(sizeof(globals_t));
312
                        if (!gdata) break;
411 daniel-mar 313
                        gdata->hWndMainDlg = (HWND)((PlatformData*)((AboutRecordPtr)pb)->platformData)->hwnd; // so that simplealert() works
498 daniel-mar 314
                        gdata->standalone = gdata->parmloaded = readPARMresource((HMODULE)hDllInstance, NULL);
309 daniel-mar 315
                        if (gdata->parmloaded && (gdata->parm.cbSize != PARM_SIZE) && (gdata->parm.cbSize != PARM_SIZE_PREMIERE) && (gdata->parm.cbSize != PARM_SIG_MAC)) {
316
                                if (gdata->obfusc) {
492 daniel-mar 317
                                        simplealert_id(MSG_INCOMPATIBLE_OBFUSCATION_ID);
309 daniel-mar 318
                                }
319
                                else {
492 daniel-mar 320
                                        simplealert_id(MSG_INVALID_PARAMETER_DATA_ID);
309 daniel-mar 321
                                }
322
                        }
323
                        else {
324
                                DoAbout((AboutRecordPtr)pb);
325
                        }
259 daniel-mar 326
                        free(gdata);
327
                        gdata = NULL;
328
                } else {
329
                        DoAbout((AboutRecordPtr)pb);
330
                }
331
                break;
332
        case filterSelectorParameters:
333
                wantdialog = true;
334
                break;
335
        case filterSelectorPrepare:
410 daniel-mar 336
                gdata->hWndMainDlg = 0;
259 daniel-mar 337
                DoPrepare(pb);
338
                init_symtab(predefs); // ready for parser calls
339
                init_trigtab();
340
                break;
341
        case filterSelectorStart:
342
                if (HAS_BIG_DOC(pb)) {
343
                        // The BigDocument structure is required if the document is larger than 30,000 pixels
344
                        // It deprecates imageSize, filterRect, inRect, outRect, maskRect, floatCoord, and wholeSize.
345
                        // By setting it to nonzero, we communicate to Photoshop that we support the BigDocument structure.
346
                        pb->bigDocumentData->PluginUsing32BitCoordinates = true;
347
                }
348
 
349
                /* initialise the parameter handle that Photoshop keeps for us */
350
                if(!pb->parameters)
351
                        pb->parameters = PINEWHANDLE(1); // don't set initial size to 0, since some hosts (e.g. GIMP/PSPI) are incompatible with that.
352
 
482 daniel-mar 353
                if (!pb->parameters) {
483 daniel-mar 354
                        *result = memFullErr;
482 daniel-mar 355
                }
356
                else
357
                {
358
                        wantdialog |= checkandinitparams(pb->parameters);
259 daniel-mar 359
 
482 daniel-mar 360
                        /* wantdialog = false means that we never got a Parameters call, so we're not supposed to ask user */
361
                        if (wantdialog && (!gdata->standalone || gdata->parm.popDialog)) {
362
                                if (maindialog(pb)) {
363
                                        if (!host_preserves_parameters()) {
364
                                                /* Workaround for GIMP/PSPI, to avoid that formulas vanish when you re-open the main window.
365
                                                   The reason is a bug in PSPI: The host should preserve the value of pb->parameters, which PSPI does not do.
366
                                                   Also, all global variables are unloaded, so the plugin cannot preserve any data.
367
                                                   Workaround in FF 1.7: If the host GIMP is detected, then a special mode will be activated.
368
                                                   This mode saves the filter data into a temporary file "FilterFoundryXX.afs" and loads it
369
                                                   when the window is opened again. */
370
                                                   // Workaround: Save settings in "FilterFoundryXX.afs" if the host does not preserve pb->parameters
371
                                                TCHAR outfilename[MAX_PATH + 1];
372
                                                StandardFileReply sfr;
373
                                                char* bakexpr[4];
374
                                                int i;
259 daniel-mar 375
 
482 daniel-mar 376
                                                sfr.sfGood = true;
377
                                                sfr.sfReplacing = true;
378
                                                sfr.sfType = PS_FILTER_FILETYPE;
259 daniel-mar 379
 
482 daniel-mar 380
                                                get_temp_afs(&outfilename[0], gdata->standalone, &gdata->parm);
259 daniel-mar 381
 
482 daniel-mar 382
                                                xstrcpy(sfr.sfFile.szName, outfilename);
383
                                                #ifdef WIN_ENV
384
                                                sfr.nFileExtension = (WORD)(xstrlen(outfilename) - strlen(".afs") + 1);
385
                                                #endif
386
                                                sfr.sfScript = 0; // FIXME: is that ok?
264 daniel-mar 387
 
482 daniel-mar 388
                                                // We only want the parameters (ctl,map) in the temporary .afs file
389
                                                // It is important to remove the expressions, otherwise they would be
390
                                                // revealed in the temporary files.
391
                                                for (i = 0; i < 4; i++) {
392
                                                        bakexpr[i] = expr[i]; // moved out of the if-definition to make the compiler happy
393
                                                }
394
                                                if (gdata->standalone) {
395
                                                        expr[0] = _strdup("r");
396
                                                        expr[1] = _strdup("g");
397
                                                        expr[2] = _strdup("b");
398
                                                        expr[3] = _strdup("a");
399
                                                }
264 daniel-mar 400
 
482 daniel-mar 401
                                                savefile_afs_pff_picotxt(&sfr);
264 daniel-mar 402
 
482 daniel-mar 403
                                                if (gdata->standalone) {
404
                                                        for (i = 0; i < 4; i++) {
405
                                                                if (expr[i]) free(expr[i]);
406
                                                                expr[i] = bakexpr[i];
407
                                                        }
377 daniel-mar 408
                                                }
264 daniel-mar 409
                                        }
482 daniel-mar 410
                                        else {
411
                                                /* update stored parameters from new user settings */
412
                                                if (pb->parameters)
413
                                                        saveparams_afs_pff(pb->parameters);
414
                                        }
259 daniel-mar 415
                                }
482 daniel-mar 416
                                else
483 daniel-mar 417
                                        *result = userCanceledErr;
482 daniel-mar 418
                        }
419
                        wantdialog = false;
259 daniel-mar 420
                }
421
 
483 daniel-mar 422
                if(*result == noErr){
259 daniel-mar 423
                        if(setup(pb)){
424
                                DoStart(pb);
425
                        }else{
483 daniel-mar 426
                                *result = filterBadParameters;
259 daniel-mar 427
                        }
428
                }
429
                break;
430
        case filterSelectorContinue:
483 daniel-mar 431
                *result = DoContinue(pb);
259 daniel-mar 432
                break;
433
        case filterSelectorFinish:
434
                DoFinish(pb);
435
                break;
436
        default:
483 daniel-mar 437
                *result = filterBadParameters;
259 daniel-mar 438
        }
439
 
483 daniel-mar 440
endmain:
259 daniel-mar 441
 
476 daniel-mar 442
        // TODO: Question: Is that OK to call this every invocation, or should it be only around UI stuff?
259 daniel-mar 443
        #ifdef WIN_ENV
444
        if (activationContextUsed) DeactivateManifest(&manifestVars);
445
        #endif
446
 
447
        ExitCodeResource();
448
}
449
 
450
int checkandinitparams(Handle params){
456 daniel-mar 451
        int i;
452
        Boolean bUninitializedParams;
259 daniel-mar 453
        Boolean showdialog;
454
 
455
        if (!host_preserves_parameters()) {
456
                // Workaround: Load settings in "FilterFoundryXX.afs" if host does not preserve pb->parameters
444 daniel-mar 457
                TCHAR outfilename[MAX_PATH + 1];
259 daniel-mar 458
                Boolean isStandalone;
459
                StandardFileReply sfr;
264 daniel-mar 460
                char* bakexpr[4];
461
 
259 daniel-mar 462
                sfr.sfGood = true;
463
                sfr.sfReplacing = true;
464
                sfr.sfType = PS_FILTER_FILETYPE;
465
 
466
                // We need to set gdata->standalone after loadfile(), but we must call readPARMresource() before loadfile()
467
                // Reason: readPARMresource() reads parameters from the DLL while loadfile() reads parameters from the AFS file
468
                // But loadfile() will reset gdata->standalone ...
498 daniel-mar 469
                isStandalone = readPARMresource((HMODULE)hDllInstance, NULL);
309 daniel-mar 470
                if (isStandalone && (gdata->parm.cbSize != PARM_SIZE) && (gdata->parm.cbSize != PARM_SIZE_PREMIERE) && (gdata->parm.cbSize != PARM_SIG_MAC)) {
471
                        if (gdata->obfusc) {
492 daniel-mar 472
                                simplealert_id(MSG_INCOMPATIBLE_OBFUSCATION_ID);
309 daniel-mar 473
                        }
474
                        else {
492 daniel-mar 475
                                simplealert_id(MSG_INVALID_PARAMETER_DATA_ID);
309 daniel-mar 476
                        }
477
                        gdata->parmloaded = false;
478
                        return false;
479
                }
259 daniel-mar 480
 
373 daniel-mar 481
                get_temp_afs(&outfilename[0], isStandalone, &gdata->parm);
259 daniel-mar 482
 
444 daniel-mar 483
                xstrcpy(sfr.sfFile.szName, outfilename);
264 daniel-mar 484
                #ifdef WIN_ENV
444 daniel-mar 485
                sfr.nFileExtension = (WORD)(xstrlen(outfilename) - strlen(".afs") + 1);
264 daniel-mar 486
                #endif
487
                sfr.sfScript = 0; // FIXME: is that ok?
259 daniel-mar 488
 
264 daniel-mar 489
                // We only want the parameters (ctl,map) in the temporary .afs file
490
                if (isStandalone) {
377 daniel-mar 491
                        for (i = 0; i < 4; i++) {
492
                                bakexpr[i] = my_strdup(expr[i]);
493
                        }
264 daniel-mar 494
                }
495
 
498 daniel-mar 496
                if (loadfile(&sfr, NULL)) {
264 daniel-mar 497
                        gdata->standalone = gdata->parmloaded = isStandalone;
498
 
499
                        if (isStandalone) {
377 daniel-mar 500
                                for (i = 0; i < 4; i++) {
501
                                        if (expr[i]) free(expr[i]);
502
                                        expr[i] = bakexpr[i];
503
                                }
259 daniel-mar 504
                        }
264 daniel-mar 505
 
506
                        return true;
259 daniel-mar 507
                }
508
        }
509
 
498 daniel-mar 510
        if( (bUninitializedParams = !(params && readparams_afs_pff(params, NULL))) ){
259 daniel-mar 511
                /* either the parameter handle was uninitialised,
512
                   or the parameter data couldn't be read; set default values */
513
 
514
                // see if saved parameters exist
498 daniel-mar 515
                gdata->standalone = gdata->parmloaded = readPARMresource((HMODULE)hDllInstance, NULL);
309 daniel-mar 516
                if (gdata->parmloaded && (gdata->parm.cbSize != PARM_SIZE) && (gdata->parm.cbSize != PARM_SIZE_PREMIERE) && (gdata->parm.cbSize != PARM_SIG_MAC)) {
517
                        if (gdata->obfusc) {
492 daniel-mar 518
                                simplealert_id(MSG_INCOMPATIBLE_OBFUSCATION_ID);
309 daniel-mar 519
                        }
520
                        else {
492 daniel-mar 521
                                simplealert_id(MSG_INVALID_PARAMETER_DATA_ID);
309 daniel-mar 522
                        }
523
                        gdata->parmloaded = false;
524
                        return false;
525
                }
259 daniel-mar 526
 
527
                if(!gdata->standalone){
528
                        // no saved settings (not standalone)
529
                        for(i = 0; i < 8; ++i)
456 daniel-mar 530
                                slider[i] = (uint8_t)(i*10+100);
259 daniel-mar 531
                        for(i = 0; i < 4; ++i)
532
                                if(expr[i])
533
                                        free(expr[i]);
534
                        if(gpb->imageMode == plugInModeRGBColor){
535
                                expr[0] = _strdup("r");
536
                                expr[1] = _strdup("g");
537
                                expr[2] = _strdup("b");
538
                                expr[3] = _strdup("a");
539
                        }else{
540
                                expr[0] = _strdup("c");
541
                                expr[1] = _strdup("c");
542
                                expr[2] = _strdup("c");
543
                                expr[3] = _strdup("c");
544
                        }
545
                }
546
        }
547
 
548
        // let scripting system change parameters, if we're scripted;
549
        // user may want to force display of dialog during scripting playback
550
        switch (ReadScriptParamsOnRead()) {
551
        case SCR_SHOW_DIALOG:
552
                showdialog = true;
553
                break;
554
        case SCR_HIDE_DIALOG:
555
                showdialog = false;
556
                break;
557
        default:
558
        case SCR_NO_SCRIPT:
559
                showdialog = bUninitializedParams;
560
                break;
561
        }
562
 
482 daniel-mar 563
        if (params) saveparams_afs_pff(params);
259 daniel-mar 564
 
565
        return showdialog;
566
}
567
 
568
Boolean host_preserves_parameters() {
569
        #ifdef DEBUG_SIMULATE_GIMP
570
        return false;
571
        #endif
572
 
573
        if (gpb->hostSig == HOSTSIG_GIMP) return false;
574
        if (gpb->hostSig == HOSTSIG_IRFANVIEW) return false;
575
 
576
        // We just assume the other hosts preserve the parameters
577
        return true;
578
}
579
 
580
int64_t maxspace(){
581
        // Please see "Hosts.md" for details about the MaxSpace implementations of tested plugins
582
 
583
        // Plugins that don't support MaxSpace64 shall set the field to zero; then we will use MaxSpace instead.
584
        // Also check "gpb->bufferProcs->numBufferProcs" to see if 64 bit API is available
585
        if ((gpb->bufferProcs->numBufferProcs >= 8) && (gpb->maxSpace64 > 0)) {
586
                uint64_t maxSpace64 = gpb->maxSpace64;
587
 
588
                return maxSpace64;
589
        } else {
590
                // Note: If maxSpace gets converted from Int32 to unsigned int, we can reach up to 4 GB RAM. However, after this, there will be a wrap to 0 GB again.
591
                unsigned int maxSpace32 = (unsigned int) gpb->maxSpace;
592
                uint64_t maxSpace64 = maxSpace32;
593
 
594
                if (gpb->hostSig == HOSTSIG_IRFANVIEW) maxSpace64 *= 1024; // IrfanView is giving Kilobytes instead of Bytes
595
                //if (gpb->hostSig == HOSTSIG_SERIF_PHOTOPLUS) maxSpace64 *= 1024; // TODO: Serif PhotoPlus also gives Kilobytes instead of bytes. But since it uses not a unique host signature, there is nothing we can do???
596
 
597
                return maxSpace64;
598
        }
599
}
600
 
601
Boolean maxspace_available() {
602
        // Please see "Hosts.md" for details about the MaxSpace implementations of tested plugins
603
 
604
        // GIMP PSPI sets MaxSpace to hardcoded 100 MB
605
        if (gpb->hostSig == HOSTSIG_GIMP) return false;
606
 
607
        // HOSTSIG_PAINT_NET sets MaxSpace to hardcoded 1 GB, see https://github.com/0xC0000054/PSFilterPdn/issues/5
608
        // Comment by the host author "This was done to avoid any compatibility issues with plugins handling 2 GB - 1"
609
        if (gpb->hostSig == HOSTSIG_PAINT_NET) return false;
610
 
611
        return true;
612
}
613
 
614
void DoPrepare(FilterRecordPtr pb){
615
        int i;
616
 
617
        for(i = 4; i--;){
618
                expr[i] = NULL;
619
                tree[i] = NULL;
482 daniel-mar 620
                err[i] = NULL;
259 daniel-mar 621
        }
622
 
623
        // Commented out by DM, 18 Dec 2018:
624
        // This code did not work on systems with 8 GB RAM:
625
        /*
626
        long space = (pb->maxSpace*9)/10; // don't ask for more than 90% of available memory
627
 
628
        maxSpace = 512L<<10; // this is a wild guess, actually
629
        if(maxSpace > space)
630
                        maxSpace = space;
631
        pb->maxSpace = maxSpace;
632
        */
633
 
634
        // New variant:
635
        if (maxspace_available()) {
481 daniel-mar 636
                // don't ask for more than 90% of available memory
637
                int64 ninetyPercent = (int64)ceil((maxspace() / 10.) * 9);
638
                if ((gpb->bufferProcs->numBufferProcs >= 8) && (gpb->maxSpace64 > 0)) {
639
                        pb->maxSpace64 = ninetyPercent;
640
                }
641
                if (ninetyPercent <= 0x7FFFFFFF) {
642
                        pb->maxSpace = (int32)ninetyPercent;
643
                }
259 daniel-mar 644
        }
645
}
646
 
456 daniel-mar 647
void RequestNext(FilterRecordPtr pb){
259 daniel-mar 648
        /* Request next block of the image */
649
 
650
        pb->inLoPlane = pb->outLoPlane = 0;
651
        pb->inHiPlane = pb->outHiPlane = nplanes-1;
652
 
653
        if (HAS_BIG_DOC(pb)) {
654
                // if any of the formulae involve random access to image pixels,
655
                // ask for the entire image
656
                if (needall) {
657
                        SETRECT(BIGDOC_IN_RECT(pb), 0, 0, BIGDOC_IMAGE_SIZE(pb).h, BIGDOC_IMAGE_SIZE(pb).v);
658
                } else {
659
                        // TODO: This does not work with GIMP. So, if we are using GIMP, we should
660
                        //       somehow always use "needall=true", and/or find out why this doesn't work
661
                        //       with GIMP.
662
 
663
                        // otherwise, process the filtered area, by chunksize parts
664
                        BIGDOC_IN_RECT(pb).left = BIGDOC_FILTER_RECT(pb).left;
665
                        BIGDOC_IN_RECT(pb).right = BIGDOC_FILTER_RECT(pb).right;
666
                        BIGDOC_IN_RECT(pb).top = (int32)toprow;
667
                        BIGDOC_IN_RECT(pb).bottom = (int32)MIN(toprow + chunksize, BIGDOC_FILTER_RECT(pb).bottom);
668
 
669
                        if (cnvused) {
670
                                // cnv() needs one extra pixel in each direction
671
                                if (BIGDOC_IN_RECT(pb).left > 0)
672
                                        --BIGDOC_IN_RECT(pb).left;
673
                                if (BIGDOC_IN_RECT(pb).right < BIGDOC_IMAGE_SIZE(pb).h)
674
                                        ++BIGDOC_IN_RECT(pb).right;
675
                                if (BIGDOC_IN_RECT(pb).top > 0)
676
                                        --BIGDOC_IN_RECT(pb).top;
677
                                if (BIGDOC_IN_RECT(pb).bottom < BIGDOC_IMAGE_SIZE(pb).v)
678
                                        ++BIGDOC_IN_RECT(pb).bottom;
679
                        }
680
                }
681
                BIGDOC_OUT_RECT(pb) = BIGDOC_FILTER_RECT(pb);
682
                /*
683
                {char s[0x100];sprintf(s,"RequestNext needall=%d inRect=(%d,%d,%d,%d) filterRect=(%d,%d,%d,%d)",
684
                                needall,
685
                                BIGDOC_IN_RECT(pb).left,BIGDOC_IN_RECT(pb).top,BIGDOC_IN_RECT(pb).right,BIGDOC_IN_RECT(pb).bottom,
686
                                BIGDOC_FILTER_RECT(pb).left,BIGDOC_FILTER_RECT(pb).top,BIGDOC_FILTER_RECT(pb).right,BIGDOC_FILTER_RECT(pb).bottom);dbg(s);}
687
                */
688
        } else {
689
                // if any of the formulae involve random access to image pixels,
690
                // ask for the entire image
691
                if (needall) {
692
                        SETRECT(IN_RECT(pb), 0, 0, IMAGE_SIZE(pb).h, IMAGE_SIZE(pb).v);
693
                }
694
                else {
695
                        // TODO: This does not work with GIMP. So, if we are using GIMP, we should
696
                        //       somehow always use "needall=true", and/or find out why this doesn't work
697
                        //       with GIMP.
698
 
699
                        // otherwise, process the filtered area, by chunksize parts
700
                        IN_RECT(pb).left = FILTER_RECT(pb).left;
701
                        IN_RECT(pb).right = FILTER_RECT(pb).right;
702
                        IN_RECT(pb).top = (int16)toprow;
703
                        IN_RECT(pb).bottom = (int16)MIN(toprow + chunksize, FILTER_RECT(pb).bottom);
704
 
705
                        if (cnvused) {
706
                                // cnv() needs one extra pixel in each direction
707
                                if (IN_RECT(pb).left > 0)
708
                                        --IN_RECT(pb).left;
709
                                if (IN_RECT(pb).right < IMAGE_SIZE(pb).h)
710
                                        ++IN_RECT(pb).right;
711
                                if (IN_RECT(pb).top > 0)
712
                                        --IN_RECT(pb).top;
713
                                if (IN_RECT(pb).bottom < IMAGE_SIZE(pb).v)
714
                                        ++IN_RECT(pb).bottom;
715
                        }
716
                }
717
                OUT_RECT(pb) = FILTER_RECT(pb);
718
                /*
719
                {char s[0x100];sprintf(s,"RequestNext needall=%d inRect=(%d,%d,%d,%d) filterRect=(%d,%d,%d,%d)",
720
                                needall,
721
                                IN_RECT(pb).left,IN_RECT(pb).top,IN_RECT(pb).right,IN_RECT(pb).bottom,
722
                                FILTER_RECT(pb).left,FILTER_RECT(pb).top,FILTER_RECT(pb).right,FILTER_RECT(pb).bottom);dbg(s);}
723
                */
724
        }
725
}
726
 
727
void DoStart(FilterRecordPtr pb){
264 daniel-mar 728
        /* Global variable "needall": if src() or rad() functions are used, random access to the image data is required,
729
           so we must request the entire image in a single chunk, otherwise we will use chunksize "CHUNK_ROWS". */
259 daniel-mar 730
        if (HAS_BIG_DOC(pb)) {
731
                chunksize = needall ? (BIGDOC_FILTER_RECT(pb).bottom - BIGDOC_FILTER_RECT(pb).top) : CHUNK_ROWS;
732
                toprow = BIGDOC_FILTER_RECT(pb).top;
733
        } else {
734
                chunksize = needall ? (FILTER_RECT(pb).bottom - FILTER_RECT(pb).top) : CHUNK_ROWS;
735
                toprow = FILTER_RECT(pb).top;
736
        }
456 daniel-mar 737
        RequestNext(pb);
259 daniel-mar 738
}
739
 
740
OSErr DoContinue(FilterRecordPtr pb){
741
        OSErr e = noErr;
742
        long outoffset;
743
 
744
        if (HAS_BIG_DOC(pb)) {
745
                VRect fr;
746
                if (needall) {
747
                        fr = BIGDOC_FILTER_RECT(pb);  // filter whole selection at once
748
                } else if (cnvused) {
749
                        // we've requested one pixel extra all around
750
                        // (see RequestNext()), just for access purposes. But filter
751
                        // original selection only.
752
                        fr.left = BIGDOC_FILTER_RECT(pb).left;
753
                        fr.right = BIGDOC_FILTER_RECT(pb).right;
754
                        fr.top = toprow;
755
                        fr.bottom = MIN(toprow + chunksize, BIGDOC_FILTER_RECT(pb).bottom);
756
                } else {  // filter whatever portion we've been given
757
                        fr = BIGDOC_IN_RECT(pb);
758
                }
759
 
760
                outoffset = (long)pb->outRowBytes * (fr.top - BIGDOC_OUT_RECT(pb).top)
761
                        + (long)nplanes * (fr.left - BIGDOC_OUT_RECT(pb).left);
762
 
763
                if (!(e = process_scaled_bigdoc(pb, true, fr, fr,
764
                        (Ptr)pb->outData + outoffset, pb->outRowBytes, 1.)))
765
                {
766
                        toprow += chunksize;
767
                        if (toprow < BIGDOC_FILTER_RECT(pb).bottom)
456 daniel-mar 768
                                RequestNext(pb);
259 daniel-mar 769
                        else {
770
                                SETRECT(BIGDOC_IN_RECT(pb), 0, 0, 0, 0);
771
                                BIGDOC_OUT_RECT(pb) = BIGDOC_MASK_RECT(pb) = BIGDOC_IN_RECT(pb);
772
                        }
773
                }
774
        } else {
775
                Rect fr;
776
                if (needall) {
777
                        fr = FILTER_RECT(pb);  // filter whole selection at once
778
                } else if (cnvused) {
779
                        // we've requested one pixel extra all around
780
                        // (see RequestNext()), just for access purposes. But filter
781
                        // original selection only.
782
                        fr.left = FILTER_RECT(pb).left;
783
                        fr.right = FILTER_RECT(pb).right;
784
                        fr.top = toprow;
785
                        fr.bottom = MIN(toprow + chunksize, FILTER_RECT(pb).bottom);
786
                } else {  // filter whatever portion we've been given
787
                        fr = IN_RECT(pb);
788
                }
789
 
790
                outoffset = (long)pb->outRowBytes*(fr.top - OUT_RECT(pb).top)
791
                        + (long)nplanes*(fr.left - OUT_RECT(pb).left);
792
 
793
                if(!(e = process_scaled_olddoc(pb, true, fr, fr,
794
                        (Ptr)pb->outData+outoffset, pb->outRowBytes, 1.)))
795
                {
796
                        toprow += chunksize;
797
                        if(toprow < FILTER_RECT(pb).bottom)
456 daniel-mar 798
                                RequestNext(pb);
259 daniel-mar 799
                        else{
800
                                SETRECT(IN_RECT(pb),0,0,0,0);
801
                                OUT_RECT(pb) = MASK_RECT(pb) = IN_RECT(pb);
802
                        }
803
                }
804
        }
805
        return e;
806
}
807
 
808
void DoFinish(FilterRecordPtr pb){
809
        int i;
810
 
433 daniel-mar 811
        UNREFERENCED_PARAMETER(pb);
812
 
259 daniel-mar 813
        WriteScriptParamsOnRead();
814
 
815
        for(i = 4; i--;){
816
                freetree(tree[i]);
817
                if(expr[i]) free(expr[i]);
818
        }
819
}
379 daniel-mar 820
 
430 daniel-mar 821
InternalState saveInternalState() {
822
        InternalState ret;
379 daniel-mar 823
        int i;
824
 
825
        ret.bak_obfusc = gdata->obfusc;
826
        ret.bak_standalone = gdata->standalone;
827
        ret.bak_parmloaded = gdata->parmloaded;
828
        memcpy(&ret.bak_parm, &gdata->parm, sizeof(PARM_T));
829
        for (i = 0; i < 4; i++) ret.bak_expr[i] = my_strdup(expr[i]);
830
        for (i = 0; i < 8; i++) ret.bak_slider[i] = slider[i];
831
 
832
        return ret;
833
}
834
 
430 daniel-mar 835
void restoreInternalState(InternalState state) {
379 daniel-mar 836
        int i;
837
        gdata->obfusc = state.bak_obfusc;
838
        gdata->standalone = state.bak_standalone;
839
        gdata->parmloaded = state.bak_parmloaded;
840
        memcpy(&gdata->parm, &state.bak_parm, sizeof(PARM_T));
841
        for (i = 0; i < 4; i++) {
842
                if (expr[i]) free(expr[i]);
843
                expr[i] = state.bak_expr[i];
844
        }
845
        for (i = 0; i < 8; i++) {
846
                slider[i] = state.bak_slider[i];
847
        }
848
}