Subversion Repositories filter_foundry

Rev

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

Rev Author Line No. Line
220 daniel-mar 1
 
2
Wishlist/ToDo-List
3
==================
4
 
389 daniel-mar 5
ToDo for the next release
6
-------------------------
385 daniel-mar 7
 
405 daniel-mar 8
(None)
385 daniel-mar 9
 
10
 
274 daniel-mar 11
Known bugs
12
----------
220 daniel-mar 13
 
370 daniel-mar 14
(None)
220 daniel-mar 15
 
249 daniel-mar 16
 
220 daniel-mar 17
Minor priority stuff or ideas
18
-----------------------------
19
 
419 daniel-mar 20
* Right to the sliders you can enter numbers which are outside the range of 0..255 . Prevent that, please.
21
 
407 daniel-mar 22
* Win95 cannot detect a 64 bit obfuscated filter, because it cannot read the resources. Should there be a different mechanism for detecting an obfuscated filter? (e.g. a signature in PiPL which can be found using binary search?)
23
 
405 daniel-mar 24
* compat_win_resource.c (compatibility for Win9x resource generation): Cannot delete resources, see https://bugs.winehq.org/show_bug.cgi?id=52046
25
 
369 daniel-mar 26
* Add functionality to save to FFX (Filters Unlimited) filters. But we must use the "Make" dialog, because it contains title/category/author/copyright?
366 daniel-mar 27
 
398 daniel-mar 28
* Filter Factory is much faster than Filter Foundry (example rad.afs). Why?! Test if it is also the case if optimized with "-O2" (release configuration).
294 daniel-mar 29
 
408 daniel-mar 30
* When a filter is created obfuscated and you click "Make" again, or if you loaded an old obfuscated filter (without protection), should then be the "obfuscate" checkbox be checked again?
276 daniel-mar 31
 
228 daniel-mar 32
* The filter `r*(y&1)` looks horrible when you zoom out!
221 daniel-mar 33
 
228 daniel-mar 34
* Memory leak: `strdup()` and `my_strdup()` need `free()` !
220 daniel-mar 35
 
36
* Why can't we edit *.rc files in Visual Studio?
37
 
346 daniel-mar 38
* `host_preserves_parameters` (enabled with GIMP/PSPI) should somehow delete the temporary AFS file at each restart of GIMP. Otherwise, the user would always see the previous session when they re-open GIMP.
220 daniel-mar 39
 
228 daniel-mar 40
* Create and evaluate more testcases, and either fix differences between FilterFactory and FilterFoundry, or document them in "Filter Factory Compatibility.md"
220 daniel-mar 41
 
228 daniel-mar 42
* Should an expression like "----r" be forbidden? (Multiple negate signs) On the other hand, FilterFactory didn't forbit them either.
220 daniel-mar 43
 
228 daniel-mar 44
* CMYK mode is possible (although a bit misleading to have r=c, g=m, b=y, a=k), but then it is impossible to control the alpha channel.
220 daniel-mar 45
 
228 daniel-mar 46
* I have found following in the source code... Do we need to do something here?
220 daniel-mar 47
 
228 daniel-mar 48
        strcpy(gdata->parm.formula[i],expr[i] ? expr[i] : "bug! see builddlgitem");
49
 
220 daniel-mar 50
* Search for "TODO", "FIXME" and "Codereview" in the code
51
 
52
* There is no warning if a formula contains a number that exceeds 32 bits.
53
 
228 daniel-mar 54
* Minor bug: Testcase testcases/rst_3.afs applied to a 1000x1000 canvas: When the preview is zoomed in to 29% or 59%, and the preview is panned, the bars change during panning. It does not look "smooth" like in 100%, 50%, or 25% zoom. The problem is that the offset of the preview area is always different, and if the zoom level is not a multiple of two, you will always "pick" other bars.
55
 
220 daniel-mar 56
* Fast (double) click in [+]/[-] scroll buttons is not accepted as 2 clicks / zoom-requests
57
 
