草庐IT

ios - 当我按下运行程序时,我的游戏会加载但无法启动

coder 2023-09-17 原文

我正在学习本教程:https://www.raywenderlich.com/118225/introduction-sprite-kit-scene-editor

当我在 Xcode 中按下运行程序时,模拟器加载游戏并弹出显示游戏的第一帧,但它被卡住了。当我点击时,玩家 Sprite 应该移动到我点击的地方并且 AI Sprite 应该试图捕获玩家,但没有任何反应。点击不起作用,我试过让它静置一会儿,看看它是否没有完成加载或其他什么,但也没有用。

到目前为止,该程序的所有代码都在这里:

import SpriteKit

class GameScene: SKScene, SKPhysicsContactDelegate {

  let playerSpeed: CGFloat = 150.0
  let zombieSpeed: CGFloat = 75.0

  var goal: SKSpriteNode?
  var player: SKSpriteNode?
  var zombies: [SKSpriteNode] = []

  var lastTouch: CGPoint? = nil

  override func didMoveToView(view: SKView) {
    physicsWorld.contactDelegate = self
    updateCamera()
  }

  override func touchesBegan(touches: Set<UITouch>, withEvent event:      UIEvent?) {
    handleTouches(touches)
  }

  override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
    handleTouches(touches)
  }

  override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
    handleTouches(touches)
  }

  private func handleTouches(touches: Set<UITouch>) {
    for touch in touches {
      let touchLocation = touch.locationInNode(self)
      lastTouch = touchLocation
    }
  }

  override func didSimulatePhysics() {
    if let _ = player {
      updatePlayer()
      updateZombies()
    }
  }

  private func shouldMove(currentPosition currentPosition: CGPoint, touchPosition: CGPoint) -> Bool {
    return abs(currentPosition.x - touchPosition.x) > player!.frame.width / 2 ||
      abs(currentPosition.y - touchPosition.y) > player!.frame.height/2
  }

  func updatePlayer() {
    if let touch = lastTouch {
      let currentPosition = player!.position
      if shouldMove(currentPosition: currentPosition, touchPosition: touch) {

        let angle = atan2(currentPosition.y - touch.y, currentPosition.x - touch.x) + CGFloat(M_PI)
        let rotateAction = SKAction.rotateToAngle(angle + CGFloat(M_PI*0.5), duration: 0)

        player!.runAction(rotateAction)

        let velocotyX = playerSpeed * cos(angle)
        let velocityY = playerSpeed * sin(angle)

        let newVelocity = CGVector(dx: velocotyX, dy: velocityY)
        player!.physicsBody!.velocity = newVelocity;
        updateCamera()
      } else {
        player!.physicsBody!.resting = true
      }
    }
  }

  func updateCamera() {
    if let camera = camera {
      camera.position = CGPoint(x: player!.position.x, y: player!.position.y)
    }
  }

  func updateZombies() {
    let targetPosition = player!.position

    for zombie in zombies {
      let currentPosition = zombie.position

      let angle = atan2(currentPosition.y - targetPosition.y, currentPosition.x - targetPosition.x) + CGFloat(M_PI)
      let rotateAction = SKAction.rotateToAngle(angle + CGFloat(M_PI*0.5), duration: 0.0)
      zombie.runAction(rotateAction)

      let velocotyX = zombieSpeed * cos(angle)
      let velocityY = zombieSpeed * sin(angle)

      let newVelocity = CGVector(dx: velocotyX, dy: velocityY)
      zombie.physicsBody!.velocity = newVelocity;
    }
  }

  func didBeginContact(contact: SKPhysicsContact) {
    var firstBody: SKPhysicsBody
    var secondBody: SKPhysicsBody

    if contact.bodyA.categoryBitMask < contact.bodyB.categoryBitMask {
      firstBody = contact.bodyA
      secondBody = contact.bodyB
    } else {
      firstBody = contact.bodyB
      secondBody = contact.bodyA
    }

    if firstBody.categoryBitMask == player?.physicsBody?.categoryBitMask && secondBody.categoryBitMask == zombies[0].physicsBody?.categoryBitMask {
        gameOver(false)
    } else if firstBody.categoryBitMask == player?.physicsBody?.categoryBitMask && secondBody.categoryBitMask == goal?.physicsBody?.categoryBitMask {
        gameOver(true)
    }

    player = self.childNodeWithName("player") as? SKSpriteNode

    for child in self.children {
        if child.name == "zombie" {
            if let child = child as? SKSpriteNode {
                zombies.append(child)
            }
        }
    }
    goal = self.childNodeWithName("goal") as? SKSpriteNode
  }

  private func gameOver(didWin: Bool) {
    print("- - - Game Ended - - -")
    let menuScene = MenuScene(size: self.size)
    menuScene.soundToPlay = didWin ? "fear_win.mp3" : "fear_lose.mp3"
    let transition = SKTransition.flipVerticalWithDuration(1.0)
    menuScene.scaleMode = SKSceneScaleMode.AspectFill
    self.scene!.view?.presentScene(menuScene, transition: transition)
  }
}

