检测SKSpritenode与许多SKSpritenodes Swift的接触

时间:2017-02-25 23:29:27

标签: arrays swift skphysicsbody

我需要在我的项目中检测联系人,但我有9个方格我想要检测联系人。有没有办法检测接触而不创建9个不同的物理实体或类似物理体的数组。此外,每当圆圈接触正方形时,该正方形将变为彩色。我想用像这样的数组这样做:

for i in 1...9{
if firstBody.categoryBitMask == PhysicsCategory.square[i] && secondBody.categoryBitMask == PhysicsCategory.circle || firstBody.categoryBitMask == 
PhysicsCategory.circle && secondBody.categoryBitMask == PhysicsCategory.square[i] {

    squares[i].node.color = squares[i].targetColor
    //this is my array of structs containing the skspritenodes
    squares[i].colorBlendFactor = 1.0


}
} 

我试过制作9个物理团体,但是我遇到了很多错误。这就是我到目前为止所做的。

import SpriteKit

var squares = Array<square>()
var positions = Array<CGPoint>()
var squareUnit = CGFloat()
var rows = Array<CGFloat>()
var columbs = Array<CGFloat>()
var circle = SKSpriteNode()
var physics = Array<UInt32>()

struct PhysicsCategory{

static let circle : UInt32 = 0x1 << 0
static let square1 : UInt32 = 0x1 << 1
static let square2 : UInt32 = 0x1 << 2
static let square3 : UInt32 = 0x1 << 3
static let square4 : UInt32 = 0x1 << 4
static let square5 : UInt32 = 0x1 << 5
static let square6 : UInt32 = 0x1 << 6
static let square7 : UInt32 = 0x1 << 7
static let square8 : UInt32 = 0x1 << 8
static let square9 : UInt32 = 0x1 << 9






}

struct square{

var startColor = UIColor()
var middleColor = UIColor()
var targetColor = UIColor()
var has3Colors = Bool()
var permanent = Bool()
var node = SKSpriteNode(imageNamed:"Square")
var currentState = Int()




}

class GameScene: SKScene, SKPhysicsContactDelegate {


override func didMove(to view: SKView) {

        createScene()

       }

    func createScene(){
    self.physicsWorld.contactDelegate = self
    self.anchorPoint = CGPoint(x: 0, y: 0)
    createSquares()
    createCircles()


}


func createCircles(){

    circle = SKSpriteNode(imageNamed: "Circle")
    circle.size.width = squares[1].node.size.width * 0.9
    circle.size.height = squares[1].node.size.height * 0.9
    circle.position = squares[4].node.position
    circle.color = UIColor.blue
    circle.colorBlendFactor = 1.0
    circle.zPosition = 10
    circle.physicsBody = SKPhysicsBody(circleOfRadius: circle.frame.width / 2)
    circle.physicsBody?.categoryBitMask = PhysicsCategory.circle
    circle.physicsBody?.affectedByGravity = false
    circle.physicsBody?.isDynamic = false
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square1
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square2
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square3
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square4
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square5
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square6
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square7
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square8
    circle.physicsBody?.contactTestBitMask = PhysicsCategory.square9

        self.addChild(circle)



}

func didBegin(_ contact: SKPhysicsContact) {

    let firstBody = contact.bodyA
    let secondBody = contact.bodyB


       }


func createSquares(){
    for i in 1...9{

       // squares[i].currentState = 1

    }
    squareUnit = self.frame.width / 4



    columbs = [squareUnit / 4 + squareUnit/2, self.frame.width/2,self.frame.width - squareUnit / 4 - squareUnit / 2]
    rows = [squareUnit / 4 + squareUnit/2, self.frame.width/2,self.frame.width - squareUnit / 4 - squareUnit / 2]
    for row in rows{
        for columb in columbs{

          positions.append(CGPoint(x: columb, y: row))

        }


    }

    squares = (0...8).map { _ in square() }

    for i in (0...8){


        squares[i].node.position = positions[i]
        squares[i].node.physicsBody = SKPhysicsBody(rectangleOf: squares[i].node.size )
        squares[i].node.physicsBody?.affectedByGravity = false
        squares[i].node.physicsBody?.isDynamic = false



    }
    for square in squares {

        square.node.size = CGSize(width: squareUnit, height: squareUnit)
        square.node.color = UIColor.white
    }

    squares.forEach { self.addChild($0.node) }

}

override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

    for touch in touches {



        let location = touch.location(in: self)

        circle.run(SKAction.move(to: CGPoint(x: location.x, y: location.y), duration: 0.2))


    }

}


override func update(_ currentTime: TimeInterval) {
    // Called before each frame is rendered
}
}

1 个答案:

答案 0 :(得分:1)

我想通了我只创建了9个物理实体,然后将它们全部添加到UInt32数组中,并将它们分配给每个节点。

$ CC="/usr/local/musl/bin/musl-gcc" go build --ldflags '-linkmode external -extldflags "-static -fPIC"' basic.go
# command-line-arguments
/usr/local/go/pkg/tool/linux_amd64/link: running /usr/local/musl/bin/musl-gcc failed: exit status 1
/tmp/go-link-916770907/000000.o: In function `printf':
/usr/include/x86_64-linux-gnu/bits/stdio2.h:104: undefined reference to `__printf_chk'
collect2: error: ld returned 1 exit status