123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- #define WIN32_LEAN_AND_MEAN
- #include <windows.h>
- #include <json/json.h>
- #include <fstream>
- #include "api.h"
- /*#include "../common/types.h"*/
- #include "PCANBasic.h"
- #include "include/EgoInterface.h"
- #include "EgoWindow.h"
- #include "../common/iobuffer.h"
- #include "../common/sensor_socket.h"
- #include "../common/peer_connection.h"
- #include "car_sim.h"
- #include "null_sim.h"
- #include "control_sensor.h"
- #include "radar_sim.h"
-
- #include "lidar_sim.h"
-
- #include "EgoClient.h"
- CEgoClient::CEgoClient(IEgoNotify* n) :_notify(n)
- {
- _carpeer = -1;
- }
- void CEgoClient::Start(std::array<IRender*, RenderPosition::ALL>& ar)
- {
- _connected = false;
- Json::Value root;
- Json::Reader jsonReader;
- std::ifstream ifile("Config.json");
- std::string ip;
- int32_t can_port = 0, host_port = 0;
- std::string can_ip;
- int32_t Tcphost_port;
- int32_t Tcpremote_port;
-
- if (jsonReader.parse(ifile, root))
- {
- _accountText = root["account"].asString();
- _passText = root["password"].asString();
- _name = root["name"].asString();
- //_autoclose = root["auto_close"].asBool();
- ip = root["server"].asString();
- Tcphost_port = root["Tcphost_port"].asInt();
- Tcpremote_port = root["Tcpremote_port"].asInt();
- can_port = root["can_port"].asInt();
- host_port = root["host_port"].asInt();
- can_ip = root["can_ip"].asString();
-
- }
- _client = std::make_unique<SocketClient>(this);
- //_client->Start(ip.c_str());
- _client->Start(ip.c_str(), Tcpremote_port, Tcphost_port);
- for (int i = 0; i < RenderPosition::ALL; i++)
- {
- auto p = std::make_unique<CEgoWindow>(this,ar[i], (RenderPosition)i);
- p->Start();
- _WindowArray.push_back(std::move(p));
- }
- //CManipulationSensor* sensor = new CManipulationSensor(_WindowArray[RenderPosition::FRONT_BACK].get());
- _can = std::make_unique<CControlSensor>(_WindowArray[RenderPosition::FRONT].get());
- _can->Start();
- _udpcan = std::make_unique<SensorSocket<CUdpSensor>>(_WindowArray[RenderPosition::FRONT].get(), can_ip, can_port, host_port);
- _udpcan->Start();
- _carsim = std::make_unique<CCarSim>(this);
- _carsim->Start();
-
- _radarsim = std::make_unique<CRadarSim>(this);
- _radarsim->Start();
-
- // _lidarsim = std::make_unique<CLidarSim>(this);
- // _lidarsim->Start();
-
-
-
- }
- int32_t CEgoClient::GetSteerAngle()
- {
- return _steer_angle;
- }
- void CEgoClient::SetReady(bool b)
- {
- for (auto i = 0; i < RenderPosition::ALL; i++)
- _WindowArray[i]->SetReady(b);
- }
- void CEgoClient::Login(std::string& account, std::string& pass)
- {
- _account = account;
- _pass = pass;
- if(_connected)
- _client->WriteSign(_account.c_str(), _pass.c_str());
- }
- void CEgoClient::OnRobot(const RemoNet::Robot& robot)
- {
- auto users = std::make_unique<UserCamera>();
- users->uid = robot.rid();
- users->name = robot.name();
- users->type = static_cast<EgoType>(robot.type());
- users->state = static_cast<UserState>(robot.state());
- users->carType=static_cast<CarType>(robot.cartype());
- _notify->OnRobot(users);
- _userInfo.push_back(std::move(users));
- }
- void CEgoClient::OnNotifyState(int32_t rid, UserState state)
- {
- for (auto& node : _userInfo)
- {
- if (node->uid == rid)
- {
- node->state = state;
- _notify->OnNotifyState(rid, state);
- break;
- }
- }
- }
- void CEgoClient::OnConnected(bool bRet)
- {
- if (bRet)
- {
- _connected = true;
- if (!_account.empty())
- _client->WriteSign(_account.c_str(),_pass.c_str());
- _updateThread.start(_client.get());
- }
-
- else
- {
- if (_connected)
- {
- _updateThread.stop();
- }
- _connected = false;
- if (_carpeer != -1)
- {
- for (int32_t i = RenderPosition::FRONT; i < RenderPosition::ALL; i++)
- {
- _WindowArray[i]->SetReady(false);
- _WindowArray[i]->OnNotifyLeave();
- }
- _carpeer = -1;
- }
-
- _userInfo.clear();
- }
- }
- void CEgoClient::OnVideoRep(bool ok,int32_t index, int32_t peer)
- {
- if (ok == false)
- {
- _carpeer = -1;
- _notify->OnNotifyVideoFail(peer);
- return;
- }
- if (peer != _carpeer) return;
- for (auto& node : _userInfo)
- {
- if (node->uid == peer)
- {
- /* if (index == RenderPosition::FRONT)
- _notify->OpenFullView(node->viewurl.c_str());
- */
- _WindowArray[index]->PostMessage(WM_NOTIFY_REP, (int64_t)peer);
- }
- }
- }
- void CEgoClient::OnVideoOffer(int32_t index, const char* type, const char* sdp)
- {
- CIOBuffer* pBuffer = CIOBuffer::Alloc(__FILE__,__LINE__);
- OfferDesc* desc = (OfferDesc*)pBuffer->Buffer;
- strcpy_s(desc->type, type);
- strcpy_s(desc->sdp, sdp);
- _WindowArray[index]->PostMessage(WM_NOTIFY_OFFER, (int64_t)pBuffer);
- }
- void CEgoClient::OnVideoAnswer(int32_t index, const char* type, const char* sdp)
- {
- CIOBuffer* pBuffer = CIOBuffer::Alloc(__FILE__, __LINE__);
- AnswerDesc* p = (AnswerDesc*)(pBuffer->Buffer);
- strcpy_s(p->type, type);
- strcpy_s(p->sdp, sdp);
- _WindowArray[index]->PostMessage(WM_NOTIFY_ANSWER, (int64_t)pBuffer);
- // _WindowArray[index]->DelayDataChannel();
- index++;
-
- if (index < RenderPosition::ALL)
- {
- _WindowArray[index]->PostMessage(WM_ASK_VIDEOREQ);// DelayNextVideoReq();
- }
- else
- {
- _WindowArray[RenderPosition::FRONT]->PostMessage(WM_ASK_PING);// DelayStartPing();
- }
-
-
- }
- void CEgoClient::OnVideoCandidate(int32_t index, const char* candidate, int32_t sdp_mline_index, const char* sdp_mid)
- {
- CIOBuffer* pBuffer = CIOBuffer::Alloc(__FILE__, __LINE__);
- CandidateDesc* desc = (CandidateDesc*)(pBuffer->Buffer);
- strcpy_s(desc->candidate, candidate);
- strcpy_s(desc->sdp_mid, sdp_mid);
- desc->sdp_mline_index = sdp_mline_index;
- _WindowArray[index]->PostMessage(WM_NOTIFY_CANDIDATE, (int64_t)pBuffer);
- }
- void CEgoClient::OnVideoLeave(int32_t peer, EgoType type)
- {
- if (type == EgoType::Car)
- {
- _WindowArray[ChannelType::CHANNEL_CAR]->SetControlState(ControlState::Check);
- for (int32_t i = RenderPosition::FRONT; i < RenderPosition::ALL; i++)
- {
- _WindowArray[i]->SetReady(false);
- _WindowArray[i]->OnNotifyLeave();
- }
- _carpeer = -1;
- _notify->OnNotifyLeave(peer);
- }
- }
- void CEgoClient::OnNotifyKick()
- {
- _notify->OnNotifyKickOff();
- }
- void CEgoClient::OnNDTPos(Position* pos)
- {
- _notify->OnNDTPos(pos);
- }
- void CEgoClient::OnMessageFrameNotify(ChannelType type, int16_t cmd, int16_t length, const void* data)
- {
-
- switch (type)
- {
- case ChannelType::CHANNEL_CAR:
- {
- _carsim->OnPeerMessage(cmd, length, data);
- }
- break;
-
- case ChannelType::CHANNEL_RADAR:
- _radarsim->OnPeerMessage(cmd, length, data);
- break;
-
- //case ChannelType::CHANNEL_LIDAR:
-
- // _lidarsim->OnPeerMessage(cmd, length, data);
- // break;
-
- }
-
- }
-
- void CEgoClient::OnSigin(int32_t uid,bool bRet)
- {
- _uid = uid;
- _notify->OnSigin(bRet);
- if (bRet)
- {
- _client->WriteRobotReq();
- }
- }
- void CEgoClient::OnFeedPage(FeedData& data)
- {
- _steer_angle = data.steer_angle;
- _can->SetEngineRPM(data.engine_rpm);
- _notify->OnNotifyFeed(data);
- }
- void CEgoClient::OnNotifyDel(int32_t peer, EgoType type)
- {
- for (auto it = _userInfo.begin(); it != _userInfo.end(); ++it)
- {
- if ((*it)->uid == peer)
- {
- _userInfo.erase(it);
- break;
- }
- }
- _notify->OnNotifyDel(peer);
- }
- void CEgoClient::OnCarConnect(int32_t peer)
- {
- mrsWebrtcCreateFactory(false);
- for (int i = 0; i < RenderPosition::ALL; i++)
- {
- _WindowArray[i]->SetPeer(peer);
- }
- for (auto& node : _userInfo)
- {
- if (node->uid == peer)
- {
- _WindowArray[RenderPosition::FRONT]->OnAskVideoReq();
- _carpeer = peer;
- break;
- }
- }
- }
- void CEgoClient::OnCarLeave()
- {
- /*
- RemoNet::SensorStop Req;
- CIOBuffer Buffer;
- MessageHead Head;
- Head.Command = RemoNet::CC_SensorStop;
- Head.Length = Req.ByteSizeLong();
- Head.Serialize(Buffer.Buffer);
- auto ptr = Buffer.Buffer + MessageHead::Size();
- Req.SerializeToArray(ptr, Head.Length);
- Buffer.Length = Head.Length + MessageHead::Size();
- _WindowArray[ChannelType::CHANNEL_CAR]->StopPing();
- _WindowArray[ChannelType::CHANNEL_CAR]->SendData(&Buffer);
- */
- // _notify->CloseFullView();
- _WindowArray[ChannelType::CHANNEL_CAR]->SetControlState(ControlState::Check);
- _WindowArray[ChannelType::CHANNEL_CAR]->StopPing();
- _client->WriteVideoLeave(EgoType::Car, _carpeer);
- for (int32_t i = 0; i < RenderPosition::ALL; i++)
- {
- _WindowArray[i]->OnNotifyLeave();
- }
- _carpeer = -1;
- //_can->Stop();
-
- }
- void CEgoClient::OnStopAck()
- {
- _client->WriteVideoLeave(EgoType::Car, _carpeer);
- for (int32_t i = 0; i < RenderPosition::ALL; i++)
- {
- _WindowArray[i]->SetReady(false);
- _WindowArray[i]->OnNotifyLeave();// PostMessage(WM_NOTIFY_LEAVE);
- }
- _carpeer = -1;
- }
- void CEgoClient::SendCanDate(TPCANMsg* CANMsg)
- {
- _can->SendCANMessage(CANMsg);
- }
- void CEgoClient::OnRadarData(int32_t r0, int32_t r1, int32_t r2, int32_t r3, int32_t r4, int32_t r5, int32_t r6,int32_t r7,int32_t r8)
- {
- _notify->OnNotifyRadar(r0, r1, r2, r3, r4, r5,r6,r7,r8);
- }
- void CEgoClient::OnEncodeData(int32_t left, int32_t right)
- {
- _notify->OnNotifyEncode(left, right);
- }
- void CEgoClient::ReqCarList()
- {
- _client->WriteRobotReq();
- }
-
- void CEgoClient::OnPingValue(int32_t value,double temp)
- {
- _notify->OnNotifyPing(value,temp);
- }
- /*
- void CEgoClient::OnLidarData(bool isLeft, bool isDense, int32_t seq, PointXYZI* data, int32_t length)
- {
- _notify->OnLidarData(isLeft, isDense, seq, data, length);
- }
- */
- void CEgoClient::OnMoveBegin(int32_t rid, WorkArea area, int32_t no)
- {
- RemoNet::CSMoveBegin Req;
- Req.set_peer(rid);
- Req.set_area(area);
- Req.set_no(no);
- MessageHead Head;
- CIOBuffer pBuffer;
- Head.Command = RemoNet::CS_MoveBegin;
- Head.Length = Req.ByteSizeLong();
- Head.Serialize(pBuffer.Buffer);
- auto ptr = pBuffer.Buffer + MessageHead::Size();
- Req.SerializeToArray(ptr, Head.Length);
- pBuffer.Length = MessageHead::Size() + Head.Length;
- _client->Write(&pBuffer);
- }
- /*
- void CEgoClient::SwitchDriver(int32_t id)
- {
- RemoNet::SwitchDriver Req;
- Req.set_peer(id);
- MessageHead Head;
- CIOBuffer pBuffer;
- Head.Command = RemoNet::CS_SwitchDriver;
- Head.Length = Req.ByteSizeLong();
- Head.Serialize(pBuffer.Buffer);
- auto ptr = pBuffer.Buffer + MessageHead::Size();
- Req.SerializeToArray(ptr, Head.Length);
- pBuffer.Length = MessageHead::Size() + Head.Length;
- _client->Write(&pBuffer);
- }
- */
- void CEgoClient::ChangeState(UserState state)
- {
- RemoNet::CSState Req;
- Req.set_state((RemoNet::UserState)state);
- Req.set_uid(_uid);
- MessageHead Head;
- CIOBuffer pBuffer;
- Head.Command = RemoNet::CS_State;
- Head.Length = Req.ByteSizeLong();
- Head.Serialize(pBuffer.Buffer);
- auto ptr = pBuffer.Buffer + MessageHead::Size();
- Req.SerializeToArray(ptr, Head.Length);
- pBuffer.Length = MessageHead::Size() + Head.Length;
- _client->Write(&pBuffer);
- }
- void CEgoClient::OnMoveEnd(int32_t rid, WorkArea area, int32_t no)
- {
- _notify->OnNotifyMoveEnd(rid, area, no);
- }
- void CEgoClient::OnNotifyMoveRet(MoveDesc desc)
- {
- _notify->OnNotifyMoveRet(desc);
- }
- ControlStatus CEgoClient::CheckStatus()
- {
- return _can->CheckStatus();
- }
- /*
- void CEgoClient::OnEmergency(bool enable, bool motor, bool gear, bool turnl, bool turnR)
- {
- _notify->OnEmergency(enable, motor, gear, turnl, turnR);
- }
- void CEgoClient::OnAccel(int16_t accel , bool onoff)
- {
- _notify->OnAccel(accel, onoff);
- }
- void CEgoClient::OnSteer(uint64_t steer)
- {
- _notify->OnSteer(steer);
- }
- void CEgoClient::OnArm(int16_t flip, int16_t armL, int16_t armR, bool onoff)
- {
- _notify->OnArm(flip, armL, armR, onoff);
- }
- */
- SocketClient* CEgoClient::GetSocketClient()
- {
- return _client.get();
- }
- std::string CEgoClient::GetAccount()
- {
- return _accountText;
- }
- std::string CEgoClient::GetPassword()
- {
- return _passText;
- }
- std::string CEgoClient::GetName()
- {
- return _name;
- }
- /*
- bool CEgoClient::IsAutoClose()
- {
- return _autoclose;
- }
- void CEgoClient::SetCurrentPage(PageProp prop)
- {
- _currentpage = prop;
- }
- PageProp CEgoClient::GetCurrentPage()
- {
- return _currentpage;
- }
- */
|