Keishiki/TODO.md

47 lines
1.5 KiB
Markdown
Raw Normal View History

2024-05-26 16:05:18 -04:00
# NOW
2024-05-28 17:17:27 -04:00
## Chores
- Blending modes
- Basic plugboard nodes
- Node groups
2024-05-22 09:07:17 -04:00
## Compositor
2024-05-25 09:06:43 -04:00
- Manage Samplers -- (Resources in general)
2024-05-26 16:05:18 -04:00
- Blender previews (important)
2024-05-22 09:07:17 -04:00
- Data model for comps
2024-05-23 03:18:24 -04:00
- Dump and read back state, (de)serialization!!!
2024-05-26 16:05:18 -04:00
- Non-negotiables:
- Text (idea: index-based evaluation in plugboard)
- Shapes (idea: embed glisp :mmtroll:, need to inquire -- still a lot of friction for simple shapes if we don't also get the glisp tools)
2024-05-27 12:06:15 -04:00
- External data driving (json or something else?)
2024-05-28 17:17:27 -04:00
- Pre compose
- Motion blur
2024-05-26 16:05:18 -04:00
- Layer Groups (jokes -- can be completely UI side)
2024-05-22 09:07:17 -04:00
## UI
2024-05-26 16:05:18 -04:00
- Interpolation Editor init
- Timeline/Dope sheet init
- Viewport gizmos (Layer-specific & nodes -- can separate into different tools?)
2024-05-28 17:17:27 -04:00
- Node loop detection (separate DFS (extra work) or be smart in recursion)
2024-05-26 16:05:18 -04:00
# Later
## Compositor
- std::unordered_map -> std::flat_map pending compiler support
- Simple 3D engine
2024-05-22 09:07:17 -04:00
2024-05-27 12:06:15 -04:00
## UI
- Adapt nodes for shader graph -- code editor will be fine for now
2024-05-22 09:07:17 -04:00
## Audio
2024-05-24 05:05:23 -04:00
- Wait for SDL3!
2024-05-26 16:05:18 -04:00
- SDL_mixer will be able to do all of wav ogg flac mp3 opus, we live in good times
- output needs to be handled differently (if we care at all -- likely not)
2024-05-22 09:07:17 -04:00
## IO
- Video import (research opencv libavcodec etc)
2024-05-26 16:05:18 -04:00
- maybe https://superuser.com/a/1397578 -- no portable way to get stdout, this is messed up
- boost::process? idk, might as well just go through a file
2024-05-25 09:06:43 -04:00
- File dialogues pending SDL3
2024-05-26 16:05:18 -04:00
- https://wiki.libsdl.org/SDL3/CategoryDialog
- Down the road: OIIO output for more than PNG's
- don't care about video export -- leave it for ffmpeg