added protect.c
[swftools.git] / TODO
diff --git a/TODO b/TODO
index b9ef7ef..4a22a7e 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,48 +1,86 @@
-Priorities:
-1. Make the swfs that pdf2swf generates smaller
-2. Make pdf2swf faster
-3. General improvements
-4. Make pdf2swf cope with more complex pdfs
-5. Do some sample swfs for swfcombine 
-6. Cleanups in rfxswf-lib.
+swfc:
 
-Make the swfs pdf2swf generates smaller:
+    * .editbox
+    * .buttons
+    * .texture
+    * .orbit
+    * plugins?
+    * .lock/.unlock
+    * object rel coords, as in obj1.(x,y) and monkey.nose
+       "follow me" feature:  default, or should it be explicitly specified?
+    * .replace command
+       .crossfade command?
+    * .soundstream
+    * text: newlines
+    * .egon  (stub is there, never really implemented)... folding edges?
+    * .importassets
+    * default output filename (name.sc -> name.swf) if unspecified
+    * SWF 3 actionscript commands shortcut
+    * .hide/.show?
+    * store instance coordinates for .put with same name after .del?
+    * macros?  looping?  ways of reducing repetitive coding (and the length of sc files)?
 
-    * At the moment, the output of pdf2swf is a bunch of
-      polygons. Try using seperate shapes for each character,
-      and packing all shapes of a page in a font. 
+pdf2swf:
 
-Make pdf2swf cope with more complex pdfs:
+    * Implement dashed lines (maybe by using fillstyle to keep Shapes small, maybe
+             optional- use another color for dashed lines)
+    * several bounding boxes are too big
+    * support for ttf fonts in --fontdirs
+    * add support for FreeType
+    * upgrade xpdf
 
-    The following pdf properties are not yet dealt with:
-    * Links
-    * lossless image file formats
-    * dashed lines
-    * (type 3 and truetype fonts)
-    Bugs:
-    * big jpegs sometimes have wrong colors
+avi2swf:
 
-Make pdf2swf faster:
+    * update manpage
+    * speed up h.263 routines (MMX?)
 
-    * Embedded fonts which are used more than once are also converted more
-      than once. Implement a font cache, like the one in xpdf. (font->getID().num
-      seems to be unique for every font)
+swfcombine:
 
-Do some sample swfs for swfcombine:
+    * allow "combining" Actionscript and SWF.
+    * "swfcombine -mT file.swf -x 300 file2.swf" doesn't work
+    * "swfcombine file.swf -s 200 box1=file1.swf" doesn't work if file1.swf contains sprites
+    * "swfcombine file.swf -x 200 -y 200 -s 200 box1=file1.swf" doesn't work?
+    * Handle Bounding boxes
+    * support for centering (remove need to set -x,-y parameters manually when linking
+      preloaders)
 
-    * Some swf for displaying other swfs frame by frame (e.g. with next/previous
-      buttons) would be very handy for swfs generated by pdf2swf
+swfextract:
+    
+    * mp3 extraction should also work for movieclips.
 
-General Improvements:
+swfbbox:
 
-    * temporary file name generation is broken: pdf2swf/pdf2swf.cc, pdf2swf/xpdf/gfile.cc
-    * fix memory leaks
-    * rfxswf: modules/swfshape doesn't allow changing to fillstyle 0
-    * write manpages for swfstrings and swfdump
-    * --version should work in all tools.
+    * add manpage
+    * support for text boxes
+
+wav2swf:
+
+    * pad blocks for mp3 compression
+
+librfxswf:
+
+    * logging
+
+png2swf:
+
+    * Image mode 4
+    * Interlace mode 1
+
+Makefiles/configure/installation:
+
+    * check for vsnprintf, bcopy, bzero, strndup etc. and supply replacements
+
+other:
+
+    * swf2fig
+    * swfrender
+    * update man pages
+
+documentation:
+
+    * basic command set 
+    * example set illustrating basics
+    * cook book:  how to get familiar effects 
+       (fade/wipe/titles/scrolling/false perspective etc)
+    * complete list of all required packages and libs and how to get/build them
 
-Cleanups in rfxswf-lib:
-    
-    * LPTAGs etc. should be TAG*s
-    * function names should have a prefix (rfxswf_ or swflib_ or sth.)
-    * GetMatrix should be named GetMATRIX, as it gets a MATRIX datatype. Same for CXFORM etc.