Subversion Repositories filter_foundry

Rev

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

Rev Author Line No. Line
259 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
 
439 daniel-mar 21
#ifndef FF_H_
22
#define FF_H_
23
 
259 daniel-mar 24
#include "world.h"
25
 
26
#include "PIFilter.h"
27
 
28
#include "entry.h"
29
 
30
#include "choosefile.h"
31
#include "ui.h"
32
#include "file_compat.h"
33
#include "symtab.h"
34
#include "PARM.h"
35
#include "preview.h"
330 daniel-mar 36
#include "ff_misc.h"
492 daniel-mar 37
#include "language.h"
259 daniel-mar 38
 
39
#define HOSTSIG_GIMP 'PMIG' // sic: NOT 'GIMP'
40
#define HOSTSIG_IRFANVIEW 'UP20'
41
#define HOSTSIG_PHOTOSHOP '8BIM'
42
//#define HOSTSIG_PLUGINCOMMANDER '8BIM' // meh.
43
//#define HOSTSIG_SERIF_PHOTOPLUS '8BIM' // meh.
44
#define HOSTSIG_JASC_PAINTSHOP_PRO_X 'PSP9'
45
#define HOSTSIG_PAINT_NET 'NDP.'
46
#define HOSTSIG_ADOBE_PREMIERE '8B)M'/*sic*/
47
 
48
enum{
49
        TAB = 011,
50
        LF  = 012,
51
        CR  = 015,
52
 
53
        CHUNK_ROWS = 64,
54
 
55
        TEXT_FILETYPE = 'TEXT',
56
        SIG_SIMPLETEXT = 'ttxt',
440 daniel-mar 57
        PS_FILTER_FILETYPE = '8BFM'
259 daniel-mar 58
};
59
 
480 daniel-mar 60
#ifdef _WIN32
477 daniel-mar 61
typedef struct none_slider_info_ {
62
        BOOL initialized;
63
} none_slider_info;
64
 
65
typedef struct comctl_slider_info_ {
66
        BOOL initialized;
67
        HMODULE hLib;
68
} comctl_slider_info;
69
 
70
typedef struct plugin_dll_slider_info_ {
71
        BOOL initialized;
72
        HMODULE hLib;
73
        DWORD messageId;
74
} plugin_dll_slider_info;
480 daniel-mar 75
#endif
477 daniel-mar 76
 
489 daniel-mar 77
// size: 0x2090 (8336 Bytes)
456 daniel-mar 78
typedef struct globals_t_ {
480 daniel-mar 79
        PARM_T parm;
408 daniel-mar 80
        Boolean standalone;
81
        Boolean parmloaded; // this means that the filter is loaded, but without PARM (title, author, etc.)
82
        Boolean obfusc;
489 daniel-mar 83
        // (padding of 1 byte here)
84
        OSType lastKnownBufferVersion;
85
        OSType lastKnownHandleVersion;
500 daniel-mar 86
        double* tantab;
87
        double* costab;
480 daniel-mar 88
#ifdef _WIN32
259 daniel-mar 89
        HWND hWndMainDlg;
477 daniel-mar 90
        none_slider_info noneSliderInfo;
91
        comctl_slider_info comctlSliderInfo;
92
        plugin_dll_slider_info pluginDllSliderInfo;
476 daniel-mar 93
#endif /* _WIN32 */
259 daniel-mar 94
} globals_t;
95
 
96
extern globals_t *gdata;
97
 
98
#define NUM_CELLS 0x100
99
 
100
extern struct node *tree[4];
492 daniel-mar 101
extern TCHAR *err[4];
259 daniel-mar 102
extern int errpos[4],errstart[4];//,nplanes;
379 daniel-mar 103
extern uint8_t slider[8];
301 daniel-mar 104
extern value_type cell[NUM_CELLS];
259 daniel-mar 105
extern char *expr[4];
106
 
107
extern int tokpos,tokstart,varused[];
492 daniel-mar 108
extern TCHAR *errstr;
259 daniel-mar 109
 
110
//#define DEBUG
111
 
430 daniel-mar 112
typedef struct InternalState_ {
379 daniel-mar 113
        Boolean bak_obfusc;
114
        Boolean bak_standalone;
115
        Boolean bak_parmloaded;
116
        char* bak_expr[4];
117
        uint8_t bak_slider[8];
118
        PARM_T bak_parm;
430 daniel-mar 119
} InternalState;
379 daniel-mar 120
 
271 daniel-mar 121
// from main.c
276 daniel-mar 122
unsigned long get_parm_hash(PARM_T *parm);
483 daniel-mar 123
void DoPrepare(FilterRecordPtr epb);
124
void DoStart(FilterRecordPtr epb);
125
OSErr DoContinue(FilterRecordPtr epb);
126
void DoFinish(FilterRecordPtr epb);
127
void RequestNext(FilterRecordPtr epb);
430 daniel-mar 128
InternalState saveInternalState();
129
void restoreInternalState(InternalState state);
259 daniel-mar 130
 
