foundryvtt-reve-de-dragon/module/rdd-tmr-dialog.js

623 lines
24 KiB
JavaScript
Raw Normal View History

2020-07-05 21:45:25 +02:00
/**
* Extend the base Dialog entity by defining a custom window to perform spell.
* @extends {Dialog}
*/
2020-07-06 09:03:21 +02:00
import { RdDUtility } from "./rdd-utility.js";
2020-07-17 22:04:35 +02:00
import { TMRUtility } from "./tmr-utility.js";
import { RdDRollTables } from "./rdd-rolltables.js";
2020-11-12 16:35:51 +01:00
import { RdDResolutionTable } from "./rdd-resolution-table.js";
2020-07-05 21:45:25 +02:00
2020-11-18 23:49:05 +01:00
/* -------------------------------------------- */
const tmrConstants = {
col1_y: 30,
col2_y: 55,
cellw: 55,
cellh: 55,
gridx: 28,
gridy: 28
}
2020-11-18 23:49:05 +01:00
/* -------------------------------------------- */
2020-07-05 21:45:25 +02:00
export class RdDTMRDialog extends Dialog {
/* -------------------------------------------- */
2020-11-14 20:46:39 +01:00
constructor(html, actor, tmrData, viewOnly) {
const dialogConf = {
title: "Terres Médianes de Rêve",
2020-07-05 21:45:25 +02:00
content: html,
buttons: {
closeButton: { label: "Fermer", callback: html => this.close(html) }
},
default: "closeButton"
}
const dialogOptions = {
classes: ["tmrdialog"],
width: 920, height: 980,
'z-index': 20
}
2020-07-05 21:45:25 +02:00
super(dialogConf, dialogOptions);
this.tmrdata = duplicate(tmrData);
2020-07-14 22:19:29 +02:00
this.actor = actor;
2020-11-17 18:08:19 +01:00
this.actor.tmrApp = this; // reference this app in the actor structure
2020-11-14 20:46:39 +01:00
this.viewOnly = viewOnly
this.nbFatigue = this.viewOnly ? 0 : 1; // 1 premier point de fatigue du à la montée
2020-07-21 23:51:24 +02:00
this.rencontresExistantes = duplicate(this.actor.data.data.reve.rencontre.list);
2020-07-26 18:44:03 +02:00
this.sortReserves = duplicate(this.actor.data.data.reve.reserve.list);
2020-11-17 18:08:19 +01:00
this.allTokens = [];
2020-11-20 13:46:43 +01:00
this.rencontreState = 'aucune';
this.pixiApp = new PIXI.Application({ width: 720, height: 860 });
2020-07-14 22:19:29 +02:00
}
/* -------------------------------------------- */
2020-07-25 10:29:28 +02:00
close() {
this.actor.santeIncDec("fatigue", this.nbFatigue).then(super.close()); // moving 1 cell costs 1 fatigue
2020-11-17 18:08:19 +01:00
this.actor.tmrApp = undefined; // Cleanup reference
2020-07-25 10:29:28 +02:00
}
/* -------------------------------------------- */
2020-07-26 18:44:03 +02:00
displaySortReserve() {
console.debug("displaySortReserve", this.sortReserves);
for (let sort of this.sortReserves) {
this._trackToken(this._tokenSortEnReserve(sort));
2020-07-26 18:44:03 +02:00
}
}
/* -------------------------------------------- */
2020-07-21 23:51:24 +02:00
displayPreviousRencontres() {
console.debug("displayPreviousRencontres", this.rencontresExistantes);
2020-07-21 23:51:24 +02:00
for (let rencontre of this.rencontresExistantes) {
this._trackToken(this._tokenRencontre(rencontre));
2020-07-21 23:51:24 +02:00
}
}
/* -------------------------------------------- */
2020-07-21 23:51:24 +02:00
updatePreviousRencontres() {
this._removeTokens(t => t.rencontre != undefined);
this.rencontresExistantes = duplicate(this.actor.data.data.reve.rencontre.list);
this.displayPreviousRencontres();
2020-07-21 23:51:24 +02:00
}
2020-07-26 18:44:03 +02:00
/* -------------------------------------------- */
2020-07-26 18:44:03 +02:00
updateSortReserve() {
this._removeTokens(t => t.sort != undefined);
this.sortReserves = duplicate(this.actor.data.data.reve.reserve.list);
2020-07-26 18:44:03 +02:00
this.displaySortReserve();
}
/* -------------------------------------------- */
2020-07-17 22:04:35 +02:00
async derober() {
await this.actor.addTMRRencontre(this.currentRencontre);
2020-07-17 22:04:35 +02:00
console.log("-> derober", this.currentRencontre);
this._tellToGM(this.actor.name + " s'est dérobé et quitte les TMR.");
2020-07-21 23:51:24 +02:00
this.close();
2020-07-14 22:19:29 +02:00
}
/* -------------------------------------------- */
2020-07-14 22:19:29 +02:00
async refouler(data) {
this._tellToGM(this.actor.name + " a refoulé une rencontre.");
await this.actor.deleteTMRRencontreAtPosition(); // Remove the stored rencontre if necessary
2020-07-17 22:04:35 +02:00
let result = await this.actor.ajouterRefoulement(1);
2020-07-21 23:51:24 +02:00
this.updatePreviousRencontres();
2020-07-14 22:19:29 +02:00
console.log("-> refouler", this.currentRencontre)
2020-07-17 22:04:35 +02:00
this.updateValuesDisplay();
2020-11-20 13:46:43 +01:00
this.nettoyerRencontre();
2020-07-14 22:19:29 +02:00
}
2020-11-20 12:06:54 +01:00
/* -------------------------------------------- */
2020-11-20 13:46:43 +01:00
colorierZoneRencontre( locList) {
2020-11-20 12:06:54 +01:00
this.currentRencontre.graphics = []; // Keep track of rectangles to delete it
this.currentRencontre.locList = duplicate(locList); // And track of allowed location
for (let loc of locList) {
let rect = this._getCaseRectangleCoord( loc);
var rectDraw = new PIXI.Graphics();
rectDraw.beginFill(0xFFFF00, 0.3);
// set the line style to have a width of 5 and set the color to red
rectDraw.lineStyle(5, 0xFF0000);
// draw a rectangle
rectDraw.drawRect(rect.x, rect.y, rect.w, rect.h);
this.pixiApp.stage.addChild(rectDraw);
this.currentRencontre.graphics.push(rectDraw); // garder les objets pour gestion post-click
}
}
2020-11-21 14:30:00 +01:00
/* -------------------------------------------- */
async gererTourbillon( value ) {
this.nbFatigue += value;
await this.actor.updatePointsDeReve( -value );
if ( !this.currentRencontre.tourbillonDirection ) {
this.currentRencontre.tourbillonDirection = TMRUtility.getDirectionPattern();
}
}
2020-11-20 12:06:54 +01:00
/* -------------------------------------------- */
/** Gère les rencontres avec du post-processing graphique (passeur, messagers, tourbillons, ...) */
2020-11-21 08:27:28 +01:00
async rencontrePostProcess( rencontreData) {
2020-11-20 12:06:54 +01:00
if (!rencontreData) return; // Sanity check
this.rencontreState = rencontreData.state; // garder la trace de l'état en cours
2020-11-20 13:46:43 +01:00
2020-11-21 08:27:28 +01:00
let locList
if ( this.rencontreState == 'passeur' || this.rencontreState == 'messager' ) {
2020-11-20 12:06:54 +01:00
// Récupère la liste des cases à portées
2020-11-21 08:27:28 +01:00
locList = TMRUtility.getTMRArea(this.actor.data.data.reve.tmrpos.coord, this.currentRencontre.force, tmrConstants );
} else if ( this.rencontreState == 'changeur' ) {
// Liste des cases de même type
locList = TMRUtility.getLocationTypeList( this.actor.data.data.reve.tmrpos.coord );
} else if ( this.rencontreState == 'reflet' ) {
this.nbFatigue += 1;
2020-11-21 14:30:00 +01:00
} else if ( this.rencontreState == 'tourbillonblanc' ) {
this.gererTourbillon(1);
} else if ( this.rencontreState == 'tourbillonnoir' ) {
this.gererTourbillon(2);
2020-11-20 12:06:54 +01:00
} else {
this.currentRencontre = undefined; // Cleanup, not used anymore
}
2020-11-21 08:27:28 +01:00
if ( locList )
this.colorierZoneRencontre( locList );
}
/* -------------------------------------------- */
checkQuitterTMR() {
if ( this.actor.data.data.reve.reve.value == 0) {
ChateMessage.create( { content: "Vos Points de Rêve sont à 0 : vous quittez les Terres médianes !"} );
this.close();
}
if ( this.nbFatigue == this.actor.data.data.sante.fatigue.max ) {
ChateMessage.create({ content: "Vous vous écroulez de fatigue : vous quittez les Terres médianes !"});
this.close();
}
if ( this.actor.data.data.sante.vie.value == 0 ) {
ChateMessage.create({ content: "Vous n'avez plus de Points de Vie : vous quittez les Terres médianes !"});
this.close();
}
2020-11-20 12:06:54 +01:00
}
/* -------------------------------------------- */
async maitriser(data) {
this.actor.deleteTMRRencontreAtPosition(); // Remove the stored rencontre if necessary
2020-07-21 23:51:24 +02:00
this.updatePreviousRencontres();
2020-11-12 16:35:51 +01:00
const draconic = this.actor.getBestDraconic();
2020-11-16 04:01:36 +01:00
const carac = this.actor.getReveActuel();
// TODO: ajouter l'état général?
2020-11-21 08:27:28 +01:00
const etatGeneral = this.actor.data.data.compteurs.etat.value;
const difficulte = draconic.data.niveau - this.currentRencontre.force + etatGeneral;
console.log("Maitriser", carac, draconic.data.niveau, this.currentRencontre.force, etatGeneral);
2020-11-12 16:35:51 +01:00
2020-11-21 09:54:21 +01:00
let rolled = await RdDResolutionTable.roll(carac, difficulte);
let message = "<br><strong>Test : Rêve actuel / " + draconic.name + " / " + this.currentRencontre.name + "</strong>" + "<br>"
+ RdDResolutionTable.explain(rolled);
2020-11-20 12:06:54 +01:00
let rencontreData
if (rolled.isEchec) {
2020-11-20 12:06:54 +01:00
rencontreData = await TMRUtility.processRencontreEchec(this.actor, this.currentRencontre, rolled, this);
message += rencontreData.message;
this._tellToUser("Vous avez <strong>échoué</strong> à maîtriser un " + this.currentRencontre.name + " de force " + this.currentRencontre.force
2020-11-20 13:46:43 +01:00
+ message);
2020-11-18 18:11:01 +01:00
if (this.currentRencontre.data.quitterTMR) // Selon les rencontres, quitter TMR ou pas
this.close();
2020-07-17 22:04:35 +02:00
} else {
2020-11-20 12:06:54 +01:00
rencontreData = await TMRUtility.processRencontreReussite(this.actor, this.currentRencontre, rolled);
message += rencontreData.message;
this._tellToUser("Vous avez <strong>réussi</strong> à maîtriser un " + this.currentRencontre.name + " de force " + this.currentRencontre.force + message);
2020-07-17 22:04:35 +02:00
}
2020-11-20 12:06:54 +01:00
2020-11-21 08:27:28 +01:00
await this.rencontrePostProcess( rencontreData );
2020-11-20 12:06:54 +01:00
2020-07-17 22:04:35 +02:00
console.log("-> matriser", this.currentRencontre);
this.updateValuesDisplay();
2020-11-21 08:27:28 +01:00
this.checkQuitterTMR();
2020-11-21 14:30:00 +01:00
if ( this.rencontreState == 'reflet' || this.rencontreState == 'tourbillonblanc' || this.rencontreState == 'tourbillonnoir' )
2020-11-21 08:27:28 +01:00
this.maitriser();
2020-07-14 22:19:29 +02:00
}
2020-11-12 23:35:29 +01:00
2020-11-17 16:30:03 +01:00
/* -------------------------------------------- */
_tellToUser(message) {
2020-11-18 23:49:05 +01:00
ChatMessage.create({ title: "TMR", content: message, user: game.user._id });
}
2020-11-18 23:49:05 +01:00
/* -------------------------------------------- */
_tellToGM(message) {
ChatMessage.create({ title: "TMR", content: message, user: game.user._id, whisper: ChatMessage.getWhisperRecipients("GM") });
}
/* -------------------------------------------- */
async manageRencontre(coordTMR, cellDescr) {
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
this.currentRencontre = undefined;
2020-11-12 23:35:29 +01:00
let rencontre = this.rencontresExistantes.find(prev => prev.coord == coordTMR);
if (rencontre == undefined) {
2020-11-18 18:11:01 +01:00
let myRoll = new Roll("d7").roll();
if (myRoll.total == 7) {
rencontre = await TMRUtility.rencontreTMRRoll(coordTMR, cellDescr);
2020-11-17 18:08:19 +01:00
}
2020-07-14 22:19:29 +02:00
}
2020-11-20 16:45:20 +01:00
if ( TMRUtility.isForceRencontre() )
rencontre = await TMRUtility.rencontreTMRRoll(coordTMR, cellDescr);
2020-11-18 18:11:01 +01:00
2020-07-14 22:19:29 +02:00
if (rencontre) { // Manages it
2020-11-18 18:11:01 +01:00
if (rencontre.rencontre) rencontre = rencontre.rencontre; // Manage stored rencontres
console.log("manageRencontre", rencontre)
2020-07-21 23:51:24 +02:00
this.currentRencontre = duplicate(rencontre);
2020-11-16 04:01:36 +01:00
let dialog = new Dialog({
title: "Rencontre en TMR!",
content: "Vous recontrez un " + rencontre.name + " de force " + rencontre.force + "<br>",
buttons: {
derober: { icon: '<i class="fas fa-check"></i>', label: "Se dérober", callback: () => this.derober() },
refouler: { icon: '<i class="fas fa-check"></i>', label: "Refouler", callback: () => this.refouler() },
maitiser: { icon: '<i class="fas fa-check"></i>', label: "Maîtriser", callback: () => this.maitriser() }
},
default: "derober"
});
2020-11-12 23:35:29 +01:00
dialog.render(true);
2020-07-14 22:19:29 +02:00
}
}
/* -------------------------------------------- */
performRoll(html) {
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
this.actor.performRoll(this.rollData);
2020-07-05 21:45:25 +02:00
}
/* -------------------------------------------- */
2020-07-17 22:04:35 +02:00
updateValuesDisplay() {
2020-11-20 16:45:20 +01:00
let ptsreve = document.getElementById("tmr-pointsreve-value");
2020-07-17 22:04:35 +02:00
ptsreve.innerHTML = this.actor.data.data.reve.reve.value;
2020-07-17 22:04:35 +02:00
let tmrpos = document.getElementById("tmr-pos");
let tmr = TMRUtility.getTMRDescription(this.actor.data.data.reve.tmrpos.coord);
tmrpos.innerHTML = this.actor.data.data.reve.tmrpos.coord + " (" + tmr.label + ")";
2020-11-20 16:45:20 +01:00
let etat = document.getElementById("tmr-etatgeneral-value");
2020-07-17 22:04:35 +02:00
etat.innerHTML = this.actor.data.data.compteurs.etat.value;
2020-11-20 16:45:20 +01:00
let refoulement = document.getElementById("tmr-refoulement-value");
2020-07-17 22:04:35 +02:00
refoulement.innerHTML = this.actor.data.data.reve.refoulement.value;
2020-11-20 16:45:20 +01:00
let fatigueItem = document.getElementById("tmr-fatigue-table");
2020-11-21 08:27:28 +01:00
console.log("Refresh : ", this.actor.data.data.sante.fatigue.value);
fatigueItem.innerHTML = "<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix(this.actor.data.data.sante.fatigue.value, this.actor.data.data.sante.endurance.max).html() + "</table>";
2020-07-17 22:04:35 +02:00
}
/* -------------------------------------------- */
2020-07-17 22:04:35 +02:00
manageCaseHumideResult() {
if (this.toclose)
2020-07-17 22:04:35 +02:00
this.close();
}
2020-11-12 16:35:51 +01:00
/* -------------------------------------------- */
async manageCaseHumide(cellDescr) {
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
2020-11-12 16:35:51 +01:00
if (cellDescr.type == "lac" || cellDescr.type == "fleuve" || cellDescr.type == "marais") {
2020-07-17 22:04:35 +02:00
let draconic = this.actor.getBestDraconic();
2020-11-16 04:01:36 +01:00
let carac = this.actor.getReveActuel();
// TODO: ajouter l'état général?
const etatGeneral = this.actor.data.data.compteurs.etat.value
let difficulte = draconic.data.niveau - 7;
let rolled = RdDResolutionTable.roll(carac, difficulte);
2020-11-12 16:35:51 +01:00
console.log("manageCaseHumide >>", rolled);
2020-11-12 16:35:51 +01:00
let explication = "";
this.toclose = rolled.isEchec;
if (rolled.isEchec) {
explication += "Vous êtes entré sur une case humide, et vous avez <strong>raté</strong> votre maîtrise ! Vous <strong>quittez les Terres Médianes</strong> !"
2020-11-12 16:35:51 +01:00
}
else {
explication += "Vous êtes entré sur une case humide, et vous avez <strong>réussi</strong> votre maîtrise !"
2020-11-12 16:35:51 +01:00
}
explication += "<br><strong>Test : Rêve actuel / " + draconic.name + " / " + cellDescr.type + "</strong>"
2020-11-16 04:32:42 +01:00
+ RdDResolutionTable.explain(rolled);
2020-11-12 16:35:51 +01:00
if (rolled.isETotal) {
let souffle = RdDRollTables.getSouffle();
explication += "<br>Vous avez fait un Echec Total. Vous subissez un Souffle de Dragon : " + souffle.name;
2020-11-12 16:35:51 +01:00
this.actor.createOwnedItem(souffle);
}
if (rolled.isPart) {
explication += "<br>Vous avez fait une Réussite Particulière";
explication += RdDResolutionTable.buildXpMessage(rolled, difficulte)
2020-11-12 16:35:51 +01:00
}
let humideDiag = new Dialog({
title: "Case humide",
content: explication,
2020-11-12 16:35:51 +01:00
buttons: {
choice: { icon: '<i class="fas fa-check"></i>', label: "Fermer", callback: () => this.manageCaseHumideResult() }
2020-07-25 10:29:28 +02:00
}
2020-07-17 22:04:35 +02:00
}
2020-11-12 16:35:51 +01:00
);
2020-07-17 22:04:35 +02:00
humideDiag.render(true);
}
}
/* -------------------------------------------- */
async declencheSortEnReserve(coordTMR) {
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
let sortReserve = this.sortReserves.find(it => it.coord == coordTMR)
if (sortReserve != undefined) {
await this.actor.deleteSortReserve(sortReserve.coord);
this.updateSortReserve();
console.log("declencheSortEnReserve", sortReserve)
const declenchementSort = "Vous avez déclenché le sort <strong>" + sortReserve.sort.name
+ "</strong> en réserve en " + sortReserve.coord + " (" + TMRUtility.getTMRDescription(sortReserve.coord).label
+ ") avec " + sortReserve.sort.ptreve_reel + " points de Rêve";
this._tellToUser(declenchementSort);
this.close();
2020-07-26 18:44:03 +02:00
}
}
2020-11-20 13:46:43 +01:00
/* -------------------------------------------- */
nettoyerRencontre( ) {
if ( !this.currentRencontre) return; // Sanity check
if ( this.currentRencontre.graphics) {
for (let drawRect of this.currentRencontre.graphics) { // Suppression des dessins des zones possibles
this.pixiApp.stage.removeChild( drawRect );
}
}
this.currentRencontre = undefined; // Nettoyage de la structure
this.rencontreState = 'aucune'; // Et de l'état
}
2020-11-20 12:06:54 +01:00
/* -------------------------------------------- */
processClickPostRencontre( coord ) {
let deplacementType = "erreur";
2020-11-21 08:27:28 +01:00
if (this.rencontreState == 'passeur' || this.rencontreState == 'messager' || this.rencontreState == 'changeur') {
2020-11-20 13:46:43 +01:00
console.log("Searching", this.currentRencontre.locList, coord);
2020-11-20 12:06:54 +01:00
let isInArea = this.currentRencontre.locList.find(locCoord => locCoord == coord );
if ( isInArea ) { // OK !
2020-11-20 13:46:43 +01:00
deplacementType = (this.rencontreState == 'messager') ? 'messager' : 'saut';
}
2020-11-21 08:27:28 +01:00
}
2020-11-20 13:46:43 +01:00
return deplacementType;
2020-11-20 12:06:54 +01:00
}
/* -------------------------------------------- */
async deplacerDemiReve(event) {
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
2020-07-14 22:19:29 +02:00
let origEvent = event.data.originalEvent;
let myself = event.target.tmrObject;
let eventCoord = RdDTMRDialog._computeEventCoord(origEvent);
let cellx = eventCoord.cellx;
let celly = eventCoord.celly;
console.log("deplacerDemiReve >>>>", cellx, celly);
2020-07-17 22:04:35 +02:00
let currentPos = TMRUtility.convertToCellCoord(myself.actor.data.data.reve.tmrpos.coord);
2020-11-20 13:46:43 +01:00
let coordTMR = TMRUtility.convertToTMRCoord(cellx, celly);
2020-11-20 12:06:54 +01:00
// Validation de la case de destination (gestion du cas des rencontres qui peuvent téléporter)
2020-11-20 13:46:43 +01:00
let deplacementType = 'erreur';
if ( myself.rencontreState == 'aucune') { // Pas de recontre en post-processing, donc deplacement normal
if ( !RdDTMRDialog._horsDePortee(currentPos, cellx, celly) ) {
deplacementType = 'normal';
2020-11-20 12:06:54 +01:00
}
2020-07-14 22:19:29 +02:00
} else {
2020-11-20 13:46:43 +01:00
deplacementType = myself.processClickPostRencontre( coordTMR );
2020-11-20 12:06:54 +01:00
}
// Si le deplacement est valide
2020-11-20 13:46:43 +01:00
if ( deplacementType == 'normal' || deplacementType == 'saut') {
if ( myself.currentRencontre != 'normal' )
myself.nettoyerRencontre();
let cellDescr = TMRUtility.getTMRDescription(coordTMR);
console.log("deplacerDemiReve: TMR column is", coordTMR, cellx, celly, cellDescr, this);
2020-07-14 22:19:29 +02:00
let tmrPos = duplicate(myself.actor.data.data.reve.tmrpos);
tmrPos.coord = coordTMR;
await myself.actor.update({ "data.reve.tmrpos": tmrPos });
myself._updateDemiReve(myself);
2020-07-25 10:29:28 +02:00
myself.nbFatigue += 1;
myself.updateValuesDisplay();
2020-11-20 13:46:43 +01:00
if ( deplacementType == 'normal') { // Pas de rencontres après un saut de type passeur/changeur/...
2020-11-21 09:54:21 +01:00
await myself.manageRencontre(coordTMR, cellDescr);
2020-11-20 12:06:54 +01:00
}
myself.manageCaseHumide(cellDescr);
await myself.declencheSortEnReserve(coordTMR);
2020-11-20 13:46:43 +01:00
} else if (deplacementType == 'messager') { // Dans ce cas, ouverture du lancement de sort sur la case visée
myself.actor.rollUnSort( coordTMR );
myself.nettoyerRencontre();
2020-11-20 12:06:54 +01:00
} else {
ui.notifications.error("Vous ne pouvez vous déplacer que sur des cases adjacentes à votre position ou valides dans le cas d'une rencontre");
2020-11-20 13:46:43 +01:00
console.log("STATUS :", myself.rencontreState, myself.currentRencontre);
2020-07-14 22:19:29 +02:00
}
2020-11-21 08:27:28 +01:00
2020-11-21 09:54:21 +01:00
myself.checkQuitterTMR(); // Vérifier l'état des compteurs reve/fatigue/vie
2020-07-05 22:35:18 +02:00
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
async forceDemiRevePosition( coordTMR ) {
2020-11-18 18:11:01 +01:00
await this.actor.updateCoordTMR(coordTMR);
2020-11-17 18:08:19 +01:00
this._updateDemiReve(this);
2020-11-18 18:11:01 +01:00
let cellDescr = TMRUtility.getTMRDescription(coordTMR);
2020-11-21 09:54:21 +01:00
await this.manageRencontre(coordTMR, cellDescr);
2020-11-18 18:11:01 +01:00
this.manageCaseHumide(cellDescr);
await this.declencheSortEnReserve(coordTMR);
2020-11-17 18:08:19 +01:00
}
/* -------------------------------------------- */
async activateListeners(html) {
2020-07-05 21:45:25 +02:00
super.activateListeners(html);
2020-07-14 22:19:29 +02:00
var row = document.getElementById("tmrrow1");
var cell1 = row.insertCell(1);
cell1.append(this.pixiApp.view);
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
html.find('#lancer-sort').remove();
}
else {
// Roll Sort
html.find('#lancer-sort').click((event) => {
this.actor.rollUnSort(this.actor.data.data.reve.tmrpos.coord);
});
}
2020-07-14 22:19:29 +02:00
// load the texture we need
await this.pixiApp.loader
2020-11-17 18:10:54 +01:00
.add('tmr', 'systems/foundryvtt-reve-de-dragon/styles/img/ui/tmp_main_r1.webp')
.add('demi-reve', "icons/svg/sun.svg")
.load((loader, resources) => {
// This creates a texture from a TMR image
const mytmr = new PIXI.Sprite(resources.tmr.texture);
// Setup the position of the TMR
mytmr.x = 0;
mytmr.y = 0;
mytmr.width = 720;
mytmr.height = 860;
// Rotate around the center
mytmr.anchor.x = 0;
mytmr.anchor.y = 0;
mytmr.interactive = true;
mytmr.buttonMode = true;
mytmr.tmrObject = this;
2020-11-14 20:46:39 +01:00
if (!this.viewOnly) {
mytmr.on('pointerdown', this.deplacerDemiReve);
}
this.pixiApp.stage.addChild(mytmr);
this._addDemiReve();
this.displayPreviousRencontres();
this.displaySortReserve();
2020-11-18 23:49:05 +01:00
});
2020-11-14 20:46:39 +01:00
if (this.viewOnly) {
return;
}
await this.actor.updatePointsDeReve((this.tmrdata.isRapide) ? -2 : -1); // 1 point defatigue
2020-07-17 22:04:35 +02:00
this.updateValuesDisplay();
let cellDescr = TMRUtility.getTMRDescription(this.actor.data.data.reve.tmrpos.coord);
2020-11-21 09:54:21 +01:00
await this.manageRencontre(this.actor.data.data.reve.tmrpos.coord, cellDescr);
this.manageCaseHumide(cellDescr);
}
/* -------------------------------------------- */
static _computeEventCoord(origEvent) {
let canvasRect = origEvent.target.getBoundingClientRect();
let x = origEvent.clientX - canvasRect.left;
let y = origEvent.clientY - canvasRect.top;
let cellx = Math.floor(x / tmrConstants.cellw); // [From 0 -> 12]
y -= (cellx % 2 == 0) ? tmrConstants.col1_y : tmrConstants.col2_y;
let celly = Math.floor(y / tmrConstants.cellh); // [From 0 -> 14]
return { cellx, celly };
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
static _horsDePortee(pos, cellx, celly) {
return Math.abs(cellx - pos.x) > 1
|| Math.abs(celly - pos.y) > 1
|| (pos.y == 0 && celly > pos.y && cellx != pos.x && pos.x % 2 == 0)
|| (celly == 0 && celly < pos.y && cellx != pos.x && pos.x % 2 == 1);
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_tokenRencontre(rencontre) {
let sprite = new PIXI.Graphics();
sprite.beginFill(0x767610, 0.6);
sprite.drawCircle(0, 0, 6);
sprite.endFill();
sprite.decallage = {
x: (tmrConstants.cellw / 2) - 16,
y: 16 - (tmrConstants.cellh / 2)
};
return { sprite: sprite, rencontre: rencontre, coordTMR: () => rencontre.coord };
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_tokenSortEnReserve(sort) {
let sprite = new PIXI.Graphics();
sprite.beginFill(0x101010, 0.8);
sprite.drawCircle(0, 0, 6);
sprite.endFill();
sprite.decallage = {
x: 16 - (tmrConstants.cellw / 2),
y: 16 - (tmrConstants.cellh / 2)
}
2020-11-14 20:46:39 +01:00
return { sprite: sprite, sort: sort, coordTMR: () => sort.coord }
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_tokenDemiReve() {
let texture = PIXI.utils.TextureCache['demi-reve'];
let sprite = new PIXI.Sprite(texture);
sprite.width = tmrConstants.cellw * 0.7;
sprite.height = tmrConstants.cellh * 0.7;
sprite.anchor.set(0.5);
sprite.tint = 0x00FFEE;
return { sprite: sprite, actor: this.actor, coordTMR: () => this.actor.data.data.reve.tmrpos.coord }
}
/* -------------------------------------------- */
_addDemiReve() {
this.demiReve = this._tokenDemiReve();
this._setTokenPosition(this.demiReve);
this.pixiApp.stage.addChild(this.demiReve.sprite);
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_updateDemiReve(myself) {
myself._setTokenPosition(myself.demiReve);
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
2020-11-20 12:06:54 +01:00
/** Retourne les coordonnées x, h, w, h du rectangle d'une case donnée */
_getCaseRectangleCoord( coord ) {
let coordXY = TMRUtility.convertToCellCoord( coord );
let decallagePairImpair = (coordXY.x % 2 == 0) ? tmrConstants.col1_y : tmrConstants.col2_y;
let x = tmrConstants.gridx + (coordXY.x * tmrConstants.cellw) - (tmrConstants.cellw /2);
let y = tmrConstants.gridy + (coordXY.y * tmrConstants.cellh) - (tmrConstants.cellh /2) + decallagePairImpair;
return {x: x, y: y, w: tmrConstants.cellw, h: tmrConstants.cellh}
}
/* -------------------------------------------- */
_setTokenPosition(token) {
let coordXY = TMRUtility.convertToCellCoord(token.coordTMR());
let decallagePairImpair = (coordXY.x % 2 == 0) ? tmrConstants.col1_y : tmrConstants.col2_y;
let dx = (token.sprite.decallage == undefined) ? 0 : token.sprite.decallage.x;
let dy = (token.sprite.decallage == undefined) ? 0 : token.sprite.decallage.y;
token.sprite.x = tmrConstants.gridx + (coordXY.x * tmrConstants.cellw) + dx;
token.sprite.y = tmrConstants.gridy + (coordXY.y * tmrConstants.cellh) + dy + decallagePairImpair;
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_removeTokens(filter) {
const tokensToRemove = this.allTokens.filter(filter);
for (let token of tokensToRemove) {
this.pixiApp.stage.removeChild(token.sprite);
}
}
2020-11-17 18:08:19 +01:00
/* -------------------------------------------- */
_trackToken(token) {
this.allTokens.push(token)
this._setTokenPosition(token);
this.pixiApp.stage.addChild(token.sprite);
2020-07-05 21:45:25 +02:00
}
2020-11-18 23:49:05 +01:00
2020-07-05 21:45:25 +02:00
}