Sword25/TODO

From ScummVM :: Wiki
< Sword25
Revision as of 08:44, 16 August 2010 by Sev (talk | contribs) (Initial content)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Status

  • Engine starts and compiles scripts

TODOs

  • Audio support
  • Get rid of BS_Rect (use Common::Rect)
  • Get rid of BS_Vertex (use Common::Point)
  • Get rid of tinyxml (I've checked, our parser should digest those xmls with no problem)
  • Look why package access is so slow (zip contents caching?)
  • Get rid of Window classes. We handle that in OSystem
  • Graphics:
    • YUV->RGB converter for video (fmv/theora_decoder.cpp)
    • alpha blending (gfx/opengl/glimage.cpp)
    • scaling (same)
    • mirroring (same)
    • Vector image rendering. They used ogg for spline drawing, so we need to reimplement that (borrow from ogg/gimp/inkscape?)
  • Get rid of BS_SERVICE_TABLE (?)
    • because it is (a) ugly concept (b) implemented with global constructors. The worse approach would be to turn those into Singleton classes, but proper would be to remove the wrappers completely since we do not have multiple implementations of each service
  • Enforce our naming conventions, particularly for classes, methods and variables
    • get rid of BS_ prefix