Subversion Repositories filter_foundry

Rev

Rev 393 | Rev 395 | 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
 
389 daniel-mar 41
Boolean readparams_afs_pff(Handle h,Boolean alerts,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
 
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':
268 daniel-mar 116
                                                #if WIN_ENV
117
                                                c = CR;
118
                                                if (lineptr < MAXLINE)
274 daniel-mar 119
                                                        linebuf[lineptr++] = c;
268 daniel-mar 120
                                                c = LF;
121
                                                #else
122
                                                c = CR;
123
                                                #endif
124
                                                break;
256 daniel-mar 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)
272 daniel-mar 149
                photoshop->val[i] = premiere->val[i];
256 daniel-mar 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)
272 daniel-mar 155
                photoshop->map_used[i] = premiere->map_used[i];
256 daniel-mar 156
        for (i=0;i<8;++i)
272 daniel-mar 157
                photoshop->ctl_used[i] = premiere->ctl_used[i];
393 daniel-mar 158
        sprintf(photoshop->szCategory, "Filter Factory"); // Premiere plugins do not have a category attribute
256 daniel-mar 159
        photoshop->iProtected = 0; // Premiere plugins do not have a protect flag
393 daniel-mar 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));
256 daniel-mar 163
        for (i=0;i<4;++i)
393 daniel-mar 164
                memcpy((void*)photoshop->szMap[i], (void*)premiere->szMap[i], sizeof(photoshop->szMap[i]));
256 daniel-mar 165
        for (i=0;i<8;++i)
393 daniel-mar 166
                memcpy((void*)photoshop->szCtl[i], (void*)premiere->szCtl[i], sizeof(photoshop->szCtl[i]));
256 daniel-mar 167
 
168
        if (premiere->singleExpression) {
393 daniel-mar 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]));
256 daniel-mar 173
        } else {
393 daniel-mar 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]));
256 daniel-mar 178
        }
179
}
180
 
366 daniel-mar 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;
367 daniel-mar 202
        int format_version = -1;
