Ok so im trying to make a program and i have 1 button in it and when i click it i want it to perform the action to exit out of the program for now just to see if it works but i cant get it to work.
You should handle the mouse events inside the even loop like you do with the SDL_QUIT event. event.button.x and event.button.y gives you the mouse position so you can use that to calculate if the mouse click was on the encrypt button. SDL_Quit doesn't quit the program and you shouldn't call other SDL functions after it. You already quit the program on the SDL_QUIT event so just do the same way here.
bool XYInRect( const SDL_Rect& rect, int x, int y )
{
return ( /* some implementation */ );
}
if ( event.type == SDL_MOUSEBUTTONDOWN ) // if the user clicked a mousebutton
{
if ( XYInRect( rectOfButton, event.mouse.x, event.mouse.y ) ) // so if the mouse-click is on the button
{
// do some action
}
}
while(SDL_PollEvent(&event))
{
switch(event.type)
{
case SDL_QUIT:
running = false;
break;
}
if(event.type == SDL_MOUSEBUTTONDOWN) // if the user clicked a mousebutton
{
if(XYInRect(offset, event.button.x, event.button.y)) // so if the mouse-click is on the button
{
offset.x = 90;
offset.y = 90;
}
}
}
Yes, or you can do it inside the switch like you did with SDL_QUIT.
You have not implemented XYInRect in a useful way. Fransje's intention was that it should return true if the x and y position is inside the rectangle and otherwise false. The rectangle that you pass to it should have the same position, width and height as the button. In your code you have only set the x and y position of the rectangle that you pass to XYInRect.
And by the way, you shouldn't call SDL_FreeSurface on the surface returned from SDL_SetVideoMode. SDL will handle that when you call SDL_Quit.
I don't post code because I think you learn more by writing it yourself. The code that Fransje posted is just an example to demonstrate. You don't have to do it exactly like that.
The things that you need to do is ...
1. check if mouse button was clicked,
2. check if the click is inside the button area,
3. do whatever it is you want to do when the button is clicked.
You have already done (1) so what you should do now is to check if the click is inside the button area.
My point is that it is not very important how you do it. The important thing is that you get it to work. Of course there are ways that are better than others but if you can't think of any way of doing it it's pointless to think about better ways of doing it.
You can use a function if you want. If you think it is easier to not use a function, then you don't have to use a function. You can always change to a function later if you want.
Functions are great because they allow you do split the code into smaller problems. Given some input it produces some output. It is very important to understand what the output and inputs are. I think you didn't completely understood what the first argument to the XYInRect was for, and then it is impossible to implement and use the function properly.
Note that if you decide to use the function, (2) is not just the function definition, but also the function call and the if statement.
In Fransje's code <= should be replaced with <, otherwise it will return true if the click is one pixel below or one pixel to the right of the rectangle.