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

551 lines
20 KiB
JavaScript
Raw Normal View History

2020-05-21 21:48:20 +02:00
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
2020-05-22 22:37:02 +02:00
import { RdDUtility } from "./rdd-utility.js";
import { HtmlUtility } from "./html-utility.js";
import { RdDItem } from "./item.js";
import { RdDItemArme } from "./item-arme.js";
import { RdDItemCompetence } from "./item-competence.js";
2020-09-20 21:45:46 +02:00
/* -------------------------------------------- */
2020-05-22 00:48:43 +02:00
export class RdDActorSheet extends ActorSheet {
2020-05-21 21:48:20 +02:00
/** @override */
static get defaultOptions() {
RdDUtility.initAfficheContenu();
return mergeObject(super.defaultOptions, {
classes: ["rdd", "sheet", "actor"],
template: "systems/foundryvtt-reve-de-dragon/templates/actor-sheet.html",
width: 640,
2020-11-29 18:21:34 +01:00
//height: 720,
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
2020-12-06 22:19:40 +01:00
editCaracComp: false,
showCompNiveauBase: false,
2021-01-03 19:19:02 +01:00
montrerArchetype: false
2020-05-21 21:48:20 +02:00
});
}
/* -------------------------------------------- */
2020-05-22 19:28:01 +02:00
getData() {
let data = super.getData();
if ( data.actor.type == 'creature' || data.actor.type == 'humanoide') return data; // Shortcut
data.data.editCaracComp = this.options.editCaracComp;
data.data.showCompNiveauBase = this.options.showCompNiveauBase;
2021-01-03 19:19:02 +01:00
data.data.montrerArchetype = this.options.montrerArchetype;
data.itemsByType = RdDItem.buildItemsClassification(data.items);
2021-01-03 19:19:02 +01:00
2020-06-07 23:16:29 +02:00
// Competence per category
2020-08-13 22:28:56 +02:00
let competenceXPTotal = 0;
data.competenceByCategory = RdDItem.classify(
data.itemsByType.competence,
item => item.data.categorie,
item => {
this.actor.checkCompetenceXP(item.name); // Petite vérification experience
item.data.showCompetence = !data.data.showCompNiveauBase || (Number(item.data.niveau) != Number(RdDUtility.getLevelCategory(item.data.categorie)));
// Ignorer les compétences 'troncs' à ce stade
competenceXPTotal += RdDItemCompetence.isTronc(item.name) ? 0 : RdDItemCompetence.computeCompetenceXPCost(item);
return item;
});
competenceXPTotal += RdDItemCompetence.computeCompetenceTroncXP(data.itemsByType.competence);
2020-08-13 22:28:56 +02:00
data.data.competenceXPTotal = competenceXPTotal;
// Compute current carac sum
let sum = 0;
for (let caracName in data.data.carac) {
let currentCarac = data.data.carac[caracName];
if (!currentCarac.derivee) {
sum += parseInt(currentCarac.value);
}
}
2020-08-13 22:28:56 +02:00
data.data.caracSum = sum;
2020-06-10 08:23:58 +02:00
// Force empty arme, at least for Esquive
if (data.itemsByType.arme == undefined) data.itemsByType.arme = [];
for (const arme of data.itemsByType.arme) {
2020-06-10 08:23:58 +02:00
arme.data.niveau = 0; // Per default, TODO to be fixed
for (const melee of data.competenceByCategory.melee) {
if (melee.name == arme.data.competence)
2020-06-10 08:23:58 +02:00
arme.data.niveau = melee.data.niveau
}
for (const tir of data.competenceByCategory.tir) {
if (tir.name == arme.data.competence)
2020-09-02 22:00:35 +02:00
arme.data.niveau = tir.data.niveau
}
for (const lancer of data.competenceByCategory.lancer) {
if (lancer.name == arme.data.competence)
2020-09-02 22:00:35 +02:00
arme.data.niveau = lancer.data.niveau
}
2020-11-23 21:49:30 +01:00
}
// To avoid armour and so on...
data.data.combat = duplicate(RdDUtility.checkNull(data.itemsByType['arme']));
data.data.combat = RdDUtility._finalizeArmeList(data.data.combat, data.itemsByType.competence, data.data.carac);
2020-06-10 08:23:58 +02:00
if (data.competenceByCategory && data.competenceByCategory.melee) {
2020-06-10 08:23:58 +02:00
//Specific case for Esquive and Corps à Corps
for (const melee of data.competenceByCategory.melee) {
2020-06-10 08:23:58 +02:00
if (melee.name == "Esquive")
data.data.combat.push({ name: "Esquive", data: { niveau: melee.data.niveau, description: "", force: 6, initiative: "", competence: "Esquive", dommages: 0 } });
if (melee.name == "Corps à corps") {
let cc_init = RdDUtility.calculInitiative(melee.data.niveau, data.data.carac['melee'].value);
data.data.combat.push(RdDItemArme.mainsNues({ niveau: melee.data.niveau, initiative: cc_init }));
}
2020-06-07 23:16:29 +02:00
}
}
this.armesList = duplicate(data.data.combat);
2020-06-12 22:46:04 +02:00
data.data.carac.taille.isTaille = true; // To avoid button link;
2020-12-05 02:22:37 +01:00
data.data.compteurs.chance.isChance = true;
data.data.blessures.resume = this.actor.computeResumeBlessure(data.data.blessures);
// Mise à jour de l'encombrement total
2020-12-02 14:00:54 +01:00
this.actor.computeEncombrementTotalEtMalusArmure();
2020-11-12 14:43:08 +01:00
// Common data
2020-05-22 19:28:01 +02:00
data.data.competenceByCategory = data.competenceByCategory;
2020-12-20 21:54:09 +01:00
data.data.encTotal = this.actor.encTotal;
data.data.isGM = game.user.isGM;
data.ajustementsConditions = CONFIG.RDD.ajustementsConditions;
data.difficultesLibres = CONFIG.RDD.difficultesLibres;
2020-11-12 14:43:08 +01:00
// low is normal, this the base used to compute the grid.
2020-11-18 20:16:59 +01:00
data.data.fatigue = {
malus: RdDUtility.calculMalusFatigue(data.data.sante.fatigue.value, data.data.sante.endurance.max),
html: "<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix(data.data.sante.fatigue.value, data.data.sante.endurance.max).html() + "</table>"
}
RdDUtility.filterItemsPerTypeForSheet(data);
data.data.sortReserve = data.data.reve.reserve.list;
data.data.caseSpeciales = data.itemsByType['casetmr'];
RdDUtility.buildArbreDeConteneur(this, data);
data.data.surEncombrementMessage = (data.data.compteurs.surenc.value < 0) ? "Sur-Encombrement!" : "";
2020-11-12 14:43:08 +01:00
2020-05-22 19:28:01 +02:00
return data;
}
2020-11-11 11:43:13 +01:00
/* -------------------------------------------- */
async _onDrop(event) {
2021-01-09 09:54:08 +01:00
let toSuper = await RdDUtility.processItemDropEvent(this, event);
if ( toSuper) {
super._onDrop(event);
}
2020-11-11 11:43:13 +01:00
}
2020-11-12 14:43:08 +01:00
2020-11-12 17:06:19 +01:00
/* -------------------------------------------- */
async confirmerSuppression(li) {
let itemId = li.data("item-id");
let objet = this.actor.items.find( item => item._id == itemId );
let msgTxt = "<p>Etes vous certain de vouloir supprimer cet objet ?";
let buttons = { delete: {
icon: '<i class="fas fa-check"></i>',
label: "Supprimer l'objet",
callback: () => {
console.log("Delete : ", itemId);
this.actor.deleteOwnedItem( itemId );
li.slideUp(200, () => this.render(false));
}
},
cancel: {
icon: '<i class="fas fa-times"></i>',
label: "Annuler"
}
}
if ( objet.data.type == 'conteneur' && objet.data.data.contenu.length > 0) {
msgTxt += "<br>Cet objet est aussi un conteneur avec du contenu : choisissez l'option de suppression";
buttons['deleteall'] = {
icon: '<i class="fas fa-check"></i>',
label: "Supprimer le conteneur et tout son contenu",
callback: () => {
console.log("Delete : ", itemId);
this.actor.deleteAllConteneur( itemId );
li.slideUp(200, () => this.render(false));
}
}
}
msgTxt += "</p>";
2020-11-12 17:06:19 +01:00
let d = new Dialog({
title: "Confirmer la suppression",
content: msgTxt,
buttons: buttons,
default: "cancel"
2020-11-12 17:06:19 +01:00
});
d.render(true);
}
/* -------------------------------------------- */
async createEmptyTache() {
await this.actor.createOwnedItem({ name: 'Nouvelle tache', type: 'tache' }, { renderSheet: true });
}
/* -------------------------------------------- */
async creerObjet() {
let itemType = $("#creer-equipement").val();
await this.actor.createOwnedItem({ name: 'Nouveau ' + itemType, type: itemType }, { renderSheet: true });
}
/* -------------------------------------------- */
async selectObjetType() {
let itemType = ["objet", "arme", "armure", "conteneur", "herbe", "ingredient", "livre", "potion", "munition", "monnaie"];
let options = '<span class="competence-label">Selectionnez le type d\'équipement</span><select id="creer-equipement">';
for (let typeName of itemType) {
options += '<option value="' + typeName + '">' + typeName + '</option>'
}
options += '</select>';
let d = new Dialog({
title: "Créer un équipement",
content: options,
buttons: {
one: {
icon: '<i class="fas fa-check"></i>',
label: "Créer l'objet",
callback: () => this.creerObjet()
}
}
});
d.render(true);
}
2020-11-10 13:53:51 +01:00
/* -------------------------------------------- */
2020-05-21 21:48:20 +02:00
/** @override */
activateListeners(html) {
2020-05-21 21:48:20 +02:00
super.activateListeners(html);
2020-12-20 02:05:47 +01:00
HtmlUtility._showControlWhen($(".gm-only"), game.user.isGM);
2020-05-21 21:48:20 +02:00
// 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");
2020-11-05 20:23:16 +01:00
const item = this.actor.getOwnedItem(li.data("item-id"));
2020-05-21 21:48:20 +02:00
item.sheet.render(true);
});
2020-05-21 21:48:20 +02:00
// Delete Inventory Item
html.find('.item-delete').click(ev => {
const li = $(ev.currentTarget).parents(".item");
this.confirmerSuppression(li);
2020-05-21 21:48:20 +02:00
});
html.find('#encaisser-direct').click(ev => {
this.actor.encaisser();
2020-11-07 21:06:37 +01:00
});
html.find('#remise-a-neuf').click(ev => {
if (game.user.isGM) {
this.actor.remiseANeuf();
}
});
html.find('#creer-tache').click(ev => {
this.createEmptyTache();
});
html.find('#creer-un-objet').click(ev => {
this.selectObjetType();
});
2021-01-08 11:56:10 +01:00
html.find('#nettoyer-conteneurs').click(ev => {
this.actor.nettoyerConteneurs();
});
// Blessure control
html.find('.blessure-control').click(ev => {
const li = $(ev.currentTarget).parents(".item");
let btype = li.data("blessure-type");
let index = li.data('blessure-index');
let active = $(ev.currentTarget).data('blessure-active');
//console.log(btype, index, active);
this.actor.manageBlessureFromSheet(btype, index, active).then(this.render(true));
});
// Blessure data
html.find('.blessures-soins').change(ev => {
const li = $(ev.currentTarget).parents(".item");
let btype = li.data('blessure-type');
let index = li.data('blessure-index');
let psoins = li.find('input[name=premiers_soins]').val();
let pcomplets = li.find('input[name=soins_complets]').val();
let jours = li.find('input[name=jours]').val();
let loc = li.find('input[name=localisation]').val();
//console.log(btype, index, psoins, pcomplets, jours, loc);
this.actor.setDataBlessureFromSheet(btype, index, psoins, pcomplets, jours, loc).then(this.render(true));
2020-07-20 12:02:07 +02:00
});
2020-06-23 23:34:12 +02:00
// Equip Inventory Item
html.find('.item-equip').click(ev => {
const li = $(ev.currentTarget).parents(".item");
2020-11-05 20:23:16 +01:00
this.actor.equiperObjet(li.data("item-id"));
2020-06-23 23:34:12 +02:00
this.render(true);
});
2020-06-12 22:46:04 +02:00
// Roll Carac
html.find('.carac-label a').click((event) => {
let caracName = event.currentTarget.attributes.name.value;
this.actor.rollCarac(caracName.toLowerCase());
2020-06-12 22:46:04 +02:00
});
2020-12-06 21:56:59 +01:00
html.find('#chance-actuelle').click((event) => {
this.actor.rollCarac('chance-actuelle');
});
html.find('#chance-appel').click((event) => {
this.actor.rollAppelChance();
});
2020-12-11 08:29:24 +01:00
html.find('#jet-astrologie').click((event) => {
this.actor.astrologieNombresAstraux();
});
2020-05-22 22:37:02 +02:00
// Roll Skill
html.find('.competence-label a').click((event) => {
let compName = event.currentTarget.text;
this.actor.rollCompetence(compName);
2020-05-22 22:37:02 +02:00
});
html.find('.tache-label a').click((event) => {
const li = $(event.currentTarget).parents(".item");
let tacheId = li.data('item-id');
this.actor.rollTache(tacheId);
});
html.find('.meditation-label a').click((event) => {
const li = $(event.currentTarget).parents(".item");
let meditationId = li.data('item-id');
this.actor.rollMeditation(meditationId);
});
// Points de reve actuel
html.find('.ptreve-actuel a').click((event) => {
this.actor.rollCarac('reve-actuel');
2020-12-06 21:56:59 +01:00
});
// Roll Weapon1
2020-06-07 23:16:29 +02:00
html.find('.arme-label a').click((event) => {
let armeName = event.currentTarget.text;
2020-11-23 20:40:56 +01:00
let competenceName = event.currentTarget.attributes['data-competence-name'].value;
2020-12-08 03:04:00 +01:00
this.actor.rollArme(competenceName, armeName);
2020-06-07 23:16:29 +02:00
});
// Initiative pour l'arme
html.find('.arme-initiative a').click((event) => {
let combatant = game.combat.data.combatants.find(c => c.actor.data._id == this.actor.data._id);
if (combatant) {
let armeName = event.currentTarget.attributes['data-arme-name'].value;
let arme = this.armesList.find(a => a.name == armeName);
RdDUtility.rollInitiativeCompetence(combatant._id, arme);
} else {
ui.notifications.info("Impossible de lancer l'initiative sans être dans un combat.");
}
});
// Display TMR, visuualisation
html.find('#visu-tmr').click((event) => {
this.actor.displayTMR("visu");
2020-11-14 20:46:39 +01:00
});
2020-07-25 10:29:28 +02:00
// Display TMR, normal
html.find('#monte-tmr').click((event) => {
this.actor.displayTMR("normal");
2020-07-25 10:29:28 +02:00
});
2020-07-25 10:29:28 +02:00
// Display TMR, fast
html.find('#monte-tmr-rapide').click((event) => {
this.actor.displayTMR("rapide");
2020-07-24 10:51:11 +02:00
});
html.find('#dormir-une-heure').click((event) => {
2020-11-16 04:32:42 +01:00
this.actor.dormir(1);
});
html.find('#dormir-chateau-dormant').click((event) => {
this.actor.dormirChateauDormant();
});
2020-11-16 04:32:42 +01:00
2020-07-24 10:51:11 +02:00
// Display info about queue
html.find('.queuesouffle-label a').click((event) => {
let myID = event.currentTarget.attributes['data-item-id'].value;
2020-07-24 10:51:11 +02:00
const item = this.actor.getOwnedItem(myID);
item.sheet.render(true);
});
// Info sort
2020-07-05 21:45:25 +02:00
html.find('.sort-label a').click((event) => {
2020-07-24 10:51:11 +02:00
let myID = event.currentTarget.attributes['data-id'].value;
const item = this.actor.getOwnedItem(myID);
item.sheet.render(true);
});
// Info sort
html.find('.case-label a').click((event) => {
let myID = event.currentTarget.attributes['data-id'].value;
2020-07-24 10:51:11 +02:00
const item = this.actor.getOwnedItem(myID);
item.sheet.render(true);
2020-07-05 21:45:25 +02:00
});
2020-07-24 10:51:11 +02: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);
});
2020-11-20 12:06:54 +01:00
if (this.options.editCaracComp) {
// On carac change
html.find('.carac-value').change((event) => {
let caracName = event.currentTarget.name.replace(".value", "").replace("data.carac.", "");
//console.log("Value changed :", event, caracName);
this.actor.updateCarac(caracName, parseInt(event.target.value));
});
html.find('.carac-xp').change((event) => {
let caracName = event.currentTarget.name.replace(".xp", "").replace("data.carac.", "");
//console.log("Value changed :", event, caracName);
this.actor.updateCaracXP(caracName, parseInt(event.target.value));
});
2020-11-20 12:06:54 +01:00
// On competence change
html.find('.competence-value').change((event) => {
let compName = event.currentTarget.attributes.compname.value;
//console.log("Competence changed :", compName);
this.actor.updateCompetence(compName, parseInt(event.target.value));
});
2020-11-20 12:06:54 +01:00
// On competence xp change
html.find('.competence-xp').change((event) => {
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCompetenceXP(compName, parseInt(event.target.value));
});
2021-01-03 19:19:02 +01:00
// On competence archetype change
html.find('.competence-archetype').change((event) => {
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCompetenceArchetype(compName, parseInt(event.target.value));
});
2020-11-20 12:06:54 +01:00
}
// Gestion du bouton lock/unlock
2020-12-06 22:19:40 +01:00
html.find('.lock-unlock-sheet').click((event) => {
2020-11-20 12:06:54 +01:00
this.options.editCaracComp = !this.options.editCaracComp;
this.render(true);
});
2021-01-03 19:19:02 +01:00
html.find('#show-hide-competences').click((event) => {
this.options.showCompNiveauBase = !this.options.showCompNiveauBase;
2021-01-03 19:19:02 +01:00
this.render(true);
});
html.find('#show-hide-archetype').click((event) => {
this.options.montrerArchetype = !this.options.montrerArchetype;
2020-12-06 22:19:40 +01:00
this.render(true);
});
2020-07-14 22:19:29 +02:00
// On pts de reve change
html.find('.pointsreve-value').change((event) => {
let reveValue = event.currentTarget.value;
let reve = duplicate(this.actor.data.data.reve.reve);
2020-07-14 22:19:29 +02:00
reve.value = reveValue;
this.actor.update({ "data.reve.reve": reve });
});
2020-11-16 03:52:34 +01:00
// On seuil de reve change
html.find('.seuil-reve-value').change((event) => {
console.log("seuil-reve-value", event.currentTarget)
this.actor.setPointsDeSeuil(event.currentTarget.value);
});
2020-07-14 22:19:29 +02:00
2020-12-18 01:10:03 +01:00
html.find('#attribut-protection-edit').change((event) => {
this.actor.updateProtectionValue(event.currentTarget.attributes.name.value, parseInt(event.target.value));
});
2020-12-18 01:10:03 +01:00
2020-08-29 22:52:41 +02:00
// On stress change
html.find('.compteur-edit').change((event) => {
let fieldName = event.currentTarget.attributes.name.value;
this.actor.updateCompteurValue(fieldName, parseInt(event.target.value));
});
html.find('#ethylisme').change((event) => {
this.actor.setEthylisme(parseInt(event.target.value));
});
2020-08-29 22:52:41 +02:00
html.find('#stress-test').click((event) => {
this.actor.stressTest();
this.render(true);
});
2020-12-16 02:54:28 +01:00
html.find('#moral-malheureux').click((event) => {
this.actor.jetDeMoral('malheureuse');
this.render(true);
});
html.find('#moral-neutre').click((event) => {
this.actor.jetDeMoral('neutre');
this.render(true);
});
html.find('#moral-heureux').click((event) => {
this.actor.jetDeMoral('heureuse');
this.render(true);
});
2020-12-06 20:11:30 +01:00
html.find('#ethylisme-test').click((event) => {
this.actor.ethylismeTest();
this.render(true);
});
2020-12-06 21:39:55 +01:00
html.find('#jet-vie').click((event) => {
this.actor.jetVie();
this.render(true);
});
2020-12-31 00:55:02 +01:00
html.find('.monnaie-plus').click((event) => {
const li = $(event.currentTarget).parents(".item");
this.actor.monnaieIncDec(li.data("item-id"), 1);
2020-12-31 00:55:02 +01:00
this.render(true);
});
html.find('.monnaie-moins').click((event) => {
const li = $(event.currentTarget).parents(".item");
this.actor.monnaieIncDec(li.data("item-id"), -1);
2020-12-31 00:55:02 +01:00
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#vie-plus').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("vie", 1);
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#vie-moins').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("vie", -1);
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#endurance-plus').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("endurance", 1);
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#endurance-moins').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("endurance", -1);
this.render(true);
});
html.find('#ptreve-actuel-plus').click((event) => {
this.actor.reveActuelIncDec(1);
this.render(true);
});
2020-11-17 19:29:18 +01:00
html.find('#ptreve-actuel-moins').click((event) => {
this.actor.reveActuelIncDec(-1);
2020-11-17 19:29:18 +01:00
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#fatigue-plus').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("fatigue", 1);
this.render(true);
});
2020-06-23 23:34:12 +02:00
html.find('#fatigue-moins').click((event) => {
2020-05-28 23:36:09 +02:00
this.actor.santeIncDec("fatigue", -1);
this.render(true);
});
2020-05-21 21:48:20 +02:00
}
2020-05-21 21:48:20 +02:00
/* -------------------------------------------- */
/** @override */
setPosition(options = {}) {
2020-05-21 21:48:20 +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);
}
}