foundryvtt-reve-de-dragon/module/actor-creature-sheet.js

90 lines
3.0 KiB
JavaScript
Raw Normal View History

2020-09-20 17:38:21 +02:00
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
import { HtmlUtility } from "./html-utility.js";
2020-09-20 17:38:21 +02:00
import { RdDUtility } from "./rdd-utility.js";
import { RdDActorSheet } from "./actor-sheet.js";
import { RdDCarac } from "./rdd-carac.js";
2020-09-20 17:38:21 +02:00
2021-01-19 23:39:35 +01:00
/* -------------------------------------------- */
export class RdDActorCreatureSheet extends RdDActorSheet {
2020-09-20 17:38:21 +02:00
/** @override */
2021-01-19 23:39:35 +01:00
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: ["rdd", "sheet", "actor"],
template: "systems/foundryvtt-reve-de-dragon/templates/actor-creature-sheet.html",
2020-09-20 17:38:21 +02:00
width: 640,
height: 720,
2021-01-19 23:39:35 +01:00
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }]
2020-09-20 17:38:21 +02:00
});
}
/* -------------------------------------------- */
async getData() {
let formData = await super.getData();
2021-03-16 22:56:57 +01:00
console.log("Creature : ", formData);
formData.calc = {
caracTotal: RdDCarac.computeTotal(formData.data.carac),
resumeBlessures: this.actor.computeResumeBlessure(formData.data.blessures),
encTotal: await this.actor.computeEncombrementTotalEtMalusArmure(),
2020-09-20 17:38:21 +02:00
}
formData.calc.surEncombrementMessage = (formData.data.compteurs.surenc.value < 0) ? "Sur-Encombrement!" : "";
2021-01-19 23:39:35 +01:00
2021-03-16 22:56:57 +01:00
RdDUtility.filterItemsPerTypeForSheet(formData);
RdDUtility.buildArbreDeConteneur(this, formData);
2021-03-16 22:56:57 +01:00
console.log("Creature : ", this.objetVersConteneur, formData);
2020-11-18 16:57:58 +01:00
2021-03-16 22:56:57 +01:00
return formData;
2020-09-20 17:38:21 +02:00
}
2020-09-20 17:38:21 +02:00
/* -------------------------------------------- */
/** @override */
2021-01-19 23:39:35 +01:00
activateListeners(html) {
2020-09-20 17:38:21 +02:00
super.activateListeners(html);
HtmlUtility._showControlWhen($(".gm-only"), game.user.isGM);
2020-09-20 17:38:21 +02:00
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// On competence change
html.find('.creature-carac').change((event) => {
2021-01-19 23:39:35 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "carac_value", parseInt(event.target.value));
2020-09-20 17:38:21 +02:00
});
2021-01-19 23:39:35 +01:00
html.find('.creature-niveau').change((event) => {
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "niveau", parseInt(event.target.value));
});
2021-01-19 23:39:35 +01:00
html.find('.creature-dommages').change((event) => {
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "dommages", parseInt(event.target.value));
});
}
2021-01-19 23:39:35 +01:00
2020-09-20 17:38:21 +02:00
/* -------------------------------------------- */
/** @override */
2021-01-19 23:39:35 +01:00
setPosition(options = {}) {
2020-09-20 17:38:21 +02:00
const position = super.setPosition(options);
const sheetBody = this.element.find(".sheet-body");
const bodyHeight = position.height - 192;
sheetBody.css("height", bodyHeight);
return position;
}
/* -------------------------------------------- */
/** @override */
_updateObject(event, formData) {
// Update the Actor
return this.object.update(formData);
}
}