ripcrypt/module/data/Item/Weapon.mjs
2025-10-05 15:25:23 -06:00

258 lines
5.9 KiB
JavaScript

import { barAttribute, optionalInteger, requiredInteger } from "../helpers.mjs";
import { CommonItemData } from "./Common.mjs";
import { gameTerms } from "../../gameTerms.mjs";
import { localizer } from "../../utils/Localizer.mjs";
import { Logger } from "../../utils/Logger.mjs";
const { diffObject, getProperty, setProperty } = foundry.utils;
const { DialogV2 } = foundry.applications.api;
const { fields } = foundry.data;
export class WeaponData extends CommonItemData {
// #region Schema
static defineSchema() {
return {
...super.defineSchema(),
traits: new fields.SetField(
new fields.StringField({
blank: false,
trim: true,
nullable: false,
}),
{
nullable: false,
required: true,
},
),
range: new fields.SchemaField({
short: optionalInteger(),
long: optionalInteger(),
}),
damage: requiredInteger({ min: 0, initial: 0 }),
wear: barAttribute(0, 0, 4),
equipped: new fields.BooleanField({
initial: false,
required: true,
nullable: false,
}),
weight: new fields.StringField({
blank: false,
nullable: true,
initial: null,
options: Object.values(gameTerms.WeightRatings),
}),
};
};
// #endregion Schema
// #region Lifecycle
async _preCreate(item) {
if (this.parent.isEmbedded && this._canEquip()) {
const shouldEquip = await DialogV2.confirm({
window: { title: `Equip Item?` },
content: `Do you want to equip ${item.name}?`,
});
if (shouldEquip) {
this.updateSource({ "equipped": true });
};
};
};
/**
*
* @param {*} changes The expanded object that was used for the update
* @param {*} options
* @param {*} user
* @returns
*/
async _preUpdate(changes, options, user) {
if (options.force && game.settings.get(`ripcrypt`, `devMode`)) { return };
let valid = super._preUpdate(changes, options, user);
if (hasProperty(changes, `system.equipped`) && !this.parent.isEmbedded) {
ui.notifications.error(localizer(
`RipCrypt.notifs.error.cannot-equip-not-embedded`,
{ itemType: `@TYPES.Item.${this.parent.type}` },
));
mergeObject(
changes,
{ "-=system.equipped": null },
{ inplace: true, performDeletions: true },
);
return false;
};
return valid;
};
// #endregion Lifecycle
// #region Helpers
/**
* Used to tell the preUpdate logic whether or not to prevent the item from
* being equipped or not.
*/
_canEquip() {
const parent = this.parent;
if (!parent.isEmbedded || !(parent.parent instanceof Actor)) {
Logger.error(`Unable to equip item when it's not embedded`);
return false;
};
const actor = this.parent.parent.system;
if (actor.equippedWeapons?.length >= actor.limit.weapons) {
return false;
};
return true;
};
get traitString() {
return [...this.traits].join(`, `);
};
get rangeString() {
if (this.range.short && this.range.long) {
return `${this.range.short} / ${this.range.long}`;
};
return String(this.range.short ?? this.range.long ?? ``);
};
// #endregion Helpers
// #region Sheet Data
async getFormFields(_ctx) {
const fields = [
{
id: `quantity`,
type: `integer`,
label: `RipCrypt.common.quantity`,
path: `system.quantity`,
value: this.quantity,
min: 0,
},
{
id: `access`,
type: `dropdown`,
label: `RipCrypt.common.access`,
path: `system.access`,
value: this.access,
limited: false,
options: [
{
label: `RipCrypt.common.empty`,
value: ``,
},
...gameTerms.Access.map(opt => ({
label: `RipCrypt.common.accessLevels.${opt}`,
value: opt,
})),
],
},
{
id: `cost`,
type: `cost`,
label: `RipCrypt.common.cost`,
gold: this.cost.gold,
silver: this.cost.silver,
copper: this.cost.copper,
},
{
id: `weight`,
type: `dropdown`,
label: `RipCrypt.common.weightRating`,
path: `system.weight`,
value: this.weight,
options: [
{
label: `RipCrypt.common.empty`,
value: null,
},
...Object.values(gameTerms.WeightRatings).map(opt => ({
label: `RipCrypt.common.weightRatings.${opt}`,
value: opt,
})),
],
},
{
id: `traits`,
type: `string-set`,
label: `RipCrypt.common.traits`,
placeholder: `RipCrypt.Apps.traits-placeholder`,
path: `system.traits`,
value: this.traitString,
},
];
// Add the range inputs depending on whether the user wants condensed range
// or not.
if (game.settings.get(`ripcrypt`, `condensedRange`)) {
fields.push({
type: `bar`,
label: `RipCrypt.common.range`,
value: {
label: `RipCrypt.Apps.short-range`,
path: `system.range.short`,
value: this.range.short,
},
max: {
label: `RipCrypt.Apps.long-range`,
path: `system.range.long`,
value: this.range.long,
},
});
} else {
fields.push({
id: `short-range`,
type: `integer`,
label: `RipCrypt.Apps.short-range`,
path: `system.range.short`,
value: this.range.short ?? ``,
min: 0,
},
{
id: `long-range`,
type: `integer`,
label: `RipCrypt.Apps.long-range`,
path: `system.range.long`,
value: this.range.long ?? ``,
min: 0,
});
};
fields.push(
{
id: `damage`,
type: `integer`,
label: `RipCrypt.common.damage`,
path: `system.damage`,
value: this.damage,
min: 0,
},
{
type: `bar`,
label: `RipCrypt.common.wear`,
value: {
label: `RipCrypt.Apps.current-wear`,
path: `system.wear.value`,
value: this.wear.value,
min: 0, max: this.wear.max,
},
max: {
label: `RipCrypt.Apps.max-wear`,
path: `system.wear.max`,
value: this.wear.max,
min: 0,
},
},
);
if (this.parent.isEmbedded) {
fields.push({
id: `equipped`,
type: `boolean`,
label: `RipCrypt.common.equipped`,
value: this.equipped,
path: `system.equipped`,
});
};
return fields;
};
// #endregion Sheet Data
};