271 daniel-mar 131
// from read.c
492 daniel-mar 132
Boolean readparams_afs_pff(Handle h, TCHAR**reason);
259 daniel-mar 133
void convert_premiere_to_photoshop(PARM_T* photoshop, PARM_T_PREMIERE* premiere);
492 daniel-mar 134
Boolean readfile_8bf(StandardFileReply *sfr, TCHAR**reason);
259 daniel-mar 135
Handle readfileintohandle(FILEREF r);
492 daniel-mar 136
Boolean readfile_afs_pff(StandardFileReply* sfr, TCHAR** reason);
137
Boolean readfile_ffx(StandardFileReply* sfr, TCHAR** reason);
138
Boolean readfile_picotxt(StandardFileReply* sfr, TCHAR** reason);
394 daniel-mar 139
Boolean readPARM(PARM_T* parm,Ptr h);
259 daniel-mar 140
 
271 daniel-mar 141
// from save.c
389 daniel-mar 142
OSErr saveparams_afs_pff(Handle h);
143
OSErr saveparams_picotxt(Handle h, Boolean useparm);
259 daniel-mar 144
OSErr savehandleintofile(Handle h,FILEREF r);
389 daniel-mar 145
Boolean savefile_afs_pff_picotxt(StandardFileReply *sfr);
259 daniel-mar 146
 
271 daniel-mar 147
// from make_*.c
259 daniel-mar 148
OSErr make_standalone(StandardFileReply *sfr);
149
 
271 daniel-mar 150
// from process.c
259 daniel-mar 151
Boolean setup(FilterRecordPtr pb);
152
void evalpixel(unsigned char *outp,unsigned char *inp);
153
 
271 daniel-mar 154
// from make.c
259 daniel-mar 155
unsigned long printablehash(unsigned long hash);
393 daniel-mar 156
size_t fixpipl(PIPropertyList *pipl,size_t origsize,char* title, long *event_id);
259 daniel-mar 157
size_t aete_generate(void* aeteptr, PARM_T *pparm, long event_id);
292 daniel-mar 158
 
159
// from obfusc.c
347 daniel-mar 160
extern const volatile uint64_t cObfuscSeed; // this value will be manipulated during the building of each individual filter (see make_win.c)
293 daniel-mar 161
int obfuscation_version(PARM_T* pparm);
347 daniel-mar 162
uint64_t obfusc(PARM_T* pparm);
271 daniel-mar 163
void deobfusc(PARM_T* pparm);
259 daniel-mar 164
 
271 daniel-mar 165
// from loadfile_*.c
492 daniel-mar 166
Boolean loadfile(StandardFileReply *sfr, TCHAR**reason);
167
Boolean readPARMresource(HMODULE hm, TCHAR**reason);
259 daniel-mar 168
 
169
// from main.c
170
int64_t maxspace();
171
Boolean maxspace_available();
172
Boolean host_preserves_parameters();
173
 
174
// from parser.y
175
struct node *parseexpr(char *s);
176
 
286 daniel-mar 177
// from funcs.c
178
void factory_initialize_rnd_variables();
179
 
271 daniel-mar 180
// Useful macros
489 daniel-mar 181
 
182
// Note: "bigDocumentData->PluginUsing32BitCoordinates" will be set by filterSelectorStart, if HAS_BIG_DOC(pb) is true
259 daniel-mar 183
#define HAS_BIG_DOC(x) ((x)->bigDocumentData != NULL)
184
 
185
#define BIGDOC_IMAGE_SIZE(x) ((x)->bigDocumentData->imageSize32)
186
#define IMAGE_SIZE(x) ((x)->imageSize)
187
 
188
#define BIGDOC_FILTER_RECT(x) ((x)->bigDocumentData->filterRect32)
189
#define FILTER_RECT(x) ((x)->filterRect)
190
 
191
#define BIGDOC_IN_RECT(x) ((x)->bigDocumentData->inRect32)
192
#define IN_RECT(x) ((x)->inRect)
193
 
194
#define BIGDOC_OUT_RECT(x) ((x)->bigDocumentData->outRect32)
195
#define OUT_RECT(x) ((x)->outRect)
196
 
197
#define BIGDOC_MASK_RECT(x) ((x)->bigDocumentData->maskRect32)
198
#define MASK_RECT(x) ((x)->maskRect)
199
 
200
#define BIGDOC_FLOAT_COORD(x) ((x)->bigDocumentData->floatCoord32)
201
#define FLOAT_COORD(x) ((x)->floatCoord)
202
 
203
#define BIGDOC_WHOLE_SIZE(x) ((x)->bigDocumentData->wholeSize32)
204
#define WHOLE_SIZE(x) ((x)->wholeSize)
205
 
439 daniel-mar 206
#endif