Difference between revisions of "SCI/TODO"
< SCI
Jump to navigation
Jump to search
(Removed some implemented/obsolete TODOs) |
(Group TODOs by rough estimated difficulty) |
||
Line 1: | Line 1: | ||
* check for places that use char or unsigned char for boolean values, and change those to bool. Even nicer would be to change it to use enum types whose value names express the intention (SearchOptions.RECURSIVE, GraphicsScaleOptions.2X, etc), but just going for bool will already be a big improvement. | * Easy | ||
* | ** rename the sfx/ dir to sound/ or audio/ (it doesn't just deal with "sound effects). | ||
** change the many nice existing function documentation comments to use doxygen syntax | |||
** Change #define lists into enums | |||
* Replace various generic FreeSCI code by their ScummVM counterparts, where it make sense. | |||
* | * Medium | ||
** Convert stuff from "C pseudo classes" to real classes. | |||
** check for places that use char or unsigned char for boolean values, and change those to bool. Even nicer would be to change it to use enum types whose value names express the intention (SearchOptions.RECURSIVE, GraphicsScaleOptions.2X, etc), but just going for bool will already be a big improvement. | |||
** Replace various generic FreeSCI code by their ScummVM counterparts, where it make sense. | |||
** Check old FreeSCI-scummvm branch / repos by Jordi for change that could be salvaged, e.g. the files <code>sfx/device/scumm-midi.cpp</code> and <code>sfx/softseq/scumm-adlib.cpp</code>, or the modifications to the SCI debugger to use the ScummVM console, and stuff. | |||
* Check old FreeSCI-scummvm branch / repos by Jordi for change that could be salvaged, e.g. the files <code>sfx/device/scumm-midi.cpp</code> and <code>sfx/softseq/scumm-adlib.cpp</code>, or the modifications to the SCI debugger to use the ScummVM console, and stuff. | |||
* make the SCI tools compilable (to avoid bitrot, while we change code that they depend on), and finally usable again | * Difficult | ||
** Turn code into templates in following files (now they generate code via #defines): | |||
*** gfx/gfx_pixmap_scale.cpp | |||
*** gfx/picfill.cpp | |||
** make the SCI tools compilable (to avoid bitrot, while we change code that they depend on), and finally usable again. |
Revision as of 12:49, 24 March 2009
- Easy
- rename the sfx/ dir to sound/ or audio/ (it doesn't just deal with "sound effects).
- change the many nice existing function documentation comments to use doxygen syntax
- Change #define lists into enums
- Medium
- Convert stuff from "C pseudo classes" to real classes.
- check for places that use char or unsigned char for boolean values, and change those to bool. Even nicer would be to change it to use enum types whose value names express the intention (SearchOptions.RECURSIVE, GraphicsScaleOptions.2X, etc), but just going for bool will already be a big improvement.
- Replace various generic FreeSCI code by their ScummVM counterparts, where it make sense.
- Check old FreeSCI-scummvm branch / repos by Jordi for change that could be salvaged, e.g. the files
sfx/device/scumm-midi.cpp
andsfx/softseq/scumm-adlib.cpp
, or the modifications to the SCI debugger to use the ScummVM console, and stuff.
- Difficult
- Turn code into templates in following files (now they generate code via #defines):
- gfx/gfx_pixmap_scale.cpp
- gfx/picfill.cpp
- make the SCI tools compilable (to avoid bitrot, while we change code that they depend on), and finally usable again.
- Turn code into templates in following files (now they generate code via #defines):