4

我正在尝试按照与本视频相同的方式创建模拟 (1:29 - 1:45)

https://www.youtube.com/watch?v=pqBSNAOsMDc

我认为实现无限循环过程的一种简单方法是让海龟面对 0,0,然后在半径 90 内寻找空的补丁(所以它们总是向右看。

我得到错误代码..

'没有定义从点 (3,-6) 到同一点的航向。'

有人可以用我的代码指出我正确的方向吗?

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


turtles-own [ faction ]

to setup
  clear-all

  ask patches [ set pcolor white ]
  set-patch-size 7
  resize-world min-pxcor max-pxcor min-pycor max-pycor 


  ask patch 0 0
   [ ask patches in-radius ( max-pxcor * .6) with [  random-float 100 < density ]
     [ sprout 1
         [
         set shape "circle"
         assign-factions
         set color faction-color
         set size 1 ] ] ]

   ask turtles-on patch 0 0 [ die ]

   reset-ticks
end

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

to-report faction-color
   report red + faction * 30
end

to assign-factions
   let angle 360 / factions
   foreach n-values factions [?] [
    ask patch 0 0 [ 
      sprout 1 [
        set heading ? * angle
        ask turtles in-cone max-pxcor angle [ set faction ? + 1 ]
        die ] ] ]
end

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

to go 

  ask turtles
  [ set heading (towards patch-at 0 0)  ; adjusts heading to point to centre  
    let empty-patches neighbors with [not any? turtles-here]
    if any? empty-patches in-radius 90
      [ let target one-of empty-patches
        face target
        move-to target ] 
  ]

end

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4

2 回答 2

2

在您的go过程中,您正在使用set heading (towards patch-at 0 0),但会在对于所询问的海龟patch-at的位置为您提供补丁。因此,如果您要求,您总是会得到海龟实际所在的补丁。朝向你自己的方向是不确定的,因此你得到的错误。patch-at 0 0

替换patch-at 0 0patch 0 0(适用于绝对坐标)将解决一半的问题:您所询问的海龟仍然有可能已经在patch 0 0. 在这种情况下,您将收到与以前相同的错误。

解决方案:替换set heading (towards patch-at 0 0)face patch 0 0. 如果您要求面对您已经在的位置,face原语不会崩溃。

于 2013-02-04T16:29:38.230 回答
0

这是因为in-radius可以返回海龟本身。要解决此问题,只需更改行

ask patches in-radius .....

ask other patches in-radius .....
于 2013-02-04T16:13:06.820 回答