58
* Support more colors modes and 16bit. Why is Lab color not accepted, although doesSupportLABColor is set?
228 daniel-mar 59
 
220 daniel-mar 60
* Add Unicode support? (Does PiPL support Unicode at all?)
61
 
62
* Picture with 78x63 in grayscale mode: In preview on the left side there is a black bar
63
 
346 daniel-mar 64
* With the change in 1.7 in re "*preview evaluates whole picture if state changing functions rst,put,rnd are used*": Is there anything we can do to make it more performant when the user changes sliders? Especially with large pictures, the process becomes a bit laggy! => This feature was removed in 1.7.0.9, because it was extremely slow for some filters!
228 daniel-mar 65
 
220 daniel-mar 66
* Check why the plugin crashes Premiere 5 (called in image filter mode; obviously not as transition filter)
67
 
311 daniel-mar 68
* Cosmetics: Include a plugin-like-icon as icon #1 so that there would be a good icon in case some apps try to display an icon from the 8BF file?
69
(Attention: make_win.c deletes icon #1 because it thinks that it is the exclamation icon, so this needs to be changed then)
220 daniel-mar 70
 
346 daniel-mar 71
* Let PIPL have resource ID 16 instead of 16000, so that other apps might be able to recognize it as Filter Factory plugin?
311 daniel-mar 72
 
346 daniel-mar 73
* Make Filter Foundry ready for translations? In Windows, put all strings in string lists (resources, `LoadStringA`), as well as in Mac resources.
74
 
75
* Should the compiler flags in `funcs.h` placed as resource (binary bits), so that the behavior can be changed if required?
76
 
77
 
366 daniel-mar 78
Big ideas
79
---------
80
 
81
* How about implementing the "Filters Unlimited" (FFX) language?
82
 
83
 
303 daniel-mar 84
Questions
85
---------
86
 
346 daniel-mar 87
* What is the exact purpose of the variable `needinput`?
88
  It is set if we use rgbaiuvc or `cnv()`
89
  But why isn't it set if we use `src()` or `rad()`. Is that OK???
312 daniel-mar 90
 
346 daniel-mar 91
* Why does everybody write that the Filter Factory `tan(x)` function is bounded?
303 daniel-mar 92
  The Filter Factory manual writes that it is bounded, and the Filter Factory Programming Guide
93
  does also mention it (including a graphic).
94
  Is it a bug that it goes infinity? Do we need to fix it in Filter Foundry???
95
 
96
  Following examples of Filter Factory show that it is going off-bound! (Also tested with PS 3.0.5)
97
 
98
    tan(255)  ==  167761 ? 255 : 0
99
    tan(256)  == -167772 ? 255 : 0
100
    tan(-768) ==  167772 ? 255 : 0
101
 
335 daniel-mar 102
* Is `D` is supposed to be a synonym `dmax` (then `D` should stay 512),
103
  or is `D` supposed to be `dmax-dmin` (then `D` should be 1024 and `dmin` should be 512)?
303 daniel-mar 104
 
353 daniel-mar 105
* In regards length of the PIPL TLV, should it contain padding or not? Asked in https://community.adobe.com/t5/photoshop-ecosystem-discussions/question-about-pipl-tlv-encoding/m-p/12377822
346 daniel-mar 106
   - No:
107
	* Photoshop does not accept if padding is not added to the length value
353 daniel-mar 108
	* pluginsdk\photoshopapi\pica_sp\SPPiPL.h states: "Number of characters in the data array. Rounded to a multiple of 4."
346 daniel-mar 109
	* Official Adobe plugins, e.g. „3D Transform.8bf“ are rounding the length to a multiple of 4 (actually, rounding to the next possible multiple 4, so that padding is always guaranteed).
353 daniel-mar 110
	* cnvtpipl.exe does the same
346 daniel-mar 111
   - Yes:
112
	* The 1997 PICA documentation (page 23) and 1996 "Cross-Application Plug-in Development Resource Guide" describe both: "Contains the length of the propertyData field. It does not include any padding bytes after propertyData to achieve four byte alignment. This field may be zero."
353 daniel-mar 113
	* pluginsdk/documentation/html/struct_p_i_property.html writes the same thing
335 daniel-mar 114
 
346 daniel-mar 115
  Is there really a defect in these documentations?
116
 
117
 
220 daniel-mar 118
Design/UI Tweaks
119
----------------
120
 
121
* Should it be possible to zoom more than 100%?
122
 
228 daniel-mar 123
* The vertical scrollbar should auto-hide when the expression formula is short. (Also for Mac). Unfortunately, this task is very hard in WIN32 API.
220 daniel-mar 124
 
343 daniel-mar 125
* Should there be more (visual) space for expressions, like in Filter Factory? Also, Filter Factory had more visual space for slider names (e.g. required in Alf's Power Tools).
220 daniel-mar 126
 
127
* Sliders are extremely tiny!
128
 
129
* With some canvas formats, the initial zoom level is not "fully zoomed out"
130
 
228 daniel-mar 131
* If you load an AFS file which has multi-line expressions, then the first expression (R) is scrolled down (because it has the focus)
220 daniel-mar 132
 
271 daniel-mar 133
 
134
Regarding Macintosh
135
-------------------
136
 
231 daniel-mar 137
* Unsure regarding AppleScript !
138
	https://developer.apple.com/library/archive/documentation/mac/pdf/Interapplication_Communication/AE_Term_Resources.pdf
139
	1. Do we need an 'auet' resource?
140
	2. Does our implementation work with AppleScript?
141
	3. Must the human-language term REALLY be unique?! So only one plugin on the whole system may use the word "ctl(0)" or "red" or "size"??? Why do we have unique keys if the human language needs to be unique too?!  (see "Important" section at page 8-14)
228 daniel-mar 142
 
143
* In ui_mac.c, there does not seem to be a limit for the expressions. So, is it possible to write an expression longer than 1023 bytes, which would lead to a crash?
220 daniel-mar 144
 
228 daniel-mar 145
* Macintosh: Please look at the (*) marked entries in CHANGELOG.md and verify the bugs/fixes and/or apply the changes on Mac.
220 daniel-mar 146
 
228 daniel-mar 147
* Macintosh: Is it possible to create a 64 bit version of FilterFoundry? Do we need to rewrite the UI code because the Carbon Framework is replaced by Cocoa!
220 daniel-mar 148
 
149
* Some *.r files include "PiMI.r". Is this part of an old SDK or is a file missing?
150
 
346 daniel-mar 151
* Support BigDocument (Add "ms32" PiPL, set `pb->bigDocumentData->PluginUsing32BitCoordinates` and use `pb->bigDocumentData->*`)
220 daniel-mar 152
 
347 daniel-mar 153
* Correctly implement obfuscation version 6 (need to fix the binary executable code during build!)
232 daniel-mar 154
 
346 daniel-mar 155
 
220 daniel-mar 156
Things to check/correct for other Telegraphics plugins (FIXED in FilterFoundry)
157
------------------------------------------------------
158
 
228 daniel-mar 159
* The lengths of the PIPL TLV structure must include everything, including string paddings, with 1 zero padding guaranteed. See annotations in "GIMP Incompatibilities.md".
220 daniel-mar 160
 
228 daniel-mar 161
* The language/country code in VarFileInfo must be a code that exists in StringFileInfo. The translation strings "04900000" don't fit together "080904B0".
220 daniel-mar 162
 
163
* 64 Bit Windows builds
164
 
165
* XP Manifests (+ activation contexts)
230 daniel-mar 166
 
167
* Fix AETE resources, make keys unique and remove scope in order to enable AppleScript
232 daniel-mar 168
 
346 daniel-mar 169
* Support BigDocument (Add "ms32" PiPL, set `pb->bigDocumentData->PluginUsing32BitCoordinates` and use `pb->bigDocumentData->*`)
303 daniel-mar 170
 
171
* Place plugin dialogs on the correct screen