The topic is events in a game. Mainly sharing experience.
No matter what framework you use there are some things that has to exist in all games such as events.
Mostly games separate functions such as handleEvent()update()draw() and blah blah. The choice is programmers of course.
What i want to talk is where and how exactly do you handle your events. Do you use an event poll class. Maybe inside handleEvent function. Or you just handle events in update function. Please share your experience gained at former projects, companies.
Also when i was using using handleEvents(). I always thought it was not a good solution at all. Even at some small scaled games(Though i did not make any game that is published). Which bugged me till now.
Now i am reading gameprogrammingpatterns book. I am relieved that there are lots of useful methods.