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 48 49 50 51 52 53 54 55 56
|
// XCollDetSegRespV2.cpp: Body of the XCollDetSegRespV2 class.
//
//////////////////////////////////////////////////////////////////////
#include "XCollDetSegRespV2.h"
#include <CigiCollDetSegRespV2.h>
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XCollDetSegRespV2::XCollDetSegRespV2()
{
}
XCollDetSegRespV2::~XCollDetSegRespV2()
{
}
void XCollDetSegRespV2::OnPacketReceived(CigiBasePacket *Packet)
{
CigiCollDetSegRespV2 *InPckt = (CigiCollDetSegRespV2 *)Packet;
printf("Collision Detection Segment Response V2:\n");
printf("\tEntity ID = %u\n",InPckt->GetEntityID());
printf("\tSegment ID = %u\n",InPckt->GetSegID());
printf("\tCollision Type = %d : ",InPckt->GetCollType());
switch(InPckt->GetCollType())
{
case 0:
printf("NonEntity\n");
break;
case 1:
printf("Entity\n");
break;
default:
printf("\n");
break;
}
printf("\tCollision Entity ID = %u\n",InPckt->GetCollEntityID());
printf("\tMaterial = %u\n",InPckt->GetMaterial());
printf("\tX = %f\n",InPckt->GetX());
printf("\tY = %f\n",InPckt->GetY());
printf("\tZ = %f\n",InPckt->GetZ());
}
|