366 daniel-mar 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);
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) {
368 daniel-mar 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
 
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) {
381 daniel-mar 259
                                                                simplealert(_strdup("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) {
381 daniel-mar 262
                                                                simplealert(_strdup("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) {
381 daniel-mar 265
                                                                simplealert(_strdup("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) {
381 daniel-mar 268
                                                                simplealert(_strdup("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
                                                }
366 daniel-mar 274
                                                expr[i] = my_strdup(val);
393 daniel-mar 275
                                                strcpy(gdata->parm.szFormula[i], val);
366 daniel-mar 276
                                                free(val);
277
                                        }
278
 
279
                                        // Sliders
280
                                        for (i = 0; i < 8; i++) {
367 daniel-mar 281
                                                char* sliderName;
366 daniel-mar 282
                                                val = _ffx_read_str(&q);
367 daniel-mar 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
                                                }
393 daniel-mar 289
                                                strcpy(gdata->parm.szCtl[i], sliderName);
366 daniel-mar 290
                                                free(val);
367 daniel-mar 291
                                                gdata->parm.ctl_used[i] = (bool32_t)*((byte*)q);
366 daniel-mar 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
 
390 daniel-mar 298
                                        // Maps (are not part of the format!)
393 daniel-mar 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:");
390 daniel-mar 303
 
366 daniel-mar 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
 
373 daniel-mar 316
Boolean readfile_8bf(StandardFileReply *sfr,char **reason){
256 daniel-mar 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'*/){
309 daniel-mar 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)
256 daniel-mar 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
                                        {
394 daniel-mar 335
                                                res = readPARM(&gdata->parm, (Ptr)q);
256 daniel-mar 336
                                                if (res) break;
337
                                        }
341 daniel-mar 338
 
256 daniel-mar 339
                                        PIDISPOSEHANDLE(h);
340
                                }
341
                        }
342
                } // else no point in proceeding
343
                FSClose(refnum);
344
        }else
345
                *reason = _strdup("Could not open file.");
346
 
347
        if (res) gdata->obfusc = false;
348
        return res;
349
}
350
 
394 daniel-mar 351
Boolean readPARM(PARM_T* pparm, Ptr p){
256 daniel-mar 352
        int i;
394 daniel-mar 353
        Boolean towin, tomac, fromwin, frommac;
354
        unsigned int signature = *((unsigned int*)p);
355
        unsigned int standalone = *((unsigned int*)p+1);
256 daniel-mar 356
 
394 daniel-mar 357
        // Find out our OS ("reader") the OS of the plugin ("source")
358
        #ifdef MAC_ENV
359
        towin = false;
360
        tomac = true;
361
        fromwin = ((EndianS32_LtoN(signature) == PARM_SIZE) ||
362
                (EndianS32_LtoN(signature) == PARM_SIZE_PREMIERE) ||
363
                (EndianS32_LtoN(signature) == PARM_SIG_MAC)) && EndianS32_LtoN(standalone) == 1;
364
        frommac = ((signature == PARM_SIZE) ||
365
                (signature == PARM_SIZE_PREMIERE) ||
366
                (signature == PARM_SIG_MAC)) && standalone == 1;
367
        #else
368
        towin = true;
369
        tomac = false;
370
        fromwin = ((signature == PARM_SIZE) ||
371
                (signature == PARM_SIZE_PREMIERE) ||
372
                (signature == PARM_SIG_MAC)) && standalone == 1;
373
        frommac = ((EndianS32_LtoN(signature) == PARM_SIZE) ||
374
                (EndianS32_LtoN(signature) == PARM_SIZE_PREMIERE) ||
375
                (EndianS32_LtoN(signature) == PARM_SIG_MAC)) && EndianS32_LtoN(standalone) == 1;
376
        #endif
377
 
378
        // Is it a valid signature?
379
        if (!fromwin && !frommac) {
380
                // No valid signature found
381
                return false;
382
        }
383
 
384
        // Does it come from Premiere or Photoshop?
385
        // Initialize pparm
386
        if ((signature == PARM_SIZE_PREMIERE) || (EndianS32_LtoN(signature) == PARM_SIZE_PREMIERE)) {
387
                // It comes from Premiere. Swap R and B channel and convert to a Photoshop PARM_T
256 daniel-mar 388
                convert_premiere_to_photoshop(pparm, (PARM_T_PREMIERE*)p);
389
        } else {
394 daniel-mar 390
                // It is already Photoshop. Just copy to pparm.
391
                memcpy(pparm, p, sizeof(PARM_T));
256 daniel-mar 392
        }
393
 
394 daniel-mar 394
        // Do we need to do string conversion?
395
        if (frommac) {
396
                /* Mac PARM resource stores Pascal strings - convert to C strings, since this is what we work internally with (regardles of OS) */
393 daniel-mar 397
                myp2cstr((unsigned char*)pparm->szCategory);
398
                myp2cstr((unsigned char*)pparm->szTitle);
399
                myp2cstr((unsigned char*)pparm->szCopyright);
400
                myp2cstr((unsigned char*)pparm->szAuthor);
394 daniel-mar 401
                for (i = 0; i < 4; ++i)
393 daniel-mar 402
                        myp2cstr((unsigned char*)pparm->szMap[i]);
394 daniel-mar 403
                for (i = 0; i < 8; ++i)
393 daniel-mar 404
                        myp2cstr((unsigned char*)pparm->szCtl[i]);
256 daniel-mar 405
        }
406
 
394 daniel-mar 407
        // Case #1: Mac is reading Windows (Win16/32/64) plugin
408
        if (fromwin && tomac) {
409
                size_t i;
410
 
411
                // Convert copyright CRLF to CR (actually, just removing LF)
412
                char copyrightCRLF[256];
413
                char* p = &copyrightCRLF[0];
414
                for (i = 0; i < strlen(pparm->szCopyright); i++) {
415
                        if (pparm->szCopyright[i] != LF) {
416
                                *p++ = pparm->szCopyright[i];
417
                        }
418
                }
419
                *p++ = '\0';
420
                strcpy(pparm->szCopyright, copyrightCRLF);
421
 
422
                // these are the only numeric fields we *have* to swap
423
                // all the rest are bool_t flags which (if we're careful) will work in either ordering
424
                for (i = 0; i < 8; ++i)
425
                        pparm->val[i] = EndianS32_LtoN(pparm->val[i]);
426
        }
427
 
428
        // Case #2: Mac is reading Mac (in case the normal resource extraction didn't work)
429
        // Nothing to do
430
 
431
        // 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)
432
        // Nothing to do
433
 
434
        // Case #4: Windows is reading an old FilterFactory Mac file
435
        // Note: You must read the ".rsrc" resource fork, not the standalone binary!
436
        if (frommac && towin) {
437
                size_t i;
438
 
439
                // Convert CR in the copyright field to CRLF.
440
                char copyrightCRLF[256];
441
                char* p = &copyrightCRLF[0];
442
                for (i = 0; i < strlen(pparm->szCopyright); i++) {
443
                        *p++ = pparm->szCopyright[i];
444
                        if (pparm->szCopyright[i] == CR) {
445
                                *p++ = LF;
446
                        }
447
                }
448
                *p++ = '\0';
449
                strcpy(pparm->szCopyright, copyrightCRLF);
450
 
451
                // these are the only numeric fields we *have* to swap
452
                // all the rest are bool_t flags which (if we're careful) will work in either ordering
453
                for (i = 0; i < 8; ++i)
454
                        pparm->val[i] = EndianS32_LtoN(pparm->val[i]);
455
        }
456
 
457
        // Now set the values in pparm into the working variables expr[] and slider[], so that they are visible in the GUI
458
 
256 daniel-mar 459
        for(i = 0; i < 4; ++i){
460
                if(expr[i]) free(expr[i]);
393 daniel-mar 461
                expr[i] = my_strdup(pparm->szFormula[i]);
256 daniel-mar 462
        }
463
 
339 daniel-mar 464
        for (i = 0; i < 8; ++i) {
394 daniel-mar 465
                slider[i] = (uint8_t)pparm->val[i];
466
                /*
467
                if (slider[i] > 0xFF) {
339 daniel-mar 468
                        // Wrong endianess (e.g. reading a Mac rsrc on Windows)
394 daniel-mar 469
                        // Should not happen since we did the stuff above
470
                        slider[i] = (uint8_t)EndianS32_LtoN(slider[i]);
339 daniel-mar 471
                }
394 daniel-mar 472
                */
339 daniel-mar 473
        }
256 daniel-mar 474
 
475
        return true;
476
}
477
 
478
Handle readfileintohandle(FILEREF r){
479
        FILEPOS n;
480
        Handle h;
481
        Ptr p;
482
 
483
        if( GetEOF(r,&n) == noErr && (h = PINEWHANDLE(n)) ){
484
                p = PILOCKHANDLE(h,false);
485
                if(SetFPos(r,fsFromStart,0) == noErr && FSRead(r,(FILECOUNT*)&n,p) == noErr){
486
                        PIUNLOCKHANDLE(h);
487
                        return h;
488
                }
489
                PIDISPOSEHANDLE(h);
490
        }
491
        return NULL;
492
}
493
 
385 daniel-mar 494
Boolean _picoLineContainsKey(char* line, char** content, const char* searchkey/*=NULL*/) {
386 daniel-mar 495
        size_t i;
496
        for (i = 0; i < strlen(line); i++) {
388 daniel-mar 497
                if (line[i] == '?') break; // avoid that "a?b:c" is detected as key
385 daniel-mar 498
                if (line[i] == ':') {
386 daniel-mar 499
                        // Note: We are ignoring whitespaces, i.e. " A :" != "A:" (TODO: should we change this?)
500
                        if ((searchkey == NULL) || ((i == strlen(searchkey)) && (memcmp(line, searchkey, i) == 0))) {
501
                                i++; // jump over ':' char
387 daniel-mar 502
                                //while ((line[i] == ' ') || (line[i] == TAB)) i++; // Trim value left
385 daniel-mar 503
                                *content = line + i;
504
                                return true;
505
                        }
506
                }
507
        }
508
        *content = line;
509
        return false;
510
}
511
 
388 daniel-mar 512
void _ffdcomp_removebrackets(char* x, char* maxptr) {
513
        char* closingBracketPos = NULL;
514
        Boolean openingBracketFound = false;
515
        if (x[0] == '[') {
516
                openingBracketFound = true;
517
        }
518
        x[0] = ':';
519
        x++;
520
        while (x < maxptr) {
521
                if ((!openingBracketFound) && (x[0] == '[')) {
522
                        openingBracketFound = true;
523
                        x[0] = ' ';
524
                }
525
                else if (openingBracketFound) {
526
                        if (x[0] == ']') {
527
                                closingBracketPos = x;
528
                        }
529
                        else if ((x[0] == CR) || (x[0] == LF)) {
530
                                if (closingBracketPos) closingBracketPos[0] = ' '; // last closing pos before CR/LF
531
                                break;
532
                        }
533
                }
534
                x++;
535
        }
536
}
537
 
393 daniel-mar 538
// isFormula=false => outputFile is C string. TXT linebreaks become spaces.
386 daniel-mar 539
// isFormula=true  => outputFile is C string. TXT line breaks become CRLF line breaks
540
Boolean _picoReadProperty(char* inputFile, int maxInput, const char* property, char* outputFile, size_t maxOutput, Boolean isFormula) {
541
        int i;
542
        char* outputwork;
543
        char* sline;
544
        char* svalue;
545
        char* inputwork;
546
        char* inputworkinitial;
547
        outputwork = outputFile;
548
        sline = NULL;
549
        svalue = NULL;
385 daniel-mar 550
        // Check parameters
386 daniel-mar 551
        if (maxOutput == 0) return false;
385 daniel-mar 552
        if (inputFile == 0) return false;
553
        // Let input memory be read-only, +1 for terminal zero
554
        //char* inputwork = inputFile;
386 daniel-mar 555
        inputwork = (char*)malloc(maxInput + 1);
556
        inputworkinitial = inputwork;
385 daniel-mar 557
        if (inputwork == 0) return false;
558
        memcpy(inputwork, inputFile, maxInput);
388 daniel-mar 559
        inputwork[maxInput] = 0; // otherwise strstr() will crash
560
 
561
        // Transform "FFDecomp" TXT file into the similar "PluginCommander" TXT file
562
        if (strstr(inputwork, "Filter Factory Plugin Information:")) {
563
                char* x;
564
                char* k1;
565
                char* k2;
566
                // Metadata:
567
                x = strstr(inputwork, "CATEGORY:");
389 daniel-mar 568
                if (x) memcpy(x, "Category:", strlen("Category:"));
388 daniel-mar 569
                x = strstr(inputwork, "TITLE:");
389 daniel-mar 570
                if (x) memcpy(x, "Title:", strlen("Title:"));
388 daniel-mar 571
                x = strstr(inputwork, "COPYRIGHT:");
389 daniel-mar 572
                if (x) memcpy(x, "Copyright:", strlen("Copyright:"));
388 daniel-mar 573
                x = strstr(inputwork, "AUTHOR:");
389 daniel-mar 574
                if (x) memcpy(x, "Author:", strlen("Author:"));
388 daniel-mar 575
                // Controls:
576
                for (i = 0; i < 8; i++) {
577
                        k1 = (char*)malloc(strlen("Control X:") + 1);
578
                        sprintf(k1, "Control %d:", i);
579
                        x = strstr(inputwork, k1);
580
                        if (x) {
581
                                k2 = (char*)malloc(strlen("ctl[X]:   ") + 1);
582
                                sprintf(k2, "ctl[%d]:   ", i);
389 daniel-mar 583
                                memcpy(x, k2, strlen(k2));
388 daniel-mar 584
                                x += strlen("ctl[X]");
585
                                _ffdcomp_removebrackets(x, inputwork + maxInput - 1);
586
                                free(k2);
587
                        }
588
                        free(k1);
589
                }
590
                // Maps:
591
                for (i = 0; i < 4; i++) {
592
                        k1 = (char*)malloc(strlen("Map X:") + 1);
593
                        sprintf(k1, "Map %d:", i);
594
                        x = strstr(inputwork, k1);
595
                        if (x) {
596
                                k2 = (char*)malloc(strlen("map[X]:") + 1);
597
                                sprintf(k2, "map[%d]:", i);
389 daniel-mar 598
                                memcpy(x, k2, strlen(k2));
388 daniel-mar 599
                                x += strlen("map[X]");
600
                                _ffdcomp_removebrackets(x, inputwork + maxInput - 1);
601
                                free(k2);
602
                        }
603
                        free(k1);
604
                }
605
                // Convert all '\r' to '\n' for the next step to be easier
606
                for (i = 0; i < maxInput; i++) {
607
                        if (inputworkinitial[i] == CR) inputworkinitial[i] = LF;
608
                }
609
                x = strstr(inputwork, "\nR=\n");
389 daniel-mar 610
                if (x) memcpy(x, "\nR:\n", strlen("\nR:\n"));
388 daniel-mar 611
                x = strstr(inputwork, "\nG=\n");
389 daniel-mar 612
                if (x) memcpy(x, "\nG:\n", strlen("\nG:\n"));
388 daniel-mar 613
                x = strstr(inputwork, "\nB=\n");
389 daniel-mar 614
                if (x) memcpy(x, "\nB:\n", strlen("\nB:\n"));
388 daniel-mar 615
                x = strstr(inputwork, "\nA=\n");
389 daniel-mar 616
                if (x) memcpy(x, "\nA:\n", strlen("\nA:\n"));
388 daniel-mar 617
        }
385 daniel-mar 618
        // Replace all \r and \n with \0, so that we can parse easier
386 daniel-mar 619
        for (i = 0; i < maxInput; i++) {
388 daniel-mar 620
                if (inputworkinitial[i] == CR) inputworkinitial[i] = 0;
393 daniel-mar 621
                else if (inputworkinitial[i] == LF) inputworkinitial[i] = 0;
385 daniel-mar 622
        }
388 daniel-mar 623
 
385 daniel-mar 624
        // Find line that contains out key
388 daniel-mar 625
        inputwork = inputworkinitial;
385 daniel-mar 626
        do {
627
                if (inputwork > inputworkinitial + maxInput) {
628
                        // Key not found. Set output to empty string
629
                        outputwork[0] = 0;
630
                        free(inputworkinitial);
631
                        return false;
632
                }
633
                sline = inputwork;
634
                inputwork += strlen(sline) + 1;
635
                if (inputwork - 1 > inputworkinitial + maxInput) {
636
                        // Key not found. Set output to empty string
637
                        // TODO: will that be ever called?
638
                        outputwork[0] = 0;
639
                        free(inputworkinitial);
640
                        return false;
641
                }
642
        } while (!_picoLineContainsKey(sline, &svalue, property));
388 daniel-mar 643
 
385 daniel-mar 644
        // Read line(s) until we find a line with another key, or the line end
645
        do {
387 daniel-mar 646
                while ((svalue[0] == ' ') || (svalue[0] == TAB)) svalue++; // Trim left
647
                while ((svalue[strlen(svalue) - 1] == ' ') || (svalue[strlen(svalue) - 1] == TAB)) svalue[strlen(svalue) - 1] = 0; // Trim right
386 daniel-mar 648
 
385 daniel-mar 649
                if (strlen(svalue) > 0) {
393 daniel-mar 650
                        if (outputwork + strlen(svalue) + (isFormula ? 3/*CRLF+NUL*/ : 2/*space+NUL*/) > outputFile + maxOutput) {
385 daniel-mar 651
                                int remaining = maxOutput - (outputwork - outputFile) - 1;
652
                                //printf("BUFFER FULL (remaining = %d)\n", remaining);
653
                                memcpy(outputwork, svalue, remaining);
654
                                outputwork += remaining;
655
                                outputwork[0] = 0;
656
                                free(inputworkinitial);
657
                                return true;
658
                        }
659
                        else {
660
                                memcpy(outputwork, svalue, strlen(svalue));
661
                                outputwork += strlen(svalue);
386 daniel-mar 662
                                if (isFormula) {
663
                                        // Formulas: TXT line break stays line break (important if you have comments!)
388 daniel-mar 664
                                        outputwork[0] = CR;
665
                                        outputwork[1] = LF;
387 daniel-mar 666
                                        outputwork += 2;
386 daniel-mar 667
                                }
668
                                else {
669
                                        // Everything else: TXT line breaks becomes single whitespace
670
                                        outputwork[0] = ' ';
671
                                        outputwork++;
672
                                }
385 daniel-mar 673
                        }
674
                }
675
                outputwork[0] = 0;
676
 
677
                // Process next line
678
                if (inputwork > inputworkinitial + maxInput) break;
679
                sline = inputwork;
680
                inputwork += strlen(sline) + 1;
386 daniel-mar 681
                if (inputwork - 1 > inputworkinitial + maxInput) break; // TODO: will that be ever called?
385 daniel-mar 682
        } while (!_picoLineContainsKey(sline, &svalue, NULL));
388 daniel-mar 683
 
385 daniel-mar 684
        // Remove trailing whitespace
685
        if (outputwork > outputFile) {
686
                outputwork -= 1;
687
                outputwork[0] = 0;
688
        }
689
        free(inputworkinitial);
690
        return true;
691
}
692
 
693
Boolean readfile_picotxt(StandardFileReply* sfr, char** reason) {
389 daniel-mar 694
        extern int ctls[], maps[];
695
 
385 daniel-mar 696
        Handle h;
697
        Boolean res = false;
698
        FILEREF refnum;
699
 
700
        if (!fileHasExtension(sfr, ".txt")) return false;
701
 
702
        if (FSpOpenDF(&sfr->sfFile, fsRdPerm, &refnum) == noErr) {
703
                if ((h = readfileintohandle(refnum))) {
704
                        FILECOUNT count = PIGETHANDLESIZE(h);
705
                        char* q = PILOCKHANDLE(h, false);
706
 
707
                        char out[256];
708
                        if (_picoReadProperty(q, count, "Title", out, sizeof(out), false)) {
386 daniel-mar 709
                                int i;
385 daniel-mar 710
 
711
                                // Plugin infos
393 daniel-mar 712
                                _picoReadProperty(q, count, "Title", gdata->parm.szTitle, sizeof(gdata->parm.szTitle), false);
713
                                _picoReadProperty(q, count, "Category", gdata->parm.szCategory, sizeof(gdata->parm.szCategory), false);
714
                                _picoReadProperty(q, count, "Author", gdata->parm.szAuthor, sizeof(gdata->parm.szAuthor), false);
715
                                _picoReadProperty(q, count, "Copyright", gdata->parm.szCopyright, sizeof(gdata->parm.szCopyright), false);
716
                                //_picoReadProperty(q, count, "Filename", gdata->parm.xxx, sizeof(gdata->parm.xxx), false);
385 daniel-mar 717
 
718
                                // Expressions
393 daniel-mar 719
                                if (!_picoReadProperty(q, count, "R", gdata->parm.szFormula[0], sizeof(gdata->parm.szFormula[0]), true))
720
                                        strcpy(gdata->parm.szFormula[0], "r");
721
                                if (!_picoReadProperty(q, count, "G", gdata->parm.szFormula[1], sizeof(gdata->parm.szFormula[1]), true))
722
                                        strcpy(gdata->parm.szFormula[1], "g");
723
                                if (!_picoReadProperty(q, count, "B", gdata->parm.szFormula[2], sizeof(gdata->parm.szFormula[2]), true))
724
                                        strcpy(gdata->parm.szFormula[2], "b");
725
                                if (!_picoReadProperty(q, count, "A", gdata->parm.szFormula[3], sizeof(gdata->parm.szFormula[3]), true))
726
                                        strcpy(gdata->parm.szFormula[3], "a");
386 daniel-mar 727
                                for (i = 0; i < 4; i++) {
385 daniel-mar 728
                                        if (expr[i]) free(expr[i]);
393 daniel-mar 729
                                        expr[i] = my_strdup(gdata->parm.szFormula[i]);
385 daniel-mar 730
                                }
731
 
732
                                // Slider names
386 daniel-mar 733
                                for (i = 0; i < 8; i++) {
385 daniel-mar 734
                                        char keyname[7];
735
                                        sprintf(keyname, "ctl[%d]", i);
393 daniel-mar 736
                                        _picoReadProperty(q, count, keyname, gdata->parm.szCtl[i], sizeof(gdata->parm.szCtl[i]), false);
385 daniel-mar 737
                                }
738
 
739
                                // Slider values
386 daniel-mar 740
                                for (i = 0; i < 8; i++) {
741
                                        char keyname[7], tmp[5];
385 daniel-mar 742
                                        sprintf(keyname, "val[%d]", i);
743
                                        if (!_picoReadProperty(q, count, keyname, tmp, sizeof(tmp), false)) {
744
                                                sprintf(keyname, "def[%d]", i);
745
                                                if (!_picoReadProperty(q, count, keyname, tmp, sizeof(tmp), false)) {
393 daniel-mar 746
                                                        strcpy(tmp,"0");
385 daniel-mar 747
                                                }
748
                                        }
749
                                        gdata->parm.val[i] = slider[i] = atoi(tmp);
750
                                }
751
 
752
                                // Map names
386 daniel-mar 753
                                for (i = 0; i < 4; i++) {
385 daniel-mar 754
                                        char keyname[7];
755
                                        sprintf(keyname, "map[%d]", i);
393 daniel-mar 756
                                        _picoReadProperty(q, count, keyname, gdata->parm.szMap[i], sizeof(gdata->parm.szMap[i]), false);
385 daniel-mar 757
                                }
758
 
389 daniel-mar 759
                                //These will be set when the expressions are evaluated anyway. So this part is optional:
760
                                checksliders(4, ctls, maps);
761
                                for (i = 0; i < 8; i++) gdata->parm.ctl_used[i] = ctls[i];
762
                                for (i = 0; i < 4; i++) gdata->parm.map_used[i] = maps[i];
385 daniel-mar 763
 
764
                                res = true;
765
                        }
766
 
767
                        PIUNLOCKHANDLE(h);
768
                        PIDISPOSEHANDLE(h);
769
                }
770
                FSClose(refnum);
771
        }
772
 
773
        return res;
774
}
775
 
366 daniel-mar 776
Boolean readfile_afs_pff(StandardFileReply *sfr,char **reason){
256 daniel-mar 777
        FILEREF r;
778
        Handle h;
779
        Boolean res = false;
780
 
781
        if(FSpOpenDF(&sfr->sfFile,fsRdPerm,&r) == noErr){
782
                if( (h = readfileintohandle(r)) ){
389 daniel-mar 783
                        if( (res = readparams_afs_pff(h,true,reason)) ) {
256 daniel-mar 784
                                gdata->standalone = false; // so metadata fields will default, if user chooses Make...
785
 
786
                                if (fileHasExtension(sfr, ".pff")) {
787
                                        // If it is a Premiere settings file, we need to swap the channels red and blue
263 daniel-mar 788
                                        // We just swap the pointers!
256 daniel-mar 789
                                        char* tmp;
263 daniel-mar 790
                                        tmp = expr[0];
791
                                        expr[0] = expr[2];
792
                                        expr[2] = tmp;
256 daniel-mar 793
                                }
794
                        }
795
 
796
                        PIDISPOSEHANDLE(h);
797
                }
798
                FSClose(r);
799
        }else
800
                *reason = _strdup("Could not open the file.");
801
 
802
        return res;
803
}