File: XArtPartCtrl.cpp

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-10
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,332 kB
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (47 lines) | stat: -rw-r--r-- 1,326 bytes parent folder | download | duplicates (2)
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
47
// XArtPartCtrl.cpp: Body of the XArtPartCtrl class.
//
//////////////////////////////////////////////////////////////////////

#include "XArtPartCtrl.h"

#include <stdio.h>

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

XArtPartCtrl::XArtPartCtrl()
{

}

XArtPartCtrl::~XArtPartCtrl()
{

}


void XArtPartCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiArtPartCtrlV3 *InPckt = (CigiArtPartCtrlV3 *)Packet;

   printf("===> ArtPartCtrl <===\n");

   printf("EntityID ==> %d\n",InPckt->GetEntityID());
   printf("ArtPartID ==> %d\n",InPckt->GetArtPartID());
   printf("ArtPartEn ==> %d\n",InPckt->GetArtPartEn());
   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("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());


}