use crate::arkworks::{CamlFp, CamlFq};
use ark_ec::AffineRepr;
use mina_curves::pasta::{Pallas as AffinePallas, Vesta as AffineVesta};
pub type CamlGVesta = CamlGroupAffine<CamlFq>;
pub type CamlGPallas = CamlGroupAffine<CamlFp>;
#[derive(Clone, Copy, Debug, ocaml::IntoValue, ocaml::FromValue, ocaml_gen::Enum)]
pub enum CamlGroupAffine<F> {
Infinity,
Finite((F, F)),
}
impl From<AffineVesta> for CamlGVesta {
fn from(point: AffineVesta) -> Self {
if point.infinity {
Self::Infinity
} else {
Self::Finite((point.x.into(), point.y.into()))
}
}
}
impl From<&AffineVesta> for CamlGVesta {
fn from(point: &AffineVesta) -> Self {
if point.infinity {
Self::Infinity
} else {
Self::Finite((point.x.into(), point.y.into()))
}
}
}
impl From<CamlGVesta> for AffineVesta {
fn from(camlg: CamlGVesta) -> Self {
match camlg {
CamlGVesta::Infinity => AffineVesta::zero(),
CamlGVesta::Finite((x, y)) => AffineVesta::new_unchecked(x.into(), y.into()),
}
}
}
impl From<&CamlGVesta> for AffineVesta {
fn from(camlg: &CamlGVesta) -> Self {
match camlg {
CamlGroupAffine::Infinity => AffineVesta::zero(),
CamlGroupAffine::Finite((x, y)) => AffineVesta::new_unchecked(x.into(), y.into()),
}
}
}
impl From<AffinePallas> for CamlGPallas {
fn from(point: AffinePallas) -> Self {
if point.infinity {
Self::Infinity
} else {
Self::Finite((point.x.into(), point.y.into()))
}
}
}
impl From<&AffinePallas> for CamlGPallas {
fn from(point: &AffinePallas) -> Self {
if point.infinity {
Self::Infinity
} else {
Self::Finite((point.x.into(), point.y.into()))
}
}
}
impl From<CamlGPallas> for AffinePallas {
fn from(camlg: CamlGPallas) -> Self {
match camlg {
CamlGPallas::Infinity => AffinePallas::zero(),
CamlGPallas::Finite((x, y)) => AffinePallas::new_unchecked(x.into(), y.into()),
}
}
}
impl From<&CamlGPallas> for AffinePallas {
fn from(camlg: &CamlGPallas) -> Self {
match camlg {
CamlGroupAffine::Infinity => AffinePallas::zero(),
CamlGroupAffine::Finite((x, y)) => AffinePallas::new_unchecked(x.into(), y.into()),
}
}
}