15
15
dofile (minetest .get_modpath (" worldedit_commands" ) .. " /mark.lua" )
16
16
dofile (minetest .get_modpath (" worldedit_commands" ) .. " /safe.lua" )
17
17
18
- local get_position = function (name )
18
+ local get_position = function (name ) -- position 1 retrieval function for when not using `safe_region`
19
19
local pos1 = worldedit .pos1 [name ]
20
20
if pos1 == nil then
21
21
worldedit .player_notify (name , " no position 1 selected" )
@@ -279,19 +279,35 @@ minetest.register_chatcommand("/volume", {
279
279
})
280
280
281
281
minetest .register_chatcommand (" /set" , {
282
+ params = " <node>" ,
283
+ description = " Set the current WorldEdit region to <node>" ,
284
+ privs = {worldedit = true },
285
+ func = safe_region (function (name , param )
286
+ local node = get_node (name , param )
287
+ if not node then
288
+ worldedit .player_notify (name , " Could not identify node \" " .. param .. " \" " )
289
+ return
290
+ end
291
+
292
+ local count = worldedit .set (worldedit .pos1 [name ], worldedit .pos2 [name ], node )
293
+ worldedit .player_notify (name , count .. " nodes set" )
294
+ end , check_region ),
295
+ })
296
+
297
+ minetest .register_chatcommand (" /mix" , {
282
298
params = " <node1> ..." ,
283
- description = " Set the current WorldEdit region to a random mix of <node1>, ..." ,
299
+ description = " Fill the current WorldEdit region with a random mix of <node1>, ..." ,
284
300
privs = {worldedit = true },
285
301
func = safe_region (function (name , param )
286
- local nodes = {}
287
- for nodename in param :gmatch (" [^%s ]+" ) do
288
- local node = get_node (name , nodename )
289
- if not node then
290
- worldedit .player_notify (name , " Could not identify node \" " .. name .. " \" " )
291
- return
292
- end
293
- nodes [# nodes + 1 ] = node
294
- end
302
+ local nodes = {}
303
+ for nodename in param :gmatch (" [^, ]+" ) do
304
+ local node = get_node (name , nodename )
305
+ if not node then
306
+ worldedit .player_notify (name , " Could not identify node \" " .. name .. " \" " )
307
+ return
308
+ end
309
+ nodes [# nodes + 1 ] = node
310
+ end
295
311
296
312
local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
297
313
local count = worldedit .set (pos1 , pos2 , nodes )
@@ -323,11 +339,10 @@ minetest.register_chatcommand("/replace", {
323
339
description = " Replace all instances of <search node> with <replace node> in the current WorldEdit region" ,
324
340
privs = {worldedit = true },
325
341
func = safe_region (function (name , param )
326
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
327
342
local found , _ , searchnode , replacenode = param :find (" ^([^%s]+)%s+(.+)$" )
328
343
local newsearchnode = worldedit .normalize_nodename (searchnode )
329
344
local newreplacenode = worldedit .normalize_nodename (replacenode )
330
- local count = worldedit .replace (pos1 , pos2 , newsearchnode , newreplacenode )
345
+ local count = worldedit .replace (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , newsearchnode , newreplacenode )
331
346
worldedit .player_notify (name , count .. " nodes replaced" )
332
347
end , check_replace ),
333
348
})
@@ -337,11 +352,10 @@ minetest.register_chatcommand("/replaceinverse", {
337
352
description = " Replace all nodes other than <search node> with <replace node> in the current WorldEdit region" ,
338
353
privs = {worldedit = true },
339
354
func = safe_region (function (name , param )
340
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
341
355
local found , _ , searchnode , replacenode = param :find (" ^([^%s]+)%s+(.+)$" )
342
356
local newsearchnode = worldedit .normalize_nodename (searchnode )
343
357
local newreplacenode = worldedit .normalize_nodename (replacenode )
344
- local count = worldedit .replaceinverse (pos1 , pos2 , searchnode , replacenode )
358
+ local count = worldedit .replaceinverse (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , searchnode , replacenode )
345
359
worldedit .player_notify (name , count .. " nodes replaced" )
346
360
end , check_replace ),
347
361
})
@@ -366,10 +380,9 @@ minetest.register_chatcommand("/hollowsphere", {
366
380
description = " Add hollow sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>" ,
367
381
privs = {worldedit = true },
368
382
func = safe_region (function (name , param )
369
- local pos = worldedit .pos1 [name ]
370
383
local found , _ , radius , nodename = param :find (" ^(%d+)%s+(.+)$" )
371
384
local node = get_node (name , nodename )
372
- local count = worldedit .hollow_sphere (pos , tonumber (radius ), node )
385
+ local count = worldedit .hollow_sphere (worldedit . pos1 [ name ] , tonumber (radius ), node )
373
386
worldedit .player_notify (name , count .. " nodes added" )
374
387
end , check_sphere ),
375
388
})
@@ -379,10 +392,9 @@ minetest.register_chatcommand("/sphere", {
379
392
description = " Add sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>" ,
380
393
privs = {worldedit = true },
381
394
func = safe_region (function (name , param )
382
- local pos = worldedit .pos1 [name ]
383
395
local found , _ , radius , nodename = param :find (" ^(%d+)%s+(.+)$" )
384
396
local node = get_node (name , nodename )
385
- local count = worldedit .sphere (pos , tonumber (radius ), node )
397
+ local count = worldedit .sphere (worldedit . pos1 [ name ] , tonumber (radius ), node )
386
398
worldedit .player_notify (name , count .. " nodes added" )
387
399
end , check_sphere ),
388
400
})
@@ -407,10 +419,9 @@ minetest.register_chatcommand("/hollowdome", {
407
419
description = " Add hollow dome centered at WorldEdit position 1 with radius <radius>, composed of <node>" ,
408
420
privs = {worldedit = true },
409
421
func = safe_region (function (name , param )
410
- local pos = worldedit .pos1 [name ]
411
422
local found , _ , radius , nodename = param :find (" ^(%d+)%s+(.+)$" )
412
423
local node = get_node (name , nodename )
413
- local count = worldedit .hollow_dome (pos , tonumber (radius ), node )
424
+ local count = worldedit .hollow_dome (worldedit . pos1 [ name ] , tonumber (radius ), node )
414
425
worldedit .player_notify (name , count .. " nodes added" )
415
426
end , check_dome ),
416
427
})
@@ -420,10 +431,9 @@ minetest.register_chatcommand("/dome", {
420
431
description = " Add dome centered at WorldEdit position 1 with radius <radius>, composed of <node>" ,
421
432
privs = {worldedit = true },
422
433
func = safe_region (function (name , param )
423
- local pos = worldedit .pos1 [name ]
424
434
local found , _ , radius , nodename = param :find (" ^(%d+)%s+(.+)$" )
425
435
local node = get_node (name , nodename )
426
- local count = worldedit .dome (pos , tonumber (radius ), node )
436
+ local count = worldedit .dome (worldedit . pos1 [ name ] , tonumber (radius ), node )
427
437
worldedit .player_notify (name , count .. " nodes added" )
428
438
end , check_dome ),
429
439
})
@@ -448,15 +458,14 @@ minetest.register_chatcommand("/hollowcylinder", {
448
458
description = " Add hollow cylinder at WorldEdit position 1 along the x/y/z/? axis with length <length> and radius <radius>, composed of <node>" ,
449
459
privs = {worldedit = true },
450
460
func = safe_region (function (name , param )
451
- local pos = worldedit .pos1 [name ]
452
461
local found , _ , axis , length , radius , nodename = param :find (" ^([xyz%?])%s+([+-]?%d+)%s+(%d+)%s+(.+)$" )
453
462
length = tonumber (length )
454
463
if axis == " ?" then
455
464
axis , sign = worldedit .player_axis (name )
456
465
length = length * sign
457
466
end
458
467
local node = get_node (name , nodename )
459
- local count = worldedit .hollow_cylinder (pos , axis , length , tonumber (radius ), node )
468
+ local count = worldedit .hollow_cylinder (worldedit . pos1 [ name ] , axis , length , tonumber (radius ), node )
460
469
worldedit .player_notify (name , count .. " nodes added" )
461
470
end , check_cylinder ),
462
471
})
@@ -466,15 +475,14 @@ minetest.register_chatcommand("/cylinder", {
466
475
description = " Add cylinder at WorldEdit position 1 along the x/y/z/? axis with length <length> and radius <radius>, composed of <node>" ,
467
476
privs = {worldedit = true },
468
477
func = safe_region (function (name , param )
469
- local pos = worldedit .pos1 [name ]
470
478
local found , _ , axis , length , radius , nodename = param :find (" ^([xyz%?])%s+([+-]?%d+)%s+(%d+)%s+(.+)$" )
471
479
length = tonumber (length )
472
480
if axis == " ?" then
473
481
axis , sign = worldedit .player_axis (name )
474
482
length = length * sign
475
483
end
476
484
local node = get_node (name , nodename )
477
- local count = worldedit .cylinder (pos , axis , length , tonumber (radius ), node )
485
+ local count = worldedit .cylinder (worldedit . pos1 [ name ] , axis , length , tonumber (radius ), node )
478
486
worldedit .player_notify (name , count .. " nodes added" )
479
487
end , check_cylinder ),
480
488
})
@@ -484,15 +492,14 @@ minetest.register_chatcommand("/pyramid", {
484
492
description = " Add pyramid centered at WorldEdit position 1 along the x/y/z/? axis with height <height>, composed of <node>" ,
485
493
privs = {worldedit = true },
486
494
func = safe_region (function (name , param )
487
- local pos = get_position (name )
488
495
local found , _ , axis , height , nodename = param :find (" ^([xyz%?])%s+([+-]?%d+)%s+(.+)$" )
489
496
height = tonumber (height )
490
497
if axis == " ?" then
491
498
axis , sign = worldedit .player_axis (name )
492
499
height = height * sign
493
500
end
494
501
local node = get_node (name , nodename )
495
- local count = worldedit .pyramid (pos , axis , height , node )
502
+ local count = worldedit .pyramid (worldedit . pos1 [ name ] , axis , height , node )
496
503
worldedit .player_notify (name , count .. " nodes added" )
497
504
end ,
498
505
function (name , param )
@@ -517,10 +524,9 @@ minetest.register_chatcommand("/spiral", {
517
524
description = " Add spiral centered at WorldEdit position 1 with side length <length>, height <height>, space between walls <space>, composed of <node>" ,
518
525
privs = {worldedit = true },
519
526
func = safe_region (function (name , param )
520
- local pos = worldedit .pos1 [name ]
521
527
local found , _ , length , height , space , nodename = param :find (" ^(%d+)%s+(%d+)%s+(%d+)%s+(.+)$" )
522
528
local node = get_node (name , nodename )
523
- local count = worldedit .spiral (pos , tonumber (length ), tonumber (height ), tonumber (space ), node )
529
+ local count = worldedit .spiral (worldedit . pos1 [ name ] , tonumber (length ), tonumber (height ), tonumber (space ), node )
524
530
worldedit .player_notify (name , count .. " nodes added" )
525
531
end ,
526
532
function (name , param )
@@ -544,7 +550,6 @@ minetest.register_chatcommand("/copy", {
544
550
description = " Copy the current WorldEdit region along the x/y/z/? axis by <amount> nodes" ,
545
551
privs = {worldedit = true },
546
552
func = safe_region (function (name , param )
547
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
548
553
local found , _ , axis , amount = param :find (" ^([xyz%?])%s+([+-]?%d+)$" )
549
554
if found == nil then
550
555
worldedit .player_notify (name , " invalid usage: " .. param )
@@ -556,7 +561,7 @@ minetest.register_chatcommand("/copy", {
556
561
amount = amount * sign
557
562
end
558
563
559
- local count = worldedit .copy (pos1 , pos2 , axis , amount )
564
+ local count = worldedit .copy (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , axis , amount )
560
565
worldedit .player_notify (name , count .. " nodes copied" )
561
566
end ,
562
567
function (name , param )
@@ -597,14 +602,13 @@ minetest.register_chatcommand("/stack", {
597
602
description = " Stack the current WorldEdit region along the x/y/z/? axis <count> times" ,
598
603
privs = {worldedit = true },
599
604
func = safe_region (function (name , param )
600
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
601
605
local found , _ , axis , repetitions = param :find (" ^([xyz%?])%s+([+-]?%d+)$" )
602
606
repetitions = tonumber (repetitions )
603
607
if axis == " ?" then
604
608
axis , sign = worldedit .player_axis (name )
605
609
repetitions = repetitions * sign
606
610
end
607
- local count = worldedit .stack (pos1 , pos2 , axis , repetitions )
611
+ local count = worldedit .stack (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , axis , repetitions )
608
612
worldedit .player_notify (name , count .. " nodes stacked" )
609
613
end ,
610
614
function (name , param )
@@ -624,32 +628,32 @@ minetest.register_chatcommand("/stack2", {
624
628
privs = {worldedit = true },
625
629
func = function (name , param )
626
630
local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
627
- if pos1 == nil or pos2 == nil then
631
+ if pos1 == nil or pos2 == nil then
628
632
worldedit .player_notify (name , " Select a position first!" )
629
- return
630
- end
631
- local repetitions , incs = param :match (" (%d+)%s*(.+)" )
632
- if repetitions == nil then
633
+ return
634
+ end
635
+ local repetitions , incs = param :match (" (%d+)%s*(.+)" )
636
+ if repetitions == nil then
633
637
worldedit .player_notify (name , " invalid count: " .. param )
634
- return
635
- end
638
+ return
639
+ end
636
640
repetitions = tonumber (repetitions )
637
641
638
- local x , y , z = incs :match (" ([+-]?%d+) ([+-]%d+) ([+-]%d+)" )
639
- if x == nil then
640
- worldedit .player_notify (name , " invalid increments: " .. param )
641
- return
642
- end
643
- x , y , z = tonumber (x ), tonumber (y ), tonumber (z )
642
+ local x , y , z = incs :match (" ([+-]?%d+) ([+-]%d+) ([+-]%d+)" )
643
+ if x == nil then
644
+ worldedit .player_notify (name , " invalid increments: " .. param )
645
+ return
646
+ end
647
+ x , y , z = tonumber (x ), tonumber (y ), tonumber (z )
644
648
645
- local count = worldedit .volume (pos1 , pos2 ) * repetitions
649
+ local count = worldedit .volume (pos1 , pos2 ) * repetitions
646
650
647
- return safe_region (function ()
651
+ return safe_region (function ()
648
652
worldedit .stack2 (pos1 , pos2 , {x = x , y = y , z = z }, repetitions ,
649
653
function () worldedit .player_notify (name , count .. " nodes stacked" ) end )
650
654
end , function ()
651
655
return count
652
- end )(name ,param ) -- more hax
656
+ end )(name ,param ) -- more hax --wip: clean this up a little bit
653
657
end
654
658
})
655
659
@@ -726,9 +730,8 @@ minetest.register_chatcommand("/flip", {
726
730
description = " Flip the current WorldEdit region along the x/y/z/? axis" ,
727
731
privs = {worldedit = true },
728
732
func = safe_region (function (name , param )
729
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
730
733
if param == " ?" then param = worldedit .player_axis (name ) end
731
- local count = worldedit .flip (pos1 , pos2 , param )
734
+ local count = worldedit .flip (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , param )
732
735
worldedit .player_notify (name , count .. " nodes flipped" )
733
736
end ,
734
737
function (name , param )
@@ -777,9 +780,8 @@ minetest.register_chatcommand("/orient", {
777
780
description = " Rotate oriented nodes in the current WorldEdit region around the Y axis by angle <angle> (90 degree increment)" ,
778
781
privs = {worldedit = true },
779
782
func = safe_region (function (name , param )
780
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
781
783
local found , _ , angle = param :find (" ^([+-]?%d+)$" )
782
- local count = worldedit .orient (pos1 , pos2 , angle )
784
+ local count = worldedit .orient (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , angle )
783
785
worldedit .player_notify (name , count .. " nodes oriented" )
784
786
end ,
785
787
function (name , param )
@@ -801,8 +803,7 @@ minetest.register_chatcommand("/fixlight", {
801
803
description = " Fix the lighting in the current WorldEdit region" ,
802
804
privs = {worldedit = true },
803
805
func = safe_region (function (name , param )
804
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
805
- local count = worldedit .fixlight (pos1 , pos2 )
806
+ local count = worldedit .fixlight (worldedit .pos1 [name ], worldedit .pos2 [name ])
806
807
worldedit .player_notify (name , count .. " nodes updated" )
807
808
end ),
808
809
})
@@ -812,8 +813,7 @@ minetest.register_chatcommand("/hide", {
812
813
description = " Hide all nodes in the current WorldEdit region non-destructively" ,
813
814
privs = {worldedit = true },
814
815
func = safe_region (function (name , param )
815
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
816
- local count = worldedit .hide (pos1 , pos2 )
816
+ local count = worldedit .hide (worldedit .pos1 [name ], worldedit .pos2 [name ])
817
817
worldedit .player_notify (name , count .. " nodes hidden" )
818
818
end ),
819
819
})
@@ -823,9 +823,8 @@ minetest.register_chatcommand("/suppress", {
823
823
description = " Suppress all <node> in the current WorldEdit region non-destructively" ,
824
824
privs = {worldedit = true },
825
825
func = safe_region (function (name , param )
826
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
827
826
local node = get_node (name , param )
828
- local count = worldedit .suppress (pos1 , pos2 , node )
827
+ local count = worldedit .suppress (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , node )
829
828
worldedit .player_notify (name , count .. " nodes suppressed" )
830
829
end , check_set ),
831
830
})
@@ -835,9 +834,8 @@ minetest.register_chatcommand("/highlight", {
835
834
description = " Highlight <node> in the current WorldEdit region by hiding everything else non-destructively" ,
836
835
privs = {worldedit = true },
837
836
func = safe_region (function (name , param )
838
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
839
837
local node = get_node (name , param )
840
- local count = worldedit .highlight (pos1 , pos2 , node )
838
+ local count = worldedit .highlight (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , node )
841
839
worldedit .player_notify (name , count .. " nodes highlighted" )
842
840
end , check_set ),
843
841
})
@@ -847,8 +845,7 @@ minetest.register_chatcommand("/restore", {
847
845
description = " Restores nodes hidden with WorldEdit in the current WorldEdit region" ,
848
846
privs = {worldedit = true },
849
847
func = safe_region (function (name , param )
850
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
851
- local count = worldedit .restore (pos1 , pos2 )
848
+ local count = worldedit .restore (worldedit .pos1 [name ], worldedit .pos2 [name ])
852
849
worldedit .player_notify (name , count .. " nodes restored" )
853
850
end ),
854
851
})
@@ -858,7 +855,6 @@ minetest.register_chatcommand("/save", {
858
855
description = " Save the current WorldEdit region to \" (world folder)/schems/<file>.we\" " ,
859
856
privs = {worldedit = true },
860
857
func = safe_region (function (name , param )
861
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
862
858
if param == " " then
863
859
worldedit .player_notify (name , " invalid usage: " .. param )
864
860
return
@@ -868,7 +864,7 @@ minetest.register_chatcommand("/save", {
868
864
return
869
865
end
870
866
871
- local result , count = worldedit .serialize (pos1 , pos2 )
867
+ local result , count = worldedit .serialize (worldedit . pos1 [ name ], worldedit . pos2 [ name ] )
872
868
873
869
local path = minetest .get_worldpath () .. " /schems"
874
870
local filename = path .. " /" .. param .. " .we"
@@ -1000,14 +996,13 @@ minetest.register_chatcommand("/luatransform", {
1000
996
description = " Executes <code> as a Lua chunk in the global namespace with the variable pos available, for each node in the current WorldEdit region" ,
1001
997
privs = {worldedit = true , server = true },
1002
998
func = safe_region (function (name , param )
1003
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
1004
999
local admin = minetest .setting_get (" name" )
1005
1000
if not admin or not name == admin then
1006
1001
worldedit .player_notify (name , " this command can only be run by the server administrator" )
1007
1002
return
1008
1003
end
1009
1004
1010
- local err = worldedit .luatransform (pos1 , pos2 , param )
1005
+ local err = worldedit .luatransform (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , param )
1011
1006
if err then
1012
1007
worldedit .player_notify (name , " code error: " .. err , false )
1013
1008
else
@@ -1021,7 +1016,6 @@ minetest.register_chatcommand("/mtschemcreate", {
1021
1016
description = " Save the current WorldEdit region using the Minetest Schematic format to \" (world folder)/schems/<filename>.mts\" " ,
1022
1017
privs = {worldedit = true },
1023
1018
func = safe_region (function (name , param )
1024
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
1025
1019
if param == nil then
1026
1020
worldedit .player_notify (name , " No filename specified" )
1027
1021
return
@@ -1032,7 +1026,7 @@ minetest.register_chatcommand("/mtschemcreate", {
1032
1026
filename = filename :gsub (" \" " , " \\\" " ):gsub (" \\ " , " \\\\ " ) -- escape any nasty characters
1033
1027
os.execute (" mkdir \" " .. path .. " \" " ) -- create directory if it does not already exist
1034
1028
1035
- local ret = minetest .create_schematic (pos1 , pos2 , worldedit .prob_list [name ], filename )
1029
+ local ret = minetest .create_schematic (worldedit . pos1 [ name ], worldedit . pos2 [ name ] , worldedit .prob_list [name ], filename )
1036
1030
if ret == nil then
1037
1031
worldedit .player_notify (name , " failed to create Minetest schematic" , false )
1038
1032
else
@@ -1111,8 +1105,7 @@ minetest.register_chatcommand("/clearobjects", {
1111
1105
description = " Clears all objects within the WorldEdit region" ,
1112
1106
privs = {worldedit = true },
1113
1107
func = safe_region (function (name , param )
1114
- local pos1 , pos2 = worldedit .pos1 [name ], worldedit .pos2 [name ]
1115
- local count = worldedit .clearobjects (pos1 , pos2 )
1108
+ local count = worldedit .clearobjects (worldedit .pos1 [name ], worldedit .pos2 [name ])
1116
1109
worldedit .player_notify (name , count .. " objects cleared" )
1117
1110
end ),
1118
1111
})
0 commit comments