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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
|
/*****************************************************************************
* *
* OpenNI 2.x Alpha *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of OpenNI. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnPropertySetInternal.h"
#include "XnActualIntProperty.h"
#include "XnActualRealProperty.h"
#include "XnActualStringProperty.h"
#include "XnActualGeneralProperty.h"
//---------------------------------------------------------------------------
// Types
//---------------------------------------------------------------------------
struct XnPropertySetModuleEnumerator
{
XnBool bFirst;
XnPropertySetData* pModules;
XnPropertySetData::ConstIterator it;
};
struct XnPropertySetEnumerator
{
XnBool bFirst;
XnPropertySetData* pModules;
XnPropertySetData::ConstIterator itModule;
XnChar strModule[XN_DEVICE_MAX_STRING_LENGTH];
XnActualPropertiesHash::ConstIterator itProp;
};
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnStatus XnPropertySetCreate(XnPropertySet** ppSet)
{
XN_VALIDATE_OUTPUT_PTR(ppSet);
XnPropertySet* pSet;
XN_VALIDATE_ALLOC(pSet, XnPropertySet);
pSet->pData = XN_NEW(XnPropertySetData);
if (pSet->pData == NULL)
{
xnOSFree(pSet);
return XN_STATUS_ALLOC_FAILED;
}
*ppSet = pSet;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetDestroy(XnPropertySet** ppSet)
{
XN_VALIDATE_INPUT_PTR(ppSet);
XN_VALIDATE_INPUT_PTR(*ppSet);
XnPropertySet* pSet = (*ppSet);
if (pSet->pData != NULL)
{
XnPropertySetClear(pSet);
XN_DELETE(pSet->pData);
}
xnOSFree(pSet);
*ppSet = NULL;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetClear(XnPropertySet* pSet)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
while (!pSet->pData->IsEmpty())
{
nRetVal = XnPropertySetRemoveModule(pSet, pSet->pData->Begin()->Key());
XN_IS_STATUS_OK(nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus XnPropertySetAddModule(XnPropertySet* pSet, const XnChar* strModuleName)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
XnActualPropertiesHash* pModule = NULL;
// make sure this module doesn't already exists
nRetVal = pSet->pData->Get(strModuleName, pModule);
if (XN_STATUS_OK == nRetVal)
{
return XN_STATUS_DEVICE_MODULE_ALREADY_EXISTS;
}
// doesn't exist. create a new one
XN_VALIDATE_NEW(pModule, XnActualPropertiesHash, strModuleName);
nRetVal = XnPropertySetDataAttachModule(pSet->pData, strModuleName, pModule);
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pModule);
return (nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus XnPropertySetRemoveModule(XnPropertySet* pSet, const XnChar* strModuleName)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
XnActualPropertiesHash* pModule = NULL;
nRetVal = XnPropertySetDataDetachModule(pSet->pData, strModuleName, &pModule);
XN_IS_STATUS_OK(nRetVal);
// now free its memory
XN_DELETE(pModule);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetAddIntProperty(XnPropertySet* pSet, const XnChar* strModuleName, XnUInt32 propertyId, XnUInt64 nValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
// get module
XnActualPropertiesHash* pModule = NULL;
nRetVal = pSet->pData->Get(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
// add property
nRetVal = pModule->Add(propertyId, "", nValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetAddRealProperty(XnPropertySet* pSet, const XnChar* strModuleName, XnUInt32 propertyId, XnDouble dValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
// get module
XnActualPropertiesHash* pModule = NULL;
nRetVal = pSet->pData->Get(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
// add property
nRetVal = pModule->Add(propertyId, "", dValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetAddStringProperty(XnPropertySet* pSet, const XnChar* strModuleName, XnUInt32 propertyId, const XnChar* strValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
XN_VALIDATE_INPUT_PTR(strValue);
// get module
XnActualPropertiesHash* pModule = NULL;
nRetVal = pSet->pData->Get(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
// add property
nRetVal = pModule->Add(propertyId, "", strValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetAddGeneralProperty(XnPropertySet* pSet, const XnChar* strModuleName, XnUInt32 propertyId, const OniGeneralBuffer* pgbValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
XN_VALIDATE_INPUT_PTR(pgbValue);
// get module
XnActualPropertiesHash* pModule = NULL;
nRetVal = pSet->pData->Get(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
// add property
nRetVal = pModule->Add(propertyId, "", *pgbValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetRemoveProperty(XnPropertySet* pSet, const XnChar* strModuleName, XnUInt32 propertyId)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModuleName);
// get module
XnActualPropertiesHash* pModule = NULL;
nRetVal = pSet->pData->Get(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
// remove the property
nRetVal = pModule->Remove(propertyId);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetGetModuleEnumerator(const XnPropertySet* pSet, XnPropertySetModuleEnumerator** ppEnumerator)
{
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_OUTPUT_PTR(ppEnumerator);
XnPropertySetModuleEnumerator* pEnumer;
XN_VALIDATE_NEW(pEnumer, XnPropertySetModuleEnumerator);
pEnumer->bFirst = TRUE;
pEnumer->it = pSet->pData->End();
pEnumer->pModules = pSet->pData;
*ppEnumerator = pEnumer;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetModuleEnumeratorFree(XnPropertySetModuleEnumerator** ppEnumer)
{
XN_VALIDATE_INPUT_PTR(ppEnumer);
XN_VALIDATE_INPUT_PTR(*ppEnumer);
XN_DELETE(*ppEnumer);
*ppEnumer = NULL;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetModuleEnumeratorMoveNext(XnPropertySetModuleEnumerator* pEnumerator, XnBool* pbEnd)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pbEnd);
if (pEnumerator->bFirst)
{
pEnumerator->it = pEnumerator->pModules->Begin();
pEnumerator->bFirst = FALSE;
}
else if (pEnumerator->it == pEnumerator->pModules->End())
{
return XN_STATUS_ILLEGAL_POSITION;
}
else
{
pEnumerator->it++;
}
*pbEnd = (pEnumerator->it == pEnumerator->pModules->End());
return (XN_STATUS_OK);
}
XnStatus XnPropertySetModuleEnumeratorGetCurrent(const XnPropertySetModuleEnumerator* pEnumer, const XnChar** pstrModuleName)
{
XN_VALIDATE_INPUT_PTR(pEnumer);
XN_VALIDATE_OUTPUT_PTR(pstrModuleName);
if (pEnumer->it == pEnumer->pModules->End())
{
return XN_STATUS_ILLEGAL_POSITION;
}
*pstrModuleName = pEnumer->it->Key();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetGetEnumerator(const XnPropertySet* pSet, XnPropertySetEnumerator** ppEnumerator, const XnChar* strModule /* = NULL */)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_OUTPUT_PTR(ppEnumerator);
if (strModule != NULL)
{
// make sure module exists
XnPropertySetData::ConstIterator it = pSet->pData->End();
nRetVal = pSet->pData->Find(strModule, it);
XN_IS_STATUS_OK(nRetVal);
}
XnPropertySetEnumerator* pEnumer;
XN_VALIDATE_NEW(pEnumer, XnPropertySetEnumerator)
pEnumer->bFirst = TRUE;
pEnumer->pModules = pSet->pData;
if (strModule != NULL)
{
strncpy(pEnumer->strModule, strModule, XN_DEVICE_MAX_STRING_LENGTH);
}
else
{
pEnumer->strModule[0] = '\0';
}
*ppEnumerator = pEnumer;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetFindProperty(const XnPropertySet* pSet, const XnChar* strModule, XnUInt32 propertyId, XnPropertySetEnumerator** ppEnumerator)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSet);
XN_VALIDATE_INPUT_PTR(strModule);
XN_VALIDATE_OUTPUT_PTR(ppEnumerator);
// find module
XnPropertySetData::Iterator itModule = pSet->pData->End();
nRetVal = pSet->pData->Find(strModule, itModule);
XN_IS_STATUS_OK(nRetVal);
XnActualPropertiesHash* pModule = itModule->Value();
// find property
XnActualPropertiesHash::Iterator itProp = pModule->End();
nRetVal = pModule->Find(propertyId, itProp);
XN_IS_STATUS_OK(nRetVal);
// create enumerator
XnPropertySetEnumerator* pEnumer;
XN_VALIDATE_NEW(pEnumer, XnPropertySetEnumerator);
pEnumer->itModule = itModule;
pEnumer->itProp = itProp;
pEnumer->pModules = pSet->pData;
pEnumer->strModule[0] = '\0';
pEnumer->bFirst = FALSE;
*ppEnumerator = pEnumer;
return XN_STATUS_OK;
}
XnStatus XnPropertySetEnumeratorFree(XnPropertySetEnumerator** ppEnumerator)
{
XN_VALIDATE_INPUT_PTR(ppEnumerator);
XN_VALIDATE_INPUT_PTR(*ppEnumerator);
XN_DELETE(*ppEnumerator);
*ppEnumerator = NULL;
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorMoveNext(XnPropertySetEnumerator* pEnumerator, XnBool* pbEnd)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pbEnd);
*pbEnd = TRUE;
if (pEnumerator->strModule[0] != '\0') // single module
{
if (pEnumerator->bFirst)
{
pEnumerator->bFirst = FALSE;
// find this module
nRetVal = pEnumerator->pModules->Find(pEnumerator->strModule, pEnumerator->itModule);
if (nRetVal == XN_STATUS_NO_MATCH)
{
pEnumerator->itModule = pEnumerator->pModules->End();
}
XN_IS_STATUS_OK(nRetVal);
pEnumerator->itProp = pEnumerator->itModule->Value()->Begin();
}
else if (pEnumerator->itProp == pEnumerator->itModule->Value()->End())
{
return XN_STATUS_ILLEGAL_POSITION;
}
else
{
// advance prop iterator
++pEnumerator->itProp;
}
*pbEnd = (pEnumerator->itProp == pEnumerator->itModule->Value()->End());
}
else // all modules
{
if (pEnumerator->bFirst)
{
pEnumerator->bFirst = FALSE;
// search for the first modules that has properties
pEnumerator->itModule = pEnumerator->pModules->Begin();
while (pEnumerator->itModule != pEnumerator->pModules->End() && pEnumerator->itModule->Value()->IsEmpty())
{
pEnumerator->itModule++;
}
// if we found one, take it's first property
if (pEnumerator->itModule != pEnumerator->pModules->End())
{
pEnumerator->itProp = pEnumerator->itModule->Value()->Begin();
*pbEnd = FALSE;
}
else
{
*pbEnd = TRUE;
}
}
else if (pEnumerator->itModule == pEnumerator->pModules->End())
{
return XN_STATUS_ILLEGAL_POSITION;
}
else
{
// move to next one
++pEnumerator->itProp;
// check if we reached end of module
if (pEnumerator->itProp == pEnumerator->itModule->Value()->End())
{
// move to next module with properties
do
{
pEnumerator->itModule++;
}
while (pEnumerator->itModule != pEnumerator->pModules->End() && pEnumerator->itModule->Value()->IsEmpty());
// if we found one, take it's first property
if (pEnumerator->itModule != pEnumerator->pModules->End())
{
pEnumerator->itProp = pEnumerator->itModule->Value()->Begin();
*pbEnd = FALSE;
}
else
{
*pbEnd = TRUE;
}
}
else
{
*pbEnd = FALSE;
}
}
}
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorGetCurrentPropertyInfo(const XnPropertySetEnumerator* pEnumerator, XnPropertyType* pnType, const XnChar** pstrModule, const XnChar** pstrProp)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pnType);
XN_VALIDATE_OUTPUT_PTR(pstrModule);
XN_VALIDATE_OUTPUT_PTR(pstrProp);
XnProperty* pProp = pEnumerator->itProp->Value();
*pnType = pProp->GetType();
*pstrModule = pProp->GetModule();
*pstrProp = pProp->GetName();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorGetIntValue(const XnPropertySetEnumerator* pEnumerator, XnUInt64* pnValue)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pnValue);
XnProperty* pPropBase = pEnumerator->itProp->Value();
if (pPropBase->GetType() != XN_PROPERTY_TYPE_INTEGER)
{
return XN_STATUS_DEVICE_PROPERTY_BAD_TYPE;
}
XnActualIntProperty* pProp = (XnActualIntProperty*)pPropBase;
*pnValue = pProp->GetValue();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorGetRealValue(const XnPropertySetEnumerator* pEnumerator, XnDouble* pdValue)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pdValue);
XnProperty* pPropBase = pEnumerator->itProp->Value();
if (pPropBase->GetType() != XN_PROPERTY_TYPE_REAL)
{
return XN_STATUS_DEVICE_PROPERTY_BAD_TYPE;
}
XnActualRealProperty* pProp = (XnActualRealProperty*)pPropBase;
*pdValue = pProp->GetValue();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorGetStringValue(const XnPropertySetEnumerator* pEnumerator, const XnChar** pstrValue)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pstrValue);
XnProperty* pPropBase = pEnumerator->itProp->Value();
if (pPropBase->GetType() != XN_PROPERTY_TYPE_STRING)
{
return XN_STATUS_DEVICE_PROPERTY_BAD_TYPE;
}
XnActualStringProperty* pProp = (XnActualStringProperty*)pPropBase;
*pstrValue = pProp->GetValue();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetEnumeratorGetGeneralValue(const XnPropertySetEnumerator* pEnumerator, OniGeneralBuffer* pgbValue)
{
XN_VALIDATE_INPUT_PTR(pEnumerator);
XN_VALIDATE_OUTPUT_PTR(pgbValue);
XnProperty* pPropBase = pEnumerator->itProp->Value();
if (pPropBase->GetType() != XN_PROPERTY_TYPE_GENERAL)
{
return XN_STATUS_DEVICE_PROPERTY_BAD_TYPE;
}
XnActualGeneralProperty* pProp = (XnActualGeneralProperty*)pPropBase;
*pgbValue = pProp->GetValue();
return (XN_STATUS_OK);
}
XnStatus XnPropertySetDataAttachModule(XnPropertySetData* pSetData, const XnChar* strModuleName, XnActualPropertiesHash* pModule)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSetData);
XN_VALIDATE_INPUT_PTR(strModuleName);
XN_VALIDATE_INPUT_PTR(pModule);
nRetVal = pSetData->Set(strModuleName, pModule);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetDataDetachModule(XnPropertySetData* pSetData, const XnChar* strModuleName, XnActualPropertiesHash** ppModule)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pSetData);
XN_VALIDATE_INPUT_PTR(strModuleName);
XN_VALIDATE_OUTPUT_PTR(ppModule);
// remove it
XnPropertySetDataInternal::Iterator it = pSetData->Find(strModuleName);
if (it == pSetData->End())
{
return XN_STATUS_NO_MATCH;
}
*ppModule = it->Value();
nRetVal = pSetData->Remove(strModuleName);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnPropertySetCloneModule(const XnPropertySet* pSource, XnPropertySet* pDest, const XnChar* strModule, const XnChar* strNewName)
{
XnStatus nRetVal = XN_STATUS_OK;
XnActualPropertiesHash* pModuleProps = NULL;
nRetVal = pSource->pData->Get(strModule, pModuleProps);
XN_IS_STATUS_OK(nRetVal);
nRetVal = XnPropertySetAddModule(pDest, strNewName);
XN_IS_STATUS_OK(nRetVal);
for (XnActualPropertiesHash::ConstIterator it = pModuleProps->Begin(); it != pModuleProps->End(); ++it)
{
XnProperty* pProp = it->Value();
switch (pProp->GetType())
{
case XN_PROPERTY_TYPE_INTEGER:
{
XnActualIntProperty* pIntProp = (XnActualIntProperty*)pProp;
nRetVal = XnPropertySetAddIntProperty(pDest, strNewName, pIntProp->GetId(), pIntProp->GetValue());
XN_IS_STATUS_OK(nRetVal);
break;
}
case XN_PROPERTY_TYPE_REAL:
{
XnActualRealProperty* pRealProp = (XnActualRealProperty*)pProp;
nRetVal = XnPropertySetAddRealProperty(pDest, strNewName, pRealProp->GetId(), pRealProp->GetValue());
XN_IS_STATUS_OK(nRetVal);
break;
}
case XN_PROPERTY_TYPE_STRING:
{
XnActualStringProperty* pStrProp = (XnActualStringProperty*)pProp;
nRetVal = XnPropertySetAddStringProperty(pDest, strNewName, pStrProp->GetId(), pStrProp->GetValue());
XN_IS_STATUS_OK(nRetVal);
break;
}
case XN_PROPERTY_TYPE_GENERAL:
{
XnActualGeneralProperty* pGenProp = (XnActualGeneralProperty*)pProp;
nRetVal = XnPropertySetAddGeneralProperty(pDest, strNewName, pGenProp->GetId(), &pGenProp->GetValue());
XN_IS_STATUS_OK(nRetVal);
break;
}
default:
XN_LOG_WARNING_RETURN(XN_STATUS_ERROR, XN_MASK_DDK, "Unknown property type: %d", pProp->GetType());
}
}
return (XN_STATUS_OK);
}
|