Desire.java

package org.opentrafficsim.road.gtu.lane.tactical.util.lmrs;

import java.io.Serializable;

import org.djunits.value.vdouble.scalar.Dimensionless;
import org.opentrafficsim.core.network.LateralDirectionality;

/**
 * Reflects the level of lane change desire a driver experiences in both the left and right direction. This may be either total
 * desire, or only for a single lane change incentive. Desire is defined as ranging from 0 to 1, where 0 means no desire and 1
 * means full desire. Values above 1 are not valid and should be limited to 1. Values below 0 are allowed and reflect that a
 * lane change is undesired (which is different from not desired).
 * <p>
 * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://opentrafficsim.org/docs/current/license.html">OpenTrafficSim License</a>.
 * <p>
 * @version $Revision$, $LastChangedDate$, by $Author$, initial version Apr 13, 2016 <br>
 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
 */
public class Desire implements Serializable
{

    /** */
    private static final long serialVersionUID = 20160413L;

    /** Level of left desire. */
    private final double left;

    /** Level of right desire. */
    private final double right;

    /**
     * Constructor which sets the supplied desire. Desire is limited to a maximum of 1.
     * @param left Left desire.
     * @param right Right desire.
     */
    public Desire(final double left, final double right)
    {
        this.left = left <= 1 ? left : 1;
        this.right = right <= 1 ? right : 1;
    }
    
    /**
     * Constructor which sets the supplied desire. Desire is limited to a maximum of 1.
     * @param left Left desire.
     * @param right Right desire.
     */
    public Desire(final Dimensionless left, final Dimensionless right)
    {
        this(left.si, right.si);
    }

    /**
     * Returns desire in the given direction.
     * @param dir Direction for the desire to return.
     * @return Desire in the given direction.
     */
    public final double get(final LateralDirectionality dir)
    {
        if (dir == LateralDirectionality.LEFT)
        {
            return this.left;
        }
        if (dir == LateralDirectionality.RIGHT)
        {
            return this.right;
        }
        throw new RuntimeException("Lateral direction may not be NONE.");
    }

    /**
     * Returns lane change desire to left.
     * @return Lane change desire to left.
     */
    public final double getLeft()
    {
        return this.left;
    }

    /**
     * Returns lane change desire to right.
     * @return Lane change desire to right.
     */
    public final double getRight()
    {
        return this.right;
    }

    /**
     * Returns whether the left desire is larger than (or equal to) the right.
     * @return Returns whether the left desire is larger than (or equal to) the right.
     */
    public final boolean leftIsLargerOrEqual()
    {
        return this.left >= this.right;
    }

    /** {@inheritDoc} */
    @Override
    public final String toString()
    {
        return "Desire [left=" + this.left + ", right=" + this.right + "]";
    }

}