This commit is contained in:
aozhiwei 2023-12-06 08:59:10 +08:00
parent 213b354aa2
commit 3fb1c3cae2
2 changed files with 14 additions and 0 deletions

View File

@ -168,6 +168,19 @@ behaviac::EBTStatus AndroidAgent::CoConnectBattleServer()
behaviac::EBTStatus AndroidAgent::CoJoin() behaviac::EBTStatus AndroidAgent::CoJoin()
{ {
cs::CMJoin msg; cs::CMJoin msg;
msg.set_server_id(1);
msg.set_team_uuid("");
msg.set_account_id(owner_->GetAccountId());
msg.set_team_mode(2);
msg.set_proto_version(cs::ProtoVersion);
msg.set_auto_fill(1);
msg.set_name("");
msg.set_avatar_url("");
//weapons
msg.set_session_id(owner_->GetSessionId());
owner_->SendMsg(msg);
a8::XPrintf("CoJoin\n", {});
return behaviac::BT_SUCCESS; return behaviac::BT_SUCCESS;
} }

View File

@ -30,6 +30,7 @@ public:
int GetSocketId() { return socket_handle_; } int GetSocketId() { return socket_handle_; }
bool NetConnected() { return net_connected_; } bool NetConnected() { return net_connected_; }
const std::string& GetAccountId() { return account_id_; } const std::string& GetAccountId() { return account_id_; }
const std::string& GetSessionId() { return session_id_; }
auto GetWebSocket() { return web_socket_; } auto GetWebSocket() { return web_socket_; }
int GetIdx() { return idx_; } int GetIdx() { return idx_; }
void SetLoginSucess(); void SetLoginSucess();