
com.willwinder.universalgcodesender.model.UGSEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ugs-core Show documentation
Show all versions of ugs-core Show documentation
Universal Gcode Sender Library
The newest version!
/*
Copyright 2012-2018 Will Winder
This file is part of Universal Gcode Sender (UGS).
UGS 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 3 of the License, or
(at your option) any later version.
UGS 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 UGS. If not, see .
*/
package com.willwinder.universalgcodesender.model;
import com.willwinder.universalgcodesender.gcode.GcodeState;
import com.willwinder.universalgcodesender.listeners.ControllerStatus;
import org.apache.commons.lang3.builder.ToStringBuilder;
/**
* These objects are passed around by the GUI API to notify listeners of state
* changes.
*
* @author wwinder
*/
public class UGSEvent {
private final EventType evt;
private Alarm alarm;
private ControlState controlState = null;
private GcodeState gcodeState = null;
private FileState fileState = null;
private Position probePosition = null;
private ControllerStatus controllerStatus = null;
private String file = null;
public enum EventType {
STATE_EVENT,
FILE_EVENT,
SETTING_EVENT,
FIRMWARE_SETTING_EVENT,
PROBE_EVENT,
CONTROLLER_STATUS_EVENT,
GCODE_STATE_EVENT,
ALARM_EVENT
}
public enum FileState {
FILE_LOADING,
FILE_LOADED,
FILE_STREAM_COMPLETE
}
public enum ControlState {
COMM_DISCONNECTED,
COMM_IDLE,
COMM_SENDING,
COMM_SENDING_PAUSED,
COMM_CHECK
}
public EventType getEventType(){
return evt;
}
public boolean isStateChangeEvent() {
return evt == EventType.STATE_EVENT;
}
public boolean isFileChangeEvent() {
return evt == EventType.FILE_EVENT;
}
public boolean isSettingChangeEvent() {
return evt == EventType.SETTING_EVENT;
}
public boolean isProbeEvent() {
return evt == EventType.PROBE_EVENT;
}
public boolean isControllerStatusEvent() {
return evt == EventType.CONTROLLER_STATUS_EVENT;
}
/**
* Create a new event of given type. STATE_EVENT and FILE_EVENT have
* required parameters, so a runtime exception will be thrown if they are
* specified with this constructor.
* @param type
*/
public UGSEvent(EventType type) {
evt = type;
switch (evt) {
case STATE_EVENT:
case FILE_EVENT:
case PROBE_EVENT:
case CONTROLLER_STATUS_EVENT:
throw new RuntimeException("Missing parameters for " + type + " event.");
}
}
/**
* Create a control state event.
* @param state the new state.
*/
public UGSEvent(ControlState state) {
evt = EventType.STATE_EVENT;
controlState = state;
}
/**
* Create a gcode state event.
* @param state the new state.
*/
public UGSEvent(GcodeState state) {
evt = EventType.GCODE_STATE_EVENT;
gcodeState = state;
}
/**
* Create a file state event
* FILE_LOADING: This event provides a path to an unprocessed gcode file.
* FILE_LOADED: This event provides a path to a processed gcode file which
* should be opened with a GcodeStreamReader.
* @param state the new file state.
* @param filepath the file related to the file event.
*/
public UGSEvent(FileState state, String filepath) {
evt = EventType.FILE_EVENT;
fileState = state;
file = filepath;
}
/**
* Create a probe position event.
* PROBE_POSITION: This event indicates the tool location after a probe.
* @param probePosition
*/
public UGSEvent(Position probePosition) {
evt = EventType.PROBE_EVENT;
this.probePosition = probePosition;
}
/**
* Create a controller status event.
*/
public UGSEvent(ControllerStatus controllerStatus) {
evt = EventType.CONTROLLER_STATUS_EVENT;
this.controllerStatus = controllerStatus;
}
/**
* Create a controller alarm event.
*/
public UGSEvent(Alarm alarm) {
evt = EventType.ALARM_EVENT;
this.alarm = alarm;
}
// Getters
public Alarm getAlarm() {
return alarm;
}
public ControlState getControlState() {
return controlState;
}
public FileState getFileState() {
return fileState;
}
public String getFile() {
return file;
}
public Position getProbePosition() {
return probePosition;
}
public ControllerStatus getControllerStatus() {
return controllerStatus;
}
public GcodeState getGcodeState() {
return gcodeState;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy