Games without a(n explicit) game loop
Posted
by
Davy8
on Game Development
See other posts from Game Development
or by Davy8
Published on 2011-03-06T15:21:47Z
Indexed on
2011/03/07
0:18 UTC
Read the original article
Hit count: 246
gameloop
Most game development happens with a main game loop. Are there any good articles/blog posts/discussions about games without a game loop? I imagine they'd mostly be web games, but I'd be interested in hearing otherwise.
(As a side note, I think it's really interesting that the concept is almost exclusively used in gaming as far as I'm aware, perhaps that may be another question.)
Edit:
I realize there's probably a redraw loop somewhere. I guess what I really mean is a loop that is hidden to you. Frames are something you as the developer are not concerned with as you're working on a higher level of abstraction. E.g. someLootItem.moveTo(inventory, someAnimatationType)
and that will move from the loot box to your inventory using the specified animation type without the game developer having to worry about the implementation details of that animation.
Maybe that's how "real" games end up working, but from reading most tutorials they seem to imply a much more granular level of control is used, but that might just be an artifact of being a tutorial.
© Game Development or respective owner