2021-01-10 22:12:07 +01:00
|
|
|
/**
|
|
|
|
* Extend the basic ActorSheet with some very simple modifications
|
|
|
|
* @extends {ActorSheet}
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { RdDUtility } from "./rdd-utility.js";
|
|
|
|
import { HtmlUtility } from "./html-utility.js";
|
2021-02-05 01:38:40 +01:00
|
|
|
import { Misc } from "./misc.js";
|
2021-12-05 01:48:26 +01:00
|
|
|
import { RdDSheetUtility } from "./rdd-sheet-utility.js";
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2022-01-01 14:01:41 +01:00
|
|
|
/* -------------------------------------------- */
|
2021-01-10 22:12:07 +01:00
|
|
|
export class RdDActorVehiculeSheet extends ActorSheet {
|
|
|
|
|
|
|
|
/** @override */
|
2022-01-01 14:01:41 +01:00
|
|
|
static get defaultOptions() {
|
2021-01-10 22:12:07 +01:00
|
|
|
RdDUtility.initAfficheContenu();
|
|
|
|
|
2022-01-01 14:01:41 +01:00
|
|
|
return mergeObject(super.defaultOptions, {
|
|
|
|
classes: ["rdd", "sheet", "actor"],
|
|
|
|
template: "systems/foundryvtt-reve-de-dragon/templates/actor-vehicule-sheet.html",
|
2021-01-10 22:12:07 +01:00
|
|
|
width: 640,
|
|
|
|
height: 720,
|
2022-01-01 14:01:41 +01:00
|
|
|
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac" }],
|
|
|
|
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }]
|
2021-01-10 22:12:07 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-01 14:01:41 +01:00
|
|
|
/* -------------------------------------------- */
|
2021-01-10 22:12:07 +01:00
|
|
|
_checkNull(items) {
|
|
|
|
if (items && items.length) {
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
2021-03-17 01:21:37 +01:00
|
|
|
async getData() {
|
2021-03-25 03:18:27 +01:00
|
|
|
const objectData = Misc.data(this.object);
|
|
|
|
let formData = {
|
|
|
|
title: this.title,
|
|
|
|
id: objectData.id,
|
|
|
|
type: objectData.type,
|
|
|
|
img: objectData.img,
|
|
|
|
name: objectData.name,
|
|
|
|
editable: this.isEditable,
|
|
|
|
cssClass: this.isEditable ? "editable" : "locked",
|
|
|
|
data: foundry.utils.deepClone(Misc.templateData(this.object)),
|
|
|
|
effects: this.object.effects.map(e => foundry.utils.deepClone(e.data)),
|
|
|
|
limited: this.object.limited,
|
|
|
|
options: this.options,
|
|
|
|
owner: this.document.isOwner,
|
|
|
|
itemsByType: Misc.classify(this.object.items.map(i => foundry.utils.deepClone(i.data))),
|
|
|
|
};
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2021-03-16 22:56:57 +01:00
|
|
|
RdDUtility.filterItemsPerTypeForSheet(formData);
|
2021-05-07 01:47:51 +02:00
|
|
|
this.objetVersConteneur = RdDUtility.buildArbreDeConteneurs(formData.conteneurs, formData.objets);
|
|
|
|
formData.conteneurs = RdDUtility.conteneursRacine(formData.conteneurs);
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2021-03-17 01:21:37 +01:00
|
|
|
formData.options.isGM = game.user.isGM;
|
|
|
|
|
2021-12-05 21:18:00 +01:00
|
|
|
formData.calc = {
|
2021-03-17 01:21:37 +01:00
|
|
|
encTotal: await this.actor.computeEncombrementTotalEtMalusArmure(),
|
2021-12-05 21:18:00 +01:00
|
|
|
surEncombrementMessage: this.actor.getMessageSurEncombrement()
|
2021-03-17 01:21:37 +01:00
|
|
|
}
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2021-03-16 22:56:57 +01:00
|
|
|
console.log("DATA", formData);
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2021-03-16 22:56:57 +01:00
|
|
|
return formData;
|
2021-01-10 22:12:07 +01:00
|
|
|
}
|
2022-01-01 14:01:41 +01:00
|
|
|
|
2021-01-10 22:12:07 +01:00
|
|
|
/* -------------------------------------------- */
|
2021-05-07 01:47:51 +02:00
|
|
|
async _onDropItem(event, dragData) {
|
2022-01-01 14:01:41 +01:00
|
|
|
const destItemId = $(event.target)?.closest('.item').attr('data-item-id');
|
2021-12-05 16:48:18 +01:00
|
|
|
const dropParams = RdDSheetUtility.prepareItemDropParameters(destItemId, this.actor.id, dragData, this.objetVersConteneur);
|
|
|
|
const callSuper = await this.actor.processDropItem(dropParams);
|
2021-05-07 01:47:51 +02:00
|
|
|
if (callSuper) {
|
|
|
|
await super._onDropItem(event, dragData)
|
2021-01-10 22:12:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-02 16:04:35 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async createItem(name, type) {
|
|
|
|
await this.actor.createEmbeddedDocuments('Item', [{ name: name, type: type }], { renderSheet: true });
|
|
|
|
}
|
|
|
|
|
2021-06-02 17:39:16 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async monnaieIncDec(id, value) {
|
|
|
|
let monnaie = this.getMonnaie(id);
|
|
|
|
if (monnaie) {
|
|
|
|
const quantite = Math.max(0, Misc.templateData(monnaie).quantite + value);
|
|
|
|
await this.updateEmbeddedDocuments('Item', [{ _id: monnaie.id, 'data.quantite': quantite }]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-10 22:12:07 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
2022-01-01 14:01:41 +01:00
|
|
|
activateListeners(html) {
|
2021-01-10 22:12:07 +01:00
|
|
|
super.activateListeners(html);
|
|
|
|
|
|
|
|
HtmlUtility._showControlWhen($(".gm-only"), game.user.isGM);
|
|
|
|
|
|
|
|
// Everything below here is only needed if the sheet is editable
|
|
|
|
if (!this.options.editable) return;
|
|
|
|
|
|
|
|
// Update Inventory Item
|
2021-12-11 02:20:20 +01:00
|
|
|
html.find('.item-edit').click(async event => {
|
2021-12-05 01:48:26 +01:00
|
|
|
const item = RdDSheetUtility.getItem(event, this.actor);
|
2021-01-10 22:12:07 +01:00
|
|
|
item.sheet.render(true);
|
|
|
|
});
|
|
|
|
// Delete Inventory Item
|
2021-12-11 02:20:20 +01:00
|
|
|
html.find('.item-delete').click(async event => {
|
2021-12-05 01:48:26 +01:00
|
|
|
const li = RdDSheetUtility.getEventElement(event);
|
2021-01-11 16:29:41 +01:00
|
|
|
RdDUtility.confirmerSuppression(this, li);
|
2021-01-10 22:12:07 +01:00
|
|
|
});
|
|
|
|
|
2021-06-02 16:04:35 +02:00
|
|
|
html.find('.creer-un-objet').click(async event => {
|
2022-01-01 14:01:41 +01:00
|
|
|
RdDUtility.selectObjetType(this);
|
2021-06-02 16:04:35 +02:00
|
|
|
});
|
|
|
|
html.find('#nettoyer-conteneurs').click(async event => {
|
|
|
|
this.actor.nettoyerConteneurs();
|
|
|
|
});
|
|
|
|
|
2021-06-02 17:39:16 +02:00
|
|
|
html.find('.monnaie-plus').click(async event => {
|
2021-12-05 01:48:26 +01:00
|
|
|
this.actor.monnaieIncDec(RdDSheetUtility.getItemId(event), 1);
|
2021-06-02 17:39:16 +02:00
|
|
|
});
|
|
|
|
html.find('.monnaie-moins').click(async event => {
|
2021-12-05 01:48:26 +01:00
|
|
|
this.actor.monnaieIncDec(RdDSheetUtility.getItemId(event), -1);
|
2021-06-02 17:39:16 +02:00
|
|
|
});
|
|
|
|
|
2021-01-10 22:12:07 +01:00
|
|
|
// Display info about queue
|
|
|
|
html.find('.conteneur-name a').click((event) => {
|
2021-12-05 01:48:26 +01:00
|
|
|
RdDUtility.toggleAfficheContenu(RdDSheetUtility.getItemId(event));
|
2021-01-10 22:12:07 +01:00
|
|
|
this.render(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2022-01-01 14:01:41 +01:00
|
|
|
|
2021-01-10 22:12:07 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
2021-05-09 18:16:01 +02:00
|
|
|
setPosition(options = {}) {
|
2021-01-10 22:12:07 +01:00
|
|
|
const position = super.setPosition(options);
|
2021-05-09 18:16:01 +02:00
|
|
|
const sheetHeader = this.element.find(".sheet-header");
|
|
|
|
const sheetTabs = this.element.find(".sheet-tabs");
|
2021-01-10 22:12:07 +01:00
|
|
|
const sheetBody = this.element.find(".sheet-body");
|
2021-05-09 18:16:01 +02:00
|
|
|
const bodyHeight = position.height - sheetHeader[0].clientHeight - sheetTabs[0].clientHeight;
|
2021-01-10 22:12:07 +01:00
|
|
|
sheetBody.css("height", bodyHeight);
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
|
|
_updateObject(event, formData) {
|
|
|
|
// Update the Actor
|
|
|
|
return this.object.update(formData);
|
|
|
|
}
|
|
|
|
}
|