org.opentrafficsim.road.gtu.lane.tactical.Synchronizable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ots-road Show documentation
Show all versions of ots-road Show documentation
OpenTrafficSim road classes
The newest version!
package org.opentrafficsim.road.gtu.lane.tactical;
/**
* Interface for tactical planners that can return synchronization information for visualization.
*
* Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
public interface Synchronizable
{
/**
* Returns the synchronization state.
* @return State; synchronization state
*/
State getSynchronizationState();
/**
* State of synchronization.
*
* Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
*
* BSD-style license. See OpenTrafficSim License.
*
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
enum State
{
/** No synchronization. */
NONE,
/** Subject vehicle is adjusting speed. */
SYNCHRONIZING,
/** Subject vehicle is adjusting speed and indicating desired lane change. */
INDICATING,
/** Subject vehicle is cooperating for a lane change of another GTU. */
COOPERATING;
/**
* Returns whether this is NONE.
* @return boolean; whether this is NONE
*/
public boolean isNone()
{
return this == NONE;
}
/**
* Returns whether this is SYNCHRONIZING.
* @return boolean; whether this is SYNCHRONIZING
*/
public boolean isSycnhronizing()
{
return this == SYNCHRONIZING;
}
/**
* Returns whether this is INDICATING.
* @return boolean; whether this is INDICATING
*/
public boolean isIndicating()
{
return this == INDICATING;
}
/**
* Returns whether this is COOPERATING.
* @return boolean; whether this is COOPERATING
*/
public boolean isCooperating()
{
return this == COOPERATING;
}
}
}