mirror of
https://github.com/Steffo99/turtle007.git
synced 2024-11-25 14:34:20 +00:00
Implementa evoluzione nel progetto
This commit is contained in:
parent
9c1097c44c
commit
715ef08370
1 changed files with 121 additions and 10 deletions
131
Progetto.nlogo
131
Progetto.nlogo
|
@ -1,7 +1,7 @@
|
||||||
breed [ants ant]
|
breed [ants ant]
|
||||||
patches-own [pheromone food nest distance-from-nest]
|
patches-own [pheromone food nest distance-from-nest]
|
||||||
ants-own [carrying-food speed metabolism hunger]
|
ants-own [carrying-food speed metabolism hunger]
|
||||||
globals [ant-deaths ants-to-respawn]
|
globals [ant-deaths ant-hatches ants-to-respawn]
|
||||||
|
|
||||||
to setup
|
to setup
|
||||||
clear-all
|
clear-all
|
||||||
|
@ -103,7 +103,7 @@ to t-setup-ant
|
||||||
; Ho usato dei float invece che degli int, va bene lo stesso?
|
; Ho usato dei float invece che degli int, va bene lo stesso?
|
||||||
set speed (random (max-speed - min-speed + 1)) + min-speed
|
set speed (random (max-speed - min-speed + 1)) + min-speed
|
||||||
set metabolism (random (max-metabolism - min-metabolism + 1)) + min-metabolism
|
set metabolism (random (max-metabolism - min-metabolism + 1)) + min-metabolism
|
||||||
set hunger max-hunger
|
set hunger starting-hunger
|
||||||
setxy nest-x nest-y
|
setxy nest-x nest-y
|
||||||
fd nest-size
|
fd nest-size
|
||||||
end
|
end
|
||||||
|
@ -206,15 +206,43 @@ to t-add-pheromone
|
||||||
end
|
end
|
||||||
|
|
||||||
to t-die
|
to t-die
|
||||||
; "To die is human, to respawn... divine!" --Zeus, Dota 2
|
|
||||||
set ant-deaths ant-deaths + 1
|
set ant-deaths ant-deaths + 1
|
||||||
set ants-to-respawn ants-to-respawn + 1
|
|
||||||
; Die interrompe la funzione!
|
; Die interrompe la funzione!
|
||||||
die
|
die
|
||||||
end
|
end
|
||||||
|
|
||||||
|
to-report t-partners
|
||||||
|
report other turtles in-radius partner-radius with [hunger >= reproduction-hunger]
|
||||||
|
end
|
||||||
|
|
||||||
|
to t-inherit [parents]
|
||||||
|
let top-speed max [speed] of parents
|
||||||
|
let bottom-speed min [speed] of parents
|
||||||
|
set speed (bottom-speed + random (top-speed - bottom-speed + 1))
|
||||||
|
|
||||||
|
let top-metabolism max [metabolism] of parents
|
||||||
|
let bottom-metabolism min [metabolism] of parents
|
||||||
|
set metabolism (bottom-metabolism + random (top-metabolism - bottom-metabolism + 1))
|
||||||
|
end
|
||||||
|
|
||||||
|
to t-hatch
|
||||||
|
let partners t-partners
|
||||||
|
if any? partners [
|
||||||
|
let partner item 0 sort-on [hunger] partners
|
||||||
|
let parents (turtle-set self partner)
|
||||||
|
ask parents [
|
||||||
|
set hunger hunger - reproduction-cost
|
||||||
|
]
|
||||||
|
hatch-ants 1 [
|
||||||
|
t-setup-ant
|
||||||
|
t-inherit parents
|
||||||
|
]
|
||||||
|
set ant-hatches ant-hatches + 1
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
to t-resupply
|
to t-resupply
|
||||||
set hunger max-hunger
|
set hunger hunger + food-value
|
||||||
end
|
end
|
||||||
|
|
||||||
to t-consume-food
|
to t-consume-food
|
||||||
|
@ -222,6 +250,9 @@ to t-consume-food
|
||||||
if hunger <= 0 [
|
if hunger <= 0 [
|
||||||
t-die
|
t-die
|
||||||
]
|
]
|
||||||
|
if hunger >= reproduction-hunger [
|
||||||
|
t-hatch
|
||||||
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
to t-work
|
to t-work
|
||||||
|
@ -794,9 +825,9 @@ Number
|
||||||
INPUTBOX
|
INPUTBOX
|
||||||
1030
|
1030
|
||||||
510
|
510
|
||||||
1100
|
1120
|
||||||
570
|
570
|
||||||
max-hunger
|
starting-hunger
|
||||||
400.0
|
400.0
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
|
@ -1008,7 +1039,7 @@ Ant hunger
|
||||||
NIL
|
NIL
|
||||||
NIL
|
NIL
|
||||||
0.0
|
0.0
|
||||||
400.0
|
1000.0
|
||||||
0.0
|
0.0
|
||||||
10.0
|
10.0
|
||||||
true
|
true
|
||||||
|
@ -1019,15 +1050,95 @@ PENS
|
||||||
|
|
||||||
SWITCH
|
SWITCH
|
||||||
1125
|
1125
|
||||||
220
|
285
|
||||||
1230
|
1230
|
||||||
253
|
318
|
||||||
food-respawn
|
food-respawn
|
||||||
food-respawn
|
food-respawn
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
-1000
|
-1000
|
||||||
|
|
||||||
|
INPUTBOX
|
||||||
|
730
|
||||||
|
575
|
||||||
|
875
|
||||||
|
635
|
||||||
|
reproduction-hunger
|
||||||
|
800.0
|
||||||
|
1
|
||||||
|
0
|
||||||
|
Number
|
||||||
|
|
||||||
|
INPUTBOX
|
||||||
|
1125
|
||||||
|
220
|
||||||
|
1230
|
||||||
|
280
|
||||||
|
food-value
|
||||||
|
400.0
|
||||||
|
1
|
||||||
|
0
|
||||||
|
Number
|
||||||
|
|
||||||
|
INPUTBOX
|
||||||
|
880
|
||||||
|
575
|
||||||
|
1025
|
||||||
|
635
|
||||||
|
reproduction-cost
|
||||||
|
40.0
|
||||||
|
1
|
||||||
|
0
|
||||||
|
Number
|
||||||
|
|
||||||
|
PLOT
|
||||||
|
1235
|
||||||
|
555
|
||||||
|
1435
|
||||||
|
705
|
||||||
|
Ant hatches
|
||||||
|
NIL
|
||||||
|
NIL
|
||||||
|
0.0
|
||||||
|
10.0
|
||||||
|
0.0
|
||||||
|
10.0
|
||||||
|
true
|
||||||
|
false
|
||||||
|
"" ""
|
||||||
|
PENS
|
||||||
|
"default" 1.0 0 -14439633 true "" "plot ant-hatches"
|
||||||
|
|
||||||
|
PLOT
|
||||||
|
1440
|
||||||
|
555
|
||||||
|
1640
|
||||||
|
705
|
||||||
|
Ants
|
||||||
|
NIL
|
||||||
|
NIL
|
||||||
|
0.0
|
||||||
|
10.0
|
||||||
|
0.0
|
||||||
|
10.0
|
||||||
|
true
|
||||||
|
false
|
||||||
|
"" ""
|
||||||
|
PENS
|
||||||
|
"default" 1.0 0 -7500403 true "" "plot count ants"
|
||||||
|
|
||||||
|
INPUTBOX
|
||||||
|
1030
|
||||||
|
575
|
||||||
|
1175
|
||||||
|
635
|
||||||
|
partner-radius
|
||||||
|
3.0
|
||||||
|
1
|
||||||
|
0
|
||||||
|
Number
|
||||||
|
|
||||||
@#$#@#$#@
|
@#$#@#$#@
|
||||||
## WHAT IS IT?
|
## WHAT IS IT?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue