TwoPaintBubbles
TwoPaintBubbles t1_j286n8i wrote
Reply to Rant: All single player games should have an easy way to quit to desktop and save as-is. Too many games require exiting to main menu and then quitting from there -- with an obligatory "ARE YOU SURE - YOUR PROGRESS WILL NOT BE SAVED" warning. Save the progress and quit -- it's not that hard. by BBorNot
Game dev here. There are many reason why games don’t just shut down with a click of a button. The main thing preventing them from doing that is you the player. Games typically have either pre determined points at which they save, or a set of constraints that must be met to allow a save to happen. If game allows you to quit all at once you got two options.
-
Discard any progress made after the last save and quit. This will leave some players mad and may even prevent them from picking up the game again.
-
Save right then and there, then quit. Depending on the game, this might not even be possible. If it is, there exists situations in which the players save may have put them in a set of unwinable conditions, right before a loss. Also a big problem.
The solution is to warn the player. Because at the end of the day, it’s an extra 15 seconds to 1 minutes to avoid a lot of headaches.
There are also certification constraints set by the platforms. Some of these involve a mandatory warning to a player if an action could result in loss of progress.
So it’s not as simple as “dumb devs go make it better it’s easy”
TwoPaintBubbles t1_j2ac434 wrote
Reply to comment by ReachForTheSkyline in Rant: All single player games should have an easy way to quit to desktop and save as-is. Too many games require exiting to main menu and then quitting from there -- with an obligatory "ARE YOU SURE - YOUR PROGRESS WILL NOT BE SAVED" warning. Save the progress and quit -- it's not that hard. by BBorNot
It’s a design decision. The player has to have some way to get back to the main menu. I personally like when a game has the option to quit to main and quit to desktop. However that’s not always possible. Sometime you run into UI constraints and don’t have space for both options.
Honestly a big part of it is scope though. It’s such a small non impactful feature, that most games put it in their backlog and never get around to it because more important stuff usually takes priority.