2022-08-27 17:46:43 +00:00
|
|
|
import * as _ from "lodash";
|
|
|
|
import * as RSPointSetDist from "../rescript/ForTS/ForTS_Distribution/ForTS_Distribution_PointSetDistribution.gen";
|
|
|
|
import { pointSetDistributionTag as Tag } from "../rescript/ForTS/ForTS_Distribution/ForTS_Distribution_PointSetDistribution_tag";
|
|
|
|
|
|
|
|
type T = RSPointSetDist.pointSetDistribution;
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
export type SqPoint = { x: number; y: number };
|
|
|
|
export type SqShape = {
|
|
|
|
continuous: SqPoint[];
|
|
|
|
discrete: SqPoint[];
|
2022-08-27 17:46:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const shapePoints = (
|
|
|
|
x: RSPointSetDist.continuousShape | RSPointSetDist.discreteShape
|
2022-08-28 16:19:44 +00:00
|
|
|
): SqPoint[] => {
|
2022-08-27 17:46:43 +00:00
|
|
|
let xs = x.xyShape.xs;
|
|
|
|
let ys = x.xyShape.ys;
|
|
|
|
return _.zipWith(xs, ys, (x, y) => ({ x, y }));
|
|
|
|
};
|
|
|
|
|
|
|
|
export const wrapPointSetDist = (value: T) => {
|
|
|
|
const tag = RSPointSetDist.getTag(value);
|
|
|
|
|
|
|
|
return new tagToClass[tag](value);
|
|
|
|
};
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
abstract class SqAbstractPointSetDist {
|
2022-08-27 17:46:43 +00:00
|
|
|
_value: T;
|
|
|
|
|
|
|
|
constructor(_value: T) {
|
|
|
|
this._value = _value;
|
|
|
|
}
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
abstract asShape(): SqShape;
|
2022-08-27 17:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const valueMethod = <IR>(
|
2022-08-28 16:19:44 +00:00
|
|
|
_this: SqAbstractPointSetDist,
|
2022-08-27 17:46:43 +00:00
|
|
|
rsMethod: (v: T) => IR | null | undefined
|
|
|
|
) => {
|
|
|
|
const value = rsMethod(_this._value);
|
|
|
|
if (!value) throw new Error("Internal casting error");
|
|
|
|
return value;
|
|
|
|
};
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
export class SqMixedPointSetDist extends SqAbstractPointSetDist {
|
2022-08-27 17:46:43 +00:00
|
|
|
tag = Tag.PstMixed as const;
|
|
|
|
|
|
|
|
get value(): RSPointSetDist.mixedShape {
|
|
|
|
return valueMethod(this, RSPointSetDist.getMixed);
|
|
|
|
}
|
|
|
|
|
|
|
|
asShape() {
|
|
|
|
const v = this.value;
|
|
|
|
return {
|
|
|
|
discrete: shapePoints(v.discrete),
|
|
|
|
continuous: shapePoints(v.continuous),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
export class SqDiscretePointSetDist extends SqAbstractPointSetDist {
|
2022-08-27 17:46:43 +00:00
|
|
|
tag = Tag.PstDiscrete as const;
|
|
|
|
|
|
|
|
get value(): RSPointSetDist.discreteShape {
|
|
|
|
return valueMethod(this, RSPointSetDist.getDiscrete);
|
|
|
|
}
|
|
|
|
|
|
|
|
asShape() {
|
|
|
|
const v = this.value;
|
|
|
|
return {
|
|
|
|
discrete: shapePoints(v),
|
|
|
|
continuous: [],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
export class SqContinuousPointSetDist extends SqAbstractPointSetDist {
|
2022-08-27 17:46:43 +00:00
|
|
|
tag = Tag.PstContinuous as const;
|
|
|
|
|
|
|
|
get value(): RSPointSetDist.continuousShape {
|
|
|
|
return valueMethod(this, RSPointSetDist.getContinues);
|
|
|
|
}
|
|
|
|
|
|
|
|
asShape() {
|
|
|
|
const v = this.value;
|
|
|
|
return {
|
|
|
|
discrete: [],
|
|
|
|
continuous: shapePoints(v),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const tagToClass = {
|
2022-08-28 16:19:44 +00:00
|
|
|
[Tag.PstMixed]: SqMixedPointSetDist,
|
|
|
|
[Tag.PstDiscrete]: SqDiscretePointSetDist,
|
|
|
|
[Tag.PstContinuous]: SqContinuousPointSetDist,
|
2022-08-27 17:46:43 +00:00
|
|
|
} as const;
|
|
|
|
|
2022-08-28 16:19:44 +00:00
|
|
|
export type SqPointSetDist =
|
|
|
|
| SqMixedPointSetDist
|
|
|
|
| SqDiscretePointSetDist
|
|
|
|
| SqContinuousPointSetDist;
|