function getLocalIndex(index,thisIndex){
    var ret = (index - thisIndex + 3) % 3;
    return ret;
}
var localIndex=-1;
console.log("localIndex is:"+getLocalIndex(0,1));
console.log("localIndex is:"+getLocalIndex(1,1));
console.log("localIndex is:"+getLocalIndex(2,1));

其中this是被计算的座位号,thisIndex是我的座位号,然后返回的是本地的座位号,数字3代表房间里的人数

房间类游戏座位号计算法则_服务器

当我是1号位时,服务器上的0号位在本地相当于2号位,也就是我怕下家的下家,完全正确

当我是1号位时,服务器上的1号位是本地的0号位,正好是显示我在最底部