more voxel delete debugging, use memcmp() instead of ==

This commit is contained in:
ZappoMan 2013-04-03 09:38:11 -07:00
parent f9dc41011a
commit 8988796285
2 changed files with 5 additions and 2 deletions

View file

@ -178,7 +178,10 @@ void VoxelTree::deleteVoxelCodeFromTree(unsigned char *codeBuffer) {
printOctalCode(nodeToDelete->octalCode);
// If the node exists...
if (*nodeToDelete->octalCode == *codeBuffer) {
int lengthInBytes = bytesRequiredForCodeLength(*codeBuffer); // includes octet count, not color!
printf("compare octal codes of length %d\n",lengthInBytes);
if (0==memcmp(nodeToDelete->octalCode,codeBuffer,lengthInBytes)) {
printf("found node to delete...\n");
float* vertices = firstVertexForCode(nodeToDelete->octalCode);

View file

@ -11,7 +11,7 @@ function send_voxels($inputFileName,$server,$port,$command) {
$netData = pack("cv",ord($command),$voxNum);
$packetSize = 3; // to start
while ($packetSize < 800) {
while ($packetSize < 1450) {
$octets = fread($inputFile,1);
$octets = (int)ord($octets);
echo "read octets=$octets\n";