2021-11-11 02:43:38 +01:00
|
|
|
import { SYSTEM_RDD } from "./constants.js";
|
2021-05-11 00:52:25 +02:00
|
|
|
import { RdDItemSigneDraconique } from "./item-signedraconique.js";
|
2022-11-05 18:19:53 +01:00
|
|
|
import { TMRUtility } from "./tmr-utility.js";
|
2021-05-10 19:17:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Item sheet pour signes draconiques
|
|
|
|
* @extends {ItemSheet}
|
|
|
|
*/
|
|
|
|
export class RdDSigneDraconiqueItemSheet extends ItemSheet {
|
|
|
|
|
|
|
|
/** @override */
|
|
|
|
static get defaultOptions() {
|
|
|
|
return mergeObject(super.defaultOptions, {
|
2021-11-11 02:43:38 +01:00
|
|
|
classes: [SYSTEM_RDD, "sheet", "item"],
|
2021-05-10 19:17:31 +02:00
|
|
|
template: "systems/foundryvtt-reve-de-dragon/templates/item-signedraconique-sheet.html",
|
|
|
|
width: 550,
|
|
|
|
height: 550
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
_getHeaderButtons() {
|
|
|
|
let buttons = super._getHeaderButtons();
|
|
|
|
buttons.unshift({ class: "post", icon: "fas fa-comment", onclick: ev => this.item.postItem() });
|
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
|
|
setPosition(options = {}) {
|
|
|
|
const position = super.setPosition(options);
|
|
|
|
const sheetHeader = this.element.find(".sheet-header");
|
|
|
|
const sheetBody = this.element.find(".sheet-body");
|
2022-09-24 00:31:51 +02:00
|
|
|
sheetBody.css("height", position.height - sheetHeader[0].clientHeight)
|
2021-05-10 19:17:31 +02:00
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async getData() {
|
2022-09-07 18:47:56 +02:00
|
|
|
const formData = duplicate(this.item);
|
2022-09-24 00:31:51 +02:00
|
|
|
this.tmrs = TMRUtility.buildSelectionTypesTMR(this.item.system.typesTMR);
|
2022-06-12 08:17:59 +02:00
|
|
|
mergeObject(formData, {
|
2022-09-24 00:31:51 +02:00
|
|
|
tmrs: this.tmrs,
|
2022-06-12 08:17:59 +02:00
|
|
|
title: formData.name,
|
2021-05-10 19:17:31 +02:00
|
|
|
isGM: game.user.isGM,
|
2022-09-24 00:31:51 +02:00
|
|
|
owner: this.actor?.isOwner,
|
2021-05-10 19:17:31 +02:00
|
|
|
isOwned: this.actor ? true : false,
|
|
|
|
actorId: this.actor?.id,
|
|
|
|
editable: this.isEditable,
|
|
|
|
cssClass: this.isEditable ? "editable" : "locked",
|
2022-06-12 08:17:59 +02:00
|
|
|
});
|
|
|
|
return formData;
|
2021-05-10 19:17:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
|
|
activateListeners(html) {
|
|
|
|
super.activateListeners(html);
|
|
|
|
|
|
|
|
if (!this.options.editable) return;
|
|
|
|
|
2021-05-11 21:21:33 +02:00
|
|
|
html.find(".signe-aleatoire").click(event => this.setSigneAleatoire());
|
2022-09-24 00:31:51 +02:00
|
|
|
html.find("input.select-tmr").change((event) => this.onSelectTmr(event));
|
2021-05-11 21:21:33 +02:00
|
|
|
html.find(".signe-xp-sort").change((event) => this.onValeurXpSort(event.currentTarget.attributes['data-typereussite']?.value, Number(event.currentTarget.value)));
|
|
|
|
}
|
|
|
|
|
|
|
|
async setSigneAleatoire() {
|
|
|
|
const newSigne = await RdDItemSigneDraconique.randomSigneDraconique();
|
2022-09-07 18:47:56 +02:00
|
|
|
this.item.update(newSigne);
|
2021-05-10 19:17:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async onSelectTmr(event) {
|
2022-09-24 00:31:51 +02:00
|
|
|
const tmrName = $(event.currentTarget)?.data("tmr-name");
|
|
|
|
const onTmr = this.tmrs.find(it => it.name == tmrName);
|
|
|
|
if (onTmr){
|
|
|
|
onTmr.selected = event.currentTarget.checked;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.item.update({ 'system.typesTMR': TMRUtility.buildListTypesTMRSelection(this.tmrs) });
|
2021-05-10 19:17:31 +02:00
|
|
|
}
|
|
|
|
|
2021-05-11 00:52:25 +02:00
|
|
|
async onValeurXpSort(event) {
|
|
|
|
const codeReussite = event.currentTarget.attributes['data-typereussite']?.value ?? 0;
|
|
|
|
const xp = Number(event.currentTarget.value);
|
2022-09-07 18:47:56 +02:00
|
|
|
const oldValeur = this.item.system.valeur;
|
2021-05-11 00:52:25 +02:00
|
|
|
const newValeur = RdDItemSigneDraconique.calculValeursXpSort(codeReussite, xp, oldValeur);
|
2022-09-07 18:47:56 +02:00
|
|
|
await this.item.update({ 'system.valeur': newValeur });
|
2021-05-10 19:17:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
get template() {
|
|
|
|
return `systems/foundryvtt-reve-de-dragon/templates/item-signedraconique-sheet.html`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get title() {
|
|
|
|
return `Signe draconique: ${this.object.name}`;
|
|
|
|
}
|
|
|
|
}
|