Hello,
i am working at he moment at a 2d turn basted space strategy game. I need to interact with the windows i draw to the screen but i am not quiet happy how i do it so i would like to get some info how to do it properly.
How it works for me now:
I have an input class which is processing the mouse input.
My game class is pulling the needed mouse information from my input class, and for a mouse click it calls a mouseClicked function in my galaxy class witch handles the logic of the galaxy.
The galaxy class is going through a list with all possible windows if some exist. If one is found where the mouse click happened the click routine of the window is called and the window does what it does with the click.
Overall i have the feeling that i am overdoing something and that there would be a better way to work with my in game windows than that what i am doing now.
Any tips or links that could lead me to a better understanding of this case would be nice.