Lead Developer, Stardock Entertainment
Published on September 24, 2010 By CariElf In Elemental Dev Journals

It's been awhile since I've written a dev journal and we've got some new faces around here, so I'll take the opportunity to introduce myself. I'm Cari Begle, and I'm Stardock's Senior Game Designer and the programming lead on Elemental.  I've been working here at Stardock for 10 years.  

Today I'm going to talk about Multiplayer.  I'll start with a quick rundown of the features for the people who haven't tried the beta,  and then get into some techie talk for those of you who like to peek under the hood.

Elemental is true client-server where we host the servers, rather than the host player's machine acting as the server (which is a modified version of peer to peer) or true peer to peer where all the clients are connected to each other.  This means that shouldn't need to open ports, and if the host player drops, the server picks a new host and the game can continue.  

There are two multiplayer modes: quick match and custom games.  In quick matches, you choose either 1 v 1 or 1 v AI, pick your sovereign and faction, and you will be matched with another player on a randomly chosen map. In custom games, the host picks the world settings and how many players and then waits in a lobby for other players to join by clicking on the game entry in the available games list.  

With 1.09, we're enabling multiplayer save games for custom and 1 v AI games.  Only the host can save, and the game also auto saves periodically. The save games overwrite, so there is only ever one save per game, and if a host player quits or disconnects before the end of a game and the new host saves the game, the original host's save game is removed so that the new host is the only one with a save for that game.  Save games are also automatically removed when the end game results are posted.  Save games are saved to the cloud, so they can be loaded from any computer as long as you're logged in as the player who saved it.  

In order to help you out at the beginning of a multiplayer game, you start with a spouse.  Also, all the multiplayer maps have gold and fertile land placed around the starting locations of the players.  If you let the game pick the map randomly, it will attempt to pick one that has enough starting location for all the players, but if you open up additional slots you may need to return to the world setup screen to pick a new map.

All battles are instant battles like in Civ5. We won't be enabling tactical battles in multiplayer until after they've been revamped.

To chat, hit the quote/single quote key.  Currently, it only supports chat to all because I need a better dialog for it with tabs or something. 

Multiplayer is interesting to code because you can't simply do something, you have to send a message and wait for the response so that all the clients stay in synch.  This means that you can't code linearly, and you have to handle not receiving a response.  It's much like programming a multi-threaded application, except slightly more complicated because you're sending and receiving data from other computers, not just other threads.  It requires you to think a different way when writing your code, and unfortunately most schools don't really do a good job of teaching this, even the game development schools like Digipen and FullSail.  At least the graduates from game dev schools generally have more practical programming experience than schools with a traditional computer science degrees.   

Say you want to move a unit to a notable location.  If you were only concerned with single player, you'd simply translate the coordinates of the right mouse click to world coordinates, set the destination so that the unit can calculate a path, and boom, it starts moving as soon as the path is calculated.  In multiplayer, there are more concerns.  

To start with, every object in the game that is not purely cosmetic has to have the same ID as the corresponding object on the server and other clients so that it can be identified.  This allows us to send events which can originate either on a client or the server with the data needed to perform the desired action, and an identifier in the event to indicate what the action is.  When the event is received by the server, it processes it and either marks the event as failed or succeeded and in most cases forwards it to the clients to be processed. In some cases, like when the player requests a new turn, we just want to notify the server and not forward the message to the other clients.  Then when all the players have requested a new turn, the server sends out an event notifying the clients.  When the server or clients receive an event, they use the data stored in the event to access the objects that sent the event and perform the action that was requested.

For example, if Unit A attacks Unit B, I create an Attack event and store Unit A's ID as the attacker and Unit B's ID as the defender.  The event is converted to a block of bytes and sent out to the server.  The server restores the event from the block of bytes and gets pointers to Unit A and Unit B.  If unit B isn't already dead from a previous attack, the server performs the attack and stores the results in the event, which it forwards to the clients.  The clients receive the event, get pointers to A and B, and process the battle results (brings up the results screen, levelupwnd, etc). Now, since turns are simultaneous, it's possible that Unit C may have also tried to attack Unit B but was a little slower and so its event arrives on the server second.  If Unit B is already killed, the server simply marks the event as failed and forwards it on to the clients so that they can handle the failure.  Otherwise, the event is processed normally.  

Well, I've stayed up working on this journal later than I intended, so I'm going to call it a night.  

 

 

 

 

 


Comments (Page 1)
4 Pages1 2 3  Last
on Sep 24, 2010

Thanks for the lection of old client-server technology. Why don't you run dedicated multiplayer server like battle.net but smaller? Give me your thoughts about this.

on Sep 24, 2010

Nikitosina, even battle.net uses a client/server relationship, and I know WC3 (not sure about SC2) uses one of the clients as a host.    Even if Stardock hosted the actual game (and not just as a cloud/connection service), they would still have to code the gameplay the same way.  Theres just no avoiding sending and receiving data.


I'm really looking forward to playing some big games with friends online, and I'm glad it will be possible to save and load.  Cheers on the hard work, and keep us posted!

on Sep 24, 2010

Now, since turns are simultaneous, it's possible that Unit C may have also tried to attack Unit B but was a little slower and so its event arrives on the server second.

Correct me, if I taken something wrong: so we speak now about simultaneous multiplayer? Not true turn-based, as offline game is?

on Sep 24, 2010

Nikitosina, even battle.net uses a client/server relationship, and I know WC3 (not sure about SC2) uses one of the clients as a host. Even if Stardock hosted the actual game (and not just as a cloud/connection service), they would still have to code the gameplay the same way. Theres just no avoiding sending and receiving data.

