0ad/binaries/data/mods/public/gui/session/tutorial
Vantha 2520c45220 Only call Engine.EndGame right before closing
Since #7786, the GUI tick completed normally after calling
`closePageCallback` instead of being cancelled like previously. Since
`Engine.EndGame` deletes the internal `g_Game` pointer, every Engine call
after it that tried to access `g_Game` caused a segfault.
This patch solves it by moving `Engine.EndGame` to the very end, right
before closing the session page.
In order to follow the convention that only functions directly closing
the page are called `closePageCallback`, that function is in turn
renamed to `closeSession`. Additionally, this allows only resolving
the promise with a bool (`showSummary`) and then only calling
`getNextPageOpenRequest` at the end of `init` for reasons of simplicity.
2026-07-22 23:51:49 +02:00
..
panels Add a tutorial panel for explaining the GUI 2026-07-22 23:51:49 +02:00
Tutorial.xml Add an info panel to the tutorial 2026-07-22 23:51:49 +02:00
TutorialManager.js Only call Engine.EndGame right before closing 2026-07-22 23:51:49 +02:00
TutorialPanel.js Add a tutorial panel for explaining the GUI 2026-07-22 23:51:49 +02:00