程序中完成的其余事情,例如添加 Sprite 等,都是在 GameScene.sks 中完成的,因此没有相关代码。

最佳答案

您的设置代码位置错误。将此从 didBeginContact 移至 didMoveToView:

player = self.childNodeWithName("player") as? SKSpriteNode
for child in self.children {
    if child.name == "zombie" {
        if let child = child as? SKSpriteNode {
            zombies.append(child)
        }
    }
}
goal = self.childNodeWithName("goal") as? SKSpriteNode

至少这是我在将您的代码与教程中的示例项目进行比较时看到的差异。

关于ios - 当我按下运行程序时,我的游戏会加载但无法启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37027272/

有关ios - 当我按下运行程序时,我的游戏会加载但无法启动的更多相关文章

  1. ruby - 如何从 ruby​​ 中的字符串运行任意对象方法? - 2

    总的来说,我对ruby​​还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用

  2. ruby - 在 Ruby 程序执行时阻止 Windows 7 PC 进入休眠状态 - 2

    我需要在客户计算机上运行Ruby应用程序。通常需要几天才能完成(复制大备份文件)。问题是如果启用sleep,它会中断应用程序。否则,计算机将持续运行数周,直到我下次访问为止。有什么方法可以防止执行期间休眠并让Windows在执行后休眠吗?欢迎任何疯狂的想法;-) 最佳答案 Here建议使用SetThreadExecutionStateWinAPI函数,使应用程序能够通知系统它正在使用中,从而防止系统在应用程序运行时进入休眠状态或关闭显示。像这样的东西:require'Win32API'ES_AWAYMODE_REQUIRED=0x0

  3. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  4. ruby - 如何指定 Rack 处理程序 - 2

    Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack

  5. ruby - 在 Ruby 中编写命令行实用程序 - 2

    我想用ruby​​编写一个小的命令行实用程序并将其作为gem分发。我知道安装后,Guard、Sass和Thor等某些gem可以从命令行自行运行。为了让gem像二进制文件一样可用,我需要在我的gemspec中指定什么。 最佳答案 Gem::Specification.newdo|s|...s.executable='name_of_executable'...endhttp://docs.rubygems.org/read/chapter/20 关于ruby-在Ruby中编写命令行实用程序

  6. ruby - 如何每月在 Heroku 运行一次 Scheduler 插件? - 2

    在选择我想要运行操作的频率时,唯一的选项是“每天”、“每小时”和“每10分钟”。谢谢!我想为我的Rails3.1应用程序运行调度程序。 最佳答案 这不是一个优雅的解决方案,但您可以安排它每天运行,并在实际开始工作之前检查日期是否为当月的第一天。 关于ruby-如何每月在Heroku运行一次Scheduler插件?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/8692687/

  7. ruby-on-rails - 无法使用 Rails 3.2 创建插件? - 2

    我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby​​1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在

  8. ruby-on-rails - 如何在 ruby​​ 中使用两个参数异步运行 exe? - 2

    exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby​​中使用两个参数异步运行exe吗?我已经尝试过ruby​​命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何ruby​​gems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除

  9. ruby-on-rails - Rails 应用程序之间的通信 - 2

    我构建了两个需要相互通信和发送文件的Rails应用程序。例如,一个Rails应用程序会发送请求以查看其他应用程序数据库中的表。然后另一个应用程序将呈现该表的json并将其发回。我还希望一个应用程序将存储在其公共(public)目录中的文本文件发送到另一个应用程序的公共(public)目录。我从来没有做过这样的事情,所以我什至不知道从哪里开始。任何帮助,将不胜感激。谢谢! 最佳答案 无论Rails是什么,几乎所有Web应用程序都有您的要求,大多数现代Web应用程序都需要相互通信。但是有一个小小的理解需要你坚持下去,网站不应直接访问彼此

  10. ruby - 无法运行 Rails 2.x 应用程序 - 2

    我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby​​:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r

随机推荐