All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lucuma.core.model.M1GuideConfig.scala Maven / Gradle / Ivy

There is a newer version: 0.105.0
Show newest version
// Copyright (c) 2016-2023 Association of Universities for Research in Astronomy, Inc. (AURA)
// For license information see LICENSE or https://opensource.org/licenses/BSD-3-Clause

package lucuma.core.model

import cats.*
import cats.derived.*
import cats.syntax.all.*
import lucuma.core.enums.M1Source

/** Data type for M1 guide config. */
sealed trait M1GuideConfig extends Product with Serializable derives Eq, Show {
  def uses(s: M1Source): Boolean
}

object M1GuideConfig {
  case object M1GuideOff extends M1GuideConfig derives Eq, Show {
    override def uses(s: M1Source): Boolean = false
  }

  case class M1GuideOn(source: M1Source) extends M1GuideConfig derives Eq, Show {
    override def uses(s: M1Source): Boolean = source === s
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy