Adding fluid wagon support to Train Ore Color
Posted: Tue Mar 05, 2019 7:48 pm
Hello, I'm looking for help adding fluid wagon support to the (deprecated) Train Ore Color mod. Note: I am not a modder.
Currently, I have gotten the old mod working in 0.17 and have successfully added additional items into the "colors" array. Fluids, however, are not working.
The section of control.lua that reads the train contents and looks up the appropriate item color in the array is:
Based on my limited knowledge of the API, this will only read cargo wagons, so I need a train.get_fluid_contents() function in here... somewhere. I will also need to change (or remove) the condition. Anyone have any ideas? Any help is appreciated!
Currently, I have gotten the old mod working in 0.17 and have successfully added additional items into the "colors" array. Fluids, however, are not working.
The section of control.lua that reads the train contents and looks up the appropriate item color in the array is:
Code: Select all
if(train.state == defines.train_state.on_the_path and not train.manual_mode and #train.cargo_wagons > 0) then
local total = 0
local hit = 0
calc = {}
for name, count in pairs(train.get_contents()) do
for key, color in pairs(colors) do
if(key[name] ~= nil) then
if(calc[key] ~= nil) then
calc[key] = calc[key] + count
else
hit = hit + 1
calc[key] = count
end
total = total + count
end
end
end
Code: Select all
and #train.cargo_wagons > 0