Info
This post was imported from a personal note. It may contain inside jokes, streams of consciousness, errors, and other nonsense.
Okay, got screenshots working after fighting with regular expressions a bit. I had to escape backslashes from the path as well.
Also implemented recording animations. Here’s my one-liner to convert from PNG to GIF and then combine them into an animation, since SFML doesn’t output GIF images (apparently) and Gifsicle doesn’t convert either.
mogrify -format gif *.png ; gifsicle --delay=6 --loop --colors 256 frame*.gif > anim.gif
Maybe I should get the application to output an animated GIF and save me a few steps… hmm…
The speed is all over the place and feels … ugly. Taking the screenshot takes a while and I’m passing the time elapsed since the last simulation step into the simulation so it’s not surprising.
Maybe a quick fix is to reset the clock after the screenshot is captured..? That assumes running the simulation doesn’t take time but then again, making the timing accurate for interaction isn’t exactly important right now.