More debug info to hopefully gain more info on the bug

master
orwell96 2020-06-10 19:04:50 +02:00
parent a3247dea28
commit b5f8737095
2 changed files with 7 additions and 1 deletions

View File

@ -73,7 +73,10 @@ function atc.send_command(pos, par_tid, train_id_temp_debug)
else
atwarn("ATC rail at", pos, ": Sending command failed: There's no train at this position. This seems to be a bug.")
-- huch
advtrains.path_print(advtrains.trains[train_id_temp_debug], atdebug)
local train = advtrains.trains[train_id_temp_debug]
atlog("Train speed is",train.velocity,", have moved",train.dist_moved_this_step,", lever",train.lever)
advtrains.path_print(train, atlog)
end
else
atwarn("ATC rail at", pos, ": Sending command failed: Entry for controller not found.")

View File

@ -477,6 +477,7 @@ function advtrains.train_step_b(id, train, dtime)
-- only needs to run if we're not yet braking anyway
new_index_v_base = v0 + (advtrains.get_acceleration(train, tv_lever) * dtime)
local dst_curr_v = new_index_v_base * dtime
train.dist_moved_this_step = dst_curr_v
new_index_curr_tv = advtrains.path_get_index_by_offset(train, train.index, dst_curr_v)
local i = atfloor(train.index)
local lzb_target
@ -549,6 +550,7 @@ function advtrains.train_step_b(id, train, dtime)
if not new_index_v_base or new_index_v_base ~= v1 then
local tv_vdiff = advtrains.get_acceleration(train, tv_lever) * dtime
local dst_curr_v = v1 * dtime
train.dist_moved_this_step = dst_curr_v
new_index_curr_tv = advtrains.path_get_index_by_offset(train, train.index, dst_curr_v)
end
@ -755,6 +757,7 @@ function advtrains.tnc_call_approach_callback(pos, train_id, train, index, lzbda
run_callbacks_approach_node(pos, train_id, train, index, has_entered, lzbdata)
end
-- === te callback definition for tnc node callbacks ===
advtrains.te_register_on_new_path(function(id, train)
train.tnc = {