void updateUserState(const nite::UserData& user, uint64_t ts) { if (user.isNew()) { USER_MESSAGE("New"); } else if (user.isVisible() && !g_visibleUsers[user.getId()]) printf("[%08" PRIu64 "] User #%d:\tVisible\n", ts, user.getId()); else if (!user.isVisible() && g_visibleUsers[user.getId()]) printf("[%08" PRIu64 "] User #%d:\tOut of Scene\n", ts, user.getId()); else if (user.isLost()) { USER_MESSAGE("Lost"); } g_visibleUsers[user.getId()] = user.isVisible(); if(g_skeletonStates[user.getId()] != user.getSkeleton().getState()) { switch(g_skeletonStates[user.getId()] = user.getSkeleton().getState()) { case nite::SKELETON_NONE: USER_MESSAGE("Stopped tracking.") break; case nite::SKELETON_CALIBRATING: USER_MESSAGE("Calibrating...") break; case nite::SKELETON_TRACKED: USER_MESSAGE("Tracking!") break; case nite::SKELETON_CALIBRATION_ERROR_NOT_IN_POSE: case nite::SKELETON_CALIBRATION_ERROR_HANDS: case nite::SKELETON_CALIBRATION_ERROR_LEGS: case nite::SKELETON_CALIBRATION_ERROR_HEAD: case nite::SKELETON_CALIBRATION_ERROR_TORSO: USER_MESSAGE("Calibration Failed... :-|") break; } } }
void updateUserState(const nite::UserData& user, unsigned long long ts) { if (user.isNew()) USER_MESSAGE("New") else if (user.isVisible() && !g_visibleUsers[user.getId()]) USER_MESSAGE("Visible") else if (!user.isVisible() && g_visibleUsers[user.getId()]) USER_MESSAGE("Out of Scene") else if (user.isLost()) USER_MESSAGE("Lost") g_visibleUsers[user.getId()] = user.isVisible(); if(g_skeletonStates[user.getId()] != user.getSkeleton().getState()) { switch(g_skeletonStates[user.getId()] = user.getSkeleton().getState()) { case nite::SKELETON_NONE: USER_MESSAGE("Stopped tracking.") break; case nite::SKELETON_CALIBRATING: USER_MESSAGE("Calibrating...") break; case nite::SKELETON_TRACKED: USER_MESSAGE("Tracking!") break; case nite::SKELETON_CALIBRATION_ERROR_NOT_IN_POSE: case nite::SKELETON_CALIBRATION_ERROR_HANDS: case nite::SKELETON_CALIBRATION_ERROR_LEGS: case nite::SKELETON_CALIBRATION_ERROR_HEAD: case nite::SKELETON_CALIBRATION_ERROR_TORSO: USER_MESSAGE("Calibration Failed... :-|") break; } } }