-
Notifications
You must be signed in to change notification settings - Fork 8
/
documentation.conf
372 lines (306 loc) · 11.3 KB
/
documentation.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
extensionName = "ls"
markdownTemplate = """
# LS Extension for NetLogo
LevelSpace is an extension for NetLogo that allows you to run several models concurrently and have them "talk" with each other. LevelSpace models are hierarchical, in that models always belong hierarchically to another model. In this documentation, we will refer to models that have loaded LevelSpace and have opened models as 'parents', and to the models they have opened as 'children' or 'child models'.
{{> USING.md}}
{{> CITING.md}}
## Primitives
{{#contents}}
### {{fullCategoryName}}
{{#prims}}
[`{{name}}`](#{{primitive.extensionName}}{{primitive.name}})
{{/prims}}
{{/contents}}
{{#primitives}}
{{> primTemplate}}
{{/primitives}}
{{> LICENSE.md}}
"""
primTemplate = """
### `{{name}}`
```NetLogo
{{#examples}}
{{#isOptional}}({{/isOptional}}{{primitive.fullName}}{{#args}} *{{argumentPlaceholder}}*{{/args}}{{#isOptional}}){{/isOptional}}
{{/examples}}
```
{{{description}}}
"""
filesToIncludeInManual = [ "USING.md", "CITING.md", "primitives" ]
tableOfContents = {
"opening-closing": "Opening and Closing Models",
"interaction": "Commanding and Reporting",
"logic": "Logic and Control"
}
primitives = [
{
name: create-models,
type: command,
arguments: [ { type: number}, {name: path, type: string} ],
alternateArguments: [ { type: number }, { name: path, type: string }, { type: command } ],
tags: [ "opening-closing" ],
description: """
Create the specified number of instances of the given .nlogo model. The path can be absolute, or relative to the main model. Compared with `ls:create-interactive-models`, this primitive creates lightweight models that are hidden by default. You should use this primitive if you plan on having many instances of the given model. The models may be shown using `ls:show`; when visible, they will have a view and command center, but no other widgets, e.g. plots or monitors.
If given a command, LevelSpace will call the command after loading each instance of the model with the `model-id` as the argument. This allows you to easily store model ids in a variable or list when loading models, or do other initialization. For example, to store a model id in a variable, you can do:
```NetLogo
let model-id 0
(ls:create-models "My-Model.nlogo" [ [id] -> set model-id id ])
```
Child model RNGs are seeded from the parent models RNG when they are created.
Thus, if you seed the parent's model RNG before child model before child models are created, the simulation as a whole will be reproducible.
Use the `ls:random-seed` primitive to seed the model system's RNGs after child models have been created.
"""
},
{
name: create-interactive-models,
type: command,
arguments: [ { type: number}, { name: path, type: string } ],
alternateArguments: [ { type: number}, { name: path, type: string }, { type: command } ],
tags: [ "opening-closing" ],
description: """
Like `ls:create-models`, creates the specified number of instances of the given .nlogo model. Unlike `ls:create-models`, `ls:create-interactive-models` creates models that are visible by default, and have all widgets. You should use this primitive if you plan on having only a handful of instances of the given model, and would like to be able to interact with the instances through their interfaces during runtime.
Child model RNGs are seeded from the parent models RNG when they are created.
Thus, if you seed the parent's model RNG before child model before child models are created, the simulation as a whole will be reproducible.
Use the `ls:random-seed` primitive to seed the model system's RNGs after child models have been created.
"""
},
{
name: close,
arguments: [ { name: model-or-list-of-models, type: number/list } ],
type: command,
tags: [ "opening-closing" ],
description: """
Close the model or models with the given `model-id`.
"""
},
{
name: reset,
type: command,
tags: [ "opening-closing" ],
description: """
Close down all child models (and, recursively, their child models). You'll often want to call this in your setup procedure.
Note that `clear-all` does *not* close LevelSpace models.
"""
},
{
name: ask,
type: command,
tags: [ "interaction" ],
arguments: [ { name: model-or-list-of-models, type: number/list}, { name: command, type: "code-block" }, { name: argument, type: "repeatable anything" } ],
description: """
Ask the given child model or list of child models to run the given command. This is the primary of doing things with child models. For example:
```NetLogo
ls:ask model-id [ create-turtles 5 ]
```
You can also ask a list of models to all do the same thing:
```NetLogo
ls:ask ls:models [ create-turtles 5 ]
```
You may supply the command with arguments, just like you would with anonymous commands:
```NetLogo
let turtle-id 0
let speed 5
(ls:ask model-id [ [t s] -> ask turtle t [ fd s ] ] turtle-id speed)
```
Note that the commands cannot access variables in the parent model directly. You must either pass information in through arguments or using `ls:let`.
"""
},
{
name: of,
type: reporter,
returns: anything,
infix: true,
tags: [ "interaction" ],
arguments: [ { name: reporter, type: "code-block"}, { name: model-or-list-of-models, type: number/list } ],
description: """
Run the given reporter in the given model and report the result.
`ls:of` is designed to work like NetLogo's inbuilt `of`: If you send `ls:of` a `model-id`, it will report the value of the reporter from that model. If you send it a list of model-ids, it will report a list of values of the reporter string from all models. You cannot pass arguments to `ls:of`, but you can use `ls:let`.
```NetLogo
[ count turtles ] ls:of model-id
```
"""
},
{
name: report,
type: reporter,
returns: anything,
tags: [ "interaction" ],
arguments: [ { name: model-or-list-of-models, type: number/list }, { name: reporter, type: code-block }, { name: argument, type: "repeatable anything" }],
description: """
Run the given reporter in the given model and report the result. This form exists to allow you to pass arguments to the reporter.
```NetLogo
let turtle-id 0
(ls:report model-id [ [a-turtle] -> [ color ] of turtle a-turtle ] turtle-id)
```
"""
},
{
name: with,
type: reporter,
returns: list,
tags: [ "interaction" ],
infix: true,
arguments: [ { name: list-of-models, type: list }, { name: reporter, type: code-block } ],
description: """
Reports a new list of models containing only those models that report `true` when they run the reporter block.
```NetLogo
ls:models ls:with [ count turtles > 100 ]
```
"""
},
{
name: let,
type: command,
tags: [ "interaction" ],
arguments: [ {name: variable-name, type: symbol}, {name: value, type: anything} ],
description: """
Creates a variable containing the given data that can be accessed by the child models.
```NetLogo
ask turtles [
ls:let my-color color
ls:ask my-model [
ask turtles [ set color my-color ]
]
]
```
`ls:let` works quite similar to `let` in that the variable is only locally accessible:
```NetLogo
ask turtles [
ls:let my-color color
]
;; my-color is innaccessible here
```
`ls:let` is very similar to `let`, except in a few cases.
- `ls:let` will overwrite previous values in the variable
If you do
```NetLogo
ls:let my-var 5
ls:let my-var 6
```
`my-var` will be set equal to `6`. There is no `ls:set`.
- `ls:let` supports variable shadowing
If you do
```NetLogo
ls:let my-var 5
ask turtles [
ls:let my-var 6
ls:ask child-model [ show my-var ]
]
ls:ask child-model [ show my-var ]
```
`child-model` will show `6` and then `5`. This is known as [variable shadowing](https://en.wikipedia.org/wiki/Variable_shadowing).
- The parent model cannot directly read the value of an ls variable
For example, this does *not* work.
```NetLogo
ls:let my-var 5
show my-var
```
This is intentional. ls variables are meant to be used for sharing data with child models. The parent model already has access to the data.
Furthermore, changing the value of an ls let variable in a child model will not affect it in any other model. For example:
```NetLogo
ls:let my-var 0
ls:ask ls:models [
set my-var my-var + 1
show my-var
]
```
All models will print `1`.
"""
},
{
name: assign,
type: command,
tags: [ "interaction" ],
arguments: [ { name: model-or-list-of-models, type: number/list }, { name: global-variable, type: symbol }, { name: value, type: anything }],
description: """
Sets the given global variable in child model to given value. For instance
```netlogo
ls:assign ls:models glob1 count turtles
```
sets the global variable `glob1` in all models to the parent's model `count turtles`.
"""
}
{
name: models,
type: reporter,
returns: list,
tags: [ "logic" ],
description: """
Report a list of model-ids for all existing models.
"""
},
{
name: show,
type: command,
tags: [ "logic" ],
arguments: [ { name: model-or-list-of-models, type: number/list } ],
description: """
Makes all of the given models visible.
"""
},
{
name: show-all,
type: command,
tags: [ "logic" ],
arguments: [ { name: model-or-list-of-models, type: number/list } ],
description: """
Makes all of the given models *and their descendents* visible.
"""
},
{
name: hide,
type: command,
tags: [ "logic" ],
arguments: [ {name: model-or-list-of-models, type: number/list } ],
description: """
Hide all of the given models. Hiding models is a good way of making your simulation run faster.
"""
},
{
name: hide-all,
type: command,
tags: [ "logic" ],
arguments: [ {name: model-or-list-of-models, type: number/list } ],
description: """
Hide all of the given models *and their descendents*. Hiding models is a good way of making your simulation run faster.
"""
},
{
name: path-of,
type: reporter,
returns: string,
tags: [ "logic" ],
arguments: [ {name: model-or-list-of-models, type: number/list} ],
description: """
Report the full path, including the .nlogo file name, of the model. If a list of models is given, a list of paths is reported.
"""
},
{
name: name-of,
type: reporter,
returns: string,
tags: [ "logic" ],
arguments: [ {name: model-or-list-of-models, type: number/list}],
description: """
Reports the name of the .nlogo file of the model. This is the name of the window in which the model appears when visible. If a list of models is given, a list of names is reported.
"""
},
{
name: "model-exists?",
type: reporter,
returns: boolean,
tags: [ "logic" ],
arguments: [ {name: model-or-list-of-models, type: number/list} ],
description: """
Report a boolean value for whether there is a model with that model-id. This is often useful when you are dynamically generating models, and want to ensure that you are not asking models that no longer exist to do stuff.
"""
}
{
name: "random-seed",
type: command,
arguments: [ {name: seed, type: number } ],
description: """
Behaves exactly like NetLogo's built-in primitive `random-seed`, except that child models have their RNGs seeded based on the given seed as well (as well their child models, and their child models' child models, and so forth).
This primitive should almost always be used instead of NetLogo's built-in one for seeding RNG when using LevelSpace.
"""
}
]