aboutsummaryrefslogtreecommitdiff
path: root/advtrains_interlocking
Commit message (Expand)AuthorAge
...
* Basic route management from signalling formspecorwell962018-07-04
* Signal assignment and route programming procedureorwell962018-07-04
* Implement trains blocking sectionsorwell962018-06-29
* get_ts_at_pos(), file for train-related stufforwell962018-06-29
* Complete Track Section handling, incl. removing tcb's and marker entitiesorwell962018-06-26
* Add track section concept and rework TCB design, implement new linking behaviororwell962018-06-21
* Add Track Circuit Breaks (TCBs), Database and Track Circuit Setuporwell962018-06-20
* Interlocking: Create demo signals, signal API and model for TCB configurer nodeorwell962018-06-19
* Draft of interlocking systemorwell962018-06-14
span>"Debug ring buffer output for '"..tid.."':") local stopcnt=ringbufcnt[tid] if not stopcnt then atdebug("ID unknown!") return end repeat atdebug(ringbufs[tid][ringbufcnt[tid]]) ringbufcnt[tid]=ringbufcnt[tid]+1 if ringbufcnt[tid] > ringbuflen then ringbufcnt[tid]=0 end until ringbufcnt[tid]==stopcnt end minetest.register_chatcommand("atdebug_show", { params = "train sid", -- Short parameter description description = "Dump debug log", -- Full description privs = {train_operator=true}, -- Require the "privs" privilege to run func = function(name, param) advtrains.drb_dump(param) end, -- Called when command is run. -- Returns boolean success and text output. })