CMMotionManager参考框架

时间:2013-11-27 19:44:55

标签: ios objective-c opengl-es github core-motion

我正在开发一个应用程序,当用户打开时,会有一个由CMMotionManager控制的图像,该图像根据用户倾斜设备的方向移动。

start image .. user tilts down .. user tilts right

这是启动设备动作的代码。

motionManager = [[CMMotionManager alloc] init];
motionManager.showsDeviceMovementDisplay = YES;

motionManager.deviceMotionUpdateInterval = 1.0 / 60.0;

[motionManager startDeviceMotionUpdatesUsingReferenceFrame:CMAttitudeReferenceFrameXArbitraryCorrectedZVertical];

这是我用来控制我的图像的代码,参考设备的运动。

- (void)drawRect:(CGRect)rect
{
    if (placesOfInterestCoordinates == nil) {
        return;
    }


    mat4f_t projectionCameraTransform;
    multiplyMatrixAndMatrix(projectionCameraTransform, projectionTransform, cameraTransform);

    int i = 0;


    for (MovingImage *poi in [placesOfInterest objectEnumerator]) {
        vec4f_t v;

        multiplyMatrixAndVector(v, projectionCameraTransform, placesOfInterestCoordinates[i]);

        float x = (v[0] / v[3] + 1.0f) * 0.5f;
        float y = (v[1] / v[3] + 1.0f) * 0.5f;

        if (v[2] < 0.0f) {
            CGPoint movingTo = CGPointMake(x*self.bounds.size.width, self.bounds.size.height-y*self.bounds.size.height);

            if (movingTo.x < -118) {
                movingTo.x = -118;
            }
            if (movingTo.x > 542) {
                movingTo.x = 542;
            }
            if (movingTo.y < 215) {
                movingTo.y = 215;
            }
            if (movingTo.y > 390) {
                movingTo.y = 390;
            }

            poi.view.center = movingTo;

            poi.view.hidden = NO;

        } else {
            poi.view.hidden = YES;
        }
        i++;
    }
}

当用户打开应用程序时,图像很少出现在屏幕中间,图像通常位于起始位置的右侧或左侧90度,或者始终位于中间位置。

我认为CMAttitudeReferenceFrameXArbitraryCorrectedZVertical是问题所在,但我也尝试了CMAttitudeReferenceFrameXArbitraryZVertical这也不起作用。 如果有用,我的项目是here,对于任何感兴趣的人。我也使用了Apple pARk示例代码。

1 个答案:

答案 0 :(得分:0)

- (void)drawRect:(CGRect)rect
{
if (placesOfInterestCoordinates == nil) {
    return;
}


mat4f_t projectionCameraTransform;
multiplyMatrixAndMatrix(projectionCameraTransform, projectionTransform, cameraTransform);

int i = 0;


for (MovingImage *poi in [placesOfInterest objectEnumerator]) {
    vec4f_t v;

    multiplyMatrixAndVector(v, projectionCameraTransform, placesOfInterestCoordinates[i]);

    float x = (v[0] / v[3] + 1.0f) * 0.5f;
    float y = (v[1] / v[3] + 1.0f) * 0.5f;

    if (v[2] < 1.0f) { // change here
        CGPoint movingTo = CGPointMake(x*self.bounds.size.width, self.bounds.size.height-y*self.bounds.size.height);

        if (movingTo.x < -118) {
            movingTo.x = -118;
        }
        if (movingTo.x > 542) {
            movingTo.x = 542;
        }
        if (movingTo.y < 215) {
            movingTo.y = 215;
        }
        if (movingTo.y > 390) {
            movingTo.y = 390;
        }

        poi.view.center = movingTo;

        poi.view.hidden = NO;

    } else {
        poi.view.hidden = YES;
    }
    i++;
}
}

尝试将(v[2] < 0.0f)更改为(v[2] < 1.0f)

视角不同,因为除了设备的透视角度外,它正在寻找图像进入视野时。