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
|
// XEnvRgnCtrl.cpp: Body of the XEnvRgnCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XEnvRgnCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XEnvRgnCtrl::XEnvRgnCtrl()
{
}
XEnvRgnCtrl::~XEnvRgnCtrl()
{
}
void XEnvRgnCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiEnvRgnCtrlV3 *InPckt = (CigiEnvRgnCtrlV3 *)Packet;
printf("===> EnvRgnCtrl <===\n");
printf("RegionID ==> %d\n",InPckt->GetRegionID());
printf("RgnState ==> %d\n",InPckt->GetRgnState());
printf("WeatherProp ==> %d\n",InPckt->GetWeatherProp());
printf("Aerosol ==> %d\n",InPckt->GetAerosol());
printf("MaritimeSurface ==> %d\n",InPckt->GetMaritimeSurface());
printf("TerrestrialSurface ==> %d\n",InPckt->GetTerrestrialSurface());
printf("Lat ==> %f\n",InPckt->GetLat());
printf("Lon ==> %f\n",InPckt->GetLon());
printf("XSize ==> %f\n",InPckt->GetXSize());
printf("YSize ==> %f\n",InPckt->GetYSize());
printf("CornerRadius ==> %f\n",InPckt->GetCornerRadius());
printf("Rotation ==> %f\n",InPckt->GetRotation());
printf("Transition ==> %f\n",InPckt->GetTransition());
}
|