Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm making a script with ruby that must render frames at 24 frames per second, but I need to wait 1/24th of a second between sending the commands... how can I do that?

sleep seems to only wait in increments of 1 second or more.

update

Well yah, you can do sleep 0.1 if you want, but is this the best way to delay in a ruby script?

share|improve this question

2 Answers

up vote 86 down vote accepted
sleep(1.0/24.0)

As to your follow up question if that's the best way: No, you could get not-so-smooth framerates because the rendering of each frame might not take the same amount of time.

You could try one of these solutions:

  • Use a timer which fires 24 times a second with the drawing code.
  • Create as many frames as possible, create the motion based on the time passed, not per frame.
share|improve this answer
2  
probably want to do a constant. SLEEP_TIME=1.0/24.0; sleep(SLEEP_TIME); that way you don't have to recalculate it 24 times/second, assuming you want all the performance you can get. – Funkodebat Sep 28 '12 at 19:47
6  
@Funkodebat I'm pretty sure every basic ruby runtime does this for you. – Georg Schölly Sep 29 '12 at 9:13
Ruby will memoize that right? – Joseph Silvashy May 15 at 19:07
@JosephSilvashy: I don't have any insight into the ruby interpreter, but ruby mri does not do memoization by default. But I hope it does this kind of optimization while converting the source code to byte code. – Georg Schölly May 16 at 9:01

Pass float to sleep, like sleep 0.1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.