how to model a train system to include track and, to begin with two trains.
at present i have implemented using a vector two train objects fit into
vector at different positions and each has a move method which changes
postion +1 and replaces old position with a "empty block". (when vector
reaches end goes to beginning - creating a circular track) when one train
catches up to another it has to wait. what i want is for a transaction to
occur between trains and maybe control centre that involves train1 telling
train2 to speed up. have not been able to reference get name of train from
vector only that it is a train object - then i want to say train2.speedUp().
is this a fair model. i thought of using two dimensional vector to involve
tracks which intersected.
is there a more obvious model to choose - i have had jxta mentioned to me to
use trains as peers - but have no experience of this.
thanks for any help
mark
steve - 25 May 2005 23:57 GMT
> how to model a train system to include track and, to begin with two trains.
> at present i have implemented using a vector two train objects fit into
[quoted text clipped - 14 lines]
> thanks for any help
> mark
there is a model train control system on source forge. written in java.
also you say the trains move position +1, are you saying your trains cannot
go backwards?
Steve