Hi Troll,

Thanks for another lection of client server tech Read my question once again please and think about what you have answered. You cannot avoid client-server and i'm not asking to do that. I'm asking for Dedicated server solution and the reason why it is discarded.

on Sep 24, 2010

I have a question about how multiplayer, licences and Impulse interact.

I have Impulse on two machines at home on a network, I switch between them a bit depending on who in the house is using the other, so I have Elemental on both under the one Impulse account which is OK as per the licence agreement (yes, I actually read the thing, legalese and all ).

 

Anyway, the question is, can I play against one of the kids with the one copy of the game? This works fine for Sins, and is part of the licence agreement for that game.

on Sep 24, 2010

Nikitosina

Nikitosina, even battle.net uses a client/server relationship, and I know WC3 (not sure about SC2) uses one of the clients as a host. Even if Stardock hosted the actual game (and not just as a cloud/connection service), they would still have to code the gameplay the same way. Theres just no avoiding sending and receiving data.
Hi Troll,

Thanks for another lection of client server tech Read my question once again please and think about what you have answered. You cannot avoid client-server and i'm not asking to do that. I'm asking for Dedicated server solution and the reason why it is discarded.

 

wow. relax.

Do you even know what a troll is?

on Sep 24, 2010

Nikitosina
Thanks for the lection of old client-server technology. Why don't you run dedicated multiplayer server like battle.net but smaller? Give me your thoughts about this.

I think that's what they just said they do. The servers are in the cloud, we only connect to them.

Personally I'm looking forward to custom games with more AIs in them!

on Sep 24, 2010

Thanks for the update.

I hope multiplayer won't suck up too much of your resources.

The main thrust of the game is single player and their are still bug fixes (out of memory crashes), ui improvements, ai improvements and balancing issues + magic system improvements + combat system improvements that need to be done. I hope those areas get the most focus going forward.

on Sep 24, 2010

SmilingSpectre

quoting postNow, since turns are simultaneous, it's possible that Unit C may have also tried to attack Unit B but was a little slower and so its event arrives on the server second.

Correct me, if I taken something wrong: so we speak now about simultaneous multiplayer? Not true turn-based, as offline game is?

Your example was battle.net which has always been a peer to peer matching service more than any sort of dedicated server.  )I don' tknow how the newest incarnation works)

on Sep 24, 2010

Any plans for supporting PlayByEmail?

on Sep 24, 2010

sounds like excellent work is being done.

on Sep 24, 2010

Nikitosina
Thanks for the lection of old client-server technology. Why don't you run dedicated multiplayer server like battle.net but smaller? Give me your thoughts about this.

We are using dedicated servers. All players connect to one of our servers, and the first one to connect to the server is designated the host. 

SmilingSpectre

quoting postNow, since turns are simultaneous, it's possible that Unit C may have also tried to attack Unit B but was a little slower and so its event arrives on the server second.

Correct me, if I taken something wrong: so we speak now about simultaneous multiplayer? Not true turn-based, as offline game is?

No, it's the same method as the SP. All the players move their units at the same time, but to get additional moves the players have to request a new turn.

trcanberra
I have a question about how multiplayer, licences and Impulse interact.

I have Impulse on two machines at home on a network, I switch between them a bit depending on who in the house is using the other, so I have Elemental on both under the one Impulse account which is OK as per the licence agreement (yes, I actually read the thing, legalese and all ). 

Anyway, the question is, can I play against one of the kids with the one copy of the game? This works fine for Sins, and is part of the licence agreement for that game.

Not currently, because each player has to have an Impulse account that is tied to an Elemental serial.   However, I believe that we are still planning on adding the ability to create multiple characters per Impulse account so that people can do things like play with their kids or use an alternate character to test a new mod, etc.

UltimateElemental
Thanks for the update.

I hope multiplayer won't suck up too much of your resources.

The main thrust of the game is single player and their are still bug fixes (out of memory crashes), ui improvements, ai improvements and balancing issues + magic system improvements + combat system improvements that need to be done. I hope those areas get the most focus going forward.

Yes, even now most of the team is working on these areas.

riadsala
Any plans for supporting PlayByEmail?

No, we will not be supporting PBEM or hotseat as they're not compatible with simultaneous turns.

on Sep 24, 2010

I'm confused. Why play an online match 1 vs AI? I consider multi-player to be when more than one human is playing the game. It just seems like a weird option. Is the AI going to be different?

 

on Sep 24, 2010

CariElf
No, we will not be supporting PBEM or hotseat as they're not compatible with simultaneous turns.

Out of curiousity, how much trouble would it be to add non-simultaneous turns for non-online games? (As a note it does not matter right now that turns are simultaneous right now ast the AI makes all its moves at once, leaving only the player to move things)

on Sep 24, 2010

impinc
I'm confused. Why play an online match 1 vs AI? I consider multi-player to be when more than one human is playing the game. It just seems like a weird option. Is the AI going to be different?

Currently, multiplayer games are the only ranked games, so 1 v AI allows players to try out multiplayer and gain ranking without having to jump into an all human game immediately, much like League of Legends has you play test games before you can play against/with other humans. 

Gwenio1
Out of curiousity, how much trouble would it be to add non-simultaneous turns for non-online games? (As a note it does not matter right now that turns are simultaneous right now ast the AI makes all its moves at once, leaving only the player to move things)

It'd be a pain.  The code to allow simultaneous turns is actually simpler than keeping other players waiting while one player moves. 

 

4 Pages1 2 3  Last