1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
// XViewCtrl.cpp: Body of the XViewCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XViewCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XViewCtrl::XViewCtrl()
{
}
XViewCtrl::~XViewCtrl()
{
}
void XViewCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiViewCtrlV3 *InPckt = (CigiViewCtrlV3 *)Packet;
printf("===> ViewCtrl <===\n");
printf("ViewID ==> %d\n",InPckt->GetViewID());
printf("GroupID ==> %d\n",InPckt->GetGroupID());
printf("XOffEn ==> %d\n",InPckt->GetXOffEn());
printf("YOffEn ==> %d\n",InPckt->GetYOffEn());
printf("ZOffEn ==> %d\n",InPckt->GetZOffEn());
printf("RollEn ==> %d\n",InPckt->GetRollEn());
printf("PitchEn ==> %d\n",InPckt->GetPitchEn());
printf("YawEn ==> %d\n",InPckt->GetYawEn());
printf("EntityID ==> %d\n",InPckt->GetEntityID());
printf("XOff ==> %f\n",InPckt->GetXOff());
printf("YOff ==> %f\n",InPckt->GetYOff());
printf("ZOff ==> %f\n",InPckt->GetZOff());
printf("Roll ==> %f\n",InPckt->GetRoll());
printf("Pitch ==> %f\n",InPckt->GetPitch());
printf("Yaw ==> %f\n",InPckt->GetYaw());
}
|