Hi,
Cinema 4D SDK and Cineware are two distinct products with different goals. Cineware allow you to import in your application maxon technologies. This can allow your application to read c4d file or use our render engine to render your scene.
Cinema 4D sdk allow to extend Cinema 4D possibilities like creating a renderer integrated inside Cinema 4D.
I would rather use the Cinema 4D SDK where you can create a VideoPostData. This is how Render Engine are implemented. This pluging type will give you access to the function Execute. This function is called at different points during the render process. You can have a look at this thread where i used the function CreateRay
to create my own lens effect.
Inside this Execute function you should not have any issue about the scene update. (The scene is duplicated when it is rendered). If so, you can always "force" c4d to ExecutePasses to be sure that all objects have an updated cache. (In some cases, you must call ExecutePasses twice in a row). The system will send each frame one after the other you do not have to change the time manually.
If you want to change the document time, you can use SetTime but as said in the note, you must use ExecutePasses
.
Cineware is rough. If you want to read animation, you must access the animation track for every parameter and retrieve the cache of each generator.
Cheers,
Manuel