|
@@ -24,16 +24,18 @@ namespace ET.Client
|
|
|
IPEndPoint realmAddress = routerAddressComponent.GetRealmAddress(account);
|
|
|
|
|
|
R2C_Login r2CLogin;
|
|
|
- using (Session session = await RouterHelper.CreateRouterSession(clientScene, realmAddress))
|
|
|
+ using (Session session = clientScene.GetComponent<NetClientComponent>().Create(realmAddress))
|
|
|
+ // using (Session session = await RouterHelper.CreateRouterSession(clientScene, realmAddress))
|
|
|
{
|
|
|
r2CLogin = (R2C_Login) await session.Call(new C2R_Login() { Account = account, Password = password });
|
|
|
}
|
|
|
|
|
|
- // 创建一个gate Session,并且保存到SessionComponent中
|
|
|
- Session gateSession = await RouterHelper.CreateRouterSession(clientScene, NetworkHelper.ToIPEndPoint(r2CLogin.Address));
|
|
|
- clientScene.AddComponent<SessionComponent>().Session = gateSession;
|
|
|
+ // 创建一个game Session,并且保存到SessionComponent中
|
|
|
+ Session gameSession = clientScene.GetComponent<NetClientComponent>().Create(NetworkHelper.ToIPEndPoint(r2CLogin.Address));
|
|
|
+ // Session gameSession = await RouterHelper.CreateRouterSession(clientScene, NetworkHelper.ToIPEndPoint(r2CLogin.Address));
|
|
|
+ clientScene.AddComponent<SessionComponent>().Session = gameSession;
|
|
|
|
|
|
- G2C_LoginGame g2CLoginGame = (G2C_LoginGame)await gateSession.Call(
|
|
|
+ G2C_LoginGame g2CLoginGame = (G2C_LoginGame)await gameSession.Call(
|
|
|
new C2G_LoginGame() { Key = r2CLogin.Key, GameId = r2CLogin.GameId});
|
|
|
|
|
|
Log.Debug("登陆game成功!");
|