Subversion Repositories filter_foundry

Rev

Rev 390 | Rev 394 | 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 "ff.h"
  22.  
  23. #include "file_compat.h"
  24.  
  25. #ifdef MAC_ENV
  26. #include <Endian.h>
  27. #else
  28. int EndianS32_LtoN(int num) {
  29.         return ((num>>24)&0xff) +      // move byte 3 to byte 0
  30.                ((num<<8)&0xff0000) +   // move byte 1 to byte 2
  31.                ((num>>8)&0xff00) +     // move byte 2 to byte 1
  32.                ((num<<24)&0xff000000); // byte 0 to byte 3
  33. }
  34. #endif
  35.  
  36. enum{
  37.         BUFSIZE = 4L<<10,
  38.         MAXLINE = 0x200,
  39. };
  40.  
  41. Boolean readparams_afs_pff(Handle h,Boolean alerts,char **reason){
  42.         Boolean res = false;
  43.         char linebuf[MAXLINE+1],curexpr[MAXEXPR+1],*p,*dataend,*q;
  44.         char c;
  45.         int linecnt, lineptr, exprcnt;
  46.  
  47.         if(!h){
  48.                 *reason = _strdup("readparams: Null parameter handle.");
  49.                 return false;
  50.         }
  51.  
  52.         p = PILOCKHANDLE(h,false);
  53.         dataend = p + PIGETHANDLESIZE(h);
  54.  
  55.         q = curexpr;
  56.         linecnt = exprcnt = lineptr = 0;
  57.  
  58.         *reason = _strdup("File was too short.");
  59.         while(p < dataend){
  60.  
  61.                 c = *p++;
  62.  
  63.                 if(c==CR || c==LF){ /* detected end of line */
  64.  
  65.                         /* look ahead to see if we need to skip a line feed (DOS EOL convention) */
  66.                         if(c == CR && *p == LF && p < dataend)
  67.                                 ++p;
  68.  
  69.                         linebuf[lineptr] = 0; /* add terminating NUL to line buffer */
  70.  
  71.                         /* process complete line */
  72.                         if(linecnt==0){
  73.                                 if(strcmp(linebuf,"%RGB-1.0")){
  74.                                         if(alerts)
  75.                                                 *reason = _strdup("This doesn't look like a Filter Factory file (first line is not \"%RGB-1.0\").");
  76.                                         break;
  77.                                 }
  78.                         }else if(linecnt<=8){
  79.                                 slider[linecnt-1] = atoi(linebuf);
  80.                         }else{
  81.                                 if(lineptr){
  82.                                         /* it's not an empty line; append it to current expr string */
  83.                                         if( q+lineptr > curexpr+MAXEXPR ){
  84.                                                 *reason = _strdup("Found an expression longer than 1024 characters.");
  85.                                                 break;
  86.                                         }
  87.                                         q = cat(q,linebuf);
  88.                                 }else{
  89.                                         /* it's an empty line: we've completed the expr string */
  90.                                         if(expr[exprcnt])
  91.                                                 free(expr[exprcnt]);
  92.                                         *q = 0;
  93.                                         if(!(expr[exprcnt] = my_strdup(curexpr))){
  94.                                                 *reason = _strdup("Could not get memory for expression.");
  95.                                                 break;
  96.                                         }
  97.  
  98.                                         if(++exprcnt == 4){
  99.                                                 res = true;
  100.                                                 break; /* got everything we want */
  101.                                         }
  102.  
  103.                                         q = curexpr; /* empty current expr, ready for next one */
  104.                                 }
  105.                         }
  106.  
  107.                         ++linecnt;
  108.                         lineptr = 0;
  109.                 }else{
  110.                         /* store character */
  111.                         if(c=='\\'){ /* escape sequence */
  112.                                 if(p < dataend){
  113.                                         c = *p++;
  114.                                         switch(c){
  115.                                         case 'r':
  116.                                                 #if WIN_ENV
  117.                                                 c = CR;
  118.                                                 if (lineptr < MAXLINE)
  119.                                                         linebuf[lineptr++] = c;
  120.                                                 c = LF;
  121.                                                 #else
  122.                                                 c = CR;
  123.                                                 #endif
  124.                                                 break;
  125.                                         case '\\': break;
  126.                                         default:
  127.                                                 if(alerts) alertuser(_strdup("Warning:"),_strdup("Unknown escape sequence in input."));
  128.                                         }
  129.                                 }//else if(alerts) alertuser(_strdup("Warning:"),_strdup("truncated escape sequence ends input"));
  130.                         }
  131.  
  132.                         if(lineptr < MAXLINE)
  133.                                 linebuf[lineptr++] = c;
  134.                 }
  135.         }
  136.  
  137.         PIUNLOCKHANDLE(h);
  138.  
  139.         if (res) *reason = NULL; // no error
  140.         return res;
  141. }
  142.  
  143. void convert_premiere_to_photoshop(PARM_T* photoshop, PARM_T_PREMIERE* premiere) {
  144.         int i;
  145.  
  146.         photoshop->cbSize = sizeof(PARM_T);
  147.         photoshop->standalone = premiere->standalone;
  148.         for (i=0;i<8;++i)
  149.                 photoshop->val[i] = premiere->val[i];
  150.         photoshop->popDialog = premiere->popDialog;
  151.         photoshop->unknown1 = premiere->unknown1;
  152.         photoshop->unknown2 = premiere->unknown2;
  153.         photoshop->unknown3 = premiere->unknown3;
  154.         for (i=0;i<4;++i)
  155.                 photoshop->map_used[i] = premiere->map_used[i];
  156.         for (i=0;i<8;++i)
  157.                 photoshop->ctl_used[i] = premiere->ctl_used[i];
  158.         sprintf(photoshop->szCategory, "Filter Factory"); // Premiere plugins do not have a category attribute
  159.         photoshop->iProtected = 0; // Premiere plugins do not have a protect flag
  160.         memcpy((void*)photoshop->szTitle, (void*)premiere->szTitle, sizeof(photoshop->szTitle));
  161.         memcpy((void*)photoshop->szCopyright, (void*)premiere->szCopyright, sizeof(photoshop->szCopyright));
  162.         memcpy((void*)photoshop->szAuthor, (void*)premiere->szAuthor, sizeof(photoshop->szAuthor));
  163.         for (i=0;i<4;++i)
  164.                 memcpy((void*)photoshop->szMap[i], (void*)premiere->szMap[i], sizeof(photoshop->szMap[i]));
  165.         for (i=0;i<8;++i)
  166.                 memcpy((void*)photoshop->szCtl[i], (void*)premiere->szCtl[i], sizeof(photoshop->szCtl[i]));
  167.  
  168.         if (premiere->singleExpression) {
  169.                 memcpy((void*)photoshop->szFormula[0], (void*)premiere->szFormula[3], sizeof(photoshop->szFormula[3]));
  170.                 memcpy((void*)photoshop->szFormula[1], (void*)premiere->szFormula[3], sizeof(photoshop->szFormula[3]));
  171.                 memcpy((void*)photoshop->szFormula[2], (void*)premiere->szFormula[3], sizeof(photoshop->szFormula[3]));
  172.                 memcpy((void*)photoshop->szFormula[3], (void*)premiere->szFormula[3], sizeof(photoshop->szFormula[3]));
  173.         } else {
  174.                 memcpy((void*)photoshop->szFormula[0], (void*)premiere->szFormula[2], sizeof(photoshop->szFormula[2]));
  175.                 memcpy((void*)photoshop->szFormula[1], (void*)premiere->szFormula[1], sizeof(photoshop->szFormula[1]));
  176.                 memcpy((void*)photoshop->szFormula[2], (void*)premiere->szFormula[0], sizeof(photoshop->szFormula[0]));
  177.                 memcpy((void*)photoshop->szFormula[3], (void*)premiere->szFormula[3], sizeof(photoshop->szFormula[3]));
  178.         }
  179. }
  180.  
  181. char* _ffx_read_str(char** q) {
  182.         uint32_t len;
  183.         char* val;
  184.  
  185.         len = *((uint32_t*)*q);
  186.         *q += sizeof(uint32_t);
  187.         val = (char*)malloc(len + 1);
  188.         if (val != NULL) {
  189.                 memcpy(val, (char*)*q, len);
  190.                 val[len] = 0;
  191.         }
  192.         *q += len;
  193.         return val;
  194. }
  195.  
  196. Boolean readfile_ffx(StandardFileReply* sfr, char** reason) {
  197.         Handle h;
  198.         Boolean res = false;
  199.         FILEREF refnum;
  200.         uint32_t len;
  201.         char* val;
  202.         int format_version = -1;
  203.         int i;
  204.  
  205.         if (FSpOpenDF(&sfr->sfFile, fsRdPerm, &refnum) == noErr) {
  206.                 if ((h = readfileintohandle(refnum))) {
  207.                         char* q = (char*)PILOCKHANDLE(h, false);
  208.  
  209.                         len = *((uint32_t*)q);
  210.                         if (len == 6) {
  211.                                 val = _ffx_read_str(&q);
  212.                                 if (strcmp(val, "FFX1.0") == 0) format_version = 10;
  213.                                 else if (strcmp(val, "FFX1.1") == 0) format_version = 11;
  214.                                 else if (strcmp(val, "FFX1.2") == 0) format_version = 12;
  215.                                 free(val);
  216.                                 if (format_version > 0) {
  217.                                         simplewarning(_strdup("Attention! You are loading a \"Filters Unlimited\" file. Please note that Filter Foundry only implements the basic Filter Factory functions. Therefore, most \"Filters Unlimited\" filters won't work with Filter Foundry."));
  218.  
  219.                                         val = _ffx_read_str(&q);
  220.                                         strcpy(gdata->parm.szTitle, val);
  221.                                         free(val);
  222.  
  223.                                         val = _ffx_read_str(&q);
  224.                                         strcpy(gdata->parm.szCategory, val);
  225.                                         free(val);
  226.  
  227.                                         val = _ffx_read_str(&q);
  228.                                         strcpy(gdata->parm.szAuthor, val);
  229.                                         free(val);
  230.  
  231.                                         val = _ffx_read_str(&q);
  232.                                         strcpy(gdata->parm.szCopyright, val);
  233.                                         free(val);
  234.  
  235.                                         // Channels I, R, G, B, A
  236.                                         for (i = 0; i < 4; i++) {
  237.                                                 val = _ffx_read_str(&q);
  238.                                                 if (i == 0) {
  239.                                                         char* val2 = _ffx_read_str(&q);
  240.                                                         if (strcmp(val, "0") != 0) {
  241.                                                                 // "Intro channel" existing
  242.                                                                 // C++ wrong warning: Using uninitialized memory "val2" (C6001)
  243.                                                                 #pragma warning(suppress : 6001)
  244.                                                                 char* combined = (char*)malloc(strlen(val) + strlen(",") + strlen(val2) + 1);
  245.                                                                 if (combined != NULL) {
  246.                                                                         sprintf(combined, "%s,%s", val, val2);
  247.                                                                         free(val);
  248.                                                                         free(val2);
  249.                                                                         val = combined;
  250.                                                                 }
  251.                                                         }
  252.                                                         else {
  253.                                                                 free(val);
  254.                                                                 val = val2;
  255.                                                         }
  256.                                                 }
  257.                                                 if (strlen(val) >= sizeof(gdata->parm.szFormula[i])) {
  258.                                                         if (i == 0) {
  259.                                                                 simplealert(_strdup("Attention! The formula for channel I/R was too long (longer than 1023 characters) and was truncated."));
  260.                                                         }
  261.                                                         else if (i == 1) {
  262.                                                                 simplealert(_strdup("Attention! The formula for channel G was too long (longer than 1023 characters) and was truncated."));
  263.                                                         }
  264.                                                         else if (i == 2) {
  265.                                                                 simplealert(_strdup("Attention! The formula for channel B was too long (longer than 1023 characters) and was truncated."));
  266.                                                         }
  267.                                                         else if (i == 3) {
  268.                                                                 simplealert(_strdup("Attention! The formula for channel A was too long (longer than 1023 characters) and was truncated."));
  269.                                                         }
  270.                                                         // C++ wrong warning: Buffer overflow (C6386)
  271.                                                         #pragma warning(suppress : 6386)
  272.                                                         val[sizeof(gdata->parm.szFormula[i]) - 1] = '\0';
  273.                                                 }
  274.                                                 expr[i] = my_strdup(val);
  275.                                                 strcpy(gdata->parm.szFormula[i], val);
  276.                                                 free(val);
  277.                                         }
  278.  
  279.                                         // Sliders
  280.                                         for (i = 0; i < 8; i++) {
  281.                                                 char* sliderName;
  282.                                                 val = _ffx_read_str(&q);
  283.                                                 sliderName = val;
  284.                                                 if (format_version >= 12) {
  285.                                                         // Format FFX1.2 has prefixes {S} = Slider, {C} = Checkbox, none = Slider
  286.                                                         if ((sliderName[0] == '{') && (sliderName[1] == 'S') && (sliderName[2] == '}')) sliderName += 3;
  287.                                                         else if ((sliderName[0] == '{') && (sliderName[1] == 'C') && (sliderName[2] == '}')) sliderName += 3;
  288.                                                 }
  289.                                                 strcpy(gdata->parm.szCtl[i], sliderName);
  290.                                                 free(val);
  291.                                                 gdata->parm.ctl_used[i] = (bool32_t)*((byte*)q);
  292.                                                 q += sizeof(byte);
  293.                                                 gdata->parm.val[i] = *((uint32_t*)q);
  294.                                                 slider[i] = *((uint32_t*)q);
  295.                                                 q += sizeof(uint32_t);
  296.                                         }
  297.  
  298.                                         // Maps (are not part of the format!)
  299.                                         strcpy(gdata->parm.szMap[0], "Map 0:");
  300.                                         strcpy(gdata->parm.szMap[1], "Map 1:");
  301.                                         strcpy(gdata->parm.szMap[2], "Map 2:");
  302.                                         strcpy(gdata->parm.szMap[3], "Map 3:");
  303.  
  304.                                         res = true;
  305.                                 }
  306.                         }
  307.                         PIDISPOSEHANDLE(h);
  308.                 }
  309.                 FSClose(refnum);
  310.         }
  311.  
  312.         if (res) gdata->obfusc = false;
  313.         return res;
  314. }
  315.  
  316. Boolean readfile_8bf(StandardFileReply *sfr,char **reason){
  317.         unsigned char magic[2];
  318.         FILECOUNT count;
  319.         Handle h;
  320.         Boolean res = false;
  321.         FILEREF refnum;
  322.  
  323.         if(FSpOpenDF(&sfr->sfFile,fsRdPerm,&refnum) == noErr){
  324.                 // check DOS EXE magic number
  325.                 count = 2;
  326.                 if(FSRead(refnum,&count,magic) == noErr /*&& magic[0]=='M' && magic[1]=='Z'*/){
  327.                         if(GetEOF(refnum,(FILEPOS*)&count) == noErr && count < 4096L<<10){ // sanity check file size < 4MiB (note that "Debug" builds can have approx 700 KiB while "Release" builds have approx 300 KiB)
  328.                                 if( (h = readfileintohandle(refnum)) ){
  329.                                         long *q = (long*)PILOCKHANDLE(h,false);
  330.  
  331.                                         // look for signature at start of valid PARM resource
  332.                                         // This signature is observed in Filter Factory standalones.
  333.                                         for( count /= 4 ; count >= PARM_SIZE/4 ; --count, ++q )
  334.                                         {
  335.  
  336.                                                 #ifdef MAC_ENV
  337.                                                 // Case #1: Mac is reading Windows (Win16/32/64) plugin
  338.                                                 if( ((EndianS32_LtoN(q[0]) == PARM_SIZE) ||
  339.                                                      (EndianS32_LtoN(q[0]) == PARM_SIZE_PREMIERE) ||
  340.                                                      (EndianS32_LtoN(q[0]) == PARM_SIG_MAC)) && EndianS32_LtoN(q[1]) == 1
  341.                                                         && (res = readPARM((char*)q, &gdata->parm, reason, 1 /*Windows format resource*/)) )
  342.                                                 {
  343.                                                         // these are the only numeric fields we *have* to swap
  344.                                                         // all the rest are flags which (if we're careful) will work in either ordering
  345.                                                         for(i = 0; i < 8; ++i)
  346.                                                                 slider[i] = EndianS32_LtoN(slider[i]);
  347.                                                 }
  348.                                                 #else
  349.                                                 // Case #2: Windows is reading a Windows plugin (if Resource API failed, e.g. Win64 tries to open NE file, Win32 tries to open 64bit file)
  350.                                                 if( ((q[0] == PARM_SIZE) ||
  351.                                                      (q[0] == PARM_SIZE_PREMIERE) ||
  352.                                                      (q[0] == PARM_SIG_MAC)) && q[1] == 1
  353.                                                         && (res = readPARM((char*)q, &gdata->parm, reason, 1/*fromwin*/)))
  354.                                                 {
  355.                                                 }
  356.  
  357.                                                 // Case #3: Windows is reading an old FilterFactory Mac file
  358.                                                 // Note: You must read the ".rsrc" resource fork, not the standalone binary!
  359.                                                 else if( ((EndianS32_LtoN(q[0]) == PARM_SIZE) ||
  360.                                                      (EndianS32_LtoN(q[0]) == PARM_SIZE_PREMIERE) ||
  361.                                                      (EndianS32_LtoN(q[0]) == PARM_SIG_MAC)) && EndianS32_LtoN(q[1]) == 1
  362.                                                         && (res = readPARM((char*)q, &gdata->parm, reason, 0/*fromwin=0 means that strings are PStrings instead of CStrings*/)) )
  363.                                                 {
  364.                                                         // Note: slider[i] = EndianS32_LtoN(slider[i]); will be done in readPARM()
  365.                                                         // All the rest are flags which (if we're careful) will work in either ordering
  366.  
  367.                                                         // Convert CR in the copyright field to CRLF.
  368.                                                         char copyrightCRLF[256];
  369.                                                         char* p = &copyrightCRLF[0];
  370.                                                         for (size_t i = 0; i < strlen(gdata->parm.szCopyright); i++) {
  371.                                                                 *p++ = gdata->parm.szCopyright[i];
  372.                                                                 if (gdata->parm.szCopyright[i] == CR) {
  373.                                                                         *p++ = LF;
  374.                                                                 }
  375.                                                         }
  376.                                                         *p++ = '\0';
  377.                                                         strcpy(gdata->parm.szCopyright, copyrightCRLF);
  378.                                                 }
  379.                                                 #endif
  380.  
  381.                                                 if (res) break;
  382.                                         }
  383.  
  384.                                         PIDISPOSEHANDLE(h);
  385.                                 }
  386.                         }
  387.                 } // else no point in proceeding
  388.                 FSClose(refnum);
  389.         }else
  390.                 *reason = _strdup("Could not open file.");
  391.  
  392.         if (res) gdata->obfusc = false;
  393.         return res;
  394. }
  395.  
  396. Boolean readPARM(Ptr p,PARM_T *pparm,char **reasonstr,int fromwin){
  397.         int i;
  398.  
  399.         if (*((unsigned int*)p) == PARM_SIZE_PREMIERE) {
  400.                 convert_premiere_to_photoshop(pparm, (PARM_T_PREMIERE*)p);
  401.         } else {
  402.                 // Assume it is Photoshop. Signature either PARM_SIZE (0x2068) or 0x1C68
  403.                 memcpy(pparm,p,sizeof(PARM_T));
  404.         }
  405.  
  406.         if(!fromwin){
  407.                 /* Mac PARM resource stores Pascal strings - convert to C strings  */
  408.                 myp2cstr((unsigned char*)pparm->szCategory);
  409.                 myp2cstr((unsigned char*)pparm->szTitle);
  410.                 myp2cstr((unsigned char*)pparm->szCopyright);
  411.                 myp2cstr((unsigned char*)pparm->szAuthor);
  412.                 for(i = 0; i < 4; ++i)
  413.                         myp2cstr((unsigned char*)pparm->szMap[i]);
  414.                 for(i = 0; i < 8; ++i)
  415.                         myp2cstr((unsigned char*)pparm->szCtl[i]);
  416.         }
  417.  
  418.         for(i = 0; i < 4; ++i){
  419.                 if(expr[i]) free(expr[i]);
  420.                 expr[i] = my_strdup(pparm->szFormula[i]);
  421.         }
  422.  
  423.         for (i = 0; i < 8; ++i) {
  424.                 if (pparm->val[i] > 0xFF) {
  425.                         // Wrong endianess (e.g. reading a Mac rsrc on Windows)
  426.                         slider[i] = (uint8_t)EndianS32_LtoN(pparm->val[i]);
  427.                 }
  428.                 else {
  429.                         slider[i] = (uint8_t)pparm->val[i];
  430.                 }
  431.         }
  432.  
  433.         return true;
  434. }
  435.  
  436. Handle readfileintohandle(FILEREF r){
  437.         FILEPOS n;
  438.         Handle h;
  439.         Ptr p;
  440.  
  441.         if( GetEOF(r,&n) == noErr && (h = PINEWHANDLE(n)) ){
  442.                 p = PILOCKHANDLE(h,false);
  443.                 if(SetFPos(r,fsFromStart,0) == noErr && FSRead(r,(FILECOUNT*)&n,p) == noErr){
  444.                         PIUNLOCKHANDLE(h);
  445.                         return h;
  446.                 }
  447.                 PIDISPOSEHANDLE(h);
  448.         }
  449.         return NULL;
  450. }
  451.  
  452. Boolean _picoLineContainsKey(char* line, char** content, const char* searchkey/*=NULL*/) {
  453.         size_t i;
  454.         for (i = 0; i < strlen(line); i++) {
  455.                 if (line[i] == '?') break; // avoid that "a?b:c" is detected as key
  456.                 if (line[i] == ':') {
  457.                         // Note: We are ignoring whitespaces, i.e. " A :" != "A:" (TODO: should we change this?)
  458.                         if ((searchkey == NULL) || ((i == strlen(searchkey)) && (memcmp(line, searchkey, i) == 0))) {
  459.                                 i++; // jump over ':' char
  460.                                 //while ((line[i] == ' ') || (line[i] == TAB)) i++; // Trim value left
  461.                                 *content = line + i;
  462.                                 return true;
  463.                         }
  464.                 }
  465.         }
  466.         *content = line;
  467.         return false;
  468. }
  469.  
  470. void _ffdcomp_removebrackets(char* x, char* maxptr) {
  471.         char* closingBracketPos = NULL;
  472.         Boolean openingBracketFound = false;
  473.         if (x[0] == '[') {
  474.                 openingBracketFound = true;
  475.         }
  476.         x[0] = ':';
  477.         x++;
  478.         while (x < maxptr) {
  479.                 if ((!openingBracketFound) && (x[0] == '[')) {
  480.                         openingBracketFound = true;
  481.                         x[0] = ' ';
  482.                 }
  483.                 else if (openingBracketFound) {
  484.                         if (x[0] == ']') {
  485.                                 closingBracketPos = x;
  486.                         }
  487.                         else if ((x[0] == CR) || (x[0] == LF)) {
  488.                                 if (closingBracketPos) closingBracketPos[0] = ' '; // last closing pos before CR/LF
  489.                                 break;
  490.                         }
  491.                 }
  492.                 x++;
  493.         }
  494. }
  495.  
  496. // isFormula=false => outputFile is C string. TXT linebreaks become spaces.
  497. // isFormula=true  => outputFile is C string. TXT line breaks become CRLF line breaks
  498. Boolean _picoReadProperty(char* inputFile, int maxInput, const char* property, char* outputFile, size_t maxOutput, Boolean isFormula) {
  499.         int i;
  500.         char* outputwork;
  501.         char* sline;
  502.         char* svalue;
  503.         char* inputwork;
  504.         char* inputworkinitial;
  505.         outputwork = outputFile;
  506.         sline = NULL;
  507.         svalue = NULL;
  508.         // Check parameters
  509.         if (maxOutput == 0) return false;
  510.         if (inputFile == 0) return false;
  511.         // Let input memory be read-only, +1 for terminal zero
  512.         //char* inputwork = inputFile;
  513.         inputwork = (char*)malloc(maxInput + 1);
  514.         inputworkinitial = inputwork;
  515.         if (inputwork == 0) return false;
  516.         memcpy(inputwork, inputFile, maxInput);
  517.         inputwork[maxInput] = 0; // otherwise strstr() will crash
  518.  
  519.         // Transform "FFDecomp" TXT file into the similar "PluginCommander" TXT file
  520.         if (strstr(inputwork, "Filter Factory Plugin Information:")) {
  521.                 char* x;
  522.                 char* k1;
  523.                 char* k2;
  524.                 // Metadata:
  525.                 x = strstr(inputwork, "CATEGORY:");
  526.                 if (x) memcpy(x, "Category:", strlen("Category:"));
  527.                 x = strstr(inputwork, "TITLE:");
  528.                 if (x) memcpy(x, "Title:", strlen("Title:"));
  529.                 x = strstr(inputwork, "COPYRIGHT:");
  530.                 if (x) memcpy(x, "Copyright:", strlen("Copyright:"));
  531.                 x = strstr(inputwork, "AUTHOR:");
  532.                 if (x) memcpy(x, "Author:", strlen("Author:"));
  533.                 // Controls:
  534.                 for (i = 0; i < 8; i++) {
  535.                         k1 = (char*)malloc(strlen("Control X:") + 1);
  536.                         sprintf(k1, "Control %d:", i);
  537.                         x = strstr(inputwork, k1);
  538.                         if (x) {
  539.                                 k2 = (char*)malloc(strlen("ctl[X]:   ") + 1);
  540.                                 sprintf(k2, "ctl[%d]:   ", i);
  541.                                 memcpy(x, k2, strlen(k2));
  542.                                 x += strlen("ctl[X]");
  543.                                 _ffdcomp_removebrackets(x, inputwork + maxInput - 1);
  544.                                 free(k2);
  545.                         }
  546.                         free(k1);
  547.                 }
  548.                 // Maps:
  549.                 for (i = 0; i < 4; i++) {
  550.                         k1 = (char*)malloc(strlen("Map X:") + 1);
  551.                         sprintf(k1, "Map %d:", i);
  552.                         x = strstr(inputwork, k1);
  553.                         if (x) {
  554.                                 k2 = (char*)malloc(strlen("map[X]:") + 1);
  555.                                 sprintf(k2, "map[%d]:", i);
  556.                                 memcpy(x, k2, strlen(k2));
  557.                                 x += strlen("map[X]");
  558.                                 _ffdcomp_removebrackets(x, inputwork + maxInput - 1);
  559.                                 free(k2);
  560.                         }
  561.                         free(k1);
  562.                 }
  563.                 // Convert all '\r' to '\n' for the next step to be easier
  564.                 for (i = 0; i < maxInput; i++) {
  565.                         if (inputworkinitial[i] == CR) inputworkinitial[i] = LF;
  566.                 }
  567.                 x = strstr(inputwork, "\nR=\n");
  568.                 if (x) memcpy(x, "\nR:\n", strlen("\nR:\n"));
  569.                 x = strstr(inputwork, "\nG=\n");
  570.                 if (x) memcpy(x, "\nG:\n", strlen("\nG:\n"));
  571.                 x = strstr(inputwork, "\nB=\n");
  572.                 if (x) memcpy(x, "\nB:\n", strlen("\nB:\n"));
  573.                 x = strstr(inputwork, "\nA=\n");
  574.                 if (x) memcpy(x, "\nA:\n", strlen("\nA:\n"));
  575.         }
  576.         // Replace all \r and \n with \0, so that we can parse easier
  577.         for (i = 0; i < maxInput; i++) {
  578.                 if (inputworkinitial[i] == CR) inputworkinitial[i] = 0;
  579.                 else if (inputworkinitial[i] == LF) inputworkinitial[i] = 0;
  580.         }
  581.  
  582.         // Find line that contains out key
  583.         inputwork = inputworkinitial;
  584.         do {
  585.                 if (inputwork > inputworkinitial + maxInput) {
  586.                         // Key not found. Set output to empty string
  587.                         outputwork[0] = 0;
  588.                         free(inputworkinitial);
  589.                         return false;
  590.                 }
  591.                 sline = inputwork;
  592.                 inputwork += strlen(sline) + 1;
  593.                 if (inputwork - 1 > inputworkinitial + maxInput) {
  594.                         // Key not found. Set output to empty string
  595.                         // TODO: will that be ever called?
  596.                         outputwork[0] = 0;
  597.                         free(inputworkinitial);
  598.                         return false;
  599.                 }
  600.         } while (!_picoLineContainsKey(sline, &svalue, property));
  601.  
  602.         // Read line(s) until we find a line with another key, or the line end
  603.         do {
  604.                 while ((svalue[0] == ' ') || (svalue[0] == TAB)) svalue++; // Trim left
  605.                 while ((svalue[strlen(svalue) - 1] == ' ') || (svalue[strlen(svalue) - 1] == TAB)) svalue[strlen(svalue) - 1] = 0; // Trim right
  606.  
  607.                 if (strlen(svalue) > 0) {
  608.                         if (outputwork + strlen(svalue) + (isFormula ? 3/*CRLF+NUL*/ : 2/*space+NUL*/) > outputFile + maxOutput) {
  609.                                 int remaining = maxOutput - (outputwork - outputFile) - 1;
  610.                                 //printf("BUFFER FULL (remaining = %d)\n", remaining);
  611.                                 memcpy(outputwork, svalue, remaining);
  612.                                 outputwork += remaining;
  613.                                 outputwork[0] = 0;
  614.                                 free(inputworkinitial);
  615.                                 return true;
  616.                         }
  617.                         else {
  618.                                 memcpy(outputwork, svalue, strlen(svalue));
  619.                                 outputwork += strlen(svalue);
  620.                                 if (isFormula) {
  621.                                         // Formulas: TXT line break stays line break (important if you have comments!)
  622.                                         outputwork[0] = CR;
  623.                                         outputwork[1] = LF;
  624.                                         outputwork += 2;
  625.                                 }
  626.                                 else {
  627.                                         // Everything else: TXT line breaks becomes single whitespace
  628.                                         outputwork[0] = ' ';
  629.                                         outputwork++;
  630.                                 }
  631.                         }
  632.                 }
  633.                 outputwork[0] = 0;
  634.  
  635.                 // Process next line
  636.                 if (inputwork > inputworkinitial + maxInput) break;
  637.                 sline = inputwork;
  638.                 inputwork += strlen(sline) + 1;
  639.                 if (inputwork - 1 > inputworkinitial + maxInput) break; // TODO: will that be ever called?
  640.         } while (!_picoLineContainsKey(sline, &svalue, NULL));
  641.  
  642.         // Remove trailing whitespace
  643.         if (outputwork > outputFile) {
  644.                 outputwork -= 1;
  645.                 outputwork[0] = 0;
  646.         }
  647.         free(inputworkinitial);
  648.         return true;
  649. }
  650.  
  651. Boolean readfile_picotxt(StandardFileReply* sfr, char** reason) {
  652.         extern int ctls[], maps[];
  653.  
  654.         Handle h;
  655.         Boolean res = false;
  656.         FILEREF refnum;
  657.  
  658.         if (!fileHasExtension(sfr, ".txt")) return false;
  659.  
  660.         if (FSpOpenDF(&sfr->sfFile, fsRdPerm, &refnum) == noErr) {
  661.                 if ((h = readfileintohandle(refnum))) {
  662.                         FILECOUNT count = PIGETHANDLESIZE(h);
  663.                         char* q = PILOCKHANDLE(h, false);
  664.  
  665.                         char out[256];
  666.                         if (_picoReadProperty(q, count, "Title", out, sizeof(out), false)) {
  667.                                 int i;
  668.  
  669.                                 // Plugin infos
  670.                                 _picoReadProperty(q, count, "Title", gdata->parm.szTitle, sizeof(gdata->parm.szTitle), false);
  671.                                 _picoReadProperty(q, count, "Category", gdata->parm.szCategory, sizeof(gdata->parm.szCategory), false);
  672.                                 _picoReadProperty(q, count, "Author", gdata->parm.szAuthor, sizeof(gdata->parm.szAuthor), false);
  673.                                 _picoReadProperty(q, count, "Copyright", gdata->parm.szCopyright, sizeof(gdata->parm.szCopyright), false);
  674.                                 //_picoReadProperty(q, count, "Filename", gdata->parm.xxx, sizeof(gdata->parm.xxx), false);
  675.  
  676.                                 // Expressions
  677.                                 if (!_picoReadProperty(q, count, "R", gdata->parm.szFormula[0], sizeof(gdata->parm.szFormula[0]), true))
  678.                                         strcpy(gdata->parm.szFormula[0], "r");
  679.                                 if (!_picoReadProperty(q, count, "G", gdata->parm.szFormula[1], sizeof(gdata->parm.szFormula[1]), true))
  680.                                         strcpy(gdata->parm.szFormula[1], "g");
  681.                                 if (!_picoReadProperty(q, count, "B", gdata->parm.szFormula[2], sizeof(gdata->parm.szFormula[2]), true))
  682.                                         strcpy(gdata->parm.szFormula[2], "b");
  683.                                 if (!_picoReadProperty(q, count, "A", gdata->parm.szFormula[3], sizeof(gdata->parm.szFormula[3]), true))
  684.                                         strcpy(gdata->parm.szFormula[3], "a");
  685.                                 for (i = 0; i < 4; i++) {
  686.                                         if (expr[i]) free(expr[i]);
  687.                                         expr[i] = my_strdup(gdata->parm.szFormula[i]);
  688.                                 }
  689.  
  690.                                 // Slider names
  691.                                 for (i = 0; i < 8; i++) {
  692.                                         char keyname[7];
  693.                                         sprintf(keyname, "ctl[%d]", i);
  694.                                         _picoReadProperty(q, count, keyname, gdata->parm.szCtl[i], sizeof(gdata->parm.szCtl[i]), false);
  695.                                 }
  696.  
  697.                                 // Slider values
  698.                                 for (i = 0; i < 8; i++) {
  699.                                         char keyname[7], tmp[5];
  700.                                         sprintf(keyname, "val[%d]", i);
  701.                                         if (!_picoReadProperty(q, count, keyname, tmp, sizeof(tmp), false)) {
  702.                                                 sprintf(keyname, "def[%d]", i);
  703.                                                 if (!_picoReadProperty(q, count, keyname, tmp, sizeof(tmp), false)) {
  704.                                                         strcpy(tmp,"0");
  705.                                                 }
  706.                                         }
  707.                                         gdata->parm.val[i] = slider[i] = atoi(tmp);
  708.                                 }
  709.  
  710.                                 // Map names
  711.                                 for (i = 0; i < 4; i++) {
  712.                                         char keyname[7];
  713.                                         sprintf(keyname, "map[%d]", i);
  714.                                         _picoReadProperty(q, count, keyname, gdata->parm.szMap[i], sizeof(gdata->parm.szMap[i]), false);
  715.                                 }
  716.  
  717.                                 //These will be set when the expressions are evaluated anyway. So this part is optional:
  718.                                 checksliders(4, ctls, maps);
  719.                                 for (i = 0; i < 8; i++) gdata->parm.ctl_used[i] = ctls[i];
  720.                                 for (i = 0; i < 4; i++) gdata->parm.map_used[i] = maps[i];
  721.  
  722.                                 res = true;
  723.                         }
  724.  
  725.                         PIUNLOCKHANDLE(h);
  726.                         PIDISPOSEHANDLE(h);
  727.                 }
  728.                 FSClose(refnum);
  729.         }
  730.  
  731.         return res;
  732. }
  733.  
  734. Boolean readfile_afs_pff(StandardFileReply *sfr,char **reason){
  735.         FILEREF r;
  736.         Handle h;
  737.         Boolean res = false;
  738.  
  739.         if(FSpOpenDF(&sfr->sfFile,fsRdPerm,&r) == noErr){
  740.                 if( (h = readfileintohandle(r)) ){
  741.                         if( (res = readparams_afs_pff(h,true,reason)) ) {
  742.                                 gdata->standalone = false; // so metadata fields will default, if user chooses Make...
  743.  
  744.                                 if (fileHasExtension(sfr, ".pff")) {
  745.                                         // If it is a Premiere settings file, we need to swap the channels red and blue
  746.                                         // We just swap the pointers!
  747.                                         char* tmp;
  748.                                         tmp = expr[0];
  749.                                         expr[0] = expr[2];
  750.                                         expr[2] = tmp;
  751.                                 }
  752.                         }
  753.  
  754.                         PIDISPOSEHANDLE(h);
  755.                 }
  756.                 FSClose(r);
  757.         }else
  758.                 *reason = _strdup("Could not open the file.");
  759.  
  760.         return res;
  761. }
  762.