Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Long running RTS game multiplayer considerations

I'm working on a real-time space strategy game clone which at its time did not have any multiplayer option. I want to add multiplayer to it.

The gameplay itself is relatively long: about 10-15 hours of gameplay needed for complete a playthrough. This is very long and I don't want to force the players to play it uninterrupted or lose the game state due crash/power outage.

How do similar games solve this kind of problem? Save multiplayer game just like a singleplayer game?

In singleplayer mode, the player can pause and accelerate the simulation time (In pause mode, the player is still able to issue orders, build on planets, etc.).

How can this feature be translated into the multiplayer mode?

Let's assume there are more than 2 players (additional AI or human players) and one player attacks the other which switches the game into space/ground battle. These battles can be paused as well to issue orders.

What should happen with the other non-involved players? Should they wait? Should they be forced to operate only in their own kingdom?

Update: Just some details about the game.

I'm cloning this game. The clone is released as open source, therefore, its likely someone will create a cheating version. This is an issue but not that important now. I think I solve it by moving the game state and control between the players: first it runs on the first player's machine, then moves to the second etc.

I would like to put more emphasis to the third question above:

What should the other players do when two are engaged in a battle?

Battles are fought on different screen as the kingdom management screens. In single player mode, the battles automatically stop the game world and neither the player, nor the AI is able to manage its kingdom during the battle.

like image 225
akarnokd Avatar asked Jun 14 '09 20:06

akarnokd


2 Answers

History shows that any feature that allows players to interact on the meta level will be abused beyond what possible good it might serve.

Perhaps it is possible to have the players agree beforehand on a "game plan", like "4x 4 hours on consecutive days" or "3x 5 hours on wednesdays".

The problem seems to be largely identical with WoW Raids: Get X players together to do something realtime-ish, which is longer than typical game time on one day, with multiple sessions within one week. This of course involves a leader role, hot seats, saving to a spot etc. This is hard enough to do, and all these people are working together!

If someone sees they´re off to a bad start on the first 3 hours, how can you expect them to come back to suffer 12 more hours? Well, have the quitter lose? This means collusion, you win one for me, I win one for you. (2 players win one each in 6 hours - much better than playing it through)

All of this has been thoroughly tried. If there is a way to break the game by cheating, people will do that. Especially when it is PvP.

Successful multiplayer games either have engagements that are short enough (less than one evening), or that are clearly interruptible (stages reached), or arent realtime. Sadly, I see no way around this malady.

Long story short: I dont think a 15hr PvP RTS even makes sense. For a single player, it means being better than a fixed quality computer opponent. You try, you learn, you beat it eventually. PvP, it means if you are 1% less efficient in the first 5 mins, against an equally skilled opponent, you will definitely lose in the end.

A Games value is measured in pleasure per hour.

like image 124
posipiet Avatar answered Oct 03 '22 08:10

posipiet


Work pausing into the gameplay. Give each player a pause at the beginning of the game, and then force them to buy pauses with in game currency.

Limit the number of consecutive pauses, a pause by one player would prevent pausing by another player for 10 minutes unless that other player pays for it at a penalized price.

Also limit the length of each pause, and allow other players to pay money to undo the pause.

like image 41
Jourkey Avatar answered Oct 03 '22 07:10

Jourkey