fix deterministic authoritative RNG fallbacks
This commit is contained in:
@@ -27,17 +27,6 @@ const resolveServerId = (world: InMemoryTurnWorld): string | null => {
|
||||
return typeof value === 'string' && value !== '' ? value : null;
|
||||
};
|
||||
|
||||
const shuffleLegacy = <T>(values: T[]): T[] => {
|
||||
const result = [...values];
|
||||
// ref의 follower 병종 숙련 배열은 action DRBG가 아니라 PHP process-global
|
||||
// shuffle()로 섞인다.
|
||||
for (let index = result.length - 1; index > 0; index -= 1) {
|
||||
const target = Math.floor(Math.random() * (index + 1));
|
||||
[result[index], result[target]] = [result[target]!, result[index]!];
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
const createTurnTime = (rng: RandUtil, environment: MonthlyEventEnvironment, tickSeconds: number): Date => {
|
||||
const turnMinutes = tickSeconds / 60;
|
||||
if (!(turnMinutes > 0) || !Number.isInteger(turnMinutes)) {
|
||||
@@ -235,6 +224,17 @@ export const createRaiseInvaderHandler = (options: {
|
||||
simpleSerialize(resolveHiddenSeed(world), 'RaiseInvader', environment.year, environment.month)
|
||||
)
|
||||
);
|
||||
const dexShuffleRng = new RandUtil(
|
||||
new LiteHashDRBG(
|
||||
simpleSerialize(
|
||||
resolveHiddenSeed(world),
|
||||
'RaiseInvader',
|
||||
environment.year,
|
||||
environment.month,
|
||||
'martialDex'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
for (const nation of world.listNations()) {
|
||||
world.updateNation(nation.id, {
|
||||
@@ -363,7 +363,7 @@ export const createRaiseInvaderHandler = (options: {
|
||||
const mainStat = rng.nextRangeInt(toInteger(specAverage * 1.2), toInteger(specAverage * 1.4));
|
||||
const subStat = specAverage * 3 - leadership - mainStat;
|
||||
const isWarrior = rng.nextBit();
|
||||
const martialDex = isWarrior ? shuffleLegacy([dex * 2, dex, dex]) : [dex, dex, dex];
|
||||
const martialDex = isWarrior ? dexShuffleRng.shuffle([dex * 2, dex, dex]) : [dex, dex, dex];
|
||||
createInvaderGeneral({
|
||||
world,
|
||||
reservedTurns: options.reservedTurns,
|
||||
|
||||
@@ -111,17 +111,6 @@ const calculateAverageCity = (rng: RandUtil, cities: City[]): CityValues => {
|
||||
) as CityValues;
|
||||
};
|
||||
|
||||
const shuffleLegacy = <T>(values: T[]): T[] => {
|
||||
const result = [...values];
|
||||
// ref Util::shuffle_assoc()도 action DRBG가 아닌 PHP의 process-global
|
||||
// shuffle()을 사용한다.
|
||||
for (let index = result.length - 1; index > 0; index -= 1) {
|
||||
const target = Math.floor(Math.random() * (index + 1));
|
||||
[result[index], result[target]] = [result[target]!, result[index]!];
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
const buildSpecialityAge = (retirementYear: number, age: number, relativeYear: number, divisor: number): number =>
|
||||
Math.max(Math.round((retirementYear - age) / divisor - relativeYear / 2), 3) + age;
|
||||
|
||||
@@ -245,9 +234,20 @@ export const createRaiseNpcNationHandler = (options: {
|
||||
simpleSerialize(resolveHiddenSeed(world), 'RaiseNPCNation', environment.year, environment.month)
|
||||
)
|
||||
);
|
||||
const cityShuffleRng = new RandUtil(
|
||||
new LiteHashDRBG(
|
||||
simpleSerialize(
|
||||
resolveHiddenSeed(world),
|
||||
'RaiseNPCNation',
|
||||
environment.year,
|
||||
environment.month,
|
||||
'emptyCities'
|
||||
)
|
||||
)
|
||||
);
|
||||
const averageCity = calculateAverageCity(rng, targetCities);
|
||||
const occupiedCityIds = targetCities.filter((city) => city.nationId !== 0).map((city) => city.id);
|
||||
const emptyCities = shuffleLegacy(targetCities.filter((city) => city.nationId === 0));
|
||||
const emptyCities = cityShuffleRng.shuffle(targetCities.filter((city) => city.nationId === 0));
|
||||
const activeNations = world.listNations().filter((nation) => nation.id !== 0 && nation.level > 0);
|
||||
const generalCounts = activeNations.map(
|
||||
(nation) => world.listGenerals().filter((general) => general.nationId === nation.id).length
|
||||
|
||||
@@ -57,14 +57,16 @@ const readPattern = (world: InMemoryTurnWorld, config: Record<string, unknown>):
|
||||
);
|
||||
};
|
||||
|
||||
const shuffledDefaultPattern = (): number[] => {
|
||||
const pattern = [0, 0, 1, 2, 3];
|
||||
for (let index = pattern.length - 1; index > 0; index -= 1) {
|
||||
const swapIndex = Math.floor(Math.random() * (index + 1));
|
||||
[pattern[index], pattern[swapIndex]] = [pattern[swapIndex]!, pattern[index]!];
|
||||
}
|
||||
return pattern;
|
||||
};
|
||||
const shuffledDefaultPattern = (
|
||||
hiddenSeed: string | number,
|
||||
previousYear: number,
|
||||
previousMonth: number
|
||||
): number[] =>
|
||||
new RandUtil(
|
||||
new LiteHashDRBG(
|
||||
simpleSerialize(hiddenSeed, 'monthly', previousYear, previousMonth, 'tournamentPattern')
|
||||
)
|
||||
).shuffle([0, 0, 1, 2, 3]);
|
||||
|
||||
export const createTournamentAutoStartHandler = (options: {
|
||||
profileName: string;
|
||||
@@ -112,7 +114,10 @@ export const createTournamentAutoStartHandler = (options: {
|
||||
}
|
||||
|
||||
const pattern = readPattern(world, config);
|
||||
const resolvedPattern = pattern.length > 0 ? pattern : shuffledDefaultPattern();
|
||||
const resolvedPattern =
|
||||
pattern.length > 0
|
||||
? pattern
|
||||
: shuffledDefaultPattern(hiddenSeed, context.previousYear, context.previousMonth);
|
||||
const type = resolvedPattern.pop() ?? 0;
|
||||
world.updateWorldMeta({ tournamentPattern: resolvedPattern });
|
||||
const now = options.now?.() ?? new Date();
|
||||
|
||||
Reference in New Issue
Block a user