Subversion Repositories filter_foundry

Rev

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

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