2018-04-08 14:11:39 +00:00
|
|
|
-- holostorage nodes
|
2018-04-07 15:27:34 +00:00
|
|
|
|
|
|
|
-- Common registrations
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/common.lua")
|
2018-04-07 15:27:34 +00:00
|
|
|
|
|
|
|
-- Controller
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/controller.lua")
|
2018-04-07 15:27:34 +00:00
|
|
|
|
|
|
|
-- Cabling
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/cable.lua")
|
2018-04-07 15:27:34 +00:00
|
|
|
|
|
|
|
-- Disk drives
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/disk_drive.lua")
|
2018-04-07 15:27:34 +00:00
|
|
|
|
|
|
|
-- Grids
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/grid.lua")
|
2018-04-07 15:27:34 +00:00
|
|
|
|
2018-04-08 12:06:49 +00:00
|
|
|
-- Buses
|
2018-04-08 14:11:39 +00:00
|
|
|
dofile(holostorage.modpath.."/nodes/bus.lua")
|
2018-04-08 12:06:49 +00:00
|
|
|
|
2018-04-08 16:36:53 +00:00
|
|
|
-- Solderer
|
|
|
|
dofile(holostorage.modpath.."/nodes/solderer.lua")
|
|
|
|
|
2018-04-07 15:27:34 +00:00
|
|
|
-- Start the network
|
2018-04-08 14:11:39 +00:00
|
|
|
holostorage.network.register_abm_controller("holostorage:controller_active")
|
|
|
|
holostorage.network.register_abm_nodes()
|