Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MainMenu.hxx File Reference
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define VERSION   0
 

Functions

bool mainMenu ()
 initializes and displays the main menu More...
 

Macro Definition Documentation

◆ VERSION

#define VERSION   0

Definition at line 5 of file MainMenu.hxx.

Function Documentation

◆ mainMenu()

bool mainMenu ( )

initializes and displays the main menu

Returns
true in case game has been quit, otherwise false.

@TODO remove or alter to use existing fps counter from debug menu

Definition at line 34 of file MainMenu.cxx.

35 {
36  SDL_Event event;
37 
38  int screenWidth = Settings::instance().screenWidth;
39  int screenHeight = Settings::instance().screenHeight;
40  bool mainMenuLoop = true;
41  bool startGame = true;
42  bool showLoadDialog = false;
43 
45 
46 #ifdef USE_AUDIO
47  auto &m_AudioMixer = AudioMixer::instance();
48  /* Trigger MainMenu music */
49  m_AudioMixer.setMusicVolume(Settings::instance().musicVolume);
50  m_AudioMixer.setSoundEffectVolume(Settings::instance().soundEffectsVolume); // does nothing right now
51  if (!Settings::instance().audio3DStatus)
52  m_AudioMixer.play(AudioTrigger::MainMenu);
53  else
54  m_AudioMixer.play(AudioTrigger::MainMenu, Coordinate3D{0, 3, 0.5});
55 #endif // USE_AUDIO
56 
57  auto logoTex = ResourcesManager::instance().getUITexture("Cytopia_Logo");
58  auto discordTex = ResourcesManager::instance().getUITexture("Discord_icon");
59  auto githubTex = ResourcesManager::instance().getUITexture("Github_icon");
60  int logoTexW, logoTexH;
61  SDL_QueryTexture(logoTex, nullptr, nullptr, &logoTexW, &logoTexH);
62 
63  auto beginFrame = []
64  {
65  SDL_RenderClear(WindowManager::instance().getRenderer());
66 
68 
69  ui::SetNextWindowBgAlpha(0);
70  ui::SetNextWindowPos(ImVec2(0.0f, 0.0f));
71  ui::SetNextWindowSize(ui::GetIO().DisplaySize);
72 
73  bool open = true;
74  ui::Begin("MainWnd", &open,
75  ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar |
76  ImGuiWindowFlags_NoScrollWithMouse);
77  };
78 
79  auto renderFrame = []
80  {
81  ui::End();
82 
84  SDL_Delay(5);
85  };
86 
87  // fade in Logo
88  const ImVec2 logoImgPos(screenWidth / 2 - logoTexW / 2, screenHeight / 4);
89  for (Uint8 opacity = 0; opacity < 255; opacity++)
90  {
91  beginFrame();
92 
93  // break the loop if an event occurs
94  const bool has_event = SDL_PollEvent(&event) != 0;
95  if (has_event && event.type == SDL_MOUSEBUTTONDOWN || event.type == SDL_KEYDOWN)
96  opacity = 254;
97 
98  ui::PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f);
99  ui::SetCursorPos(logoImgPos);
100  float op = opacity / 255.f;
101  ui::Image(logoTex, ImVec2(logoTexW, logoTexH), ImVec2(0, 0), ImVec2(1, 1), ImVec4{op, op, op, op});
102  ui::PopStyleVar(1);
103 
104  renderFrame();
105  }
106 
107  LoadMenu loadMenu;
108 
109  const auto &buttonFont = UIManager::instance().getLayouts()["MainMenuButtons"].font;
110  while (mainMenuLoop)
111  {
112  beginFrame();
113 
114  while (SDL_PollEvent(&event) != 0)
115  { // while there is a pending event
116  ImGui_ImplSDL2_ProcessEvent(&event);
117 
118  if (event.type == SDL_QUIT)
119  {
120  startGame = false;
121  mainMenuLoop = false;
122  }
123  }
124 
125  if (showLoadDialog)
126  {
127  loadMenu.draw();
128  switch (loadMenu.result())
129  {
130  case LoadMenu::e_close:
131  showLoadDialog = false;
132  break;
133 
135 #ifdef USE_AUDIO
136  playAudioMajorSelection();
137 #endif // USE_AUDIO
139  mainMenuLoop = false;
140  break;
141  default:
142  break;
143  }
144  }
145  else
146  {
147  ui::PushFont(buttonFont);
148  ui::PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f);
149 
150  ui::SetCursorPos(logoImgPos);
151  ui::Image(logoTex, ImVec2(logoTexW, logoTexH));
152 
153  constexpr ImVec2 buttonSize(200, 40);
154  constexpr int buttonInterval = 20;
155  ImVec2 buttonPos(screenWidth / 2 - buttonSize.x / 2, screenHeight / 2 - buttonSize.y);
156  ui::SetCursorPos(buttonPos);
157  if (ui::ButtonCt("New Game", buttonSize))
158  {
159 #ifdef USE_AUDIO
160  playAudioMajorSelection();
161 #endif // USE_AUDIO
162  mainMenuLoop = false;
164  }
165 
166  buttonPos.y += buttonSize.y + buttonInterval;
167  ui::SetCursorPos(buttonPos);
168  if (ui::ButtonCt("Load Game", buttonSize))
169  {
170  showLoadDialog = true;
171  }
172 
173  buttonPos.y += buttonSize.y + buttonInterval;
174  ui::SetCursorPos(buttonPos);
175  if (ui::ButtonCt("Quit Game", buttonSize))
176  {
177  startGame = false;
178  mainMenuLoop = false;
179  }
180 
181  constexpr int xOffset = 5, btnSize = 32;
182  ImVec2 leftBottom(xOffset, screenHeight - btnSize - xOffset * 2);
183  ui::SetCursorPos(leftBottom);
184  if (ui::ImageButton(discordTex, ImVec2(btnSize, btnSize)))
185  {
186  OSystem::openDir("https://discord.gg/MG3tgYV6ce");
187  }
188 
189  leftBottom.x += xOffset * 2 + btnSize; // xOffset * 2 because, need interval between buttons
190  ui::SetCursorPos(leftBottom);
191  if (ui::ImageButton(githubTex, ImVec2(btnSize, btnSize)))
192  {
193  OSystem::openDir("https://github.com/CytopiaTeam/Cytopia/issues/new");
194  }
195 
196  ui::PopFont();
197  ui::PopStyleVar(1);
198  }
199 
200  /* FPS counter.*/
202  constexpr ImVec2 fpsTextPos(5, 5);
203  ui::SetCursorPos(fpsTextPos);
204  ui::Text("[%.1f FPS]", ui::GetIO().Framerate);
205 
206  ImVec2 textSize = ImGui::CalcTextSize(VERSION);
207  const ImVec2 versionPos(screenWidth - textSize.x - 10, screenHeight - textSize.y - 10);
208  ui::SetCursorPos(versionPos);
209  ui::Text(VERSION);
210 
211  renderFrame();
212  }
213  return startGame;
214 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:
OSystem::openDir
static void openDir(const std::string &path, const std::string &prefix="")
Definition: OSystem.cxx:71
UIManager::getLayouts
std::unordered_map< std::string, LayoutData > & getLayouts()
Get the LayoutGroup container.
Definition: UIManager.hxx:79
LoadMenu::e_load_file
@ e_load_file
Definition: LoadMenu.hxx:13
LoadMenu
Definition: LoadMenu.hxx:6
SettingsData::screenHeight
ScreenDimension screenHeight
the screen height
Definition: Settings.hxx:46
UIManager::init
void init()
Parses the UiLayout.json files and creates UI Elements.
Coordinate3D
a 3-dimensional coordinate
Definition: AudioMixer.hxx:35
ResourcesManager::getUITexture
SDL_Texture * getUITexture(const std::string &uiElement)
retrieves texture for a tileID
Definition: ResourcesManager.cxx:44
LoadMenu::e_close
@ e_close
Definition: LoadMenu.hxx:12
SettingsData::screenWidth
ScreenDimension screenWidth
the screen width
Definition: Settings.hxx:40
LoadMenu::draw
void draw() const override
Definition: LoadMenu.cxx:25
LoadMenu::filename
const std::string & filename() const
Definition: LoadMenu.hxx:21
WindowManager::renderScreen
void renderScreen()
Definition: WindowManager.cxx:231
SignalMediator::signalLoadGame
Signal::Signal< void(const std::string &)> signalLoadGame
Definition: SignalMediator.hxx:23
SignalMediator::signalNewGame
Signal::Signal< void(bool)> signalNewGame
Definition: SignalMediator.hxx:18
Singleton< Settings >::instance
static Settings & instance(void)
Get an instance of the singleton.
Definition: Singleton.hxx:15
VERSION
#define VERSION
Definition: MainMenu.hxx:5
WindowManager::newImGuiFrame
void newImGuiFrame()
creates and renders a new ImGui frame
Definition: WindowManager.cxx:224
LoadMenu::result
Result result() const
Definition: LoadMenu.hxx:22