forked from supertuxkart/stk-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove code duplication in the help screens
Same approach as with the options screen: managing all the generic includes needed by all help screens in one place and adding a new standalone 'switchTab function
- Loading branch information
1 parent
fa421b4
commit 7859157
Showing
9 changed files
with
117 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// SuperTuxKart - a fun racing game with go-kart | ||
// Copyright (C) 2009-2015 Marianne Gagnon | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
// as published by the Free Software Foundation; either version 3 | ||
// of the License, or (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
|
||
#include "states_screens/help/help_common.hpp" | ||
|
||
#include "guiengine/screen.hpp" | ||
|
||
namespace HelpCommon | ||
{ | ||
void switchTab(std::string selected_tab) | ||
{ | ||
GUIEngine::Screen *screen = NULL; | ||
if (selected_tab == "page1") | ||
screen = HelpScreen1::getInstance(); | ||
else if (selected_tab == "page2") | ||
screen = HelpScreen2::getInstance(); | ||
else if (selected_tab == "page3") | ||
screen = HelpScreen3::getInstance(); | ||
else if (selected_tab == "page4") | ||
screen = HelpScreen4::getInstance(); | ||
else if (selected_tab == "page5") | ||
screen = HelpScreen5::getInstance(); | ||
else if (selected_tab == "page6") | ||
screen = HelpScreen6::getInstance(); | ||
else if (selected_tab == "page7") | ||
screen = HelpScreen7::getInstance(); | ||
if(screen) | ||
StateManager::get()->replaceTopMostScreen(screen); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// SuperTuxKart - a fun racing game with go-kart | ||
// Copyright (C) 2009-2015 Marianne Gagnon | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
// as published by the Free Software Foundation; either version 3 | ||
// of the License, or (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
|
||
#ifndef __HEADER_HELP_COMMON_HPP__ | ||
#define __HEADER_HELP_COMMON_HPP__ | ||
|
||
// This file contains include headers that are used by all or most help screens. | ||
// It also contains a standalone function to switch between the help screens. | ||
// This simplifies maintenance. | ||
|
||
// Frequent widgets used by multiple option screens | ||
#include "guiengine/widgets/ribbon_widget.hpp" | ||
|
||
// Other help screens, for navigation between them | ||
#include "states_screens/help/help_screen_1.hpp" | ||
#include "states_screens/help/help_screen_2.hpp" | ||
#include "states_screens/help/help_screen_3.hpp" | ||
#include "states_screens/help/help_screen_4.hpp" | ||
#include "states_screens/help/help_screen_5.hpp" | ||
#include "states_screens/help/help_screen_6.hpp" | ||
#include "states_screens/help/help_screen_7.hpp" | ||
|
||
// GUI management | ||
#include "states_screens/state_manager.hpp" | ||
|
||
namespace HelpCommon | ||
{ | ||
void switchTab(std::string selected_tab); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.