freight_car_forwarder 0.1.11

Port of the C++ port of Timothy O'Connor's Freight Car Forwarding system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
// -!- rust -!- //////////////////////////////////////////////////////////////
//
//  System        : 
//  Module        : 
//  Object Name   : $RCSfile$
//  Revision      : $Revision$
//  Date          : $Date$
//  Author        : $Author$
//  Created By    : Robert Heller
//  Created       : 2025-09-02 15:10:46
//  Last Modified : <250919.2014>
//
//  Description	
//
//  Notes
//
//  History
//	
/////////////////////////////////////////////////////////////////////////////
//    Copyright (C) 2025  Robert Heller D/B/A Deepwoods Software
//			51 Locke Hill Road
//			Wendell, MA 01379-9728
//
//    This program is free software; you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation; either version 2 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// 
//
//////////////////////////////////////////////////////////////////////////////

use std::vec::*;


/// Train type -- the type of the train
#[derive(Debug, PartialEq, Eq, Clone, Copy)] // Add traits for comparison, copy, print
pub enum TrainType {
    /// Unknown type
    Unknown,
    /// Wayfreights are scheduled trains that move cars between industries and
    /// yards
    Wayfreight,
    /// Box moves are unscheduled train that move cars between industries and
    /// yards 
    BoxMove,
    /// Manifest trains are scheduled trains that move cars between yards
    Manifest,
    /// Passenger trains don't handle freight cars.
    Passenger
}

impl Default for TrainType {
    fn default() -> Self {
        TrainType::Unknown
    }
}

impl TrainType {
    /// Create a train type Enum from a code letter
    /// ## Parameters:
    /// - code the code character in the trains,dat file
    ///
    /// __Returns__ a TrainType Enum
    pub fn new(code: char) -> Self {
        match code {
            'W' | 'w' => TrainType::Wayfreight,
            'B' | 'b' => TrainType::BoxMove,
            'M' | 'm' => TrainType::Manifest,
            'P' | 'p' => TrainType::Passenger,
            _         => TrainType::Unknown,
        }
    }
}

use std::fmt;                                                                   
impl fmt::Display for TrainType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            TrainType::Wayfreight => write!(f, "<#TrainType Wayfreight (W)>"),
            TrainType::BoxMove  => write!(f, "<#TrainType BoxMove (B)>"),
            TrainType::Manifest => write!(f, "<#TrainType Manifest (M)>"),
            TrainType::Passenger => write!(f, "<#TrainType Passenger (P)>"),
            TrainType::Unknown => write!(f, "<#TrainType Unknown>"),
        }
    }
}

/// Train stop enum -- contains a train's stop, at either a station or an
/// industry
#[derive(Debug, PartialEq, Eq, Clone, Copy)] // Add traits for comparison, copy, print
pub enum Stop {
    /// Stops at a station
    StationStop(u8),
    /// Stops at an industry
    IndustryStop(usize),
}

impl Stop {
    /// Create a new station stop
    /// ## Parameters:
    /// - index The station index
    ///
    /// __Returns__ a fresh StationStop
    pub fn newStationStop(index: u8) -> Self {
        Stop::StationStop(index)
    }
    /// Create a new industry stop
    /// ## Parameters:
    /// - index The industry index
    ///
    /// __Returns__ a fresh IndustryStop
    pub fn newIndustryStop(index: usize) -> Self {
        Stop::IndustryStop(index)
    }

}

impl fmt::Display for Stop {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Stop::StationStop(station) => 
                write!(f, "<#StationStop ({})>", station),
            Stop::IndustryStop(industry) =>
                write!(f, "<#IndustryStop ({})>", industry),
        }
    }
}

/// Train structure -- holds information about a train.
#[derive(Debug, PartialEq, Default, Clone)] 
pub struct Train {
    orders: Vec<String>,
    stops: Vec<Stop>,
    name: String,
    divList: String,
    carTypes: String,
    description: String,
    shift: u8,
    maxcars: u32,
    maxclear: u8,
    maxweight: u8,
    maxlength: u32,
    onduty: u32,
    print: bool,
    done: bool,
    traintype: TrainType,
    number: usize,
}

