-
Notifications
You must be signed in to change notification settings - Fork 17
/
entity.lua
566 lines (513 loc) · 24.1 KB
/
entity.lua
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
entity = class("entity")
entitylist = {
{t="remove", category="misc", description="place anywhere - acts as an entity eraser", iconauthor="Assasin-Kiashi"},
{t="powerup", category="smb stuff", description="place on block - will give either a mushroom or a flower", iconauthor=""},
{t="cheepcheep", category="smb stuff", description="place on empty tile - red or white cheep cheep", iconauthor="alesan99"},
{t="musicentity", category="misc", description="place anywhere - takes an input and will play specified music track", iconauthor="idiot9.0"},
{t="manycoins", category="smb stuff", description="place on a non question mark block - gives several coins", iconauthor="TheCanadianToast"},
{t="enemyspawner", category="misc", description="place on empty tile - will spawn enemies on input", iconauthor=""},
{t="animatedtiletrigger", category="i/o objects", description="place anywhere - will animate tiles with the trigger attribute", iconauthor=""},
{t="spawn", category="level markers", description="place on empty tile - mario's starting point", iconauthor="TripleXero"},
{t="delayer", category="gates", description="place anywhere - will delay an input", output=true, iconauthor=""},
{t="rsflipflop", category="gates", description="place anywhere - can be toggled on and off", output=true, iconauthor=""},
{t="flag", category="level markers", description="place on block - bottom of the flag, end of level", iconauthor="TripleXero"},
{t=""},
{t=""},
{t="vine", category="smb stuff", description="place on block - vine - right click to choose destination", iconauthor="Superjustinbros"},
{t="vinestop", category="smb stuff", description="place anywhere - will stop a vine's growth at this point", iconauthor="alesan99"},
{t=""},
{t=""},
{t="platform", category="smb stuff", description="place on empty tile - oscillating platform", iconauthor="Assasin-Kiashi"},
{t="regiontrigger", category="i/o objects", description="place anywhere - will output when there's an object in a region", output=true, iconauthor="alesan99"},
{t="box", category="portal elements", description="place on empty tile - weighted storage cube", output=true, iconauthor="alesan99"},
{t="pipe", category="level markers", description="place on pipe tile - pipe - right click for destination sublevel", iconauthor="automatik"},
{t=""},
{t="mazestart", category="level markers", description="place anywhere - logical maze start", hidden=not DEBUG, iconauthor=""},
{t="mazeend", category="level markers", description="place anywhere - logical maze end", hidden=not DEBUG, iconauthor=""},
{t="mazegate", category="level markers", description="place on empty tile - maze gate", hidden=not DEBUG, iconauthor=""},
{t="emance", category="portal elements", description="place on empty tile - emancipation grill, stops portals and objects other than mario", iconauthor="Assasin-Kiashi"},
{t="scaffold", category="portal elements", description="place on empty tile - platform with an input", iconauthor=""},
{t="door", category="portal elements", description="place on empty tile - it's a door. it opens, it closes, it doors.", iconauthor="idiot9.0"},
{t="pedestal", category="portal elements", description="place on empty tile - portal gun ready for pickup", iconauthor=""},
{t="wallindicator", category="i/o objects", description="place anywhere - shows on or off state", iconauthor=""},
{t="pipespawn", category="level markers", description="place on block - spawn for when coming from a sublevel", iconauthor="TripleXero"},
{t="platformfall", category="smb stuff", description="place on empty tile - falling platforms", iconauthor=""},
{t="bulletbillstart", category="level markers", description="place anywhere - beginning of bullet zone", iconauthor="Jackostar10000"},
{t="bulletbillend", category="level markers", description="place anywhere - end of bullet zone", iconauthor="Jackostar10000"},
{t="drain", category="level markers", description="place at the very bottom in an underwater level - drain, attracts mario down", iconauthor="Bobfan"},
{t="lightbridge", category="portal elements", description="place on empty tile - light bridge", iconauthor="ChrisGin"},
{t="portal1", category="misc", description="place on block - create a blue portal on input", iconauthor="Firaga"},
{t="portal2", category="misc", description="place on block - create a orange portal on input", iconauthor="Firaga"},
{t="actionblock", category="i/o objects", description="place on empty tile - will create a coinblock style toggle button", output=true, iconauthor=""},
{t="button", category="portal elements", description="place on empty tile - floor button", output=true, iconauthor=""},
{t="platformspawner", category="smb stuff", description="place on empty tile - platform spawner", iconauthor=""},
{t="animationtrigger", category="i/o objects", description="place anywhere - will start an animation when getting an input signal", iconauthor=""},
{t="groundlightver", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="groundlighthor", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="groundlightupright", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="groundlightrightdown", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="groundlightdownleft", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="groundlightleftup", category="portal elements", description="place anywhere - use to show on/off state", iconauthor="idiot9.0"},
{t="faithplate", category="portal elements", description="place on ground - f-f--fling yourself.", iconauthor="idiot9.0"},
{t=""},
{t=""},
{t="laser", category="portal elements", description="place on empty tile - laser pew pew", iconauthor="Pixelworker"},
{t=""},
{t=""},
{t=""},
{t="laserdetector", category="portal elements", description="place on empty tile - will send signal if laser is detected", output=true, iconauthor="QwertymanO07"},
{t=""},
{t=""},
{t=""},
{t="bulletbill", category="smb stuff", description="place on bulletbill launchers - will make the launcher actually launch bulletbills", iconauthor="Mari0Maker"},
{t="geldispenser", category="portal elements", description="place on empty tile - will produce gel", iconauthor=""},
{t=""},
{t=""},
{t=""},
{t=""},
{t=""},
{t="boxtube", category="portal elements", description="place on empty tile - will drop an object and remove previous one", iconauthor="Mari0Maker"},
{t="pushbutton", category="portal elements", description="place on empty tile - will send a toggle signal when used", output=true, iconauthor=""},
{t="zginttrigger", category="i/o objects", description="place anywhere - will output when an integer is...", output=true, iconauthor=""},
{t="zgbooltrigger", category="i/o objects", description="place anywhere - will output when a boolean is true", output=true, iconauthor=""},
{t=""},
{t=""},
{t=""},
{t="walltimer", category="i/o objects", description="place anywhere - will send on signal for a duration", output=true, iconauthor=""},
{t=""},
{t=""},
{t=""},
{t=""},
{t="castlefire", category="smb stuff", description="place anywhere - rotating fire stick", iconauthor="Assasin-Kiashi"},
{t="seesaw", category="smb stuff", description="place on empty tile - see-saw", iconauthor="Firaga"},
{t="warppipe", category="level markers", description="place on block - warp pipe", iconauthor="BobTheLawyer"},
{t="squarewave", category="gates", description="place anywhere - sends on signal for x seconds and off signal for y seconds", output=true, iconauthor="crazyal02"},
{t="lakitoend", category="level markers", description="place anywhere - defines a right border for lakito", iconauthor=""},
{t="notgate", category="gates", description="place anywhere - turns in input around", output=true, iconauthor="Pixelworker"},
{t="gel", category="portal elements", description="place on tile - creates gel on this block", iconauthor="MissingWorld"},
{t="orgate", category="gates", description="place anywhere - or gate", output=true, iconauthor=""},
{t="andgate", category="gates", description="place anywhere - and gate", output=true, iconauthor="Turtle95"},
{t=""},
{t="firestart", category="level markers", description="place anywhere - fire start - bowser firethings will regularly cross the screen", iconauthor=""},
{t="bowser", category="level markers", description="place on empty tile preferably on the first block on a bridge with an axe - bowser", iconauthor="renhoek"},
{t="axe", category="level markers", description="place on empty tile preferably behind a bridge - axe, end of level", iconauthor="alesan99"},
{t="platformbonus", category="smb stuff", description="place on empty tile - platform in coin worlds", iconauthor=""},
{t="spring", category="smb stuff", description="place on empty tile - spring", iconauthor="Firaga"},
{t=""},
{t="flyingfishstart", category="level markers", description="place anywhere - defines the start of a flying cheep cheep zone", iconauthor=""},
{t="flyingfishend", category="level markers", description="place anywhere - defines the end of a flying cheep cheep zone", iconauthor=""},
{t=""},
{t=""},
{t=""},
{t="checkpoint", category="level markers", description="place on empty tile - checkpoint - mario will spawn there if he dies after reaching it", iconauthor="TripleXero"},
{t="ceilblocker", category="level markers", description="place an ywhere - makes it impossible to jump over the top row of blocks", iconauthor="alesan99"},
{t=""},
{t=""},
{t=""},
{t="funnel", category="portal elements", description="place on empty tile - portal excursion funnel", iconauthor=""},
{t=""},
{t=""},
{t=""},
{t="panel", category="portal elements", description="place on block - will probably be removed anyway. todo!", iconauthor=""},
{t="textentity", category="i/o objects", description="place anywhere - creates a text in the level, supports input", iconauthor=""},
}
outputs = {}
outputsi = {}
for i = 1, #entitylist do
if entitylist[i].output then
table.insert(outputs, entitylist[i].t)
table.insert(outputsi, i)
end
end
tooltipimages = {}
for i = 1, #entitylist do
local path = "graphics/entitytooltips/" .. entitylist[i].t .. ".png"
if love.filesystem.getInfo(path) then
tooltipimages[i] = love.graphics.newImage(path)
end
end
rightclickmenues = {}
rightclickmenues.seesaw = {
{t="text", value="distance:"},
{t="scrollbar", min=2, max=10, step=1, default=7},
{t="text", value="left height:"},
{t="scrollbar", min=1, max=10, step=1, default=4},
{t="text", value="right height:"},
{t="scrollbar", min=1, max=10, step=1, default=6},
{t="text", value="platf. width:"},
{t="scrollbar", min=1, max=10, step=0.5, default=3},
}
rightclickmenues.spawn = {
{t="text", value="for players:"},
{t="checkbox", text="all", default="true"},
{t="checkbox", text="1", default="false"},
{t="checkbox", text="2", default="false"},
{t="checkbox", text="3", default="false"},
{t="checkbox", text="4", default="false"}
}
rightclickmenues.castlefire = {
{t="text", value="length:"},
{t="scrollbar", min=1, max=16, step=1, default=6},
{t="text", value="delay:"},
{t="scrollbar", min=0.03, max=1, step=0.01, default=0.11},
{},
{t="checkbox", text="counter-cw", default="false"}
}
rightclickmenues.walltimer = {
{t="text", value="time:"},
{t="scrollbar", min=1, max=10, step=0.01, default=1},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.delayer = {
{t="checkbox", text="visible", default="true"},
{},
{t="text", value="delay:"},
{t="scrollbar", min=0.01, max=10, step=0.01, default=1},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.wallindicator = {
{t="checkbox", text="reversed", default="false"},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.notgate = {
{t="checkbox", text="visible", default="true"},
{},
{t="linkbutton", value="link in", link="in"}
}
rightclickmenues.rsflipflop = {
{t="checkbox", text="visible", default="true"},
{},
{t="linkbutton", value="link set", link="set"},
{t="linkbutton", value="link reset", link="reset"}
}
rightclickmenues.orgate = {
{t="checkbox", text="visible", default="true"},
{},
{t="linkbutton", value="link in 1", link="1"},
{t="linkbutton", value="link in 2", link="2"},
{t="linkbutton", value="link in 3", link="3"},
{t="linkbutton", value="link in 4", link="4"}
}
rightclickmenues.andgate = {
{t="checkbox", text="visible", default="true"},
{},
{t="linkbutton", value="link in 1", link="1"},
{t="linkbutton", value="link in 2", link="2"},
{t="linkbutton", value="link in 3", link="3"},
{t="linkbutton", value="link in 4", link="4"}
}
rightclickmenues.musicentity = {
{t="checkbox", text="visible", default="true"},
{t="checkbox", text="single use", default="true"},
{},
{t="submenu", entries=function() local t = {} for i, v in pairs(musiclist) do table.insert(t, v) end return t end, actualvalue=true, default=1, width=15},
{},
{t="linkbutton", value="link trigger", link="trigger"}
}
rightclickmenues.enemyspawner = {
{t="submenu", entries=function() return {unpack(enemies)} end, actualvalue=true, default=1, width=15},
{},
{t="text", value="velocity x:"},
{t="scrollbar", min=-50, max=50, default=0},
{t="text", value="velocity y:"},
{t="scrollbar", min=-50, max=50, default=0},
{},
{t="linkbutton", value="link trigger", link="trigger"}
}
rightclickmenues.boxtube = {
{t="text", value="on load:"},
{t="checkbox", text="drop box", default="true"},
{},
{t="checkbox", text="respawn obj", default="true"},
{t="text", value="if destroyed"},
{},
{t="text", value="object:"},
{t="submenu", entries=function() return {"box", unpack(enemies)} end, actualvalue=true, default=1, width=15},
{},
{t="linkbutton", value="link drop", link="drop"}
}
rightclickmenues.laserdetector = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, up=true, down=true, default="right"}
}
rightclickmenues.pushbutton = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, default="left"},
{},
{t="text", value="base:"},
{t="directionbuttons", left=true, right=true, up=true, down=true, default="down"}
}
rightclickmenues.platformfall = {
{t="text", value="width:"},
{t="scrollbar", min=1, max=10, step=0.5, default=3}
}
rightclickmenues.pipe = {
{t="text", value="destination:"},
{t="submenu", entries={"main", "sub-1", "sub-2", "sub-3", "sub-4", "sub-5"}, default=1, width=5},
}
rightclickmenues.vine = {
{t="text", value="destination:"},
{t="submenu", entries={"main", "sub-1", "sub-2", "sub-3", "sub-4", "sub-5"}, default=1, width=5},
}
rightclickmenues.mazegate = {
{t="text", value="gatenumber:"},
{t="submenu", entries={"main", "gate 1", "gate 2", "gate 3", "gate 4", "gate 5"}, default=1, width=6},
}
rightclickmenues.pipespawn = {
{t="text", value="source:"},
{t="submenu", entries={"main", "sub-1", "sub-2", "sub-3", "sub-4", "sub-5"}, default=1, width=5},
}
rightclickmenues.warppipe = {
{t="text", value="world:"},
{t="submenu", entries={"1", "2", "3", "4", "5", "6", "7", "8"}, default=1, width=1},
{t="text", value="level:"},
{t="submenu", entries={"1", "2", "3", "4", "5", "6", "7", "8"}, default=1, width=1},
}
rightclickmenues.funnel = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, up=true, right=true, down=true, default="right"},
{},
{t="text", value="speed:"},
{t="scrollbar", min=funnelminspeed, max=funnelmaxspeed, step=0.01, default=3},
{},
{t="checkbox", text="reverse", default="false"},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link reverse", link="reverse"},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.emance = {
{t="text", value="direction:"},
{t="directionbuttons", hor=true, ver=true, default="ver"},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.laser = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, up=true, right=true, down=true, default="right"},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.lightbridge = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, up=true, right=true, down=true, default="right"},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.platformspawner = {
{t="text", value="direction:"},
{t="directionbuttons", up=true, down=true, default="up"},
{},
{t="text", value="width:"},
{t="scrollbar", min=1, max=10, step=0.5, default=3},
{t="text", value="speed:"},
{t="scrollbar", min=0.5, max=10, step=0.01, default=3.5},
{t="text", value="delay:"},
{t="scrollbar", min=1, max=10, step=0.01, default=2.18}
}
rightclickmenues.platform = {
{t="text", value="width:"},
{t="scrollbar", min=1, max=10, step=0.5, default=3},
{t="text", value="distance x:"},
{t="scrollbar", min=-15, max=15, step=0.5, default=3.3125},
{t="text", value="distance y:"},
{t="scrollbar", min=-15, max=15, step=0.5, default=0},
{t="text", value="duration:"},
{t="scrollbar", min=1, max=10, step=0.01, default=4}
}
rightclickmenues.scaffold = {
{t="text", value="direction:"},
{t="directionbuttons", down=true, left=true, right=true, up=true, default="right"},
{t="checkbox", text="default off", default="false"},
{t="text", value="width:"},
{t="scrollbar", min=0.5, max=15, step=0.5, default=3},
{t="text", value="distance:"},
{t="scrollbar", min=0.5, max=15, step=0.01, default=3},
{t="text", value="speed:"},
{t="scrollbar", min=0.5, max=10, step=0.01, default=5.5},
{t="text", value="wait start:"},
{t="scrollbar", min=0, max=10, step=0.01, default=0.5},
{t="text", value="wait end:"},
{t="scrollbar", min=0, max=10, step=0.01, default=0.5},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.faithplate = {
{t="text", value="velocity x:"},
{t="scrollbar", min=-50, max=50, step=0.01, default=30},
{t="text", value="velocity y:"},
{t="scrollbar", min=5, max=50, step=0.01, default=30},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.door = {
{t="text", value="direction:"},
{t="directionbuttons", hor=true, ver=true, default="ver"},
{},
{t="checkbox", text="start open", default="false"},
{t="checkbox", text="force close", default="false"},
{},
{t="linkbutton", value="link open", link="open"}
}
rightclickmenues.gel = {
{t="text", value="type:"},
{t="submenu", entries={"blue", "orange", "white", "purple"}, default=1, width=6},
{},
{t="text", value="direction:"},
{t="checkbox", text="left", default="false"},
{t="checkbox", text="top", default="true"},
{t="checkbox", text="right", default="false"},
{t="checkbox", text="bottom", default="false"}
}
rightclickmenues.geldispenser = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, down=true, up=true, default="down"},
{},
{t="text", value="type:"},
{t="submenu", entries={"blue", "orange", "white", "purple", "clear"}, default=1, width=6},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.panel = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, up=true, right=true, down=true, default="right"},
{},
{t="checkbox", text="start white", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.button = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, up=true, down=true, default="down"}
}
rightclickmenues.textentity = {
{t="input", default="text", max=50},
{},
{t="checkbox", text="default off", default="false"},
{},
{t="text", value="red:"},
{t="scrollbar", min=0, max=255, step=1, default=255},
{t="text", value="green:"},
{t="scrollbar", min=0, max=255, step=1, default=255},
{t="text", value="blue:"},
{t="scrollbar", min=0, max=255, step=1, default=255},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.squarewave = {
{t="text", value="off time"},
{t="scrollbar", min=0.01, max=10, step=0.01, default=2},
{t="text", value="on time"},
{t="scrollbar", min=0.01, max=10, step=0.01, default=2},
{},
{t="text", value="wave offset"},
{t="scrollbar", min=0, max=1, step=0.01, default=0},
{},
{t="checkbox", text="visible", default="true"}
}
rightclickmenues.regiontrigger = {
{t="text", value="trigger on:"},
{t="checkbox", text="players", default="true"},
{t="text", value="enemy cat:"},
{t="input", text="enemies", default="all", max=5},
{t="regionselect", value="select region", region="region", default="region:0:0:1:1"}
}
rightclickmenues.animationtrigger = {
{t="text", value="animation id"},
{t="input", default="myanim", max=12},
{},
{t="linkbutton", value="link in", link="in"}
}
rightclickmenues.animatedtiletrigger = {
{t="checkbox", text="visible", default="true"},
{},
{t="regionselect", value="select tiles", region="region", default="region:0:0:1:1"},
{},
{t="linkbutton", value="link trigger", link="trigger"}
}
rightclickmenues.checkpoint = {
{t="text", value="for players:"},
{t="checkbox", text="all", default="true"},
{t="checkbox", text="1", default="false"},
{t="checkbox", text="2", default="false"},
{t="checkbox", text="3", default="false"},
{t="checkbox", text="4", default="false"},
{t="checkbox", text="the rest", default="false"},
{},
{t="checkbox", text="visible", default="false"},
{},
{t="regionselect", value="select region", region="region", default="region:0:0:1:1"},
{},
{t="linkbutton", value="link trigger", link="trigger"}
}
rightclickmenues.portal1 = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, down=true, up=true, default="up"},
{},
{t="text", value="portal id:"},
{t="submenu", entries={"1", "2", "3", "4", "5", "6", "7", "8"}, default=1, width=1},
{},
{t="checkbox", text="default on", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.portal2 = {
{t="text", value="direction:"},
{t="directionbuttons", left=true, right=true, down=true, up=true, default="up"},
{},
{t="text", value="portal id:"},
{t="submenu", entries={"1", "2", "3", "4", "5", "6", "7", "8"}, default=1, width=1},
{},
{t="checkbox", text="default on", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
rightclickmenues.pedestal = {
{t="text", value="portal:"},
{t="checkbox", text="blue", default="true"},
{t="checkbox", text="orange", default="true"}
}
rightclickmenues.zginttrigger = {
{t="text", value="int is ? than:"},
{t="submenu", entries={"greater", "less", "equal"}, default=1, width=8},
{t="input", default="0", max=12},
{},
{t="input", default="myint", max=42}
}
rightclickmenues.zgbooltrigger = {
{t="text", value="boolean:"},
{t="checkbox", text="inverted", default="true"},
{t="input", default="mybool", max=42},
{},
{t="checkbox", text="invisible", default="true"}
}
groundlighttable = {"groundlightver", "groundlighthor", "groundlightupright", "groundlightrightdown", "groundlightdownleft", "groundlightleftup"}
for i = 1, #groundlighttable do
rightclickmenues[groundlighttable[i]] = {
{t="checkbox", text="default on", default="false"},
{},
{t="linkbutton", value="link power", link="power"}
}
end
function entity:init(img, x, y, width, height)
self.image = img
self.quad = love.graphics.newQuad((x-1)*17, (y-1)*17, 16, 16, width, height)
end
function entity:sett(i)
for j = 1, #entitylist do
if i == j then
self.t = entitylist[j].t
end
end
end