Я пытаюсь заставить мои спрайты оставаться в границах экрана, используя следующий код:
- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event {
CGPoint touchLocation = [self convertTouchToNodeSpace:touch];
[self selectSpriteForTouch:touchLocation];
return TRUE; }
- (void)ccTouchMoved:(UITouch *)touch withEvent:(UIEvent *)event {
CGPoint touchLocation = [self convertTouchToNodeSpace:touch];
if (selSprite) {
CGPoint oldLocation = [touch previousLocationInView:touch.view];
oldLocation = [[CCDirector sharedDirector] convertToGL:oldLocation];
oldLocation = [self convertToNodeSpace:oldLocation];
CGPoint translation = ccpSub(touchLocation, oldLocation);
CGPoint newPos = ccpAdd(selSprite.position, translation);
selSprite.position = newPos; } }
Я понимаю, что мне нужно добавить код, чтобы указать границы. Примерно так:
int width=point.x;
int height=point.y;
if (winSize.width-sprite.contentSize.width/2<width) {
width=winSize.width-sprite.contentSize.width/2;}
if (winSize.height-sprite.contentSize.height/2<height) {
height=winSize.height-sprite.contentSize.height/2;}
if (sprite.contentSize.height/2>height) {
height=sprite.contentSize.height/2;}
if (sprite.contentSize.width/2>width) {
width=sprite.contentSize.width/2;}
Но я новичок в objective C
и до конца не понимаю, как с этим справиться.