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-01-10 22:12:07 +01:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
export class RdDActorVehiculeSheet extends ActorSheet {
|
|
|
|
|
|
|
|
/** @override */
|
|
|
|
static get defaultOptions() {
|
|
|
|
RdDUtility.initAfficheContenu();
|
|
|
|
|
|
|
|
return mergeObject(super.defaultOptions, {
|
|
|
|
classes: ["rdd", "sheet", "actor"],
|
|
|
|
template: "systems/foundryvtt-reve-de-dragon/templates/actor-vehicule-sheet.html",
|
|
|
|
width: 640,
|
|
|
|
height: 720,
|
|
|
|
tabs: [{navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac"}],
|
|
|
|
dragDrop: [{dragSelector: ".item-list .item", dropSelector: null}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
_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);
|
|
|
|
RdDUtility.buildArbreDeConteneur(this, formData);
|
2021-01-10 22:12:07 +01:00
|
|
|
|
2021-03-17 01:21:37 +01:00
|
|
|
formData.options.isGM = game.user.isGM;
|
|
|
|
|
|
|
|
formData.calc ={
|
|
|
|
encTotal: await this.actor.computeEncombrementTotalEtMalusArmure(),
|
|
|
|
}
|
|
|
|
formData.calc.surEncombrementMessage = formData.calc.encTotal > formData.data.capacite_encombrement ? "Sur-Encombrement!" : "",
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async _onDrop(event) {
|
|
|
|
let toSuper = await RdDUtility.processItemDropEvent(this, event);
|
|
|
|
if ( toSuper) {
|
|
|
|
super._onDrop(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
|
|
activateListeners(html) {
|
|
|
|
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
|
|
|
|
html.find('.item-edit').click(ev => {
|
|
|
|
const li = $(ev.currentTarget).parents(".item");
|
|
|
|
const item = this.actor.getOwnedItem(li.data("itemId"));
|
|
|
|
item.sheet.render(true);
|
|
|
|
});
|
|
|
|
// Delete Inventory Item
|
|
|
|
html.find('.item-delete').click(ev => {
|
|
|
|
const li = $(ev.currentTarget).parents(".item");
|
2021-01-11 16:29:41 +01:00
|
|
|
RdDUtility.confirmerSuppression(this, li);
|
2021-01-10 22:12:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Display info about queue
|
|
|
|
html.find('.conteneur-name a').click((event) => {
|
|
|
|
let myID = event.currentTarget.attributes['data-item-id'].value;
|
|
|
|
RdDUtility.toggleAfficheContenu(myID);
|
|
|
|
this.render(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
|
|
setPosition(options={}) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|