Subversion Repositories filter_foundry

Rev

Rev 296 | Rev 304 | 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
 
274 daniel-mar 5
Known bugs
6
----------
220 daniel-mar 7
 
296 daniel-mar 8
(None known)
220 daniel-mar 9
 
249 daniel-mar 10
 
295 daniel-mar 11
TODO
12
----
13
 
14
* Write an updated manual based on the Filter Factory documentation
15
 
16
 
220 daniel-mar 17
Minor priority stuff or ideas
18
-----------------------------
19
 
294 daniel-mar 20
* Filter Factory is much faster than Filter Foundry (example rad.afs). Why?!
21
 
282 daniel-mar 22
* Why doesn't the OpenWatcom files have a PE checksum?
23
 
276 daniel-mar 24
* When a filter is created obfuscated and you click "Make" again, should then be the "obfuscate" checkbox be checked again?
25
 
228 daniel-mar 26
* The filter `r*(y&1)` looks horrible when you zoom out!
221 daniel-mar 27
 
228 daniel-mar 28
* Memory leak: `strdup()` and `my_strdup()` need `free()` !
220 daniel-mar 29
 
30
* Why can't we edit *.rc files in Visual Studio?
31
 
247 daniel-mar 32
* 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 33
 
228 daniel-mar 34
* Create and evaluate more testcases, and either fix differences between FilterFactory and FilterFoundry, or document them in "Filter Factory Compatibility.md"
220 daniel-mar 35
 
228 daniel-mar 36
* Should an expression like "----r" be forbidden? (Multiple negate signs) On the other hand, FilterFactory didn't forbit them either.
220 daniel-mar 37
 
228 daniel-mar 38
* 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 39
 
228 daniel-mar 40
* I have found following in the source code... Do we need to do something here?
220 daniel-mar 41
 
228 daniel-mar 42
        strcpy(gdata->parm.formula[i],expr[i] ? expr[i] : "bug! see builddlgitem");
43
 
220 daniel-mar 44
* Search for "TODO", "FIXME" and "Codereview" in the code
45
 
228 daniel-mar 46
* Evaluate the file "Filter Factory Compatibility.md" and think about if we should change some of our functions to become 100% compatible with Filter Factory.
47
 
220 daniel-mar 48
* There is no warning if a formula contains a number that exceeds 32 bits.
49
 
228 daniel-mar 50
* Check, if all combinations of imports work, see testcases/import/README.md
51
 
52
* 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.
53
 
220 daniel-mar 54
* Fast (double) click in [+]/[-] scroll buttons is not accepted as 2 clicks / zoom-requests
55
 
56
* Support more colors modes and 16bit. Why is Lab color not accepted, although doesSupportLABColor is set?
228 daniel-mar 57
 
220 daniel-mar 58
* Add Unicode support? (Does PiPL support Unicode at all?)
59
 
60
* Picture with 78x63 in grayscale mode: In preview on the left side there is a black bar
61
 
228 daniel-mar 62
* 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!
63
 
220 daniel-mar 64
* Check why the plugin crashes Premiere 5 (called in image filter mode; obviously not as transition filter)
65
 
66
 
303 daniel-mar 67
Questions
68
---------
69
 
70
* Why does everybody write that the Filter Factory tan(x) function is bounded?
71
  The Filter Factory manual writes that it is bounded, and the Filter Factory Programming Guide
72
  does also mention it (including a graphic).
73
  Is it a bug that it goes infinity? Do we need to fix it in Filter Foundry???
74
 
75
  Following examples of Filter Factory show that it is going off-bound! (Also tested with PS 3.0.5)
76
 
77
    tan(255)  ==  167761 ? 255 : 0
78
    tan(256)  == -167772 ? 255 : 0
79
    tan(-768) ==  167772 ? 255 : 0
80
 
81
 
220 daniel-mar 82
Design/UI Tweaks
83
----------------
84
 
228 daniel-mar 85
* Windows open file dialog: Why does it have a preview pane?
226 daniel-mar 86
 
228 daniel-mar 87
* The exclamation mark symbols should have a tooltip ("hint") when the mouse hovers over it. (Also for Mac). Not sure how easy it is to do that with WIN32 API
220 daniel-mar 88
 
89
* Should it be possible to zoom more than 100%?
90
 
228 daniel-mar 91
* 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 92
 
93
* Should there be more (visual) space for expressions, like in Filter Factory?
94
 
95
* Sliders are extremely tiny!
96
 
97
* "+" and "-" buttons with hand pointer cursor?
98
 
99
* With some canvas formats, the initial zoom level is not "fully zoomed out"
100
 
228 daniel-mar 101
* 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 102
 
271 daniel-mar 103
 
104
Regarding Macintosh
105
-------------------
106
 
231 daniel-mar 107
* Unsure regarding AppleScript !
108
	https://developer.apple.com/library/archive/documentation/mac/pdf/Interapplication_Communication/AE_Term_Resources.pdf
109
	1. Do we need an 'auet' resource?
110
	2. Does our implementation work with AppleScript?
111
	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 112
 
113
* 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 114
 
228 daniel-mar 115
* 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 116
 
228 daniel-mar 117
* 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 118
 
119
* Some *.r files include "PiMI.r". Is this part of an old SDK or is a file missing?
120
 
232 daniel-mar 121
* Support BigDocument (Add "ms32" PiPL, set pb->bigDocumentData->PluginUsing32BitCoordinates and use pb->bigDocumentData->*)
220 daniel-mar 122
 
232 daniel-mar 123
 
220 daniel-mar 124
Things to check/correct for other Telegraphics plugins (FIXED in FilterFoundry)
125
------------------------------------------------------
126
 
228 daniel-mar 127
* 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 128
 
228 daniel-mar 129
* 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 130
 
131
* 64 Bit Windows builds
132
 
133
* XP Manifests (+ activation contexts)
230 daniel-mar 134
 
135
* Fix AETE resources, make keys unique and remove scope in order to enable AppleScript
232 daniel-mar 136
 
137
* Support BigDocument (Add "ms32" PiPL, set pb->bigDocumentData->PluginUsing32BitCoordinates and use pb->bigDocumentData->*)
303 daniel-mar 138
 
139
* Place plugin dialogs on the correct screen