use of net.parostroj.timetable.output2.impl.CustomCycles in project grafikon by jub77.
the class XmlStartPositionsOutput method writeTo.
@Override
protected void writeTo(OutputParams params, OutputStream stream, TrainDiagram diagram) throws OutputException {
try {
// extract positions
PositionsExtractor pe = new PositionsExtractor(diagram);
List<Position> engines = pe.getStartPositions(diagram.getEngineCycleType().getCycles(), null);
List<Position> trainUnits = pe.getStartPositions(diagram.getTrainUnitCycleType().getCycles(), null);
List<Cycles> customCycles = pe.getStartPositionsCustom(null);
StartPositions sp = new StartPositions();
sp.setEnginesPositions(engines);
sp.setTrainUnitsPositions(trainUnits);
sp.setCustomCycles(customCycles);
JAXBContext context = JAXBContext.newInstance(StartPositions.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_ENCODING, this.getCharset().name());
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
Writer writer = new OutputStreamWriter(stream, this.getCharset());
m.marshal(sp, writer);
} catch (Exception e) {
throw new OutputException(e);
}
}
use of net.parostroj.timetable.output2.impl.CustomCycles in project grafikon by jub77.
the class EndsTemplateBinding method addSpecific.
@Override
protected void addSpecific(OutputParams params, Map<String, Object> map, TrainDiagram diagram, Locale locale) {
// extract positions
PositionsExtractor pe = new PositionsExtractor(diagram);
List<Position> engines = pe.getEndPositions(diagram.getEngineCycleType().getCycles(), null);
List<Position> trainUnits = pe.getEndPositions(diagram.getTrainUnitCycleType().getCycles(), null);
List<Cycles> customCycles = pe.getEndPositionsCustom(null);
// call template
map.put("engines", engines);
map.put("train_units", trainUnits);
map.put("custom_cycles", customCycles);
}
use of net.parostroj.timetable.output2.impl.CustomCycles in project grafikon by jub77.
the class XmlCustomCyclesOutput method writeTo.
@Override
protected void writeTo(OutputParams params, OutputStream stream, TrainDiagram diagram) throws OutputException {
try {
// check for type
OutputParam param = params.get("cycle_type");
TrainsCycleType type = param != null ? param.getValue(TrainsCycleType.class) : null;
// extract
CustomCyclesExtractor tuce = new CustomCyclesExtractor(SelectionHelper.selectCycles(params, diagram, type));
CustomCycles cycles = new CustomCycles(tuce.getCycles());
JAXBContext context = JAXBContext.newInstance(CustomCycles.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_ENCODING, this.getCharset().name());
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
Writer writer = new OutputStreamWriter(stream, this.getCharset());
m.marshal(cycles, writer);
} catch (Exception e) {
throw new OutputException(e);
}
}
use of net.parostroj.timetable.output2.impl.CustomCycles in project grafikon by jub77.
the class StartsTemplateBinding method addSpecific.
@Override
protected void addSpecific(OutputParams params, Map<String, Object> map, TrainDiagram diagram, Locale locale) {
Integer startTime = params.getParamValue("start.time", Integer.class);
// extract positions
PositionsExtractor pe = new PositionsExtractor(diagram);
List<Position> engines = pe.getStartPositions(diagram.getEngineCycleType().getCycles(), startTime);
List<Position> trainUnits = pe.getStartPositions(diagram.getTrainUnitCycleType().getCycles(), startTime);
List<Cycles> customCycles = pe.getStartPositionsCustom(startTime);
// call template
map.put("engines", engines);
map.put("train_units", trainUnits);
map.put("custom_cycles", customCycles);
map.put("start_time", startTime);
}
Aggregations