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

How can I program hourglass behavior (similar like on picture) for my game?

alt text

Should I make something like gravitation and process each grain of sand?

What about digital hourglass (like on this clocks)? alt text

share|improve this question
1  
You can just draw each frame separately and render it as a static animation. – Anon. Dec 8 '10 at 21:30
What would be the required resolution for the sand grains? High resolution would likely benefit from using a particle engine, low resolution could be "faked" like in the 2nd picture you posted. Could you clarify the purpose. – aaronfarr Dec 8 '10 at 21:33
1  
In a previous life I actual modelled the behaviour of dense granular flows of sand. My advice? Unless you're aiming for a PhD, accept a lower accuracy for the sake of getting something that looks right. – Tim Barrass Dec 8 '10 at 21:35
and -- actually a nice question :) – Tim Barrass Dec 8 '10 at 21:40
I was thinking about creating Android live wallpaper and a game based on this principle (that the particles of sand falling down). – Evgeny Vinnik Dec 8 '10 at 22:01
show 3 more comments

4 Answers

up vote 2 down vote accepted

Tangentially, you can model falling sand with cellular automata. I'd not considered using it for an hourglass simulation, but in principle it might work quite nicely, and be a fun project.

Looking at your digital hourglass -- either the grains move in set patterns, or it might use something like this CA.

share|improve this answer
This simulation will fit nicely, thank you! – Evgeny Vinnik Dec 8 '10 at 22:04
I'm tempted to have a go (at the simulation side) myself :) Enjoy! – Tim Barrass Dec 8 '10 at 22:21

Wasting effort on a "proper" simulation for grains of sand for the sake of an in-game hourglass is serious over-engineering.

Get an artist to produce a high-quality animation and either render it as a series of static images or as a movie.

Seriously, don't simulate the sand.

share|improve this answer

Modelling it is making a rod for your own back, you'd be better off just drawing the frames by hand and playing them back.

But -- if maths is your thing you could:

  • work out the volume of sand in the top.
  • define a rate of volume flow through the neck (keep this arbitrary as you'll want to tweak it).
  • at any given time you can use the flow rate to work out how much sand has left the top.
  • if you know the shape of the top vessel you can work out the current height of sand given the current volume of sand.
  • if you know the shape of the bottom vessel you can work out the current height of sand given the volume of sand that's flowed through the neck.
share|improve this answer
Come on Tim, you know the way to go is discrete element modelling. – High Performance Mark Dec 8 '10 at 23:22
Hehe; but little steps pay dividends I think :) – Tim Barrass Jan 4 '11 at 20:47

I will play devil's advocate here and assume you actually want to simulate sand in your game not just create a simple hour glass loading indicator (as people have said it would be a waste of effort).

So I go back to my initial comment. What kind of resolution are you looking for?

Chances are you don't need to simulate each granule of sand. So keep it simple and leave the physics out of it and just simulate the effect.

For example, off the top of my head you can use 3 simple rules: Gravity: If the pixel below a "sand pixel" is empty shift that column down.

Cave In: If there is a empty space between two columns of "sand pixels" fill it in if the space below it is not empty (ie. not falling)

Pile Up: if there is empty space beside a column of "sand pixels" spread it out if the space below it is not empty.

These are just some example of rules that might work. The point is to experiment to come up with a simulation that will give the desired effect. Typically it is less work and processor intensive than modeling the physics.

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.