Page 1 of 1

Real time games

Posted: 13 June 2021, 19:15
by developgame
Hello Everyone

and thank you for all your responses

I am trying to create Escape the Cursed Temple, a real time game

how would you test the game to see if all players are able to simultaneously play different actions in real time?

Thanks again for any suggestions

Re: Real time games

Posted: 13 June 2021, 22:01
by Tisaac
developgame wrote: 13 June 2021, 19:15 Hello Everyone

and thank you for all your responses

I am trying to create Escape the Cursed Temple, a real time game

how would you test the game to see if all players are able to simultaneously play different actions in real time?

Thanks again for any suggestions
"Simultaneous" does not really exists. All call are processed synchronously by the server. The only issue you might have is concurrency issue (if two players try to do two uncompatibles moves at the exact same time), but there is no way to solve this.

Re: Real time games

Posted: 15 June 2021, 21:57
by developgame
Tisaac wrote: 13 June 2021, 22:01
developgame wrote: 13 June 2021, 19:15 Hello Everyone

and thank you for all your responses

I am trying to create Escape the Cursed Temple, a real time game

how would you test the game to see if all players are able to simultaneously play different actions in real time?

Thanks again for any suggestions
"Simultaneous" does not really exists. All call are processed synchronously by the server. The only issue you might have is concurrency issue (if two players try to do two uncompatibles moves at the exact same time), but there is no way to solve this.
Thanks Tisaac!