Subversion Repositories filter_foundry

Rev

Rev 463 | Rev 479 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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