Merge branch 'main' into fix/main-turn-timezone-20260813
This commit is contained in:
@@ -3,7 +3,9 @@ import { z } from 'zod';
|
|||||||
|
|
||||||
import { asRecord } from '@sammo-ts/common';
|
import { asRecord } from '@sammo-ts/common';
|
||||||
|
|
||||||
|
import { resolveOfficerLevelName, sanitizeInternalDisplayCode } from '../../services/gameDisplayNames.js';
|
||||||
import { readOnlyAuthedProcedure, router } from '../../trpc.js';
|
import { readOnlyAuthedProcedure, router } from '../../trpc.js';
|
||||||
|
import { loadTraitNames } from '../nation/shared.js';
|
||||||
|
|
||||||
const numberOrNull = (value: unknown): number | null =>
|
const numberOrNull = (value: unknown): number | null =>
|
||||||
typeof value === 'number' && Number.isFinite(value) ? value : null;
|
typeof value === 'number' && Number.isFinite(value) ? value : null;
|
||||||
@@ -87,6 +89,31 @@ export const archiveRouter = router({
|
|||||||
nationByServerAndId.set(key, nation);
|
nationByServerAndId.set(key, nation);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const archivedRoles = generals.map((general) => {
|
||||||
|
const data = asRecord(general.data);
|
||||||
|
const role = asRecord(data.role);
|
||||||
|
return {
|
||||||
|
personal: displayTextOrNull(data.personalCode ?? data.personal ?? role.personality),
|
||||||
|
special: displayTextOrNull(data.specialCode ?? data.special ?? role.specialDomestic),
|
||||||
|
special2: displayTextOrNull(data.special2Code ?? data.special2 ?? role.specialWar),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
const [personalityNames, domesticNames, warNames] = await Promise.all([
|
||||||
|
loadTraitNames(
|
||||||
|
archivedRoles.map((role) => role.personal),
|
||||||
|
'personality'
|
||||||
|
),
|
||||||
|
loadTraitNames(
|
||||||
|
archivedRoles.map((role) => role.special),
|
||||||
|
'domestic'
|
||||||
|
),
|
||||||
|
loadTraitNames(
|
||||||
|
archivedRoles.map((role) => role.special2),
|
||||||
|
'war'
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
const displayRole = (value: string | null, names: Awaited<ReturnType<typeof loadTraitNames>>): string | null =>
|
||||||
|
value ? (names.get(value)?.name ?? sanitizeInternalDisplayCode(value)) : null;
|
||||||
|
|
||||||
const seasons = new Map<
|
const seasons = new Map<
|
||||||
string,
|
string,
|
||||||
@@ -110,6 +137,7 @@ export const archiveRouter = router({
|
|||||||
experience: number | null;
|
experience: number | null;
|
||||||
dedication: number | null;
|
dedication: number | null;
|
||||||
officerLevel: number | null;
|
officerLevel: number | null;
|
||||||
|
officerLevelText: string | null;
|
||||||
personal: string | null;
|
personal: string | null;
|
||||||
special: string | null;
|
special: string | null;
|
||||||
special2: string | null;
|
special2: string | null;
|
||||||
@@ -118,7 +146,7 @@ export const archiveRouter = router({
|
|||||||
}
|
}
|
||||||
>();
|
>();
|
||||||
|
|
||||||
for (const general of generals) {
|
for (const [generalIndex, general] of generals.entries()) {
|
||||||
const game = gameByServer.get(general.serverId);
|
const game = gameByServer.get(general.serverId);
|
||||||
let season = seasons.get(general.serverId);
|
let season = seasons.get(general.serverId);
|
||||||
if (!season) {
|
if (!season) {
|
||||||
@@ -136,10 +164,12 @@ export const archiveRouter = router({
|
|||||||
|
|
||||||
const data = asRecord(general.data);
|
const data = asRecord(general.data);
|
||||||
const stats = asRecord(data.stats);
|
const stats = asRecord(data.stats);
|
||||||
const role = asRecord(data.role);
|
|
||||||
const nationId = firstNumber(data, 'nationId', 'nation') ?? 0;
|
const nationId = firstNumber(data, 'nationId', 'nation') ?? 0;
|
||||||
const nation = nationByServerAndId.get(`${general.serverId}:${nationId}`);
|
const nation = nationByServerAndId.get(`${general.serverId}:${nationId}`);
|
||||||
const nationData = asRecord(nation?.data);
|
const nationData = asRecord(nation?.data);
|
||||||
|
const officerLevel = firstNumber(data, 'officerLevel', 'officer_level');
|
||||||
|
const nationLevel = firstNumber(nationData, 'level', 'nationLevel');
|
||||||
|
const archivedRole = archivedRoles[generalIndex]!;
|
||||||
season.generals.push({
|
season.generals.push({
|
||||||
generalNo: general.generalNo,
|
generalNo: general.generalNo,
|
||||||
name: general.name,
|
name: general.name,
|
||||||
@@ -152,10 +182,14 @@ export const archiveRouter = router({
|
|||||||
intel: firstNumber(data, 'intel', 'intelligence') ?? numberOrNull(stats.intelligence),
|
intel: firstNumber(data, 'intel', 'intelligence') ?? numberOrNull(stats.intelligence),
|
||||||
experience: numberOrNull(data.experience),
|
experience: numberOrNull(data.experience),
|
||||||
dedication: numberOrNull(data.dedication),
|
dedication: numberOrNull(data.dedication),
|
||||||
officerLevel: firstNumber(data, 'officerLevel', 'officer_level'),
|
officerLevel,
|
||||||
personal: displayTextOrNull(data.personalCode ?? data.personal ?? role.personality),
|
officerLevelText:
|
||||||
special: displayTextOrNull(data.specialCode ?? data.special ?? role.specialDomestic),
|
officerLevel === null
|
||||||
special2: displayTextOrNull(data.special2Code ?? data.special2 ?? role.specialWar),
|
? null
|
||||||
|
: resolveOfficerLevelName(officerLevel, nationLevel === null ? undefined : nationLevel),
|
||||||
|
personal: displayRole(archivedRole.personal, personalityNames),
|
||||||
|
special: displayRole(archivedRole.special, domesticNames),
|
||||||
|
special2: displayRole(archivedRole.special2, warNames),
|
||||||
historyCount: parseHistory(data.history).length,
|
historyCount: parseHistory(data.history).length,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,16 @@ import {
|
|||||||
import { ConflictingTurnDaemonCommandError } from '../../daemon/databaseTransport.js';
|
import { ConflictingTurnDaemonCommandError } from '../../daemon/databaseTransport.js';
|
||||||
import { resolveAccessWindows } from '../../services/generalAccess.js';
|
import { resolveAccessWindows } from '../../services/generalAccess.js';
|
||||||
import { adjustAccountIconForUser } from '../../services/accountIconSync.js';
|
import { adjustAccountIconForUser } from '../../services/accountIconSync.js';
|
||||||
|
import {
|
||||||
|
loadCrewTypeDisplayNames,
|
||||||
|
loadItemDisplayNames,
|
||||||
|
resolveCityLevelName,
|
||||||
|
resolveDedicationLevelName,
|
||||||
|
resolveNationLevelName,
|
||||||
|
resolveOfficerLevelName,
|
||||||
|
resolveRegionName,
|
||||||
|
sanitizeInternalDisplayCode,
|
||||||
|
} from '../../services/gameDisplayNames.js';
|
||||||
import { getMyGeneral } from '../shared/general.js';
|
import { getMyGeneral } from '../shared/general.js';
|
||||||
import { loadTraitNames, resolveNationNotice, type TraitNameMap } from '../nation/shared.js';
|
import { loadTraitNames, resolveNationNotice, type TraitNameMap } from '../nation/shared.js';
|
||||||
|
|
||||||
@@ -155,7 +165,7 @@ const resolveTraitDisplayName = (code: string, names: TraitNameMap): string => {
|
|||||||
return loadedName;
|
return loadedName;
|
||||||
}
|
}
|
||||||
// Ref는 class getName()을 표시하므로 로더가 모르는 선택적 특기도 raw namespace는 노출하지 않는다.
|
// Ref는 class getName()을 표시하므로 로더가 모르는 선택적 특기도 raw namespace는 노출하지 않는다.
|
||||||
return code.replace(/^che_(?:event_)?/u, '');
|
return sanitizeInternalDisplayCode(code);
|
||||||
};
|
};
|
||||||
|
|
||||||
const resolveUserSettings = (meta: Record<string, unknown>) => {
|
const resolveUserSettings = (meta: Record<string, unknown>) => {
|
||||||
@@ -244,7 +254,7 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const [city, nation, worldState] = await Promise.all([
|
const [city, queriedNation, worldState] = await Promise.all([
|
||||||
general.cityId > 0
|
general.cityId > 0
|
||||||
? ctx.db.city.findUnique({
|
? ctx.db.city.findUnique({
|
||||||
where: { id: general.cityId },
|
where: { id: general.cityId },
|
||||||
@@ -291,18 +301,36 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
: Promise.resolve(NEUTRAL_NATION_CONTEXT),
|
: Promise.resolve(NEUTRAL_NATION_CONTEXT),
|
||||||
ctx.db.worldState.findFirst({ select: { config: true } }),
|
ctx.db.worldState.findFirst({ select: { config: true } }),
|
||||||
]);
|
]);
|
||||||
|
const nation = queriedNation ?? NEUTRAL_NATION_CONTEXT;
|
||||||
|
|
||||||
const [personalityNames, domesticNames, warNames] = await Promise.all([
|
const [capitalCity, cityNation] = await Promise.all([
|
||||||
|
nation.capitalCityId
|
||||||
|
? ctx.db.city.findUnique({ where: { id: nation.capitalCityId }, select: { name: true } })
|
||||||
|
: Promise.resolve(null),
|
||||||
|
city && city.nationId > 0
|
||||||
|
? ctx.db.nation.findUnique({ where: { id: city.nationId }, select: { name: true } })
|
||||||
|
: Promise.resolve(null),
|
||||||
|
]);
|
||||||
|
const [personalityNames, domesticNames, warNames, nationTypeNames, crewTypeNames, itemNames] = await Promise.all([
|
||||||
loadTraitNames([general.personalCode], 'personality'),
|
loadTraitNames([general.personalCode], 'personality'),
|
||||||
loadTraitNames([general.specialCode], 'domestic'),
|
loadTraitNames([general.specialCode], 'domestic'),
|
||||||
loadTraitNames([general.special2Code], 'war'),
|
loadTraitNames([general.special2Code], 'war'),
|
||||||
|
loadTraitNames([nation.typeCode], 'nation'),
|
||||||
|
loadCrewTypeDisplayNames(worldState, ctx.profile.id),
|
||||||
|
loadItemDisplayNames([general.horseCode, general.weaponCode, general.bookCode, general.itemCode]),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const metaRecord = asRecord(general.meta);
|
const metaRecord = asRecord(general.meta);
|
||||||
const worldConfig = asRecord(worldState?.config);
|
const worldConfig = asRecord(worldState?.config);
|
||||||
const constValues = asRecord(worldConfig.const ?? worldConfig.consts);
|
const constValues = asRecord(worldConfig.const ?? worldConfig.consts);
|
||||||
|
const maxDedicationLevel = readNumber(constValues.maxDedLevel, 30);
|
||||||
const settings = resolveUserSettings(metaRecord);
|
const settings = resolveUserSettings(metaRecord);
|
||||||
const penalties = resolvePenalty(general.penalty);
|
const penalties = resolvePenalty(general.penalty);
|
||||||
|
const dedicationLevel = readNumber(metaRecord.dedlevel, 0);
|
||||||
|
const itemName = (code: string | null): string | null => {
|
||||||
|
const normalized = normalizeItemCode(code);
|
||||||
|
return normalized ? (itemNames.get(normalized) ?? sanitizeInternalDisplayCode(normalized)) : null;
|
||||||
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
general: {
|
general: {
|
||||||
@@ -315,6 +343,7 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
picture: general.picture,
|
picture: general.picture,
|
||||||
imageServer: general.imageServer,
|
imageServer: general.imageServer,
|
||||||
officerLevel: general.officerLevel,
|
officerLevel: general.officerLevel,
|
||||||
|
officerLevelText: resolveOfficerLevelName(general.officerLevel, nation.level),
|
||||||
stats: {
|
stats: {
|
||||||
leadership: general.leadership,
|
leadership: general.leadership,
|
||||||
strength: general.strength,
|
strength: general.strength,
|
||||||
@@ -331,6 +360,7 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
age: general.age,
|
age: general.age,
|
||||||
turnTime: general.turnTime.toISOString(),
|
turnTime: general.turnTime.toISOString(),
|
||||||
crewTypeId: general.crewTypeId,
|
crewTypeId: general.crewTypeId,
|
||||||
|
crewTypeName: crewTypeNames.get(general.crewTypeId) ?? '-',
|
||||||
traits: {
|
traits: {
|
||||||
personal: resolveTraitDisplayName(general.personalCode, personalityNames),
|
personal: resolveTraitDisplayName(general.personalCode, personalityNames),
|
||||||
specialDomestic: resolveTraitDisplayName(general.specialCode, domesticNames),
|
specialDomestic: resolveTraitDisplayName(general.specialCode, domesticNames),
|
||||||
@@ -338,7 +368,8 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
},
|
},
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: readNumber(metaRecord.explevel, 0),
|
experienceLevel: readNumber(metaRecord.explevel, 0),
|
||||||
dedicationLevel: readNumber(metaRecord.dedlevel, 0),
|
dedicationLevel,
|
||||||
|
dedicationText: resolveDedicationLevelName(dedicationLevel, maxDedicationLevel),
|
||||||
statExperience: {
|
statExperience: {
|
||||||
leadership: readNumber(metaRecord.leadership_exp, 0),
|
leadership: readNumber(metaRecord.leadership_exp, 0),
|
||||||
strength: readNumber(metaRecord.strength_exp, 0),
|
strength: readNumber(metaRecord.strength_exp, 0),
|
||||||
@@ -353,6 +384,12 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
book: normalizeItemCode(general.bookCode),
|
book: normalizeItemCode(general.bookCode),
|
||||||
item: normalizeItemCode(general.itemCode),
|
item: normalizeItemCode(general.itemCode),
|
||||||
},
|
},
|
||||||
|
itemNames: {
|
||||||
|
horse: itemName(general.horseCode),
|
||||||
|
weapon: itemName(general.weaponCode),
|
||||||
|
book: itemName(general.bookCode),
|
||||||
|
item: itemName(general.itemCode),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
iconChoices: ctx.auth?.user.canUseGeneralPicture === false ? [] : (ctx.auth?.user.icons ?? []),
|
iconChoices: ctx.auth?.user.canUseGeneralPicture === false ? [] : (ctx.auth?.user.icons ?? []),
|
||||||
canChangeIcon: general.npcState === 0 && ctx.auth?.user.canUseGeneralPicture !== false,
|
canChangeIcon: general.npcState === 0 && ctx.auth?.user.canUseGeneralPicture !== false,
|
||||||
@@ -360,8 +397,23 @@ export const getGeneralContext = async (ctx: GameApiContext) => {
|
|||||||
typeof metaRecord.generalIconChangedAt === 'string'
|
typeof metaRecord.generalIconChangedAt === 'string'
|
||||||
? new Date(new Date(metaRecord.generalIconChangedAt).getTime() + 24 * 60 * 60 * 1000).toISOString()
|
? new Date(new Date(metaRecord.generalIconChangedAt).getTime() + 24 * 60 * 60 * 1000).toISOString()
|
||||||
: null,
|
: null,
|
||||||
city,
|
city: city
|
||||||
nation,
|
? {
|
||||||
|
...city,
|
||||||
|
levelName: resolveCityLevelName(city.level),
|
||||||
|
regionName: resolveRegionName(city.region),
|
||||||
|
nationName: city.nationId > 0 ? (cityNation?.name ?? '-') : '공백지',
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
nation: {
|
||||||
|
...nation,
|
||||||
|
levelName: resolveNationLevelName(nation.level),
|
||||||
|
typeName:
|
||||||
|
nation.id === 0
|
||||||
|
? '해당 없음'
|
||||||
|
: (nationTypeNames.get(nation.typeCode)?.name ?? sanitizeInternalDisplayCode(nation.typeCode)),
|
||||||
|
capitalCityName: nation.id === 0 ? null : (capitalCity?.name ?? null),
|
||||||
|
},
|
||||||
settings,
|
settings,
|
||||||
penalties,
|
penalties,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,8 +4,15 @@ import { asRecord } from '@sammo-ts/common';
|
|||||||
import { LogCategory } from '@sammo-ts/logic';
|
import { LogCategory } from '@sammo-ts/logic';
|
||||||
|
|
||||||
import { accessAuthedProcedure } from '../../../trpc.js';
|
import { accessAuthedProcedure } from '../../../trpc.js';
|
||||||
|
import {
|
||||||
|
loadCrewTypeDisplayNames,
|
||||||
|
loadItemDisplayNames,
|
||||||
|
resolveDedicationLevelName,
|
||||||
|
resolveOfficerLevelName,
|
||||||
|
sanitizeInternalDisplayCode,
|
||||||
|
} from '../../../services/gameDisplayNames.js';
|
||||||
import { getMyGeneral } from '../../shared/general.js';
|
import { getMyGeneral } from '../../shared/general.js';
|
||||||
import { assertNationAccess, formatDateTime, resolveNationPermission } from '../shared.js';
|
import { assertNationAccess, formatDateTime, loadTraitNames, resolveNationPermission } from '../shared.js';
|
||||||
|
|
||||||
export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
||||||
const me = await getMyGeneral(ctx);
|
const me = await getMyGeneral(ctx);
|
||||||
@@ -98,6 +105,36 @@ export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
typeof constValues.upgradeLimit === 'number' && Number.isFinite(constValues.upgradeLimit)
|
typeof constValues.upgradeLimit === 'number' && Number.isFinite(constValues.upgradeLimit)
|
||||||
? constValues.upgradeLimit
|
? constValues.upgradeLimit
|
||||||
: 30;
|
: 30;
|
||||||
|
const maxDedicationLevel =
|
||||||
|
typeof constValues.maxDedLevel === 'number' && Number.isFinite(constValues.maxDedLevel)
|
||||||
|
? Math.max(0, Math.trunc(constValues.maxDedLevel))
|
||||||
|
: 30;
|
||||||
|
const [personalityNames, domesticNames, warNames, crewTypeNames, itemNames] = await Promise.all([
|
||||||
|
loadTraitNames(
|
||||||
|
generalRows.map((general) => general.personalCode),
|
||||||
|
'personality'
|
||||||
|
),
|
||||||
|
loadTraitNames(
|
||||||
|
generalRows.map((general) => general.specialCode),
|
||||||
|
'domestic'
|
||||||
|
),
|
||||||
|
loadTraitNames(
|
||||||
|
generalRows.map((general) => general.special2Code),
|
||||||
|
'war'
|
||||||
|
),
|
||||||
|
loadCrewTypeDisplayNames(worldState, ctx.profile.id),
|
||||||
|
loadItemDisplayNames(
|
||||||
|
generalRows.flatMap((general) => [
|
||||||
|
general.weaponCode,
|
||||||
|
general.bookCode,
|
||||||
|
general.horseCode,
|
||||||
|
general.itemCode,
|
||||||
|
])
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
const traitName = (code: string, names: Awaited<ReturnType<typeof loadTraitNames>>): string =>
|
||||||
|
names.get(code)?.name ?? sanitizeInternalDisplayCode(code);
|
||||||
|
const itemName = (code: string): string => itemNames.get(code) ?? sanitizeInternalDisplayCode(code);
|
||||||
|
|
||||||
const generals = generalRows.map((general) => {
|
const generals = generalRows.map((general) => {
|
||||||
const meta =
|
const meta =
|
||||||
@@ -108,6 +145,11 @@ export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
const value = meta[key];
|
const value = meta[key];
|
||||||
return typeof value === 'number' && Number.isFinite(value) ? value : 0;
|
return typeof value === 'number' && Number.isFinite(value) ? value : 0;
|
||||||
};
|
};
|
||||||
|
const storedDedicationLevel = metaNumber('dedlevel');
|
||||||
|
const dedicationLevel =
|
||||||
|
storedDedicationLevel > 0
|
||||||
|
? storedDedicationLevel
|
||||||
|
: Math.max(0, Math.min(Math.ceil(Math.sqrt(general.dedication) / 10), maxDedicationLevel));
|
||||||
return {
|
return {
|
||||||
id: general.id,
|
id: general.id,
|
||||||
name: general.name,
|
name: general.name,
|
||||||
@@ -115,6 +157,7 @@ export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
imageServer: general.imageServer,
|
imageServer: general.imageServer,
|
||||||
npcState: general.npcState,
|
npcState: general.npcState,
|
||||||
officerLevel: general.officerLevel,
|
officerLevel: general.officerLevel,
|
||||||
|
officerLevelText: resolveOfficerLevelName(general.officerLevel, nation.level),
|
||||||
cityId: general.cityId,
|
cityId: general.cityId,
|
||||||
turnTime: formatDateTime(general.turnTime),
|
turnTime: formatDateTime(general.turnTime),
|
||||||
recentWar: formatDateTime(general.recentWarTime),
|
recentWar: formatDateTime(general.recentWarTime),
|
||||||
@@ -134,19 +177,28 @@ export const getBattleCenter = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
atmos: general.atmos,
|
atmos: general.atmos,
|
||||||
age: general.age,
|
age: general.age,
|
||||||
crewTypeId: general.crewTypeId,
|
crewTypeId: general.crewTypeId,
|
||||||
|
crewTypeName: crewTypeNames.get(general.crewTypeId) ?? '-',
|
||||||
equipment: {
|
equipment: {
|
||||||
weapon: general.weaponCode,
|
weapon: general.weaponCode,
|
||||||
book: general.bookCode,
|
book: general.bookCode,
|
||||||
horse: general.horseCode,
|
horse: general.horseCode,
|
||||||
item: general.itemCode,
|
item: general.itemCode,
|
||||||
},
|
},
|
||||||
|
equipmentNames: {
|
||||||
|
weapon: itemName(general.weaponCode),
|
||||||
|
book: itemName(general.bookCode),
|
||||||
|
horse: itemName(general.horseCode),
|
||||||
|
item: itemName(general.itemCode),
|
||||||
|
},
|
||||||
traits: {
|
traits: {
|
||||||
personal: general.personalCode,
|
personal: traitName(general.personalCode, personalityNames),
|
||||||
specialDomestic: general.specialCode,
|
specialDomestic: traitName(general.specialCode, domesticNames),
|
||||||
specialWar: general.special2Code,
|
specialWar: traitName(general.special2Code, warNames),
|
||||||
},
|
},
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: metaNumber('explevel'),
|
experienceLevel: metaNumber('explevel'),
|
||||||
|
dedicationLevel,
|
||||||
|
dedicationText: resolveDedicationLevelName(dedicationLevel, maxDedicationLevel),
|
||||||
statExperience: {
|
statExperience: {
|
||||||
leadership: metaNumber('leadership_exp'),
|
leadership: metaNumber('leadership_exp'),
|
||||||
strength: metaNumber('strength_exp'),
|
strength: metaNumber('strength_exp'),
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import { TRPCError } from '@trpc/server';
|
import { TRPCError } from '@trpc/server';
|
||||||
|
import { asNumber, asRecord } from '@sammo-ts/common';
|
||||||
|
|
||||||
import { accessAuthedProcedure } from '../../../trpc.js';
|
import { accessAuthedProcedure } from '../../../trpc.js';
|
||||||
|
import { resolveDedicationLevelName, sanitizeInternalDisplayCode } from '../../../services/gameDisplayNames.js';
|
||||||
import { getMyGeneral } from '../../shared/general.js';
|
import { getMyGeneral } from '../../shared/general.js';
|
||||||
import {
|
import {
|
||||||
assertNationAccess,
|
assertNationAccess,
|
||||||
@@ -15,8 +17,8 @@ const experienceLevel = (experience: number): number =>
|
|||||||
0,
|
0,
|
||||||
Math.min(100, experience < 1000 ? Math.floor(experience / 100) : Math.floor(Math.sqrt(experience / 10)))
|
Math.min(100, experience < 1000 ? Math.floor(experience / 100) : Math.floor(Math.sqrt(experience / 10)))
|
||||||
);
|
);
|
||||||
const dedicationLevel = (dedication: number): number =>
|
const dedicationLevel = (dedication: number, maxLevel: number): number =>
|
||||||
Math.max(0, Math.min(10, Math.ceil(Math.sqrt(dedication) / 10)));
|
Math.max(0, Math.min(maxLevel, Math.ceil(Math.sqrt(dedication) / 10)));
|
||||||
|
|
||||||
export const getGeneralList = accessAuthedProcedure.query(async ({ ctx }) => {
|
export const getGeneralList = accessAuthedProcedure.query(async ({ ctx }) => {
|
||||||
const general = await getMyGeneral(ctx);
|
const general = await getMyGeneral(ctx);
|
||||||
@@ -85,14 +87,22 @@ export const getGeneralList = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
const accessByGeneral = new Map(accessRows.map((entry) => [entry.generalId, entry.refreshScoreTotal]));
|
const accessByGeneral = new Map(accessRows.map((entry) => [entry.generalId, entry.refreshScoreTotal]));
|
||||||
const nationTrait = (await loadTraitNames([nation.typeCode], 'nation')).get(nation.typeCode);
|
const nationTrait = (await loadTraitNames([nation.typeCode], 'nation')).get(nation.typeCode);
|
||||||
const permission = resolveNationPermission(general, nation.meta, true);
|
const permission = resolveNationPermission(general, nation.meta, true);
|
||||||
|
const config = asRecord(worldState?.config);
|
||||||
|
const maxDedicationLevel = Math.max(0, Math.trunc(asNumber(asRecord(config.const).maxDedLevel, 30)));
|
||||||
const visibleList = list.map((entry) => {
|
const visibleList = list.map((entry) => {
|
||||||
|
const entryDedicationLevel = dedicationLevel(entry.dedication, maxDedicationLevel);
|
||||||
|
const dedicationDisplay = {
|
||||||
|
dedicationLevel: entryDedicationLevel,
|
||||||
|
dedicationText: resolveDedicationLevelName(entryDedicationLevel, maxDedicationLevel),
|
||||||
|
bill: entryDedicationLevel * 200 + 400,
|
||||||
|
};
|
||||||
const { permission: _targetPermission, ...safeEntry } = entry;
|
const { permission: _targetPermission, ...safeEntry } = entry;
|
||||||
if (permission >= 1) {
|
if (permission >= 1) {
|
||||||
return {
|
return {
|
||||||
...safeEntry,
|
...safeEntry,
|
||||||
refreshScoreTotal: accessByGeneral.get(entry.id) ?? 0,
|
refreshScoreTotal: accessByGeneral.get(entry.id) ?? 0,
|
||||||
experienceLevel: experienceLevel(entry.experience),
|
experienceLevel: experienceLevel(entry.experience),
|
||||||
dedicationLevel: dedicationLevel(entry.dedication),
|
...dedicationDisplay,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
const { crew: _crew, experience: _experience, dedication: _dedication, ...visible } = safeEntry;
|
const { crew: _crew, experience: _experience, dedication: _dedication, ...visible } = safeEntry;
|
||||||
@@ -105,7 +115,7 @@ export const getGeneralList = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
officerCity: 0,
|
officerCity: 0,
|
||||||
officerCityName: null,
|
officerCityName: null,
|
||||||
experienceLevel: experienceLevel(entry.experience),
|
experienceLevel: experienceLevel(entry.experience),
|
||||||
dedicationLevel: dedicationLevel(entry.dedication),
|
...dedicationDisplay,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -118,7 +128,7 @@ export const getGeneralList = accessAuthedProcedure.query(async ({ ctx }) => {
|
|||||||
typeCode: nation.typeCode,
|
typeCode: nation.typeCode,
|
||||||
type: {
|
type: {
|
||||||
key: nation.typeCode,
|
key: nation.typeCode,
|
||||||
name: nationTrait?.name ?? nation.typeCode,
|
name: nationTrait?.name ?? sanitizeInternalDisplayCode(nation.typeCode),
|
||||||
info: nationTrait?.info ?? '',
|
info: nationTrait?.info ?? '',
|
||||||
},
|
},
|
||||||
capitalCityId: nation.capitalCityId ?? 0,
|
capitalCityId: nation.capitalCityId ?? 0,
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ import {
|
|||||||
|
|
||||||
import type { GameApiContext, InputJsonValue, WorldStateRow } from '../../context.js';
|
import type { GameApiContext, InputJsonValue, WorldStateRow } from '../../context.js';
|
||||||
import { purifyNationHtml } from '../../security/nationHtml.js';
|
import { purifyNationHtml } from '../../security/nationHtml.js';
|
||||||
|
import { sanitizeInternalDisplayCode } from '../../services/gameDisplayNames.js';
|
||||||
import { resolveSecretPermission } from '../shared/secretPermission.js';
|
import { resolveSecretPermission } from '../shared/secretPermission.js';
|
||||||
|
|
||||||
export type PermissionKind = 'normal' | 'ambassador' | 'auditor';
|
export type PermissionKind = 'normal' | 'ambassador' | 'auditor';
|
||||||
@@ -313,10 +314,7 @@ export const loadTraitNames = async (keys: Array<string | null>, kind: keyof Tra
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (eventFiltered.length) {
|
if (eventFiltered.length) {
|
||||||
const modules = await loadEventDomesticTraitModules(
|
const modules = await loadEventDomesticTraitModules(eventFiltered, new EventDomesticTraitLoader());
|
||||||
eventFiltered,
|
|
||||||
new EventDomesticTraitLoader()
|
|
||||||
);
|
|
||||||
for (const module of modules) {
|
for (const module of modules) {
|
||||||
cache.set(module.key, { name: module.name, info: module.info ?? '' });
|
cache.set(module.key, { name: module.name, info: module.info ?? '' });
|
||||||
}
|
}
|
||||||
@@ -513,21 +511,21 @@ export const mapGeneralList = async (
|
|||||||
personality: personalityKey
|
personality: personalityKey
|
||||||
? {
|
? {
|
||||||
key: personalityKey,
|
key: personalityKey,
|
||||||
name: personalityMap.get(personalityKey)?.name ?? personalityKey,
|
name: personalityMap.get(personalityKey)?.name ?? sanitizeInternalDisplayCode(personalityKey),
|
||||||
info: personalityMap.get(personalityKey)?.info ?? '',
|
info: personalityMap.get(personalityKey)?.info ?? '',
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
specialDomestic: domesticKey
|
specialDomestic: domesticKey
|
||||||
? {
|
? {
|
||||||
key: domesticKey,
|
key: domesticKey,
|
||||||
name: domesticMap.get(domesticKey)?.name ?? domesticKey,
|
name: domesticMap.get(domesticKey)?.name ?? sanitizeInternalDisplayCode(domesticKey),
|
||||||
info: domesticMap.get(domesticKey)?.info ?? '',
|
info: domesticMap.get(domesticKey)?.info ?? '',
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
specialWar: warKey
|
specialWar: warKey
|
||||||
? {
|
? {
|
||||||
key: warKey,
|
key: warKey,
|
||||||
name: warMap.get(warKey)?.name ?? warKey,
|
name: warMap.get(warKey)?.name ?? sanitizeInternalDisplayCode(warKey),
|
||||||
info: warMap.get(warKey)?.info ?? '',
|
info: warMap.get(warKey)?.info ?? '',
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { zWorldStateConfig, zWorldStateMeta } from '../../context.js';
|
|||||||
import { loadMapLayout } from '../../maps/mapLayout.js';
|
import { loadMapLayout } from '../../maps/mapLayout.js';
|
||||||
import { loadPublicMap } from '../../maps/worldMap.js';
|
import { loadPublicMap } from '../../maps/worldMap.js';
|
||||||
import { accessPages, recordGeneralAccess } from '../../services/generalAccess.js';
|
import { accessPages, recordGeneralAccess } from '../../services/generalAccess.js';
|
||||||
|
import { sanitizeInternalDisplayCode } from '../../services/gameDisplayNames.js';
|
||||||
import { accessInputProcedure, procedure, router, sessionActivityProcedure } from '../../trpc.js';
|
import { accessInputProcedure, procedure, router, sessionActivityProcedure } from '../../trpc.js';
|
||||||
import { loadTraitNames } from '../nation/shared.js';
|
import { loadTraitNames } from '../nation/shared.js';
|
||||||
|
|
||||||
@@ -478,174 +479,170 @@ export const publicRouter = router({
|
|||||||
}));
|
}));
|
||||||
}),
|
}),
|
||||||
getNpcList: accessInputProcedure(
|
getNpcList: accessInputProcedure(
|
||||||
z
|
z
|
||||||
.object({
|
.object({
|
||||||
sort: z.number().int().min(1).max(8).catch(1).optional(),
|
sort: z.number().int().min(1).max(8).catch(1).optional(),
|
||||||
includeAllWithToken: z.boolean().optional(),
|
includeAllWithToken: z.boolean().optional(),
|
||||||
})
|
})
|
||||||
.optional()
|
.optional()
|
||||||
)
|
).query(async ({ ctx, input }) => {
|
||||||
.query(async ({ ctx, input }) => {
|
const sort = (input?.sort ?? 1) as NpcListSort;
|
||||||
const sort = (input?.sort ?? 1) as NpcListSort;
|
const includeAllWithToken = input?.includeAllWithToken === true;
|
||||||
const includeAllWithToken = input?.includeAllWithToken === true;
|
if (includeAllWithToken && !ctx.auth) {
|
||||||
if (includeAllWithToken && !ctx.auth) {
|
throw new TRPCError({ code: 'UNAUTHORIZED' });
|
||||||
throw new TRPCError({ code: 'UNAUTHORIZED' });
|
}
|
||||||
}
|
const now = new Date(Math.floor(Date.now() / 1000) * 1000);
|
||||||
const now = new Date(Math.floor(Date.now() / 1000) * 1000);
|
const poolGeneralIds = includeAllWithToken
|
||||||
const poolGeneralIds = includeAllWithToken
|
? []
|
||||||
? []
|
: (
|
||||||
: (
|
await ctx.db.selectPoolEntry.findMany({
|
||||||
await ctx.db.selectPoolEntry.findMany({
|
where: { generalId: { not: null } },
|
||||||
where: { generalId: { not: null } },
|
select: { generalId: true },
|
||||||
select: { generalId: true },
|
})
|
||||||
})
|
).flatMap(({ generalId }) => (generalId === null ? [] : [generalId]));
|
||||||
).flatMap(({ generalId }) => (generalId === null ? [] : [generalId]));
|
const [generals, nations, activeTokens, worldState] = await Promise.all([
|
||||||
const [generals, nations, activeTokens, worldState] = await Promise.all([
|
ctx.db.general.findMany({
|
||||||
ctx.db.general.findMany({
|
...(includeAllWithToken
|
||||||
...(includeAllWithToken
|
? {}
|
||||||
? {}
|
: {
|
||||||
: {
|
where: {
|
||||||
where: {
|
OR: [{ npcState: 1 }, { npcState: 0, id: { in: poolGeneralIds } }],
|
||||||
OR: [
|
},
|
||||||
{ npcState: 1 },
|
}),
|
||||||
{ npcState: 0, id: { in: poolGeneralIds } },
|
select: {
|
||||||
],
|
id: true,
|
||||||
},
|
name: true,
|
||||||
}),
|
picture: true,
|
||||||
select: {
|
imageServer: true,
|
||||||
id: true,
|
npcState: true,
|
||||||
name: true,
|
age: true,
|
||||||
picture: true,
|
officerLevel: true,
|
||||||
imageServer: true,
|
nationId: true,
|
||||||
npcState: true,
|
leadership: true,
|
||||||
age: true,
|
strength: true,
|
||||||
officerLevel: true,
|
intel: true,
|
||||||
nationId: true,
|
experience: true,
|
||||||
leadership: true,
|
dedication: true,
|
||||||
strength: true,
|
personalCode: true,
|
||||||
intel: true,
|
specialCode: true,
|
||||||
experience: true,
|
special2Code: true,
|
||||||
dedication: true,
|
meta: true,
|
||||||
personalCode: true,
|
},
|
||||||
specialCode: true,
|
orderBy: { id: 'asc' },
|
||||||
special2Code: true,
|
}),
|
||||||
meta: true,
|
ctx.db.nation.findMany({
|
||||||
},
|
select: { id: true, name: true, level: true },
|
||||||
orderBy: { id: 'asc' },
|
}),
|
||||||
}),
|
includeAllWithToken
|
||||||
ctx.db.nation.findMany({
|
? ctx.db.npcSelectionToken.findMany({
|
||||||
select: { id: true, name: true, level: true },
|
where: { validUntil: { gte: now } },
|
||||||
}),
|
select: { pickResult: true },
|
||||||
includeAllWithToken
|
})
|
||||||
? ctx.db.npcSelectionToken.findMany({
|
: [],
|
||||||
where: { validUntil: { gte: now } },
|
includeAllWithToken
|
||||||
select: { pickResult: true },
|
? ctx.db.worldState.findFirst({
|
||||||
})
|
select: { config: true },
|
||||||
: [],
|
})
|
||||||
includeAllWithToken
|
: null,
|
||||||
? ctx.db.worldState.findFirst({
|
]);
|
||||||
select: { config: true },
|
|
||||||
})
|
|
||||||
: null,
|
|
||||||
]);
|
|
||||||
|
|
||||||
const personalityKeys = generals.map((general) => normalizeTraitKey(general.personalCode));
|
const personalityKeys = generals.map((general) => normalizeTraitKey(general.personalCode));
|
||||||
const domesticKeys = generals.map((general) => normalizeTraitKey(general.specialCode));
|
const domesticKeys = generals.map((general) => normalizeTraitKey(general.specialCode));
|
||||||
const warKeys = generals.map((general) => normalizeTraitKey(general.special2Code));
|
const warKeys = generals.map((general) => normalizeTraitKey(general.special2Code));
|
||||||
const [personalityMap, domesticMap, warMap] = await Promise.all([
|
const [personalityMap, domesticMap, warMap] = await Promise.all([
|
||||||
loadTraitNames(personalityKeys, 'personality'),
|
loadTraitNames(personalityKeys, 'personality'),
|
||||||
loadTraitNames(domesticKeys, 'domestic'),
|
loadTraitNames(domesticKeys, 'domestic'),
|
||||||
loadTraitNames(warKeys, 'war'),
|
loadTraitNames(warKeys, 'war'),
|
||||||
]);
|
]);
|
||||||
const nationMap = new Map(nations.map((nation) => [nation.id, nation]));
|
const nationMap = new Map(nations.map((nation) => [nation.id, nation]));
|
||||||
const worldConfig = asRecord(worldState?.config);
|
const worldConfig = asRecord(worldState?.config);
|
||||||
const worldConstants = asRecord(worldConfig.const);
|
const worldConstants = asRecord(worldConfig.const);
|
||||||
const maxLevel = Math.max(0, Math.floor(asNumber(worldConstants.maxLevel, 255)));
|
const maxLevel = Math.max(0, Math.floor(asNumber(worldConstants.maxLevel, 255)));
|
||||||
const maxDedLevel = Math.max(0, Math.floor(asNumber(worldConstants.maxDedLevel, 30)));
|
const maxDedLevel = Math.max(0, Math.floor(asNumber(worldConstants.maxDedLevel, 30)));
|
||||||
|
|
||||||
// Legacy a_npcList.php shows select_pool humans first and possessed npc=1 rows.
|
// Legacy a_npcList.php shows select_pool humans first and possessed npc=1 rows.
|
||||||
// Unpossessed npc=2 candidates belong only to the token-aware selection screen.
|
// Unpossessed npc=2 candidates belong only to the token-aware selection screen.
|
||||||
// selection list instead consumes the raw id-ordered full list before its own comparator.
|
// selection list instead consumes the raw id-ordered full list before its own comparator.
|
||||||
const sourceRows = includeAllWithToken
|
const sourceRows = includeAllWithToken
|
||||||
? generals
|
? generals
|
||||||
: [
|
: [
|
||||||
...generals.filter((general) => general.npcState === 0),
|
...generals.filter((general) => general.npcState === 0),
|
||||||
...generals.filter((general) => general.npcState === 1),
|
...generals.filter((general) => general.npcState === 1),
|
||||||
];
|
];
|
||||||
const rows = sourceRows.map((general) => {
|
const rows = sourceRows.map((general) => {
|
||||||
const meta = asRecord(general.meta);
|
const meta = asRecord(general.meta);
|
||||||
const personalityKey = normalizeTraitKey(general.personalCode);
|
const personalityKey = normalizeTraitKey(general.personalCode);
|
||||||
const domesticKey = normalizeTraitKey(general.specialCode);
|
const domesticKey = normalizeTraitKey(general.specialCode);
|
||||||
const warKey = normalizeTraitKey(general.special2Code);
|
const warKey = normalizeTraitKey(general.special2Code);
|
||||||
const ownerName =
|
const ownerName =
|
||||||
general.npcState === 1
|
general.npcState === 1
|
||||||
? typeof meta.owner_name === 'string'
|
? typeof meta.owner_name === 'string'
|
||||||
? meta.owner_name
|
? meta.owner_name
|
||||||
: typeof meta.ownerName === 'string'
|
: typeof meta.ownerName === 'string'
|
||||||
? meta.ownerName
|
? meta.ownerName
|
||||||
: ''
|
: ''
|
||||||
: '';
|
: '';
|
||||||
|
|
||||||
return {
|
|
||||||
id: general.id,
|
|
||||||
name: general.name,
|
|
||||||
picture: general.picture,
|
|
||||||
imageServer: general.imageServer,
|
|
||||||
npcState: general.npcState,
|
|
||||||
ownerName,
|
|
||||||
age: general.age,
|
|
||||||
level: includeAllWithToken
|
|
||||||
? resolveExperienceLevel(general.experience, maxLevel)
|
|
||||||
: readFiniteMetaNumber(meta, 'explevel'),
|
|
||||||
officerLevel: general.officerLevel,
|
|
||||||
killturn: readFiniteMetaNumber(meta, 'killturn'),
|
|
||||||
nationId: general.nationId,
|
|
||||||
nationName: nationMap.get(general.nationId)?.name ?? '-',
|
|
||||||
nationLevel: nationMap.get(general.nationId)?.level ?? 0,
|
|
||||||
personality: personalityKey
|
|
||||||
? {
|
|
||||||
key: personalityKey,
|
|
||||||
name: personalityMap.get(personalityKey)?.name ?? personalityKey,
|
|
||||||
info: personalityMap.get(personalityKey)?.info ?? '',
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
specialDomestic: domesticKey
|
|
||||||
? {
|
|
||||||
key: domesticKey,
|
|
||||||
name: domesticMap.get(domesticKey)?.name ?? domesticKey,
|
|
||||||
info: domesticMap.get(domesticKey)?.info ?? '',
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
specialWar: warKey
|
|
||||||
? {
|
|
||||||
key: warKey,
|
|
||||||
name: warMap.get(warKey)?.name ?? warKey,
|
|
||||||
info: warMap.get(warKey)?.info ?? '',
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
statTotal: general.leadership + general.strength + general.intel,
|
|
||||||
leadership: general.leadership,
|
|
||||||
strength: general.strength,
|
|
||||||
intelligence: general.intel,
|
|
||||||
experience: general.experience,
|
|
||||||
experienceText: resolveHonorText(general.experience),
|
|
||||||
dedication: general.dedication,
|
|
||||||
dedicationText: resolveDedicationText(general.dedication, maxDedLevel),
|
|
||||||
};
|
|
||||||
});
|
|
||||||
const tokenKeepCounts = Object.fromEntries(
|
|
||||||
activeTokens.flatMap((token) =>
|
|
||||||
Object.entries(asRecord(token.pickResult)).flatMap(([generalId, value]) => {
|
|
||||||
const keepCount = asNumber(asRecord(value).keepCount, Number.NaN);
|
|
||||||
return Number.isFinite(keepCount) ? [[generalId, Math.max(0, Math.floor(keepCount))]] : [];
|
|
||||||
})
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
sort,
|
id: general.id,
|
||||||
generals: includeAllWithToken ? rows : sortNpcList(rows, sort),
|
name: general.name,
|
||||||
tokenKeepCounts,
|
picture: general.picture,
|
||||||
|
imageServer: general.imageServer,
|
||||||
|
npcState: general.npcState,
|
||||||
|
ownerName,
|
||||||
|
age: general.age,
|
||||||
|
level: includeAllWithToken
|
||||||
|
? resolveExperienceLevel(general.experience, maxLevel)
|
||||||
|
: readFiniteMetaNumber(meta, 'explevel'),
|
||||||
|
officerLevel: general.officerLevel,
|
||||||
|
killturn: readFiniteMetaNumber(meta, 'killturn'),
|
||||||
|
nationId: general.nationId,
|
||||||
|
nationName: nationMap.get(general.nationId)?.name ?? '-',
|
||||||
|
nationLevel: nationMap.get(general.nationId)?.level ?? 0,
|
||||||
|
personality: personalityKey
|
||||||
|
? {
|
||||||
|
key: personalityKey,
|
||||||
|
name: personalityMap.get(personalityKey)?.name ?? sanitizeInternalDisplayCode(personalityKey),
|
||||||
|
info: personalityMap.get(personalityKey)?.info ?? '',
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
specialDomestic: domesticKey
|
||||||
|
? {
|
||||||
|
key: domesticKey,
|
||||||
|
name: domesticMap.get(domesticKey)?.name ?? sanitizeInternalDisplayCode(domesticKey),
|
||||||
|
info: domesticMap.get(domesticKey)?.info ?? '',
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
specialWar: warKey
|
||||||
|
? {
|
||||||
|
key: warKey,
|
||||||
|
name: warMap.get(warKey)?.name ?? sanitizeInternalDisplayCode(warKey),
|
||||||
|
info: warMap.get(warKey)?.info ?? '',
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
statTotal: general.leadership + general.strength + general.intel,
|
||||||
|
leadership: general.leadership,
|
||||||
|
strength: general.strength,
|
||||||
|
intelligence: general.intel,
|
||||||
|
experience: general.experience,
|
||||||
|
experienceText: resolveHonorText(general.experience),
|
||||||
|
dedication: general.dedication,
|
||||||
|
dedicationText: resolveDedicationText(general.dedication, maxDedLevel),
|
||||||
};
|
};
|
||||||
}),
|
});
|
||||||
|
const tokenKeepCounts = Object.fromEntries(
|
||||||
|
activeTokens.flatMap((token) =>
|
||||||
|
Object.entries(asRecord(token.pickResult)).flatMap(([generalId, value]) => {
|
||||||
|
const keepCount = asNumber(asRecord(value).keepCount, Number.NaN);
|
||||||
|
return Number.isFinite(keepCount) ? [[generalId, Math.max(0, Math.floor(keepCount))]] : [];
|
||||||
|
})
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
sort,
|
||||||
|
generals: includeAllWithToken ? rows : sortNpcList(rows, sort),
|
||||||
|
tokenKeepCounts,
|
||||||
|
};
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { asRecord } from '@sammo-ts/common';
|
|||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
import { accessAuthedInputProcedure, authedProcedure } from '../../trpc.js';
|
import { accessAuthedInputProcedure, authedProcedure } from '../../trpc.js';
|
||||||
|
import { sanitizeInternalDisplayCode } from '../../services/gameDisplayNames.js';
|
||||||
import { loadTraitNames } from '../nation/shared.js';
|
import { loadTraitNames } from '../nation/shared.js';
|
||||||
import { getMyGeneral } from '../shared/general.js';
|
import { getMyGeneral } from '../shared/general.js';
|
||||||
import { resolveSecretPermission } from '../shared/secretPermission.js';
|
import { resolveSecretPermission } from '../shared/secretPermission.js';
|
||||||
@@ -172,7 +173,7 @@ export const getNationDirectory = authedProcedure.query(async ({ ctx }) => {
|
|||||||
level: nation.level,
|
level: nation.level,
|
||||||
type: {
|
type: {
|
||||||
key: nation.typeCode,
|
key: nation.typeCode,
|
||||||
name: nationTypeNames.get(nation.typeCode)?.name ?? nation.typeCode,
|
name: nationTypeNames.get(nation.typeCode)?.name ?? sanitizeInternalDisplayCode(nation.typeCode),
|
||||||
},
|
},
|
||||||
power: readMetaNumber(nation.meta, 'power'),
|
power: readMetaNumber(nation.meta, 'power'),
|
||||||
capitalCityId: nation.capitalCityId ?? 0,
|
capitalCityId: nation.capitalCityId ?? 0,
|
||||||
|
|||||||
@@ -0,0 +1,138 @@
|
|||||||
|
import { asRecord } from '@sammo-ts/common';
|
||||||
|
import { isItemKey, ItemLoader } from '@sammo-ts/logic';
|
||||||
|
import { loadUnitSetDefinitionByName } from '@sammo-ts/game-engine/scenario/unitSetLoader.js';
|
||||||
|
|
||||||
|
import type { WorldStateRow } from '../context.js';
|
||||||
|
|
||||||
|
const NATION_LEVEL_NAMES: Record<number, string> = {
|
||||||
|
0: '방랑군',
|
||||||
|
1: '호족',
|
||||||
|
2: '군벌',
|
||||||
|
3: '주자사',
|
||||||
|
4: '주목',
|
||||||
|
5: '공',
|
||||||
|
6: '왕',
|
||||||
|
7: '황제',
|
||||||
|
};
|
||||||
|
|
||||||
|
const CITY_LEVEL_NAMES: Record<number, string> = {
|
||||||
|
1: '수',
|
||||||
|
2: '진',
|
||||||
|
3: '관',
|
||||||
|
4: '이',
|
||||||
|
5: '소',
|
||||||
|
6: '중',
|
||||||
|
7: '대',
|
||||||
|
8: '특',
|
||||||
|
};
|
||||||
|
|
||||||
|
const REGION_NAMES: Record<number, string> = {
|
||||||
|
1: '하북',
|
||||||
|
2: '중원',
|
||||||
|
3: '서북',
|
||||||
|
4: '서촉',
|
||||||
|
5: '남중',
|
||||||
|
6: '초',
|
||||||
|
7: '오월',
|
||||||
|
8: '동이',
|
||||||
|
};
|
||||||
|
|
||||||
|
const OFFICER_LEVEL_NAMES: Record<number, string> = {
|
||||||
|
12: '군주',
|
||||||
|
11: '참모',
|
||||||
|
10: '제1장군',
|
||||||
|
9: '제1모사',
|
||||||
|
8: '제2장군',
|
||||||
|
7: '제2모사',
|
||||||
|
6: '제3장군',
|
||||||
|
5: '제3모사',
|
||||||
|
4: '태수',
|
||||||
|
3: '군사',
|
||||||
|
2: '종사',
|
||||||
|
1: '일반',
|
||||||
|
0: '재야',
|
||||||
|
};
|
||||||
|
|
||||||
|
const OFFICER_LEVEL_NAMES_BY_NATION_LEVEL: Record<number, Record<number, string>> = {
|
||||||
|
7: { 12: '황제', 11: '승상', 10: '표기장군', 9: '사공', 8: '거기장군', 7: '태위', 6: '위장군', 5: '사도' },
|
||||||
|
6: { 12: '왕', 11: '광록훈', 10: '좌장군', 9: '상서령', 8: '우장군', 7: '중서령', 6: '전장군', 5: '비서령' },
|
||||||
|
5: { 12: '공', 11: '광록대부', 10: '안국장군', 9: '집금오', 8: '파로장군', 7: '소부' },
|
||||||
|
4: { 12: '주목', 11: '태사령', 10: '아문장군', 9: '낭중', 8: '호군', 7: '종사중랑' },
|
||||||
|
3: { 12: '주자사', 11: '주부', 10: '편장군', 9: '간의대부' },
|
||||||
|
2: { 12: '군벌', 11: '참모', 10: '비장군', 9: '부참모' },
|
||||||
|
1: { 12: '영주', 11: '참모' },
|
||||||
|
0: { 12: '두목', 11: '부두목' },
|
||||||
|
};
|
||||||
|
|
||||||
|
export const sanitizeInternalDisplayCode = (value: string | null | undefined): string => {
|
||||||
|
if (!value || value === 'None') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
if (/^\d+$/u.test(value)) {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return value.replace(/^che_(?:event_)?/u, '');
|
||||||
|
};
|
||||||
|
|
||||||
|
export const resolveNationLevelName = (level: number): string => NATION_LEVEL_NAMES[level] ?? '-';
|
||||||
|
|
||||||
|
export const resolveCityLevelName = (level: number): string => CITY_LEVEL_NAMES[level] ?? '-';
|
||||||
|
|
||||||
|
export const resolveRegionName = (region: number): string => REGION_NAMES[region] ?? '-';
|
||||||
|
|
||||||
|
export const resolveOfficerLevelName = (officerLevel: number, nationLevel?: number): string => {
|
||||||
|
if (officerLevel < 5) {
|
||||||
|
return OFFICER_LEVEL_NAMES[officerLevel] ?? '-';
|
||||||
|
}
|
||||||
|
if (nationLevel === undefined) {
|
||||||
|
return OFFICER_LEVEL_NAMES[officerLevel] ?? '-';
|
||||||
|
}
|
||||||
|
return OFFICER_LEVEL_NAMES_BY_NATION_LEVEL[nationLevel]?.[officerLevel] ?? '-';
|
||||||
|
};
|
||||||
|
|
||||||
|
export const resolveDedicationLevelName = (dedicationLevel: number, maxDedicationLevel: number): string => {
|
||||||
|
if (dedicationLevel <= 0) {
|
||||||
|
return '무품관';
|
||||||
|
}
|
||||||
|
return `${Math.max(1, maxDedicationLevel - dedicationLevel + 1)}품관`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const resolveUnitSetName = (world: Pick<WorldStateRow, 'config'> | null, fallback: string): string => {
|
||||||
|
const config = asRecord(world?.config);
|
||||||
|
const environment = asRecord(config.environment ?? config.map);
|
||||||
|
return typeof environment.unitSet === 'string' && environment.unitSet.trim() ? environment.unitSet : fallback;
|
||||||
|
};
|
||||||
|
|
||||||
|
const crewTypeNameCache = new Map<string, Promise<Map<number, string>>>();
|
||||||
|
|
||||||
|
export const loadCrewTypeDisplayNames = (
|
||||||
|
world: Pick<WorldStateRow, 'config'> | null,
|
||||||
|
fallback: string
|
||||||
|
): Promise<Map<number, string>> => {
|
||||||
|
const unitSetName = resolveUnitSetName(world, fallback);
|
||||||
|
const cached = crewTypeNameCache.get(unitSetName);
|
||||||
|
if (cached) {
|
||||||
|
return cached;
|
||||||
|
}
|
||||||
|
const pending = loadUnitSetDefinitionByName(unitSetName)
|
||||||
|
.then((definition) => new Map((definition.crewTypes ?? []).map((crewType) => [crewType.id, crewType.name])))
|
||||||
|
.catch(() => new Map<number, string>());
|
||||||
|
crewTypeNameCache.set(unitSetName, pending);
|
||||||
|
return pending;
|
||||||
|
};
|
||||||
|
|
||||||
|
const itemLoader = new ItemLoader();
|
||||||
|
|
||||||
|
export const loadItemDisplayNames = async (values: Array<string | null | undefined>): Promise<Map<string, string>> => {
|
||||||
|
const keys = Array.from(new Set(values.filter((value): value is string => Boolean(value) && value !== 'None')));
|
||||||
|
const entries = await Promise.all(
|
||||||
|
keys.map(async (key) => {
|
||||||
|
if (!isItemKey(key)) {
|
||||||
|
return [key, sanitizeInternalDisplayCode(key)] as const;
|
||||||
|
}
|
||||||
|
const item = await itemLoader.load(key).catch(() => null);
|
||||||
|
return [key, item?.name ?? sanitizeInternalDisplayCode(key)] as const;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
return new Map(entries);
|
||||||
|
};
|
||||||
@@ -156,7 +156,8 @@ describe('archive.myPastPlays', () => {
|
|||||||
leadership: 80,
|
leadership: 80,
|
||||||
strength: 70,
|
strength: 70,
|
||||||
officerLevel: 8,
|
officerLevel: 8,
|
||||||
personal: '3',
|
officerLevelText: '제2장군',
|
||||||
|
personal: '-',
|
||||||
historyCount: 2,
|
historyCount: 2,
|
||||||
}),
|
}),
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
@@ -166,9 +167,10 @@ describe('archive.myPastPlays', () => {
|
|||||||
strength: 71,
|
strength: 71,
|
||||||
intel: 61,
|
intel: 61,
|
||||||
officerLevel: 7,
|
officerLevel: 7,
|
||||||
personal: 'che_의리',
|
officerLevelText: '제2모사',
|
||||||
special: 'che_상재',
|
personal: '의리',
|
||||||
special2: 'che_신산',
|
special: '상재',
|
||||||
|
special2: '신산',
|
||||||
historyCount: 1,
|
historyCount: 1,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
|
||||||
|
import {
|
||||||
|
resolveCityLevelName,
|
||||||
|
resolveDedicationLevelName,
|
||||||
|
resolveNationLevelName,
|
||||||
|
resolveOfficerLevelName,
|
||||||
|
resolveRegionName,
|
||||||
|
sanitizeInternalDisplayCode,
|
||||||
|
} from '../src/services/gameDisplayNames.js';
|
||||||
|
|
||||||
|
describe('Ref GUI display names', () => {
|
||||||
|
it('maps nation, city, region, office, and dedication levels to Ref labels', () => {
|
||||||
|
expect(resolveNationLevelName(3)).toBe('주자사');
|
||||||
|
expect(resolveCityLevelName(8)).toBe('특');
|
||||||
|
expect(resolveRegionName(2)).toBe('중원');
|
||||||
|
expect(resolveOfficerLevelName(9, 3)).toBe('간의대부');
|
||||||
|
expect(resolveOfficerLevelName(5, 3)).toBe('-');
|
||||||
|
expect(resolveOfficerLevelName(5)).toBe('제3모사');
|
||||||
|
expect(resolveDedicationLevelName(2, 30)).toBe('29품관');
|
||||||
|
expect(resolveDedicationLevelName(0, 30)).toBe('무품관');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('never exposes internal prefixes or numeric fallback codes', () => {
|
||||||
|
expect(sanitizeInternalDisplayCode('che_event_의병')).toBe('의병');
|
||||||
|
expect(sanitizeInternalDisplayCode('che_법가')).toBe('법가');
|
||||||
|
expect(sanitizeInternalDisplayCode('3')).toBe('-');
|
||||||
|
expect(resolveNationLevelName(99)).toBe('-');
|
||||||
|
expect(resolveCityLevelName(99)).toBe('-');
|
||||||
|
expect(resolveRegionName(99)).toBe('-');
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -248,6 +248,55 @@ describe('in-game my information ownership', () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('returns Ref display names instead of numeric levels and internal codes for the main GUI', async () => {
|
||||||
|
const fixture = createContext({
|
||||||
|
me: buildGeneral({
|
||||||
|
officerLevel: 9,
|
||||||
|
crewTypeId: 1100,
|
||||||
|
horseCode: 'che_명마_03_노새',
|
||||||
|
meta: { explevel: 4, dedlevel: 2 },
|
||||||
|
}),
|
||||||
|
city: {
|
||||||
|
id: 1,
|
||||||
|
name: '업',
|
||||||
|
level: 8,
|
||||||
|
nationId: 1,
|
||||||
|
population: 1_000,
|
||||||
|
populationMax: 2_000,
|
||||||
|
agriculture: 100,
|
||||||
|
agricultureMax: 200,
|
||||||
|
commerce: 100,
|
||||||
|
commerceMax: 200,
|
||||||
|
security: 100,
|
||||||
|
securityMax: 200,
|
||||||
|
trust: 70,
|
||||||
|
trade: 100,
|
||||||
|
defence: 100,
|
||||||
|
defenceMax: 200,
|
||||||
|
wall: 100,
|
||||||
|
wallMax: 200,
|
||||||
|
region: 2,
|
||||||
|
supplyState: 1,
|
||||||
|
frontState: 0,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(appRouter.createCaller(fixture.context).general.me()).resolves.toMatchObject({
|
||||||
|
general: {
|
||||||
|
officerLevelText: '간의대부',
|
||||||
|
crewTypeName: '보병',
|
||||||
|
progression: { experienceLevel: 4, dedicationLevel: 2, dedicationText: '29품관' },
|
||||||
|
itemNames: { horse: '노새(+3)' },
|
||||||
|
},
|
||||||
|
city: { levelName: '특', regionName: '중원', nationName: '위' },
|
||||||
|
nation: {
|
||||||
|
levelName: '주자사',
|
||||||
|
typeName: '법가',
|
||||||
|
capitalCityName: '업',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('returns the Ref-style neutral nation frame and trait display names on the main read model', async () => {
|
it('returns the Ref-style neutral nation frame and trait display names on the main read model', async () => {
|
||||||
const fixture = createContext({
|
const fixture = createContext({
|
||||||
me: buildGeneral({
|
me: buildGeneral({
|
||||||
@@ -542,8 +591,14 @@ describe('battle-center general and user permissions', () => {
|
|||||||
id: 7,
|
id: 7,
|
||||||
picture: 'default.jpg',
|
picture: 'default.jpg',
|
||||||
imageServer: 0,
|
imageServer: 0,
|
||||||
|
officerLevelText: '일반',
|
||||||
|
crewTypeName: '-',
|
||||||
|
equipmentNames: { weapon: '-', book: '-', horse: '-', item: '-' },
|
||||||
|
traits: { personal: '-', specialDomestic: '-', specialWar: '-' },
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: 0,
|
experienceLevel: 0,
|
||||||
|
dedicationLevel: 1,
|
||||||
|
dedicationText: '30품관',
|
||||||
statExperience: { leadership: 0, strength: 0, intelligence: 0 },
|
statExperience: { leadership: 0, strength: 0, intelligence: 0 },
|
||||||
statUpgradeLimit: 20,
|
statUpgradeLimit: 20,
|
||||||
dex: [0, 0, 0, 0, 0],
|
dex: [0, 0, 0, 0, 0],
|
||||||
|
|||||||
@@ -117,6 +117,9 @@ describe('nation general and secret office permissions', () => {
|
|||||||
cityName: null,
|
cityName: null,
|
||||||
troopName: null,
|
troopName: null,
|
||||||
refreshScoreTotal: 10,
|
refreshScoreTotal: 10,
|
||||||
|
dedicationLevel: 1,
|
||||||
|
dedicationText: '30품관',
|
||||||
|
bill: 600,
|
||||||
});
|
});
|
||||||
expect(result.generals[0]).not.toHaveProperty('crew');
|
expect(result.generals[0]).not.toHaveProperty('crew');
|
||||||
await expect(caller.nation.getSecretGeneralList()).rejects.toMatchObject({ code: 'FORBIDDEN' });
|
await expect(caller.nation.getSecretGeneralList()).rejects.toMatchObject({ code: 'FORBIDDEN' });
|
||||||
|
|||||||
@@ -6,10 +6,12 @@ import {
|
|||||||
EventDomesticTraitLoader,
|
EventDomesticTraitLoader,
|
||||||
isEventDomesticTraitKey,
|
isEventDomesticTraitKey,
|
||||||
isPersonalityTraitKey,
|
isPersonalityTraitKey,
|
||||||
|
isWarTraitKey,
|
||||||
LogCategory,
|
LogCategory,
|
||||||
LogScope,
|
LogScope,
|
||||||
PERSONALITY_TRAIT_KEYS,
|
PERSONALITY_TRAIT_KEYS,
|
||||||
simpleSerialize,
|
simpleSerialize,
|
||||||
|
WarTraitLoader,
|
||||||
} from '@sammo-ts/logic';
|
} from '@sammo-ts/logic';
|
||||||
|
|
||||||
import type { DatabaseClient, GamePrisma as GamePrismaTypes } from '@sammo-ts/infra';
|
import type { DatabaseClient, GamePrisma as GamePrismaTypes } from '@sammo-ts/infra';
|
||||||
@@ -78,6 +80,8 @@ export interface SelectPoolCandidateDto {
|
|||||||
specialDomesticName: string;
|
specialDomesticName: string;
|
||||||
specialDomesticInfo: string;
|
specialDomesticInfo: string;
|
||||||
specialWar: string | null;
|
specialWar: string | null;
|
||||||
|
specialWarName: string | null;
|
||||||
|
specialWarInfo: string;
|
||||||
ego: string | null;
|
ego: string | null;
|
||||||
dex: [number, number, number, number, number];
|
dex: [number, number, number, number, number];
|
||||||
imageServer: 0 | 1;
|
imageServer: 0 | 1;
|
||||||
@@ -158,11 +162,16 @@ const candidateWeight = (candidate: SelectPoolCandidateInfo): number =>
|
|||||||
candidate.dex.reduce((sum, value) => sum + value, 0);
|
candidate.dex.reduce((sum, value) => sum + value, 0);
|
||||||
|
|
||||||
const eventDomesticTraitLoader = new EventDomesticTraitLoader();
|
const eventDomesticTraitLoader = new EventDomesticTraitLoader();
|
||||||
|
const warTraitLoader = new WarTraitLoader();
|
||||||
|
|
||||||
const toCandidateDto = async (candidate: SelectPoolCandidateInfo): Promise<SelectPoolCandidateDto> => {
|
const toCandidateDto = async (candidate: SelectPoolCandidateInfo): Promise<SelectPoolCandidateDto> => {
|
||||||
const trait = isEventDomesticTraitKey(candidate.specialDomestic)
|
const trait = isEventDomesticTraitKey(candidate.specialDomestic)
|
||||||
? await eventDomesticTraitLoader.load(candidate.specialDomestic)
|
? await eventDomesticTraitLoader.load(candidate.specialDomestic)
|
||||||
: null;
|
: null;
|
||||||
|
const warTrait =
|
||||||
|
candidate.specialWar && isWarTraitKey(candidate.specialWar)
|
||||||
|
? await warTraitLoader.load(candidate.specialWar)
|
||||||
|
: null;
|
||||||
return {
|
return {
|
||||||
uniqueName: candidate.uniqueName,
|
uniqueName: candidate.uniqueName,
|
||||||
generalName: candidate.generalName,
|
generalName: candidate.generalName,
|
||||||
@@ -173,6 +182,8 @@ const toCandidateDto = async (candidate: SelectPoolCandidateInfo): Promise<Selec
|
|||||||
specialDomesticName: trait?.name ?? candidate.specialDomestic.replace(/^che_event_/, ''),
|
specialDomesticName: trait?.name ?? candidate.specialDomestic.replace(/^che_event_/, ''),
|
||||||
specialDomesticInfo: trait?.info ?? '',
|
specialDomesticInfo: trait?.info ?? '',
|
||||||
specialWar: candidate.specialWar ?? null,
|
specialWar: candidate.specialWar ?? null,
|
||||||
|
specialWarName: warTrait?.name ?? candidate.specialWar?.replace(/^che_(?:event_)?/u, '') ?? null,
|
||||||
|
specialWarInfo: warTrait?.info ?? '',
|
||||||
ego: candidate.ego ?? null,
|
ego: candidate.ego ?? null,
|
||||||
dex: candidate.dex,
|
dex: candidate.dex,
|
||||||
imageServer: candidate.imgsvr,
|
imageServer: candidate.imgsvr,
|
||||||
|
|||||||
@@ -383,9 +383,22 @@ test('four legacy menu pages keep the 1000px desktop table contract', async ({ p
|
|||||||
.first()
|
.first()
|
||||||
.evaluate((el) => getComputedStyle(el).borderCollapse)
|
.evaluate((el) => getComputedStyle(el).borderCollapse)
|
||||||
).toBe(borderCollapse);
|
).toBe(borderCollapse);
|
||||||
|
if (path === 'nation/info') {
|
||||||
|
await expect(page.locator(selector)).toContainText('작 위호족');
|
||||||
|
await expect(page.locator(selector)).not.toContainText('작 위1');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('국가 정보의 작위는 Ref 국가 등급 이름으로 표시된다', async ({ page }) => {
|
||||||
|
await install(page);
|
||||||
|
await page.goto('nation/info');
|
||||||
|
|
||||||
|
const root = page.locator('.legacy-info-page');
|
||||||
|
await expect(root).toContainText('작 위호족');
|
||||||
|
await expect(root).not.toContainText('작 위1');
|
||||||
|
});
|
||||||
|
|
||||||
test('global-info renders the ref nation summary columns beside the map', async ({ page }) => {
|
test('global-info renders the ref nation summary columns beside the map', async ({ page }) => {
|
||||||
await install(page);
|
await install(page);
|
||||||
await page.setViewportSize({ width: 1200, height: 900 });
|
await page.setViewportSize({ width: 1200, height: 900 });
|
||||||
|
|||||||
@@ -63,7 +63,9 @@ const myGeneral = (state: FixtureState) => ({
|
|||||||
troopId: 0,
|
troopId: 0,
|
||||||
picture: null,
|
picture: null,
|
||||||
imageServer: 0,
|
imageServer: 0,
|
||||||
officerLevel: state.permission === 'head' ? 5 : 1,
|
officerLevel: state.permission === 'head' ? 9 : 1,
|
||||||
|
officerLevelText:
|
||||||
|
state.permission === 'head' ? '간의대부' : state.buildNationCandidateEnabled ? '재야' : '일반',
|
||||||
stats: { leadership: 70, strength: 60, intelligence: 50 },
|
stats: { leadership: 70, strength: 60, intelligence: 50 },
|
||||||
gold: 1_000,
|
gold: 1_000,
|
||||||
rice: 2_000,
|
rice: 2_000,
|
||||||
@@ -76,30 +78,74 @@ const myGeneral = (state: FixtureState) => ({
|
|||||||
age: 30,
|
age: 30,
|
||||||
turnTime: '2026-01-01 00:10:00',
|
turnTime: '2026-01-01 00:10:00',
|
||||||
crewTypeId: 1,
|
crewTypeId: 1,
|
||||||
|
crewTypeName: '보병',
|
||||||
traits: state.mainTraits ?? { personal: '-', specialDomestic: '-', specialWar: '-' },
|
traits: state.mainTraits ?? { personal: '-', specialDomestic: '-', specialWar: '-' },
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: 1,
|
experienceLevel: 1,
|
||||||
dedicationLevel: 2,
|
dedicationLevel: 2,
|
||||||
|
dedicationText: '29품관',
|
||||||
statExperience: { leadership: 7, strength: 8, intelligence: 9 },
|
statExperience: { leadership: 7, strength: 8, intelligence: 9 },
|
||||||
statUpgradeLimit: 20,
|
statUpgradeLimit: 20,
|
||||||
dex: [350, 1_375, 3_500, 7_125, 1_275_975],
|
dex: [350, 1_375, 3_500, 7_125, 1_275_975],
|
||||||
},
|
},
|
||||||
items: { horse: 'che_명마', weapon: null, book: null, item: null },
|
items: { horse: 'che_명마', weapon: null, book: null, item: null },
|
||||||
|
itemNames: { horse: '명마', weapon: null, book: null, item: null },
|
||||||
|
},
|
||||||
|
city: {
|
||||||
|
id: 1,
|
||||||
|
name: '업',
|
||||||
|
level: 8,
|
||||||
|
levelName: '특',
|
||||||
|
region: 2,
|
||||||
|
regionName: '중원',
|
||||||
|
nationId: 1,
|
||||||
|
nationName: '위',
|
||||||
|
population: 1000,
|
||||||
|
populationMax: 2000,
|
||||||
|
agriculture: 100,
|
||||||
|
agricultureMax: 200,
|
||||||
|
commerce: 100,
|
||||||
|
commerceMax: 200,
|
||||||
|
security: 100,
|
||||||
|
securityMax: 200,
|
||||||
|
trust: 70,
|
||||||
|
trade: 100,
|
||||||
|
defence: 100,
|
||||||
|
defenceMax: 200,
|
||||||
|
wall: 100,
|
||||||
|
wallMax: 200,
|
||||||
|
supplyState: 1,
|
||||||
|
frontState: 0,
|
||||||
},
|
},
|
||||||
city: { id: 1, name: '업', level: 8, nationId: 1 },
|
|
||||||
nation: state.buildNationCandidateEnabled
|
nation: state.buildNationCandidateEnabled
|
||||||
? {
|
? {
|
||||||
id: 0,
|
id: 0,
|
||||||
name: '재야',
|
name: '재야',
|
||||||
color: '#000000',
|
color: '#000000',
|
||||||
level: 0,
|
level: 0,
|
||||||
|
levelName: '방랑군',
|
||||||
gold: 0,
|
gold: 0,
|
||||||
rice: 0,
|
rice: 0,
|
||||||
tech: 0,
|
tech: 0,
|
||||||
typeCode: 'None',
|
typeCode: 'None',
|
||||||
|
typeName: '해당 없음',
|
||||||
capitalCityId: null,
|
capitalCityId: null,
|
||||||
|
capitalCityName: null,
|
||||||
}
|
}
|
||||||
: { id: 1, name: '위', color: '#777777', level: 3 },
|
: {
|
||||||
|
id: 1,
|
||||||
|
name: '위',
|
||||||
|
color: '#777777',
|
||||||
|
level: 3,
|
||||||
|
levelName: '주자사',
|
||||||
|
gold: 10_000,
|
||||||
|
rice: 20_000,
|
||||||
|
tech: 100,
|
||||||
|
typeCode: 'che_법가',
|
||||||
|
typeName: '법가',
|
||||||
|
capitalCityId: 1,
|
||||||
|
capitalCityName: '업',
|
||||||
|
},
|
||||||
settings: {
|
settings: {
|
||||||
tnmt: 0,
|
tnmt: 0,
|
||||||
defence_train: 80,
|
defence_train: 80,
|
||||||
@@ -116,7 +162,7 @@ const myGeneral = (state: FixtureState) => ({
|
|||||||
const battleCenter = (state: FixtureState) => ({
|
const battleCenter = (state: FixtureState) => ({
|
||||||
me: {
|
me: {
|
||||||
id: 7,
|
id: 7,
|
||||||
officerLevel: state.permission === 'head' ? 5 : 1,
|
officerLevel: state.permission === 'head' ? 9 : 1,
|
||||||
permissionLevel: state.permission === 'head' ? 2 : 0,
|
permissionLevel: state.permission === 'head' ? 2 : 0,
|
||||||
},
|
},
|
||||||
nation: { id: 1, name: '위', color: '#777777', level: 3 },
|
nation: { id: 1, name: '위', color: '#777777', level: 3 },
|
||||||
@@ -128,7 +174,8 @@ const battleCenter = (state: FixtureState) => ({
|
|||||||
id: 7,
|
id: 7,
|
||||||
name: '검증장수',
|
name: '검증장수',
|
||||||
npcState: 0,
|
npcState: 0,
|
||||||
officerLevel: state.permission === 'head' ? 5 : 1,
|
officerLevel: state.permission === 'head' ? 9 : 1,
|
||||||
|
officerLevelText: state.permission === 'head' ? '간의대부' : '일반',
|
||||||
cityId: 1,
|
cityId: 1,
|
||||||
turnTime: '2026-01-01 00:10:00',
|
turnTime: '2026-01-01 00:10:00',
|
||||||
recentWar: '2026-01-01 00:00:00',
|
recentWar: '2026-01-01 00:00:00',
|
||||||
@@ -144,10 +191,14 @@ const battleCenter = (state: FixtureState) => ({
|
|||||||
atmos: 90,
|
atmos: 90,
|
||||||
age: 30,
|
age: 30,
|
||||||
crewTypeId: 1,
|
crewTypeId: 1,
|
||||||
|
crewTypeName: '보병',
|
||||||
equipment: { weapon: 'None', book: 'None', horse: 'None', item: 'None' },
|
equipment: { weapon: 'None', book: 'None', horse: 'None', item: 'None' },
|
||||||
traits: { personal: 'None', specialDomestic: 'None', specialWar: 'None' },
|
equipmentNames: { weapon: '-', book: '-', horse: '-', item: '-' },
|
||||||
|
traits: { personal: '-', specialDomestic: '-', specialWar: '-' },
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: 1,
|
experienceLevel: 1,
|
||||||
|
dedicationLevel: 2,
|
||||||
|
dedicationText: '29품관',
|
||||||
statExperience: { leadership: 7, strength: 8, intelligence: 9 },
|
statExperience: { leadership: 7, strength: 8, intelligence: 9 },
|
||||||
statUpgradeLimit: 20,
|
statUpgradeLimit: 20,
|
||||||
dex: [350, 1_375, 3_500, 7_125, 1_275_975],
|
dex: [350, 1_375, 3_500, 7_125, 1_275_975],
|
||||||
@@ -159,6 +210,7 @@ const battleCenter = (state: FixtureState) => ({
|
|||||||
name: '다른장수',
|
name: '다른장수',
|
||||||
npcState: 2,
|
npcState: 2,
|
||||||
officerLevel: 1,
|
officerLevel: 1,
|
||||||
|
officerLevelText: '일반',
|
||||||
cityId: 1,
|
cityId: 1,
|
||||||
turnTime: '2026-01-01 00:20:00',
|
turnTime: '2026-01-01 00:20:00',
|
||||||
recentWar: null,
|
recentWar: null,
|
||||||
@@ -174,10 +226,14 @@ const battleCenter = (state: FixtureState) => ({
|
|||||||
atmos: 60,
|
atmos: 60,
|
||||||
age: 20,
|
age: 20,
|
||||||
crewTypeId: 1,
|
crewTypeId: 1,
|
||||||
|
crewTypeName: '보병',
|
||||||
equipment: { weapon: 'None', book: 'None', horse: 'None', item: 'None' },
|
equipment: { weapon: 'None', book: 'None', horse: 'None', item: 'None' },
|
||||||
traits: { personal: 'None', specialDomestic: 'None', specialWar: 'None' },
|
equipmentNames: { weapon: '-', book: '-', horse: '-', item: '-' },
|
||||||
|
traits: { personal: '-', specialDomestic: '-', specialWar: '-' },
|
||||||
progression: {
|
progression: {
|
||||||
experienceLevel: 0,
|
experienceLevel: 0,
|
||||||
|
dedicationLevel: 0,
|
||||||
|
dedicationText: '무품관',
|
||||||
statExperience: { leadership: 0, strength: 0, intelligence: 0 },
|
statExperience: { leadership: 0, strength: 0, intelligence: 0 },
|
||||||
statUpgradeLimit: 20,
|
statUpgradeLimit: 20,
|
||||||
dex: [0, 0, 0, 0, 0],
|
dex: [0, 0, 0, 0, 0],
|
||||||
@@ -512,6 +568,35 @@ test('재야 메인은 국가 틀과 성격·특기 표기명을 Chromium에 표
|
|||||||
await persistParityArtifact(page, 'main-neutral-trait-display', geometry);
|
await persistParityArtifact(page, 'main-neutral-trait-display', geometry);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('메인 카드의 국가·수도·관직·계급·병종은 Ref 출력명으로 표시된다', async ({ page }) => {
|
||||||
|
const state: FixtureState = {
|
||||||
|
permission: 'head',
|
||||||
|
myset: 3,
|
||||||
|
mainTraits: { personal: '안전', specialDomestic: '상재', specialWar: '신산' },
|
||||||
|
settingMutations: [],
|
||||||
|
accessPages: [],
|
||||||
|
};
|
||||||
|
await install(page, state);
|
||||||
|
await page.setViewportSize({ width: 1000, height: 900 });
|
||||||
|
await page.goto('');
|
||||||
|
|
||||||
|
const nationCard = page.locator('.nation-card');
|
||||||
|
await expect(nationCard.locator('.title')).toHaveText('위 (주자사)');
|
||||||
|
await expect(nationCard).toContainText('체제법가');
|
||||||
|
await expect(nationCard).toContainText('수도업');
|
||||||
|
await expect(nationCard).toContainText('국가 등급주자사');
|
||||||
|
|
||||||
|
const generalCard = page.locator('.general-card');
|
||||||
|
await expect(generalCard.locator('.general-title')).toContainText('검증장수 · 간의대부');
|
||||||
|
await expect(generalCard).toContainText('병종보병');
|
||||||
|
await expect(generalCard).toContainText('계급29품관');
|
||||||
|
|
||||||
|
const cityCard = page.locator('.city-card');
|
||||||
|
await expect(cityCard.locator('.title')).toContainText('【중원 | 특】 업');
|
||||||
|
await expect(cityCard.locator('.title')).toContainText('지배 국가 【 위 】');
|
||||||
|
await expect(page.locator('.main-page')).not.toContainText('che_');
|
||||||
|
});
|
||||||
|
|
||||||
test('접속량정보 keeps the legacy public 1016px chart geometry', async ({ page }) => {
|
test('접속량정보 keeps the legacy public 1016px chart geometry', async ({ page }) => {
|
||||||
const state: FixtureState = { permission: 'member', myset: 0, settingMutations: [], accessPages: [] };
|
const state: FixtureState = { permission: 'member', myset: 0, settingMutations: [], accessPages: [] };
|
||||||
await install(page, state);
|
await install(page, state);
|
||||||
@@ -566,6 +651,10 @@ test('내 정보&설정 keeps the legacy 1000px/500px geometry and saves in plac
|
|||||||
await install(page, state);
|
await install(page, state);
|
||||||
await page.setViewportSize({ width: 1000, height: 900 });
|
await page.setViewportSize({ width: 1000, height: 900 });
|
||||||
await page.goto('my-page');
|
await page.goto('my-page');
|
||||||
|
await expect(page.locator('.legacy-general-details')).toContainText('계급 29품관');
|
||||||
|
await expect(page.locator('.legacy-general-details')).toContainText('병종 보병');
|
||||||
|
await expect(page.locator('.item-group')).toContainText('명마');
|
||||||
|
await expect(page.locator('#container')).not.toContainText('che_');
|
||||||
await expect(page.locator('.title-row')).toContainText('내 정 보');
|
await expect(page.locator('.title-row')).toContainText('내 정 보');
|
||||||
await expect(page.locator('#set_my_setting')).toBeVisible();
|
await expect(page.locator('#set_my_setting')).toBeVisible();
|
||||||
await expect(page.locator('.general-column [role="progressbar"]')).toHaveCount(14);
|
await expect(page.locator('.general-column [role="progressbar"]')).toHaveCount(14);
|
||||||
@@ -1020,6 +1109,10 @@ test('감찰부 keeps the selector interaction and shows the permission error pa
|
|||||||
await expect(page.locator('.selector-row select').nth(1)).toHaveValue('8');
|
await expect(page.locator('.selector-row select').nth(1)).toHaveValue('8');
|
||||||
await page.getByRole('button', { name: '다음 ▶' }).click();
|
await page.getByRole('button', { name: '다음 ▶' }).click();
|
||||||
await expect(page.locator('.selector-row select').nth(1)).toHaveValue('7');
|
await expect(page.locator('.selector-row select').nth(1)).toHaveValue('7');
|
||||||
|
await expect(page.locator('.battle-general-name')).toContainText('검증장수 (간의대부)');
|
||||||
|
await expect(page.locator('.battle-general-extra')).toContainText('계급29품관');
|
||||||
|
await expect(page.locator('.battle-general-extra')).toContainText('병종보병');
|
||||||
|
await expect(page.locator('.battle-general-card')).not.toContainText('che_');
|
||||||
await expect(page.locator('.battle-general-card [role="progressbar"]')).toHaveCount(14);
|
await expect(page.locator('.battle-general-card [role="progressbar"]')).toHaveCount(14);
|
||||||
await expect(page.locator('.battle-general-card [aria-label*="1,275,975 (EX+)"]')).toHaveCount(5);
|
await expect(page.locator('.battle-general-card [aria-label*="1,275,975 (EX+)"]')).toHaveCount(5);
|
||||||
expect(
|
expect(
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ const installArchive = async (page: Page) => {
|
|||||||
experience: 23000,
|
experience: 23000,
|
||||||
dedication: 1200,
|
dedication: 1200,
|
||||||
officerLevel: 12,
|
officerLevel: 12,
|
||||||
|
officerLevelText: '황제',
|
||||||
personal: '대담',
|
personal: '대담',
|
||||||
special: '상재',
|
special: '상재',
|
||||||
special2: '신산',
|
special2: '신산',
|
||||||
@@ -66,6 +67,15 @@ const installArchive = async (page: Page) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
test('지난 플레이 관직은 숫자 대신 저장된 Ref 표시명으로 나타난다', async ({ page }) => {
|
||||||
|
await installArchive(page);
|
||||||
|
await page.goto('past-plays');
|
||||||
|
|
||||||
|
const generalRow = page.locator('tbody tr').filter({ hasText: '관우' });
|
||||||
|
await expect(generalRow).toContainText('황제');
|
||||||
|
await expect(generalRow).not.toContainText('che_');
|
||||||
|
});
|
||||||
|
|
||||||
test('past plays is available without a current general and preserves desktop interaction geometry', async ({
|
test('past plays is available without a current general and preserves desktop interaction geometry', async ({
|
||||||
page,
|
page,
|
||||||
}) => {
|
}) => {
|
||||||
@@ -78,6 +88,7 @@ test('past plays is available without a current general and preserves desktop in
|
|||||||
await expect(page.getByRole('heading', { name: '내 지난 플레이 보기' })).toBeVisible();
|
await expect(page.getByRole('heading', { name: '내 지난 플레이 보기' })).toBeVisible();
|
||||||
await expect(page.getByText('천하쟁패 · 51기')).toBeVisible();
|
await expect(page.getByText('천하쟁패 · 51기')).toBeVisible();
|
||||||
await expect(page.locator('.general-name')).toHaveText('관우');
|
await expect(page.locator('.general-name')).toHaveText('관우');
|
||||||
|
await expect(page.locator('tbody tr').filter({ hasText: '관우' })).toContainText('황제');
|
||||||
await expect(page.getByRole('link', { name: '이 기수 국가 정보' })).toHaveAttribute('href', gamePath('/dynasty/7'));
|
await expect(page.getByRole('link', { name: '이 기수 국가 정보' })).toHaveAttribute('href', gamePath('/dynasty/7'));
|
||||||
const historyToggle = page.locator('.history-toggle');
|
const historyToggle = page.locator('.history-toggle');
|
||||||
await expect(historyToggle).toHaveText('보기 (2)');
|
await expect(historyToggle).toHaveText('보기 (2)');
|
||||||
|
|||||||
@@ -8,7 +8,10 @@ interface CityInfo {
|
|||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
level: number;
|
level: number;
|
||||||
|
levelName: string;
|
||||||
|
regionName: string;
|
||||||
nationId: number;
|
nationId: number;
|
||||||
|
nationName: string;
|
||||||
population: number;
|
population: number;
|
||||||
populationMax: number;
|
populationMax: number;
|
||||||
agriculture: number;
|
agriculture: number;
|
||||||
@@ -66,8 +69,8 @@ const metrics = computed(() => {
|
|||||||
<div v-else-if="!props.city" class="empty">도시 정보를 불러오지 못했습니다.</div>
|
<div v-else-if="!props.city" class="empty">도시 정보를 불러오지 못했습니다.</div>
|
||||||
<div v-else class="city-body">
|
<div v-else class="city-body">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
{{ props.city.name }} (Lv {{ props.city.level }}) · 국가 {{ props.city.nationId || '무주' }} · 보급
|
【{{ props.city.regionName }} | {{ props.city.levelName }}】 {{ props.city.name }} ·
|
||||||
{{ props.city.supplyState }} · 전방 {{ props.city.frontState }}
|
{{ props.city.nationId > 0 ? `지배 국가 【 ${props.city.nationName} 】` : '공 백 지' }}
|
||||||
</div>
|
</div>
|
||||||
<div class="progress-grid">
|
<div class="progress-grid">
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ interface GeneralStats {
|
|||||||
interface GeneralProgression {
|
interface GeneralProgression {
|
||||||
experienceLevel: number;
|
experienceLevel: number;
|
||||||
dedicationLevel: number;
|
dedicationLevel: number;
|
||||||
|
dedicationText?: string;
|
||||||
statExperience?: { leadership: number; strength: number; intelligence: number };
|
statExperience?: { leadership: number; strength: number; intelligence: number };
|
||||||
statUpgradeLimit?: number;
|
statUpgradeLimit?: number;
|
||||||
}
|
}
|
||||||
@@ -23,6 +24,7 @@ interface GeneralInfo {
|
|||||||
name: string;
|
name: string;
|
||||||
npcState: number;
|
npcState: number;
|
||||||
officerLevel: number;
|
officerLevel: number;
|
||||||
|
officerLevelText: string;
|
||||||
stats: GeneralStats;
|
stats: GeneralStats;
|
||||||
gold: number;
|
gold: number;
|
||||||
rice: number;
|
rice: number;
|
||||||
@@ -35,6 +37,7 @@ interface GeneralInfo {
|
|||||||
age?: number;
|
age?: number;
|
||||||
turnTime?: string;
|
turnTime?: string;
|
||||||
crewTypeId?: number;
|
crewTypeId?: number;
|
||||||
|
crewTypeName?: string;
|
||||||
traits?: { personal: string; specialWar: string; specialDomestic: string };
|
traits?: { personal: string; specialWar: string; specialDomestic: string };
|
||||||
progression?: GeneralProgression;
|
progression?: GeneralProgression;
|
||||||
}
|
}
|
||||||
@@ -79,7 +82,7 @@ const experiencePercent = computed(() =>
|
|||||||
<div v-else-if="!props.general" class="empty">장수 정보를 불러오지 못했습니다.</div>
|
<div v-else-if="!props.general" class="empty">장수 정보를 불러오지 못했습니다.</div>
|
||||||
<div v-else class="general-body">
|
<div v-else class="general-body">
|
||||||
<div class="general-title">
|
<div class="general-title">
|
||||||
{{ props.general.name }} · 관직 {{ props.general.officerLevel }} · {{ props.general.age ?? '-' }}세 ·
|
{{ props.general.name }} · {{ props.general.officerLevelText }} · {{ props.general.age ?? '-' }}세 ·
|
||||||
다음 턴
|
다음 턴
|
||||||
{{ props.general.turnTime ? formatSeoulHourMinute(props.general.turnTime) : '-' }}
|
{{ props.general.turnTime ? formatSeoulHourMinute(props.general.turnTime) : '-' }}
|
||||||
</div>
|
</div>
|
||||||
@@ -103,11 +106,11 @@ const experiencePercent = computed(() =>
|
|||||||
><strong>{{ props.general.crew.toLocaleString() }}</strong> <span>훈련</span
|
><strong>{{ props.general.crew.toLocaleString() }}</strong> <span>훈련</span
|
||||||
><strong>{{ props.general.train }}</strong> <span>사기</span><strong>{{ props.general.atmos }}</strong>
|
><strong>{{ props.general.train }}</strong> <span>사기</span><strong>{{ props.general.atmos }}</strong>
|
||||||
<span>부상</span><strong>{{ props.general.injury }}</strong> <span>병종</span
|
<span>부상</span><strong>{{ props.general.injury }}</strong> <span>병종</span
|
||||||
><strong>{{ props.general.crewTypeId || '-' }}</strong> <span>성격</span
|
><strong>{{ props.general.crewTypeName ?? '-' }}</strong> <span>성격</span
|
||||||
><strong>{{ props.general.traits?.personal ?? '-' }}</strong> <span>전투특기</span
|
><strong>{{ props.general.traits?.personal ?? '-' }}</strong> <span>전투특기</span
|
||||||
><strong>{{ props.general.traits?.specialWar ?? '-' }}</strong> <span>내정특기</span
|
><strong>{{ props.general.traits?.specialWar ?? '-' }}</strong> <span>내정특기</span
|
||||||
><strong>{{ props.general.traits?.specialDomestic ?? '-' }}</strong> <span>계급</span
|
><strong>{{ props.general.traits?.specialDomestic ?? '-' }}</strong> <span>계급</span
|
||||||
><strong>Lv {{ props.general.progression?.dedicationLevel ?? 0 }}</strong> <span>공헌</span
|
><strong>{{ props.general.progression?.dedicationText ?? '무품관' }}</strong> <span>공헌</span
|
||||||
><strong>{{ props.general.dedication.toLocaleString() }}</strong>
|
><strong>{{ props.general.dedication.toLocaleString() }}</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -7,11 +7,14 @@ interface NationInfo {
|
|||||||
name: string;
|
name: string;
|
||||||
color: string;
|
color: string;
|
||||||
level: number;
|
level: number;
|
||||||
|
levelName: string;
|
||||||
gold: number;
|
gold: number;
|
||||||
rice: number;
|
rice: number;
|
||||||
tech: number;
|
tech: number;
|
||||||
typeCode: string;
|
typeCode: string;
|
||||||
|
typeName: string;
|
||||||
capitalCityId: number | null;
|
capitalCityId: number | null;
|
||||||
|
capitalCityName: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
@@ -31,7 +34,7 @@ const props = defineProps<{
|
|||||||
class="title"
|
class="title"
|
||||||
:style="{ backgroundColor: props.nation.color, color: legacyNationTextColor(props.nation.color) }"
|
:style="{ backgroundColor: props.nation.color, color: legacyNationTextColor(props.nation.color) }"
|
||||||
>
|
>
|
||||||
{{ props.nation.name }}<template v-if="props.nation.id > 0"> (Lv {{ props.nation.level }})</template>
|
{{ props.nation.name }}<template v-if="props.nation.id > 0"> ({{ props.nation.levelName }})</template>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<span>국고</span
|
<span>국고</span
|
||||||
@@ -40,10 +43,11 @@ const props = defineProps<{
|
|||||||
><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.rice.toLocaleString() }}</strong>
|
><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.rice.toLocaleString() }}</strong>
|
||||||
<span>기술</span
|
<span>기술</span
|
||||||
><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.tech.toLocaleString() }}</strong>
|
><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.tech.toLocaleString() }}</strong>
|
||||||
<span>체제</span><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.typeCode }}</strong>
|
<span>체제</span><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.typeName }}</strong>
|
||||||
<span>수도</span
|
<span>수도</span
|
||||||
><strong>{{ props.nation.id === 0 ? '해당 없음' : (props.nation.capitalCityId ?? '-') }}</strong>
|
><strong>{{ props.nation.id === 0 ? '해당 없음' : (props.nation.capitalCityName ?? '-') }}</strong>
|
||||||
<span>국가 등급</span><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.level }}</strong>
|
<span>국가 등급</span
|
||||||
|
><strong>{{ props.nation.id === 0 ? '해당 없음' : props.nation.levelName }}</strong>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,6 +14,19 @@ export const officerLevelMapDefault: Record<number, string> = {
|
|||||||
0: '재야',
|
0: '재야',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const nationLevelMap: Record<number, string> = {
|
||||||
|
7: '황제',
|
||||||
|
6: '왕',
|
||||||
|
5: '공',
|
||||||
|
4: '주목',
|
||||||
|
3: '주자사',
|
||||||
|
2: '군벌',
|
||||||
|
1: '호족',
|
||||||
|
0: '방랑군',
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatNationLevelText = (nationLevel: number): string => nationLevelMap[nationLevel] ?? '-';
|
||||||
|
|
||||||
export const officerLevelMapByNationLevel: Record<number, Record<number, string>> = {
|
export const officerLevelMapByNationLevel: Record<number, Record<number, string>> = {
|
||||||
7: {
|
7: {
|
||||||
12: '황제',
|
12: '황제',
|
||||||
@@ -75,15 +88,13 @@ export const officerLevelMapByNationLevel: Record<number, Record<number, string>
|
|||||||
|
|
||||||
export const formatOfficerLevelText = (officerLevel: number, nationLevel?: number): string => {
|
export const formatOfficerLevelText = (officerLevel: number, nationLevel?: number): string => {
|
||||||
if (officerLevel < 5) {
|
if (officerLevel < 5) {
|
||||||
return officerLevelMapDefault[officerLevel] ?? '???';
|
return officerLevelMapDefault[officerLevel] ?? '-';
|
||||||
}
|
}
|
||||||
|
|
||||||
const nationMap =
|
if (nationLevel === undefined) {
|
||||||
nationLevel === undefined
|
return officerLevelMapDefault[officerLevel] ?? '-';
|
||||||
? officerLevelMapDefault
|
}
|
||||||
: (officerLevelMapByNationLevel[nationLevel] ?? officerLevelMapDefault);
|
return officerLevelMapByNationLevel[nationLevel]?.[officerLevel] ?? '-';
|
||||||
|
|
||||||
return nationMap[officerLevel] ?? (officerLevelMapDefault[officerLevel] ?? '???');
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const regionMap: Record<number, string> = {
|
export const regionMap: Record<number, string> = {
|
||||||
|
|||||||
@@ -38,6 +38,8 @@ const resolveErrorMessage = (value: unknown): string => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const formatNumber = (value: number | null | undefined): string => (value ?? 0).toLocaleString();
|
const formatNumber = (value: number | null | undefined): string => (value ?? 0).toLocaleString();
|
||||||
|
const displayCode = (value: string | null | undefined): string =>
|
||||||
|
!value || /^\d+$/u.test(value) ? '-' : value.replace(/^che_(?:event_)?/u, '');
|
||||||
const cutDateTime = (value: string | null | undefined, showSecond = false): string => {
|
const cutDateTime = (value: string | null | undefined, showSecond = false): string => {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return '-';
|
return '-';
|
||||||
@@ -395,7 +397,7 @@ onMounted(() => {
|
|||||||
<h2 class="section-title bg2">경매 {{ uniqueDetail.auction.id }}번 상세</h2>
|
<h2 class="section-title bg2">경매 {{ uniqueDetail.auction.id }}번 상세</h2>
|
||||||
<dl class="detail-grid">
|
<dl class="detail-grid">
|
||||||
<dt class="bg1">경매명</dt>
|
<dt class="bg1">경매명</dt>
|
||||||
<dd>{{ uniqueDetail.auction.detail.title ?? uniqueDetail.auction.targetCode }}</dd>
|
<dd>{{ uniqueDetail.auction.detail.title ?? displayCode(uniqueDetail.auction.targetCode) }}</dd>
|
||||||
<dt class="bg1">주최자(익명)</dt>
|
<dt class="bg1">주최자(익명)</dt>
|
||||||
<dd :class="{ 'is-me': uniqueDetail.auction.isCallerHost }">{{ uniqueDetail.auction.hostName }}</dd>
|
<dd :class="{ 'is-me': uniqueDetail.auction.isCallerHost }">{{ uniqueDetail.auction.hostName }}</dd>
|
||||||
<dt class="bg1">종료일시</dt>
|
<dt class="bg1">종료일시</dt>
|
||||||
@@ -442,7 +444,7 @@ onMounted(() => {
|
|||||||
@keydown.space.prevent="selectUnique(auction)"
|
@keydown.space.prevent="selectUnique(auction)"
|
||||||
>
|
>
|
||||||
<span>{{ auction.id }}</span
|
<span>{{ auction.id }}</span
|
||||||
><span>{{ auction.detail.title ?? auction.targetCode }}</span>
|
><span>{{ auction.detail.title ?? displayCode(auction.targetCode) }}</span>
|
||||||
<span :class="{ 'is-me': auction.isCallerHost }">{{ auction.hostName }}</span>
|
<span :class="{ 'is-me': auction.isCallerHost }">{{ auction.hostName }}</span>
|
||||||
<span class="tnum">{{ cutDateTime(auction.closeAt) }}</span>
|
<span class="tnum">{{ cutDateTime(auction.closeAt) }}</span>
|
||||||
<span>{{ (auction.detail.remainCloseDateExtensionCnt ?? 0) > 0 ? '남음' : '소진' }}</span>
|
<span>{{ (auction.detail.remainCloseDateExtensionCnt ?? 0) > 0 ? '남음' : '소진' }}</span>
|
||||||
@@ -474,7 +476,7 @@ onMounted(() => {
|
|||||||
@keydown.space.prevent="selectUnique(auction)"
|
@keydown.space.prevent="selectUnique(auction)"
|
||||||
>
|
>
|
||||||
<span>{{ auction.id }}</span
|
<span>{{ auction.id }}</span
|
||||||
><span>{{ auction.detail.title ?? auction.targetCode }}</span>
|
><span>{{ auction.detail.title ?? displayCode(auction.targetCode) }}</span>
|
||||||
<span :class="{ 'is-me': auction.isCallerHost }">{{ auction.hostName }}</span>
|
<span :class="{ 'is-me': auction.isCallerHost }">{{ auction.hostName }}</span>
|
||||||
<span class="tnum">{{ cutDateTime(auction.closeAt) }}</span>
|
<span class="tnum">{{ cutDateTime(auction.closeAt) }}</span>
|
||||||
<span>{{ (auction.detail.remainCloseDateExtensionCnt ?? 0) > 0 ? '남음' : '소진' }}</span>
|
<span>{{ (auction.detail.remainCloseDateExtensionCnt ?? 0) > 0 ? '남음' : '소진' }}</span>
|
||||||
|
|||||||
@@ -269,7 +269,7 @@ onMounted(() => {
|
|||||||
<SkeletonLines v-if="loading" :lines="5" />
|
<SkeletonLines v-if="loading" :lines="5" />
|
||||||
<div v-else-if="selectedGeneral" class="battle-general-card">
|
<div v-else-if="selectedGeneral" class="battle-general-card">
|
||||||
<div class="battle-general-name">
|
<div class="battle-general-name">
|
||||||
{{ selectedGeneral.name }} (관직 {{ selectedGeneral.officerLevel }})
|
{{ selectedGeneral.name }} ({{ selectedGeneral.officerLevelText }})
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
class="battle-general-portrait"
|
class="battle-general-portrait"
|
||||||
@@ -293,9 +293,9 @@ onMounted(() => {
|
|||||||
</div>
|
</div>
|
||||||
<div class="battle-general-extra">
|
<div class="battle-general-extra">
|
||||||
<span>명성</span><strong>{{ selectedGeneral.experience.toLocaleString('ko-KR') }}</strong>
|
<span>명성</span><strong>{{ selectedGeneral.experience.toLocaleString('ko-KR') }}</strong>
|
||||||
<span>계급</span><strong>{{ selectedGeneral.dedication.toLocaleString('ko-KR') }}</strong>
|
<span>계급</span><strong>{{ selectedGeneral.progression.dedicationText }}</strong>
|
||||||
<span>나이</span><strong>{{ selectedGeneral.age }}세</strong> <span>병종</span
|
<span>나이</span><strong>{{ selectedGeneral.age }}세</strong> <span>병종</span
|
||||||
><strong>{{ selectedGeneral.crewTypeId }}</strong> <span>승리</span
|
><strong>{{ selectedGeneral.crewTypeName }}</strong> <span>승리</span
|
||||||
><strong>{{ selectedGeneral.battleStats.kills }}</strong> <span>패배</span
|
><strong>{{ selectedGeneral.battleStats.kills }}</strong> <span>패배</span
|
||||||
><strong>{{ selectedGeneral.battleStats.deaths }}</strong> <span>사살</span
|
><strong>{{ selectedGeneral.battleStats.deaths }}</strong> <span>사살</span
|
||||||
><strong>{{ selectedGeneral.battleStats.killCrew.toLocaleString('ko-KR') }}</strong>
|
><strong>{{ selectedGeneral.battleStats.killCrew.toLocaleString('ko-KR') }}</strong>
|
||||||
|
|||||||
@@ -132,12 +132,40 @@ const noDefencePenaltyWaived = computed(() => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
const noDefenceLabel = computed(() => (noDefencePenaltyWaived.value ? '×' : '× [훈련 -3,사기 -6]'));
|
const noDefenceLabel = computed(() => (noDefencePenaltyWaived.value ? '×' : '× [훈련 -3,사기 -6]'));
|
||||||
const items = computed<Array<{ key: ItemSlotKey; name: string; code: string | null }>>(() => [
|
const fallbackDisplayCode = (value: string | null | undefined): string | null =>
|
||||||
{ key: 'horse', name: '말', code: data.value?.general.items.horse ?? null },
|
value && !/^\d+$/u.test(value) ? value.replace(/^che_(?:event_)?/u, '') : null;
|
||||||
{ key: 'weapon', name: '무기', code: data.value?.general.items.weapon ?? null },
|
const items = computed<Array<{ key: ItemSlotKey; slotName: string; displayName: string | null; code: string | null }>>(
|
||||||
{ key: 'book', name: '서적', code: data.value?.general.items.book ?? null },
|
() => [
|
||||||
{ key: 'item', name: '도구', code: data.value?.general.items.item ?? null },
|
{
|
||||||
]);
|
key: 'horse',
|
||||||
|
slotName: '말',
|
||||||
|
displayName:
|
||||||
|
data.value?.general.itemNames?.horse ?? fallbackDisplayCode(data.value?.general.items.horse) ?? null,
|
||||||
|
code: data.value?.general.items.horse ?? null,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'weapon',
|
||||||
|
slotName: '무기',
|
||||||
|
displayName:
|
||||||
|
data.value?.general.itemNames?.weapon ?? fallbackDisplayCode(data.value?.general.items.weapon) ?? null,
|
||||||
|
code: data.value?.general.items.weapon ?? null,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'book',
|
||||||
|
slotName: '서적',
|
||||||
|
displayName:
|
||||||
|
data.value?.general.itemNames?.book ?? fallbackDisplayCode(data.value?.general.items.book) ?? null,
|
||||||
|
code: data.value?.general.items.book ?? null,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'item',
|
||||||
|
slotName: '도구',
|
||||||
|
displayName:
|
||||||
|
data.value?.general.itemNames?.item ?? fallbackDisplayCode(data.value?.general.items.item) ?? null,
|
||||||
|
code: data.value?.general.items.item ?? null,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
);
|
||||||
const iconChoices = computed(() => data.value?.iconChoices ?? []);
|
const iconChoices = computed(() => data.value?.iconChoices ?? []);
|
||||||
|
|
||||||
const autorunUser = computed(() => asRecord(world.value?.meta.autorun_user));
|
const autorunUser = computed(() => asRecord(world.value?.meta.autorun_user));
|
||||||
@@ -302,8 +330,8 @@ const dieOnPrestart = async () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const dropItem = (item: { key: ItemSlotKey; name: string; code: string | null }) =>
|
const dropItem = (item: { key: ItemSlotKey; slotName: string; displayName: string | null; code: string | null }) =>
|
||||||
confirmMutation(`${item.code ?? item.name}을(를) 버리시겠습니까?`, () =>
|
confirmMutation(`${item.displayName ?? item.slotName}을(를) 버리시겠습니까?`, () =>
|
||||||
trpc.general.dropItem.mutate({ itemType: item.key })
|
trpc.general.dropItem.mutate({ itemType: item.key })
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -416,7 +444,7 @@ onMounted(() => {
|
|||||||
>
|
>
|
||||||
· 계급
|
· 계급
|
||||||
<strong
|
<strong
|
||||||
>Lv {{ data.general.progression?.dedicationLevel ?? 0 }} ({{
|
>{{ data.general.progression?.dedicationText ?? '무품관' }} ({{
|
||||||
data.general.dedication
|
data.general.dedication
|
||||||
}})</strong
|
}})</strong
|
||||||
>
|
>
|
||||||
@@ -425,7 +453,7 @@ onMounted(() => {
|
|||||||
<div>승률 0% · 승리 0 · 패배 0</div>
|
<div>승률 0% · 승리 0 · 패배 0</div>
|
||||||
<div>살상률 0% · 사살 0 · 피살 0</div>
|
<div>살상률 0% · 사살 0 · 피살 0</div>
|
||||||
<div>
|
<div>
|
||||||
병종 {{ data.general.crewTypeId || '-' }} · 내정특기
|
병종 {{ data.general.crewTypeName ?? '-' }} · 내정특기
|
||||||
{{ data.general.traits?.specialDomestic ?? '-' }} · 부상 {{ data.general.injury }} · 부대
|
{{ data.general.traits?.specialDomestic ?? '-' }} · 부상 {{ data.general.injury }} · 부대
|
||||||
{{ data.general.troopId || '-' }} · 벌점 {{ penalties.length || '-' }}
|
{{ data.general.troopId || '-' }} · 벌점 {{ penalties.length || '-' }}
|
||||||
</div>
|
</div>
|
||||||
@@ -595,7 +623,7 @@ onMounted(() => {
|
|||||||
:disabled="!item.code"
|
:disabled="!item.code"
|
||||||
@click="dropItem(item)"
|
@click="dropItem(item)"
|
||||||
>
|
>
|
||||||
{{ item.code ?? '-' }}
|
{{ item.displayName ?? '-' }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,6 @@ const generals = computed(() =>
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
const special = (general: General) => `${general.specialDomestic?.name ?? '-'} / ${general.specialWar?.name ?? '-'}`;
|
const special = (general: General) => `${general.specialDomestic?.name ?? '-'} / ${general.specialWar?.name ?? '-'}`;
|
||||||
const rank = (general: General) => (general.dedicationLevel ? `${11 - general.dedicationLevel}품관` : '무품관');
|
|
||||||
const iconUrl = (general: General) => resolveGeneralIconUrl(general);
|
const iconUrl = (general: General) => resolveGeneralIconUrl(general);
|
||||||
onMounted(load);
|
onMounted(load);
|
||||||
</script>
|
</script>
|
||||||
@@ -78,7 +77,13 @@ onMounted(load);
|
|||||||
<strong>세력 장수</strong>
|
<strong>세력 장수</strong>
|
||||||
<span class="right-actions">
|
<span class="right-actions">
|
||||||
<span class="dropdown">
|
<span class="dropdown">
|
||||||
<button class="top-button mode-button" :aria-expanded="viewMenuOpen" @click="viewMenuOpen = !viewMenuOpen">보기 모드⌄</button>
|
<button
|
||||||
|
class="top-button mode-button"
|
||||||
|
:aria-expanded="viewMenuOpen"
|
||||||
|
@click="viewMenuOpen = !viewMenuOpen"
|
||||||
|
>
|
||||||
|
보기 모드⌄
|
||||||
|
</button>
|
||||||
<span v-if="viewMenuOpen" class="dropdown-menu">
|
<span v-if="viewMenuOpen" class="dropdown-menu">
|
||||||
<button
|
<button
|
||||||
@click="
|
@click="
|
||||||
@@ -178,7 +183,7 @@ onMounted(load);
|
|||||||
</td>
|
</td>
|
||||||
<td :class="`name-cell npc-${general.npcState}`">{{ general.name }}</td>
|
<td :class="`name-cell npc-${general.npcState}`">{{ general.name }}</td>
|
||||||
<td>{{ formatOfficerLevelText(general.officerLevel, data?.nation.level) }}</td>
|
<td>{{ formatOfficerLevelText(general.officerLevel, data?.nation.level) }}</td>
|
||||||
<td>{{ rank(general) }}<br />({{ (general.dedicationLevel * 200).toLocaleString() }})</td>
|
<td>{{ general.dedicationText }}<br />({{ general.bill.toLocaleString() }})</td>
|
||||||
<td>Lv {{ general.experienceLevel }}<br />({{ general.personality?.name ?? '-' }})</td>
|
<td>Lv {{ general.experienceLevel }}<br />({{ general.personality?.name ?? '-' }})</td>
|
||||||
<td>{{ general.stats.leadership }}</td>
|
<td>{{ general.stats.leadership }}</td>
|
||||||
<td>{{ general.stats.strength }}</td>
|
<td>{{ general.stats.strength }}</td>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { computed, onMounted, ref } from 'vue';
|
|||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { formatLog } from '../utils/formatLog';
|
import { formatLog } from '../utils/formatLog';
|
||||||
import { legacyNationTextColor } from '../utils/legacyNationColor';
|
import { legacyNationTextColor } from '../utils/legacyNationColor';
|
||||||
|
import { formatNationLevelText } from '../utils/nationFormat';
|
||||||
import { trpc } from '../utils/trpc';
|
import { trpc } from '../utils/trpc';
|
||||||
|
|
||||||
type Result = Awaited<ReturnType<typeof trpc.nation.getNationInfo.query>>;
|
type Result = Awaited<ReturnType<typeof trpc.nation.getNationInfo.query>>;
|
||||||
@@ -11,9 +12,7 @@ const router = useRouter();
|
|||||||
const error = ref('');
|
const error = ref('');
|
||||||
const number = (value: number) => value.toLocaleString('ko-KR');
|
const number = (value: number) => value.toLocaleString('ko-KR');
|
||||||
const diff = (value: number) => `${value > 0 ? '+' : ''}${number(value)}`;
|
const diff = (value: number) => `${value > 0 ? '+' : ''}${number(value)}`;
|
||||||
const nationLevel = computed(
|
const nationLevel = computed(() => formatNationLevelText(data.value?.nation.level ?? 0));
|
||||||
() => ['두목', '영주', '군벌', '주자사', '주목', '공', '왕', '황제'][data.value?.nation.level ?? 0] ?? '-'
|
|
||||||
);
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
try {
|
try {
|
||||||
data.value = await trpc.nation.getNationInfo.query();
|
data.value = await trpc.nation.getNationInfo.query();
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue';
|
import { onMounted, ref } from 'vue';
|
||||||
|
|
||||||
import { formatOfficerLevelText } from '../utils/nationFormat';
|
import { formatNationLevelText, formatOfficerLevelText } from '../utils/nationFormat';
|
||||||
import { getNpcColor } from '../utils/npcColor';
|
import { getNpcColor } from '../utils/npcColor';
|
||||||
import { trpc } from '../utils/trpc';
|
import { trpc } from '../utils/trpc';
|
||||||
|
|
||||||
@@ -12,16 +12,6 @@ const nations = ref<Directory>([]);
|
|||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const error = ref('');
|
const error = ref('');
|
||||||
|
|
||||||
const nationLevelText: Record<number, string> = {
|
|
||||||
7: '황제',
|
|
||||||
6: '왕',
|
|
||||||
5: '공',
|
|
||||||
4: '주목',
|
|
||||||
3: '주자사',
|
|
||||||
2: '군벌',
|
|
||||||
1: '호족',
|
|
||||||
0: '방랑군',
|
|
||||||
};
|
|
||||||
const whiteTextColors = new Set([
|
const whiteTextColors = new Set([
|
||||||
'',
|
'',
|
||||||
'#330000',
|
'#330000',
|
||||||
@@ -111,7 +101,7 @@ onMounted(() => {
|
|||||||
<td class="label-cell">성 향</td>
|
<td class="label-cell">성 향</td>
|
||||||
<td class="value-wide type-name">{{ Array.from(nation.type.name).join(' ') }}</td>
|
<td class="value-wide type-name">{{ Array.from(nation.type.name).join(' ') }}</td>
|
||||||
<td class="label-cell">작 위</td>
|
<td class="label-cell">작 위</td>
|
||||||
<td class="value-wide">{{ nationLevelText[nation.level] ?? '-' }}</td>
|
<td class="value-wide">{{ formatNationLevelText(nation.level) }}</td>
|
||||||
<td class="label-cell">국 력</td>
|
<td class="label-cell">국 력</td>
|
||||||
<td class="value-wide">{{ nation.power }}</td>
|
<td class="value-wide">{{ nation.power }}</td>
|
||||||
<td class="label-cell">장수 / 속령</td>
|
<td class="label-cell">장수 / 속령</td>
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ onMounted(() => {
|
|||||||
<td>{{ valueOrDash(general.leadership) }}</td>
|
<td>{{ valueOrDash(general.leadership) }}</td>
|
||||||
<td>{{ valueOrDash(general.strength) }}</td>
|
<td>{{ valueOrDash(general.strength) }}</td>
|
||||||
<td>{{ valueOrDash(general.intel) }}</td>
|
<td>{{ valueOrDash(general.intel) }}</td>
|
||||||
<td>{{ valueOrDash(general.officerLevel) }}</td>
|
<td>{{ valueOrDash(general.officerLevelText) }}</td>
|
||||||
<td>{{ valueOrDash(general.personal) }}</td>
|
<td>{{ valueOrDash(general.personal) }}</td>
|
||||||
<td>{{ valueOrDash(general.special) }}</td>
|
<td>{{ valueOrDash(general.special) }}</td>
|
||||||
<td>{{ valueOrDash(general.special2) }}</td>
|
<td>{{ valueOrDash(general.special2) }}</td>
|
||||||
|
|||||||
@@ -358,8 +358,11 @@ onBeforeUnmount(() => {
|
|||||||
<span role="tooltip">{{ candidate.specialDomesticInfo }}</span>
|
<span role="tooltip">{{ candidate.specialDomesticInfo }}</span>
|
||||||
</span>
|
</span>
|
||||||
/
|
/
|
||||||
<span>{{ candidate.specialWar ?? '-' }}</span
|
<span v-if="candidate.specialWarName" class="trait-tooltip" tabindex="0">
|
||||||
><br /><br />
|
{{ candidate.specialWarName }}
|
||||||
|
<span role="tooltip">{{ candidate.specialWarInfo }}</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>-</span><br /><br />
|
||||||
보병: {{ Math.trunc(candidate.dex[0] / 1000) }}K<br />
|
보병: {{ Math.trunc(candidate.dex[0] / 1000) }}K<br />
|
||||||
궁병: {{ Math.trunc(candidate.dex[1] / 1000) }}K<br />
|
궁병: {{ Math.trunc(candidate.dex[1] / 1000) }}K<br />
|
||||||
기병: {{ Math.trunc(candidate.dex[2] / 1000) }}K<br />
|
기병: {{ Math.trunc(candidate.dex[2] / 1000) }}K<br />
|
||||||
@@ -408,8 +411,11 @@ onBeforeUnmount(() => {
|
|||||||
<span role="tooltip">{{ selectedCandidate.specialDomesticInfo }}</span>
|
<span role="tooltip">{{ selectedCandidate.specialDomesticInfo }}</span>
|
||||||
</span>
|
</span>
|
||||||
/
|
/
|
||||||
<span>{{ selectedCandidate.specialWar ?? '-' }}</span
|
<span v-if="selectedCandidate.specialWarName" class="trait-tooltip" tabindex="0">
|
||||||
><br /><br />
|
{{ selectedCandidate.specialWarName }}
|
||||||
|
<span role="tooltip">{{ selectedCandidate.specialWarInfo }}</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>-</span><br /><br />
|
||||||
보병: {{ Math.trunc(selectedCandidate.dex[0] / 1000) }}K<br />
|
보병: {{ Math.trunc(selectedCandidate.dex[0] / 1000) }}K<br />
|
||||||
궁병: {{ Math.trunc(selectedCandidate.dex[1] / 1000) }}K<br />
|
궁병: {{ Math.trunc(selectedCandidate.dex[1] / 1000) }}K<br />
|
||||||
기병: {{ Math.trunc(selectedCandidate.dex[2] / 1000) }}K<br />
|
기병: {{ Math.trunc(selectedCandidate.dex[2] / 1000) }}K<br />
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import assert from 'node:assert/strict';
|
||||||
|
import { describe, it } from 'node:test';
|
||||||
|
|
||||||
|
import { formatNationLevelText, formatOfficerLevelText } from '../src/utils/nationFormat.ts';
|
||||||
|
|
||||||
|
void describe('nationFormat Ref labels', () => {
|
||||||
|
void it('uses the Ref nation-level and nation-dependent office names', () => {
|
||||||
|
assert.equal(formatNationLevelText(0), '방랑군');
|
||||||
|
assert.equal(formatNationLevelText(3), '주자사');
|
||||||
|
assert.equal(formatNationLevelText(7), '황제');
|
||||||
|
assert.equal(formatOfficerLevelText(9, 3), '간의대부');
|
||||||
|
assert.equal(formatOfficerLevelText(5, 3), '-');
|
||||||
|
assert.equal(formatOfficerLevelText(5), '제3모사');
|
||||||
|
});
|
||||||
|
|
||||||
|
void it('does not expose unknown numeric levels', () => {
|
||||||
|
assert.equal(formatNationLevelText(99), '-');
|
||||||
|
assert.equal(formatOfficerLevelText(99), '-');
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user