fixed mouse positions
authormalak585 <malak585@tlvm-4-2-1.ad.liu.se>
Fri, 8 Dec 2023 09:49:55 +0000 (10:49 +0100)
committermalak585 <malak585@tlvm-4-2-1.ad.liu.se>
Fri, 8 Dec 2023 09:49:55 +0000 (10:49 +0100)
src/GameOver_menu.cc
src/Pause_menu.cc
src/Scoreboard_menu.cc
src/Start_menu.cc

index b54de21e93485cd96764ac50b8c55dbfc892ccce..7bf29387abb2880f5756d77090100548a8812b8d 100644 (file)
@@ -141,8 +141,8 @@ void GameOver_menu::update(Context& context)
     }
 
     // mouse placement
-    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 30*(menu_index - 1)), ((S_HEIGHT / 2) + 85 + 50*(menu_index - 1)));
-    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 30*(menu_index - 1)), ((S_HEIGHT / 2) + 85 + 50*(menu_index - 1))); 
+    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 30*(menu_index - 1)), ((S_HEIGHT / 2) + 80 + 50*(menu_index - 1)));
+    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 30*(menu_index - 1)), ((S_HEIGHT / 2) + 80 + 50*(menu_index - 1))); 
 }
 
 
index cacd995955211895c3e882282d454b0644764d8a..a8e8de50012b47a29b755e4ee41be372f39c5796 100644 (file)
@@ -89,8 +89,8 @@ void Pause_menu::update(Context& context)
     }
 
     // mouse placement
-    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 7*(menu_index - 2)*(menu_index - 3) - 15*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 45 + 50*(menu_index - 1)));
-    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 7*(menu_index - 2)*(menu_index - 3) + 15*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 45 + 50*(menu_index - 1))); 
+    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 7*(menu_index - 2)*(menu_index - 3) - 15*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 50 + 50*(menu_index - 1)));
+    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 7*(menu_index - 2)*(menu_index - 3) + 15*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 50 + 50*(menu_index - 1))); 
 }
 
 void Pause_menu::render(sf::RenderWindow& window) const
index daa70dd9b47dba72e5553cbc754072f9128d0574..f2b6b47e7816dff9469443bd222bdf0c29ee3da2 100644 (file)
@@ -89,18 +89,18 @@ void Scoreboard_menu::update(Context& context)
     // changes color on text depending on selection
     if( menu_index == 1)
     {
-        startmenutext.setFillColor(sf::Color(153, 0, 0));
-        quittext.setFillColor(sf::Color::Black);
+        startmenutext.setFillColor(sf::Color::Black);
+        quittext.setFillColor(sf::Color(153, 0, 0));
     }
     else if( menu_index == 2)
     {
-        startmenutext.setFillColor(sf::Color::Black);
-        quittext.setFillColor(sf::Color(153, 0, 0)); 
+        startmenutext.setFillColor(sf::Color(153, 0, 0));
+        quittext.setFillColor(sf::Color::Black); 
     }
 
     // mouse placement
-    mouse_r.setPosition(((S_WIDTH / 2) + 45 - 30*(menu_index - 1)), ((S_HEIGHT / 2) + 65 + 50*(menu_index - 1)));
-    mouse_l.setPosition(((S_WIDTH / 2) - 73 + 30*(menu_index - 1)), ((S_HEIGHT / 2) + 65 + 50*(menu_index - 1))); 
+    mouse_r.setPosition(((S_WIDTH / 2) + 45 - 30*(menu_index - 1)), ((S_HEIGHT / 2) + 60 + 50*(menu_index - 1)));
+    mouse_l.setPosition(((S_WIDTH / 2) - 73 + 30*(menu_index - 1)), ((S_HEIGHT / 2) + 60 + 50*(menu_index - 1))); 
 }
 
 
index e5c4b85b840feab696a2dadf3a474de2f93979fb..5472f943e64321630e4749ce477ac2cc48ae37c2 100644 (file)
@@ -90,8 +90,8 @@ void Start_menu::update(Context& context)
     }
 
     // mouse placement
-    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 17*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 117 + 50*(menu_index - 1)));
-    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 17*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 117 + 50*(menu_index - 1))); 
+    mouse_r.setPosition(((S_WIDTH / 2) + 60 - 17*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 120 + 50*(menu_index - 1)));
+    mouse_l.setPosition(((S_WIDTH / 2) - 58 + 17*(menu_index - 1)*(menu_index - 2)), ((S_HEIGHT / 2) - 120 + 50*(menu_index - 1))); 
     
 }