I'm trying to ask white turtles to create yellow turtles to one of the 8 empty neighboring spaces. If there is no free space the turtle should produce nothing. Note: white turtles stay white and produce yellow turtles which are able to reproduce themselves as well as other yellow turtles. In summary, at the end I would like to fill up the black spaces with yellow turtles.
breed [ cells cell ]
cells-own [ n ]
to setup
clear-all
set-default-shape cells "square"
ask patches [ if pycor = min-pycor [sprout-cells 1]]
ask cells [ ifelse random 10 < 2 [set color white] [set color yellow]]
Thanks for the reply.
I'll explain what I'm trying to do:
- The white squares represent "stem cells" which have the ability to reproduce themselves and produce another type of cell (e.g. TA cell), so that, initially each white cell will produce another cell above it or at one of its above corners.
- In the second step, each TA cell produces other cells randomly in any empty space around it.
- Third, stem cells (white squares) repeat step 1 and at the same time TA cells fill in one of the empty spaces around them. The cells (both stem cells and TA cells) stop producing new cells once they have no empty space around them (when the 8 neighbors are already filled in).
- At the final stage all of the black space should be filled in with TA cells. The yellow squares at the last row basically do nothing.
Thanks again for your help.
reset-ticks
end
to go
ask cells
[ set n count neighbors with [pcolor = yellow] ]
ask cells
[ if n >= 1
[ set color yellow] ]
tick
;ask cells
;[if ticks = 10
;[set color yellow]]
end