Files
gridpilot.gg/core/racing/domain/value-objects/TrackTurns.ts
2026-01-16 19:46:49 +01:00

25 lines
644 B
TypeScript

import type { ValueObject } from '@core/shared/domain/ValueObject';
import { RacingDomainValidationError } from '../errors/RacingDomainError';
export class TrackTurns implements ValueObject<number> {
private constructor(private readonly value: number) {}
get props(): number {
return this.value;
}
static create(value: number): TrackTurns {
if (value < 0) {
throw new RacingDomainValidationError('Track turns cannot be negative');
}
return new TrackTurns(value);
}
toNumber(): number {
return this.value;
}
equals(other: ValueObject<number>): boolean {
return this.value === other.props;
}
}