impl Train {
    /// Initialize a new train struct.
    /// ## Parameters:
    /// - name Train call letters
    /// - divList Division forwarding list
    /// - carTypes Car types accepted in train
    /// - description Text description
    /// - shift Train shift number
    /// - maxcars Maximum numbers of cars at once
    /// - maxclear Maximum clearance plate
    /// - maxweight Maximum weight class 
    /// - maxlength Maximum train length
    /// - onduty Scheduled Time to Start in minutes
    /// - print Print train orders
    /// - done Done indicator
    /// - traintype Train type Manifest or Local or Boxmove
    /// - number Numeric identifier
    ///
    /// __Returns__ a freshly initialized train struct.
    pub fn new(name: String, divList: String,carTypes: String,
               description: String, shift: u8, maxcars: u32, maxclear: u8, 
               maxweight: u8, maxlength: u32, onduty: u32, print: bool, 
               done: bool, traintype: TrainType, number: usize) -> Self {
        Self {orders: Vec::new(), stops: Vec::new(), name: name, 
              divList: divList, carTypes: carTypes, description: description, 
              shift: shift, maxcars: maxcars, maxclear: maxclear, 
              maxweight: maxweight, maxlength: maxlength, onduty: onduty, 
              print: print, done: done, traintype: traintype, number: number }
    }
    /// Train name
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train name
    pub fn Name(&self) -> String {
        self.name.clone()
    }
    /// Train division list
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train division list 
    pub fn DivisionList(&self) -> String {
        self.divList.clone()
    }
    /// Train car types
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train car types
    pub fn CarTypes(&self) -> String {
        self.carTypes.clone()
    }
    /// Train description
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train description
    pub fn Description(&self) -> String {
        self.description.clone()
    }
    /// Train shift
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train shift
    pub fn Shift(&self) -> u8 {
        self.shift
    }
    /// Set the train shift
    /// ## Parameters:
    /// - newshift the new shift
    ///
    /// __Returns__ nothing
    pub fn SetShift(&mut self, newshift: u8) {
        self.shift = newshift;
    }
    /// Train maximum number of cars
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train maximum number of cars
    pub fn MaxCars(&self) -> u32 {
        self.maxcars
    }
    /// Train maximum clearance plate
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train maximum clearance plate
    pub fn MaxClear(&self) -> u8 {
        self.maxclear
    }
    /// Train maximum weight
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train maximum weight
    pub fn MaxWeight(&self) -> u8 {
        self.maxweight
    }
    /// Set the train maximum weight
    /// ## Parameters:
    /// - newmaxweight the new maximum weight
    ///
    /// __Returns__ nothing
    pub fn SetMaxWeight(&mut self, newmaxweight: u8) {
        self.maxweight = newmaxweight
    }
    /// Train maximum length
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train maximum length 
    pub fn MaxLength(&self) -> u32{
        self.maxlength
    }
    /// Set the train maximum length
    /// ## Parameters:
    /// - newmaxlength the new maximum length
    ///
    /// __Returns__ nothing
    pub fn SetMaxLength(&mut self, newmaxlength: u32) {
        self.maxlength = newmaxlength;
    }
    /// Train on duty time in minutes
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train on duty time in minutes 
    pub fn OnDuty(&self) -> u32 {
        self.onduty
    }
    /// Train print flag
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train print flag 
    pub fn Print(&self) -> bool {
        self.print
    }
    /// Set the train print flag
    /// ## Parameters:
    /// - flag the new flag
    ///
    /// __Returns__ nothing
    pub fn SetPrint(&mut self, flag: bool) {
        self.print = flag;
    }
    /// Train done flag
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the done flag
    pub fn Done(&self) -> bool {
        self.done
    }
    /// Set the train done flag
    /// ## Parameters:
    /// - flag the new flag
    ///
    /// __Returns__ nothing
    pub fn SetDone(&mut self, flag: bool) {
        self.done = flag;
    }
    /// Train type
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train type
    pub fn Type(&self) -> TrainType {
        self.traintype
    }
    /// Number of train orders
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the number of train orders
    pub fn NumberOfOrders(&self) -> usize {
        self.orders.len()
    }
    /// Get the train's ith order
    /// ## Parameters:
    /// - i the order's index
    ///
    /// __Returns__ the ith order or None
    pub fn Order(&self, i: usize) -> Option<String> {
        if i < self.orders.len() {
            Some(self.orders[i].clone())
        } else {
            None
        }
    }
    /// For iterating over the train's orders
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ an iterator into the orders vector.
    pub fn OrdersIter(&self) -> impl Iterator<Item = &String> {
        self.orders.iter()
    }
    /// Adds an order to the trains list of orders
    /// ## Parameters:
    /// order -- the additional order
    ///
    /// __Returns__ nothing
    pub fn AddOrder(&mut self, order: String) {
        self.orders.push(order);
    }
    /// Number of stops this train makes
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the number of stops this train makes
    pub fn NumberOfStops(&self) -> usize {
        self.stops.len()
    }
    /// The train's ith stop
    /// ## Parameters:
    /// - i the stop index
    ///
    /// __Returns__ the ith stop or none
    pub fn Stop(&self, i: usize) -> Option<&Stop> {
        if i < self.stops.len() {
            Some(&self.stops[i])
        } else {
            None
        }
    }
    /// Add a stop
    /// ## Parameters:
    /// - stop the stop to add
    ///
    /// __Returns__ nothing
    pub fn AddStop(&mut self, stop: &Stop) {
        self.stops.push(stop.clone());
    }
    /// Train number
    /// ## Parameters:
    /// None
    ///
    /// __Returns__ the train number
    pub fn Number(&self) -> usize {self.number}
}

impl fmt::Display for Train {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "<#Train {} (Type: {}, {} stops)>", self.name, self.Type(), 
                self.NumberOfStops())
    }
}