2021-06-21 18:41:41 +02:00
|
|
|
import { registeredCallbacks } from "./Api/iframe/registeredCallbacks";
|
2021-06-18 17:22:56 +02:00
|
|
|
import {
|
|
|
|
IframeResponseEvent,
|
2021-07-22 10:41:45 +02:00
|
|
|
IframeResponseEventMap,
|
|
|
|
isIframeAnswerEvent,
|
|
|
|
isIframeErrorAnswerEvent,
|
2021-06-18 17:22:56 +02:00
|
|
|
isIframeResponseEventWrapper,
|
2021-06-25 18:14:40 +02:00
|
|
|
TypedMessageEvent,
|
2021-06-18 17:22:56 +02:00
|
|
|
} from "./Api/Events/IframeEvent";
|
|
|
|
import chat from "./Api/iframe/chat";
|
2021-06-25 18:14:40 +02:00
|
|
|
import type { IframeCallback } from "./Api/iframe/IframeApiContribution";
|
2021-06-18 17:22:56 +02:00
|
|
|
import nav from "./Api/iframe/nav";
|
|
|
|
import controls from "./Api/iframe/controls";
|
2021-06-21 12:26:12 +02:00
|
|
|
import ui from "./Api/iframe/ui";
|
|
|
|
import sound from "./Api/iframe/sound";
|
2021-07-22 10:41:45 +02:00
|
|
|
import room, { setMapURL, setRoomId } from "./Api/iframe/room";
|
|
|
|
import state, { initVariables } from "./Api/iframe/state";
|
|
|
|
import player, { setPlayerName, setTags, setUuid } from "./Api/iframe/player";
|
2021-06-21 18:39:02 +02:00
|
|
|
import type { ButtonDescriptor } from "./Api/iframe/Ui/ButtonDescriptor";
|
|
|
|
import type { Popup } from "./Api/iframe/Ui/Popup";
|
2021-06-21 18:41:41 +02:00
|
|
|
import type { Sound } from "./Api/iframe/Sound/Sound";
|
2021-07-22 10:41:45 +02:00
|
|
|
import { answerPromises, queryWorkadventure, sendToWorkadventure } from "./Api/iframe/IframeApiContribution";
|
2021-06-18 17:22:56 +02:00
|
|
|
|
2021-07-05 14:41:10 +02:00
|
|
|
// Notify WorkAdventure that we are ready to receive data
|
2021-07-22 10:41:45 +02:00
|
|
|
const initPromise = queryWorkadventure({
|
|
|
|
type: "getState",
|
|
|
|
data: undefined,
|
|
|
|
}).then((state) => {
|
|
|
|
setPlayerName(state.nickname);
|
|
|
|
setRoomId(state.roomId);
|
|
|
|
setMapURL(state.mapUrl);
|
|
|
|
setTags(state.tags);
|
|
|
|
setUuid(state.uuid);
|
|
|
|
initVariables(state.variables as Map<string, unknown>);
|
2021-07-05 14:41:10 +02:00
|
|
|
});
|
2021-06-18 17:22:56 +02:00
|
|
|
|
|
|
|
const wa = {
|
|
|
|
ui,
|
|
|
|
nav,
|
|
|
|
controls,
|
|
|
|
chat,
|
|
|
|
sound,
|
|
|
|
room,
|
2021-06-23 11:32:11 +02:00
|
|
|
player,
|
2021-07-07 22:14:59 +02:00
|
|
|
state,
|
2021-06-18 17:22:56 +02:00
|
|
|
|
2021-07-05 14:41:10 +02:00
|
|
|
onInit(): Promise<void> {
|
|
|
|
return initPromise;
|
|
|
|
},
|
2021-06-18 17:22:56 +02:00
|
|
|
|
|
|
|
// All methods below are deprecated and should not be used anymore.
|
|
|
|
// They are kept here for backward compatibility.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.chat.sendChatMessage instead
|
|
|
|
*/
|
|
|
|
sendChatMessage(message: string, author: string): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.sendChatMessage is deprecated. Please use WA.chat.sendChatMessage instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
chat.sendChatMessage(message, author);
|
|
|
|
},
|
2021-05-27 17:06:39 +02:00
|
|
|
|
2021-06-18 17:22:56 +02:00
|
|
|
/**
|
|
|
|
* @deprecated Use WA.chat.disablePlayerControls instead
|
|
|
|
*/
|
|
|
|
disablePlayerControls(): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn(
|
|
|
|
"Method WA.disablePlayerControls is deprecated. Please use WA.controls.disablePlayerControls instead"
|
|
|
|
);
|
2021-06-18 17:22:56 +02:00
|
|
|
controls.disablePlayerControls();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.controls.restorePlayerControls instead
|
|
|
|
*/
|
|
|
|
restorePlayerControls(): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn(
|
|
|
|
"Method WA.restorePlayerControls is deprecated. Please use WA.controls.restorePlayerControls instead"
|
|
|
|
);
|
2021-06-18 17:22:56 +02:00
|
|
|
controls.restorePlayerControls();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.ui.displayBubble instead
|
|
|
|
*/
|
|
|
|
displayBubble(): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.displayBubble is deprecated. Please use WA.ui.displayBubble instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
ui.displayBubble();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.ui.removeBubble instead
|
|
|
|
*/
|
|
|
|
removeBubble(): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.removeBubble is deprecated. Please use WA.ui.removeBubble instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
ui.removeBubble();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.nav.openTab instead
|
|
|
|
*/
|
|
|
|
openTab(url: string): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.openTab is deprecated. Please use WA.nav.openTab instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
nav.openTab(url);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.sound.loadSound instead
|
|
|
|
*/
|
2021-06-21 18:39:02 +02:00
|
|
|
loadSound(url: string): Sound {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.loadSound is deprecated. Please use WA.sound.loadSound instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
return sound.loadSound(url);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.nav.goToPage instead
|
|
|
|
*/
|
2021-06-21 18:39:02 +02:00
|
|
|
goToPage(url: string): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.goToPage is deprecated. Please use WA.nav.goToPage instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
nav.goToPage(url);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.nav.goToRoom instead
|
|
|
|
*/
|
|
|
|
goToRoom(url: string): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.goToRoom is deprecated. Please use WA.nav.goToRoom instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
nav.goToRoom(url);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.nav.openCoWebSite instead
|
|
|
|
*/
|
2021-06-28 18:00:48 +02:00
|
|
|
openCoWebSite(url: string, allowApi: boolean = false, allowPolicy: string = ""): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.openCoWebSite is deprecated. Please use WA.nav.openCoWebSite instead");
|
2021-06-28 18:00:48 +02:00
|
|
|
nav.openCoWebSite(url, allowApi, allowPolicy);
|
2021-06-18 17:22:56 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.nav.closeCoWebSite instead
|
|
|
|
*/
|
|
|
|
closeCoWebSite(): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.closeCoWebSite is deprecated. Please use WA.nav.closeCoWebSite instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
nav.closeCoWebSite();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2021-07-21 16:10:30 +02:00
|
|
|
* @deprecated Use WA.ui.openPopup instead
|
2021-06-18 17:22:56 +02:00
|
|
|
*/
|
|
|
|
openPopup(targetObject: string, message: string, buttons: ButtonDescriptor[]): Popup {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.openPopup is deprecated. Please use WA.ui.openPopup instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
return ui.openPopup(targetObject, message, buttons);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.chat.onChatMessage instead
|
|
|
|
*/
|
|
|
|
onChatMessage(callback: (message: string) => void): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.onChatMessage is deprecated. Please use WA.chat.onChatMessage instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
chat.onChatMessage(callback);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.room.onEnterZone instead
|
|
|
|
*/
|
|
|
|
onEnterZone(name: string, callback: () => void): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.onEnterZone is deprecated. Please use WA.room.onEnterZone instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
room.onEnterZone(name, callback);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @deprecated Use WA.room.onLeaveZone instead
|
|
|
|
*/
|
|
|
|
onLeaveZone(name: string, callback: () => void): void {
|
2021-06-25 18:14:40 +02:00
|
|
|
console.warn("Method WA.onLeaveZone is deprecated. Please use WA.room.onLeaveZone instead");
|
2021-06-18 17:22:56 +02:00
|
|
|
room.onLeaveZone(name, callback);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export type WorkAdventureApi = typeof wa;
|
2021-03-04 19:00:00 +01:00
|
|
|
|
2021-03-05 16:50:54 +01:00
|
|
|
declare global {
|
2021-05-25 13:47:41 +02:00
|
|
|
interface Window {
|
2021-06-25 18:14:40 +02:00
|
|
|
WA: WorkAdventureApi;
|
2021-05-25 13:47:41 +02:00
|
|
|
}
|
2021-06-25 18:14:40 +02:00
|
|
|
let WA: WorkAdventureApi;
|
2021-03-05 16:50:54 +01:00
|
|
|
}
|
2021-03-04 19:00:00 +01:00
|
|
|
|
2021-06-18 17:22:56 +02:00
|
|
|
window.WA = wa;
|
2021-05-28 01:44:38 +02:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
window.addEventListener(
|
2021-07-22 10:41:45 +02:00
|
|
|
"message",
|
|
|
|
<T extends keyof IframeResponseEventMap>(message: TypedMessageEvent<IframeResponseEvent<T>>) => {
|
|
|
|
if (message.source !== window.parent) {
|
|
|
|
return; // Skip message in this event listener
|
|
|
|
}
|
|
|
|
const payload = message.data;
|
2021-07-02 16:41:24 +02:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
//console.debug(payload);
|
2021-07-02 16:41:24 +02:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
if (isIframeErrorAnswerEvent(payload)) {
|
|
|
|
const queryId = payload.id;
|
|
|
|
const payloadError = payload.error;
|
2021-07-02 16:41:24 +02:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
const resolver = answerPromises.get(queryId);
|
|
|
|
if (resolver === undefined) {
|
|
|
|
throw new Error("In Iframe API, got an error answer for a question that we have no track of.");
|
|
|
|
}
|
|
|
|
resolver.reject(new Error(payloadError));
|
2021-07-02 16:41:24 +02:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
answerPromises.delete(queryId);
|
|
|
|
} else if (isIframeAnswerEvent(payload)) {
|
|
|
|
const queryId = payload.id;
|
|
|
|
const payloadData = payload.data;
|
2021-07-02 16:41:24 +02:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
const resolver = answerPromises.get(queryId);
|
|
|
|
if (resolver === undefined) {
|
|
|
|
throw new Error("In Iframe API, got an answer for a question that we have no track of.");
|
|
|
|
}
|
|
|
|
resolver.resolve(payloadData);
|
2021-03-08 18:57:59 +01:00
|
|
|
|
2021-07-22 10:41:45 +02:00
|
|
|
answerPromises.delete(queryId);
|
|
|
|
} else if (isIframeResponseEventWrapper(payload)) {
|
|
|
|
const payloadData = payload.data;
|
2021-05-25 13:47:41 +02:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
const callback = registeredCallbacks[payload.type] as IframeCallback<T> | undefined;
|
|
|
|
if (callback?.typeChecker(payloadData)) {
|
|
|
|
callback?.callback(payloadData);
|
|
|
|
}
|
2021-03-06 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
// ...
|
|
|
|
}
|
|
|
|
);
|