Long running RTS game multiplayer considerations

2020-06-19 02:56发布

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.

7条回答
Evening l夕情丶
2楼-- · 2020-06-19 03:36

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.

查看更多
登录 后发表回答