本文整理汇总了C++中Application::Loop方法的典型用法代码示例。如果您正苦于以下问题:C++ Application::Loop方法的具体用法?C++ Application::Loop怎么用?C++ Application::Loop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Application
的用法示例。
在下文中一共展示了Application::Loop方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main() /** no params because they're not used */
{
// Acronyms acr;
// AcronymsInit(&acr);
// acr.activate(&acr, (e_acronyms)4);
// acr.activate(&acr, (e_acronyms)5);
// acr.activate(&acr, (e_acronyms)1);
// acr.activate(&acr, (e_acronyms)0);
// for (int i = 0; i < 12; i++)
// {
// std::cout << "[" << i << "] " << acr.names[i] << " = ";
// std::cout << (acr.selected[i] ? "(true)" : "(false)") << std::endl;
// }
// std::cout << acr.ToString(&acr) << std::endl;
// std::cout << acr.CSVFormatter(&acr) << std::endl;
// std::cout << acr.CountSelected(&acr) << std::endl;
// std::cout << acr << std::endl;
Application app;
//todo();
AppInit(&app); /** initialisation of the `app` structure and reading data from file*/
app.Start(&app); /** start of the inifinite loop in the function `loop` */
app.Loop(&app); /** execution of the infinite loop */
AppDestroy(&app); /** cleaning of the structure and saving data */
return (EXIT_SUCCESS);
}
示例2: main
int main(int argc, char *argv[])
{
Application app;
app.Initialize();
while (!app.quit) {
app.GameInput();
if (app.GameManager->MainGame) {
app.Loop();
}
else if (app.GameManager->EndMenu) {
app.DeathScreen();
}
else if (app.GameManager->MainMenu) {
app.MainMenu();
}
}
SDL_Quit();
return 0;
}