workadventure/front/src/Connexion/ConnexionModels.ts

122 lines
3.3 KiB
TypeScript
Raw Normal View History

import type { SignalData } from "simple-peer";
import type { RoomConnection } from "./RoomConnection";
import type { BodyResourceDescriptionInterface } from "../Phaser/Entity/PlayerTextures";
2020-09-25 18:29:22 +02:00
export enum EventMessage {
CONNECT = "connect",
2020-09-25 18:29:22 +02:00
WEBRTC_SIGNAL = "webrtc-signal",
WEBRTC_SCREEN_SHARING_SIGNAL = "webrtc-screen-sharing-signal",
WEBRTC_START = "webrtc-start",
//START_ROOM = "start-room", // From server to client: list of all room users/groups/items
2020-09-25 18:29:22 +02:00
JOIN_ROOM = "join-room", // bi-directional
USER_POSITION = "user-position", // From client to server
USER_MOVED = "user-moved", // From server to client
USER_LEFT = "user-left", // From server to client
MESSAGE_ERROR = "message-error",
WEBRTC_DISCONNECT = "webrtc-disconect",
GROUP_CREATE_UPDATE = "group-create-update",
GROUP_DELETE = "group-delete",
SET_PLAYER_DETAILS = "set-player-details", // Send the name and character to the server (on connect), receive back the id.
ITEM_EVENT = "item-event",
2020-09-25 18:29:22 +02:00
CONNECT_ERROR = "connect_error",
CONNECTING_ERROR = "connecting_error",
2020-09-25 18:29:22 +02:00
SET_SILENT = "set_silent", // Set or unset the silent mode for this user.
SET_VIEWPORT = "set-viewport",
BATCH = "batch",
PLAY_GLOBAL_MESSAGE = "play-global-message",
STOP_GLOBAL_MESSAGE = "stop-global-message",
TELEPORT = "teleport",
USER_MESSAGE = "user-message",
2020-10-16 19:13:26 +02:00
START_JITSI_ROOM = "start-jitsi-room",
SET_VARIABLE = "set-variable",
2020-09-25 18:29:22 +02:00
}
export interface PointInterface {
x: number;
y: number;
direction: string;
2020-09-25 18:29:22 +02:00
moving: boolean;
}
export interface MessageUserPositionInterface {
userId: number;
name: string;
2020-10-20 16:39:23 +02:00
characterLayers: BodyResourceDescriptionInterface[];
2020-09-25 18:29:22 +02:00
position: PointInterface;
visitCardUrl: string | null;
companion: string | null;
userUuid: string;
2020-09-25 18:29:22 +02:00
}
export interface MessageUserMovedInterface {
userId: number;
position: PointInterface;
}
export interface MessageUserJoined {
userId: number;
name: string;
2020-10-20 16:39:23 +02:00
characterLayers: BodyResourceDescriptionInterface[];
2021-04-02 21:21:11 +02:00
position: PointInterface;
visitCardUrl: string | null;
companion: string | null;
userUuid: string;
2020-09-25 18:29:22 +02:00
}
export interface PositionInterface {
x: number;
y: number;
2020-09-25 18:29:22 +02:00
}
export interface GroupCreatedUpdatedMessageInterface {
position: PositionInterface;
groupId: number;
groupSize: number;
2020-09-25 18:29:22 +02:00
}
export interface WebRtcDisconnectMessageInterface {
userId: number;
2020-09-25 18:29:22 +02:00
}
export interface WebRtcSignalReceivedMessageInterface {
userId: number;
signal: SignalData;
webRtcUser: string | undefined;
webRtcPassword: string | undefined;
2020-09-25 18:29:22 +02:00
}
export interface ViewportInterface {
left: number;
top: number;
right: number;
bottom: number;
2020-09-25 18:29:22 +02:00
}
export interface ItemEventMessageInterface {
itemId: number;
event: string;
state: unknown;
parameters: unknown;
2020-09-25 18:29:22 +02:00
}
export interface RoomJoinedMessageInterface {
//users: MessageUserPositionInterface[],
//groups: GroupCreatedUpdatedMessageInterface[],
items: { [itemId: number]: unknown };
variables: Map<string, unknown>;
}
export interface PlayGlobalMessageInterface {
id: string;
type: string;
message: string;
}
export interface OnConnectInterface {
connection: RoomConnection;
room: RoomJoinedMessageInterface;
}