Open main menu

Sword25/TODO

< Sword25
Revision as of 21:03, 21 August 2010 by Sev (talk | contribs) (Updated status, answered about BS_Vertex refactoring)

Status

  • Engine starts and compiles scripts. Menu shows in funky colors.

TODOs

  • Audio support
  • Get rid of BS_Vertex (use Common::Point)
    • It may be more advisable to subclass Common::Point, as the vertex class has several methods, such as converting to/from Lua vertexes, that should remain associated with the class
      • In this case there is no point of refactoring then, and I can just rename BS_Vertex to Vertex. Thoughts?
  • 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
  • Enhance package manager to allow running with extracted data just like original did
  • Graphics:
    • YUV->RGB converter for video (fmv/theora_decoder.cpp)
    • Current blitting code looks all wrong
    • 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