2021-06-05 01:14:29 +02:00
|
|
|
|
2022-10-07 19:05:56 +02:00
|
|
|
import { Monnaie } from "./item-monnaie.js";
|
2021-05-07 17:27:02 +02:00
|
|
|
import { RdDUtility } from "./rdd-utility.js";
|
|
|
|
|
|
|
|
export class DialogItemAchat extends Dialog {
|
|
|
|
|
2022-10-07 19:05:56 +02:00
|
|
|
static venteData(button) {
|
|
|
|
const vendeurId = button.attributes['data-vendeurId']?.value;
|
2021-05-07 17:27:02 +02:00
|
|
|
const vendeur = vendeurId ? game.actors.get(vendeurId) : undefined;
|
|
|
|
const acheteur = RdDUtility.getSelectedActor();
|
2022-10-07 19:05:56 +02:00
|
|
|
const json = button.attributes['data-jsondata']?.value;
|
2021-05-07 17:27:02 +02:00
|
|
|
if (!acheteur && !vendeur) {
|
|
|
|
ui.notifications.info("Pas d'acheteur ni de vendeur, aucun changement");
|
2022-10-07 19:05:56 +02:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
if (!json) {
|
|
|
|
ui.notifications.warn("Impossible d'acheter: informations sur l'objet manquantes")
|
|
|
|
return undefined;
|
2021-05-07 17:27:02 +02:00
|
|
|
}
|
|
|
|
|
2022-11-29 00:01:54 +01:00
|
|
|
const prixLot = Number(button.attributes['data-prixLot']?.value ?? 0);
|
2022-10-07 19:05:56 +02:00
|
|
|
return {
|
|
|
|
item: json ? JSON.parse(json) : undefined,
|
2022-11-13 21:56:23 +01:00
|
|
|
actingUserId: game.user.id,
|
2022-10-07 19:05:56 +02:00
|
|
|
vendeurId: vendeurId,
|
|
|
|
vendeur: vendeur,
|
|
|
|
acheteur: acheteur,
|
|
|
|
tailleLot: parseInt(button.attributes['data-tailleLot']?.value ?? 1),
|
|
|
|
quantiteIllimite: button.attributes['data-quantiteIllimite']?.value == 'true',
|
|
|
|
quantiteNbLots: parseInt(button.attributes['data-quantiteNbLots']?.value),
|
|
|
|
choix: {
|
|
|
|
nombreLots: 1,
|
|
|
|
seForcer: false,
|
|
|
|
supprimerSiZero: true
|
|
|
|
},
|
|
|
|
prixLot: prixLot,
|
|
|
|
prixTotal: prixLot,
|
|
|
|
isVente: prixLot > 0,
|
|
|
|
chatMessageIdVente: RdDUtility.findChatMessageId(button)
|
|
|
|
};
|
|
|
|
}
|
2022-11-13 21:56:23 +01:00
|
|
|
|
2022-10-07 19:05:56 +02:00
|
|
|
static async onAcheter(venteData) {
|
2021-05-07 17:27:02 +02:00
|
|
|
const html = await renderTemplate(`systems/foundryvtt-reve-de-dragon/templates/dialog-item-achat.html`, venteData);
|
2022-10-07 19:05:56 +02:00
|
|
|
const dialog = new DialogItemAchat(html, venteData);
|
2021-05-07 17:27:02 +02:00
|
|
|
dialog.render(true);
|
|
|
|
}
|
|
|
|
|
2022-10-07 19:05:56 +02:00
|
|
|
constructor(html, venteData) {
|
|
|
|
const isConsommable = venteData.item.type == 'nourritureboisson' && venteData.acheteur?.isPersonnage();
|
2022-11-16 02:46:26 +01:00
|
|
|
let options = { classes: ["dialogachat"], width: 400, height: 'fit-content', 'z-index': 99999 };
|
2021-05-07 17:27:02 +02:00
|
|
|
|
|
|
|
const actionAchat = venteData.prixLot > 0 ? "Acheter" : "Prendre";
|
2021-06-21 23:37:33 +02:00
|
|
|
const buttons = {};
|
|
|
|
if (isConsommable) {
|
2022-11-13 21:56:23 +01:00
|
|
|
buttons["consommer"] = { label: venteData.item.system.boisson ? "Boire" : "Manger", callback: it => this.onAchatConsommer() }
|
2021-06-21 23:37:33 +02:00
|
|
|
}
|
|
|
|
buttons[actionAchat] = { label: actionAchat, callback: it => { this.onAchat(); } };
|
|
|
|
buttons["decliner"] = { label: "Décliner", callback: it => { } };
|
2021-05-07 17:27:02 +02:00
|
|
|
let conf = {
|
2022-09-23 01:32:18 +02:00
|
|
|
title: venteData.acheteur ? venteData.acheteur.name + " - " + actionAchat : actionAchat,
|
2021-05-07 17:27:02 +02:00
|
|
|
content: html,
|
|
|
|
default: actionAchat,
|
2021-06-21 23:37:33 +02:00
|
|
|
buttons: buttons
|
2021-05-07 17:27:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
super(conf, options);
|
|
|
|
|
|
|
|
this.venteData = venteData;
|
|
|
|
}
|
|
|
|
|
|
|
|
async onAchat() {
|
2021-06-04 19:35:27 +02:00
|
|
|
await $(".nombreLots").change();
|
2022-10-07 19:05:56 +02:00
|
|
|
(this.venteData.vendeur ?? this.venteData.acheteur).achatVente({
|
2021-10-07 23:52:02 +02:00
|
|
|
userId: game.user.id,
|
2022-10-07 19:05:56 +02:00
|
|
|
vendeurId: this.venteData.vendeur?.id,
|
|
|
|
acheteurId: this.venteData.acheteur?.id,
|
2021-06-05 01:14:29 +02:00
|
|
|
prixTotal: this.venteData.prixTotal,
|
2022-10-07 19:05:56 +02:00
|
|
|
chatMessageIdVente: this.venteData.chatMessageIdVente,
|
2022-11-13 21:56:23 +01:00
|
|
|
choix: this.venteData.choix,
|
|
|
|
vente: this.venteData
|
2021-06-05 01:14:29 +02:00
|
|
|
});
|
2021-05-07 17:27:02 +02:00
|
|
|
}
|
2022-09-23 01:32:18 +02:00
|
|
|
|
2021-06-21 23:37:33 +02:00
|
|
|
async onAchatConsommer() {
|
|
|
|
this.venteData.choix.consommer = true;
|
|
|
|
await this.onAchat();
|
|
|
|
}
|
2021-05-07 17:27:02 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
activateListeners(html) {
|
|
|
|
super.activateListeners(html);
|
|
|
|
|
2021-06-01 00:08:42 +02:00
|
|
|
html.find(".nombreLots").change(event => this.setNombreLots(Number(event.currentTarget.value)));
|
2021-06-21 23:37:33 +02:00
|
|
|
html.find(".se-forcer").change(event => this.setSeForcer(event));
|
|
|
|
}
|
|
|
|
|
|
|
|
setSeForcer(event) {
|
|
|
|
this.venteData.choix.seForcer = event.currentTarget.checked;
|
2021-05-07 17:27:02 +02:00
|
|
|
}
|
|
|
|
|
2021-06-01 00:08:42 +02:00
|
|
|
setNombreLots(nombreLots) {
|
2022-09-23 01:32:18 +02:00
|
|
|
if (nombreLots > this.venteData.quantiteNbLots) {
|
|
|
|
ui.notifications.warn(`Seulement ${this.venteData.quantiteNbLots} lots disponibles, vous ne pouvez pas en prendre ${nombreLots}`)
|
|
|
|
}
|
|
|
|
this.venteData.choix.nombreLots = Math.min(nombreLots, this.venteData.quantiteNbLots);
|
2021-05-07 17:27:02 +02:00
|
|
|
this.venteData.prixTotal = (nombreLots * this.venteData.prixLot).toFixed(2);
|
2022-09-23 01:32:18 +02:00
|
|
|
$(".nombreLots").val(this.venteData.choix.nombreLots);
|
2021-05-07 17:27:02 +02:00
|
|
|
$(".prixTotal").text(this.venteData.prixTotal);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|