availabilityStatus info from websocket
This commit is contained in:
parent
2b15faf4e8
commit
a566f8d661
@ -145,7 +145,7 @@ export class GameRoom {
|
|||||||
joinRoomMessage.getIpaddress(),
|
joinRoomMessage.getIpaddress(),
|
||||||
position,
|
position,
|
||||||
this.positionNotifier,
|
this.positionNotifier,
|
||||||
joinRoomMessage.getStatus(),
|
joinRoomMessage.getAvailabilitystatus(),
|
||||||
socket,
|
socket,
|
||||||
joinRoomMessage.getTagList(),
|
joinRoomMessage.getTagList(),
|
||||||
joinRoomMessage.getVisitcardurl(),
|
joinRoomMessage.getVisitcardurl(),
|
||||||
|
@ -32,7 +32,7 @@ export class User implements Movable {
|
|||||||
public readonly IPAddress: string,
|
public readonly IPAddress: string,
|
||||||
private position: PointInterface,
|
private position: PointInterface,
|
||||||
private positionNotifier: PositionNotifier,
|
private positionNotifier: PositionNotifier,
|
||||||
private status: AvailabilityStatus,
|
private availabilityStatus: AvailabilityStatus,
|
||||||
public readonly socket: UserSocket,
|
public readonly socket: UserSocket,
|
||||||
public readonly tags: string[],
|
public readonly tags: string[],
|
||||||
public readonly visitCardUrl: string | null,
|
public readonly visitCardUrl: string | null,
|
||||||
@ -90,12 +90,15 @@ export class User implements Movable {
|
|||||||
return this.outlineColor;
|
return this.outlineColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
public getStatus(): AvailabilityStatus {
|
public getAvailabilityStatus(): AvailabilityStatus {
|
||||||
return this.status;
|
return this.availabilityStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
public get silent(): boolean {
|
public get silent(): boolean {
|
||||||
return this.status === AvailabilityStatus.SILENT || this.status === AvailabilityStatus.JITSI;
|
return (
|
||||||
|
this.availabilityStatus === AvailabilityStatus.SILENT ||
|
||||||
|
this.availabilityStatus === AvailabilityStatus.JITSI
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
get following(): User | undefined {
|
get following(): User | undefined {
|
||||||
@ -138,10 +141,10 @@ export class User implements Movable {
|
|||||||
}
|
}
|
||||||
this.voiceIndicatorShown = details.getShowvoiceindicator()?.getValue();
|
this.voiceIndicatorShown = details.getShowvoiceindicator()?.getValue();
|
||||||
|
|
||||||
const status = details.getStatus();
|
const availabilityStatus = details.getAvailabilitystatus();
|
||||||
let sendStatusUpdate = false;
|
let sendStatusUpdate = false;
|
||||||
if (status && status !== this.status) {
|
if (availabilityStatus && availabilityStatus !== this.availabilityStatus) {
|
||||||
this.status = status;
|
this.availabilityStatus = availabilityStatus;
|
||||||
sendStatusUpdate = true;
|
sendStatusUpdate = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -157,7 +160,7 @@ export class User implements Movable {
|
|||||||
playerDetails.setShowvoiceindicator(new BoolValue().setValue(this.voiceIndicatorShown));
|
playerDetails.setShowvoiceindicator(new BoolValue().setValue(this.voiceIndicatorShown));
|
||||||
}
|
}
|
||||||
if (sendStatusUpdate) {
|
if (sendStatusUpdate) {
|
||||||
playerDetails.setStatus(details.getStatus());
|
playerDetails.setAvailabilitystatus(details.getAvailabilitystatus());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.positionNotifier.updatePlayerDetails(this, playerDetails);
|
this.positionNotifier.updatePlayerDetails(this, playerDetails);
|
||||||
|
@ -323,7 +323,7 @@ export class SocketManager {
|
|||||||
userJoinedZoneMessage.setUserid(thing.id);
|
userJoinedZoneMessage.setUserid(thing.id);
|
||||||
userJoinedZoneMessage.setUseruuid(thing.uuid);
|
userJoinedZoneMessage.setUseruuid(thing.uuid);
|
||||||
userJoinedZoneMessage.setName(thing.name);
|
userJoinedZoneMessage.setName(thing.name);
|
||||||
userJoinedZoneMessage.setStatus(thing.getStatus());
|
userJoinedZoneMessage.setAvailabilitystatus(thing.getAvailabilityStatus());
|
||||||
userJoinedZoneMessage.setCharacterlayersList(ProtobufUtils.toCharacterLayerMessages(thing.characterLayers));
|
userJoinedZoneMessage.setCharacterlayersList(ProtobufUtils.toCharacterLayerMessages(thing.characterLayers));
|
||||||
userJoinedZoneMessage.setPosition(ProtobufUtils.toPositionMessage(thing.getPosition()));
|
userJoinedZoneMessage.setPosition(ProtobufUtils.toPositionMessage(thing.getPosition()));
|
||||||
userJoinedZoneMessage.setFromzone(this.toProtoZone(fromZone));
|
userJoinedZoneMessage.setFromzone(this.toProtoZone(fromZone));
|
||||||
@ -651,7 +651,7 @@ export class SocketManager {
|
|||||||
userJoinedMessage.setUserid(thing.id);
|
userJoinedMessage.setUserid(thing.id);
|
||||||
userJoinedMessage.setUseruuid(thing.uuid);
|
userJoinedMessage.setUseruuid(thing.uuid);
|
||||||
userJoinedMessage.setName(thing.name);
|
userJoinedMessage.setName(thing.name);
|
||||||
userJoinedMessage.setStatus(thing.getStatus());
|
userJoinedMessage.setAvailabilitystatus(thing.getAvailabilityStatus());
|
||||||
userJoinedMessage.setCharacterlayersList(ProtobufUtils.toCharacterLayerMessages(thing.characterLayers));
|
userJoinedMessage.setCharacterlayersList(ProtobufUtils.toCharacterLayerMessages(thing.characterLayers));
|
||||||
userJoinedMessage.setPosition(ProtobufUtils.toPositionMessage(thing.getPosition()));
|
userJoinedMessage.setPosition(ProtobufUtils.toPositionMessage(thing.getPosition()));
|
||||||
if (thing.visitCardUrl) {
|
if (thing.visitCardUrl) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import {RoomConnection} from "../front/src/Connexion/RoomConnection";
|
import {RoomConnection} from "../front/src/Connexion/RoomConnection";
|
||||||
import {connectionManager} from "../front/src/Connexion/ConnectionManager";
|
import {connectionManager} from "../front/src/Connexion/ConnectionManager";
|
||||||
import * as WebSocket from "ws"
|
import * as WebSocket from "ws"
|
||||||
|
import { AvailabilityStatus } from '../front/src/Messages/ts-proto-generated/protos/messages';
|
||||||
|
|
||||||
let userMovedCount = 0;
|
let userMovedCount = 0;
|
||||||
|
|
||||||
@ -22,7 +23,9 @@ async function startOneUser(): Promise<void> {
|
|||||||
bottom: 200,
|
bottom: 200,
|
||||||
left: 500,
|
left: 500,
|
||||||
right: 800
|
right: 800
|
||||||
}, null);
|
},
|
||||||
|
null,
|
||||||
|
AvailabilityStatus.ONLINE);
|
||||||
|
|
||||||
const connection = onConnect.connection;
|
const connection = onConnect.connection;
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ import { gameManager } from "../Phaser/Game/GameManager";
|
|||||||
import { locales } from "../i18n/i18n-util";
|
import { locales } from "../i18n/i18n-util";
|
||||||
import type { Locales } from "../i18n/i18n-types";
|
import type { Locales } from "../i18n/i18n-types";
|
||||||
import { setCurrentLocale } from "../i18n/locales";
|
import { setCurrentLocale } from "../i18n/locales";
|
||||||
|
import { AvailabilityStatus } from "../Messages/ts-proto-generated/protos/messages";
|
||||||
|
|
||||||
class ConnectionManager {
|
class ConnectionManager {
|
||||||
private localUser!: LocalUser;
|
private localUser!: LocalUser;
|
||||||
@ -276,7 +277,8 @@ class ConnectionManager {
|
|||||||
characterLayers: string[],
|
characterLayers: string[],
|
||||||
position: PositionInterface,
|
position: PositionInterface,
|
||||||
viewport: ViewportInterface,
|
viewport: ViewportInterface,
|
||||||
companion: string | null
|
companion: string | null,
|
||||||
|
availabilityStatus: AvailabilityStatus
|
||||||
): Promise<OnConnectInterface> {
|
): Promise<OnConnectInterface> {
|
||||||
return new Promise<OnConnectInterface>((resolve, reject) => {
|
return new Promise<OnConnectInterface>((resolve, reject) => {
|
||||||
const connection = new RoomConnection(
|
const connection = new RoomConnection(
|
||||||
@ -286,7 +288,8 @@ class ConnectionManager {
|
|||||||
characterLayers,
|
characterLayers,
|
||||||
position,
|
position,
|
||||||
viewport,
|
viewport,
|
||||||
companion
|
companion,
|
||||||
|
availabilityStatus
|
||||||
);
|
);
|
||||||
|
|
||||||
connection.onConnectError((error: object) => {
|
connection.onConnectError((error: object) => {
|
||||||
@ -340,9 +343,15 @@ class ConnectionManager {
|
|||||||
this.reconnectingTimeout = setTimeout(() => {
|
this.reconnectingTimeout = setTimeout(() => {
|
||||||
//todo: allow a way to break recursion?
|
//todo: allow a way to break recursion?
|
||||||
//todo: find a way to avoid recursive function. Otherwise, the call stack will grow indefinitely.
|
//todo: find a way to avoid recursive function. Otherwise, the call stack will grow indefinitely.
|
||||||
void this.connectToRoomSocket(roomUrl, name, characterLayers, position, viewport, companion).then(
|
void this.connectToRoomSocket(
|
||||||
(connection) => resolve(connection)
|
roomUrl,
|
||||||
);
|
name,
|
||||||
|
characterLayers,
|
||||||
|
position,
|
||||||
|
viewport,
|
||||||
|
companion,
|
||||||
|
availabilityStatus
|
||||||
|
).then((connection) => resolve(connection));
|
||||||
}, 4000 + Math.floor(Math.random() * 2000));
|
}, 4000 + Math.floor(Math.random() * 2000));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -15,7 +15,7 @@ export interface MessageUserPositionInterface {
|
|||||||
name: string;
|
name: string;
|
||||||
characterLayers: BodyResourceDescriptionInterface[];
|
characterLayers: BodyResourceDescriptionInterface[];
|
||||||
position: PointInterface;
|
position: PointInterface;
|
||||||
status: AvailabilityStatus;
|
availabilityStatus: AvailabilityStatus;
|
||||||
visitCardUrl: string | null;
|
visitCardUrl: string | null;
|
||||||
companion: string | null;
|
companion: string | null;
|
||||||
userUuid: string;
|
userUuid: string;
|
||||||
@ -31,7 +31,7 @@ export interface MessageUserJoined {
|
|||||||
name: string;
|
name: string;
|
||||||
characterLayers: BodyResourceDescriptionInterface[];
|
characterLayers: BodyResourceDescriptionInterface[];
|
||||||
position: PointInterface;
|
position: PointInterface;
|
||||||
status: AvailabilityStatus;
|
availabilityStatus: AvailabilityStatus;
|
||||||
visitCardUrl: string | null;
|
visitCardUrl: string | null;
|
||||||
companion: string | null;
|
companion: string | null;
|
||||||
userUuid: string;
|
userUuid: string;
|
||||||
|
@ -154,6 +154,7 @@ export class RoomConnection implements RoomConnection {
|
|||||||
* @param position
|
* @param position
|
||||||
* @param viewport
|
* @param viewport
|
||||||
* @param companion
|
* @param companion
|
||||||
|
* @param availabilityStatus
|
||||||
*/
|
*/
|
||||||
public constructor(
|
public constructor(
|
||||||
token: string | null,
|
token: string | null,
|
||||||
@ -162,7 +163,8 @@ export class RoomConnection implements RoomConnection {
|
|||||||
characterLayers: string[],
|
characterLayers: string[],
|
||||||
position: PositionInterface,
|
position: PositionInterface,
|
||||||
viewport: ViewportInterface,
|
viewport: ViewportInterface,
|
||||||
companion: string | null
|
companion: string | null,
|
||||||
|
availabilityStatus: AvailabilityStatus
|
||||||
) {
|
) {
|
||||||
let url = new URL(PUSHER_URL, window.location.toString()).toString();
|
let url = new URL(PUSHER_URL, window.location.toString()).toString();
|
||||||
url = url.replace("http://", "ws://").replace("https://", "wss://");
|
url = url.replace("http://", "ws://").replace("https://", "wss://");
|
||||||
@ -185,6 +187,9 @@ export class RoomConnection implements RoomConnection {
|
|||||||
if (typeof companion === "string") {
|
if (typeof companion === "string") {
|
||||||
url += "&companion=" + encodeURIComponent(companion);
|
url += "&companion=" + encodeURIComponent(companion);
|
||||||
}
|
}
|
||||||
|
if (typeof availabilityStatus === "number") {
|
||||||
|
url += "&availabilityStatus=" + availabilityStatus;
|
||||||
|
}
|
||||||
|
|
||||||
if (RoomConnection.websocketFactory) {
|
if (RoomConnection.websocketFactory) {
|
||||||
this.socket = RoomConnection.websocketFactory(url);
|
this.socket = RoomConnection.websocketFactory(url);
|
||||||
@ -537,9 +542,9 @@ export class RoomConnection implements RoomConnection {
|
|||||||
this.socket.send(bytes);
|
this.socket.send(bytes);
|
||||||
}
|
}
|
||||||
|
|
||||||
public emitPlayerStatusChange(status: AvailabilityStatus): void {
|
public emitPlayerStatusChange(availabilityStatus: AvailabilityStatus): void {
|
||||||
const message = SetPlayerDetailsMessageTsProto.fromPartial({
|
const message = SetPlayerDetailsMessageTsProto.fromPartial({
|
||||||
status,
|
availabilityStatus,
|
||||||
});
|
});
|
||||||
const bytes = ClientToServerMessageTsProto.encode({
|
const bytes = ClientToServerMessageTsProto.encode({
|
||||||
message: {
|
message: {
|
||||||
@ -673,7 +678,7 @@ export class RoomConnection implements RoomConnection {
|
|||||||
characterLayers,
|
characterLayers,
|
||||||
visitCardUrl: message.visitCardUrl,
|
visitCardUrl: message.visitCardUrl,
|
||||||
position: ProtobufClientUtils.toPointInterface(position),
|
position: ProtobufClientUtils.toPointInterface(position),
|
||||||
status: message.status,
|
availabilityStatus: message.availabilityStatus,
|
||||||
companion: companion ? companion.name : null,
|
companion: companion ? companion.name : null,
|
||||||
userUuid: message.userUuid,
|
userUuid: message.userUuid,
|
||||||
outlineColor: message.hasOutline ? message.outlineColor : undefined,
|
outlineColor: message.hasOutline ? message.outlineColor : undefined,
|
||||||
|
@ -5,7 +5,7 @@ export class PlayerStatusDot extends Phaser.GameObjects.Container {
|
|||||||
private statusImage: Phaser.GameObjects.Image;
|
private statusImage: Phaser.GameObjects.Image;
|
||||||
private statusImageOutline: Phaser.GameObjects.Image;
|
private statusImageOutline: Phaser.GameObjects.Image;
|
||||||
|
|
||||||
private status: AvailabilityStatus;
|
private availabilityStatus: AvailabilityStatus;
|
||||||
|
|
||||||
private readonly COLORS: Record<AvailabilityStatus, { filling: number; outline: number }> = {
|
private readonly COLORS: Record<AvailabilityStatus, { filling: number; outline: number }> = {
|
||||||
[AvailabilityStatus.AWAY]: { filling: 0xf5931e, outline: 0x875d13 },
|
[AvailabilityStatus.AWAY]: { filling: 0xf5931e, outline: 0x875d13 },
|
||||||
@ -19,7 +19,7 @@ export class PlayerStatusDot extends Phaser.GameObjects.Container {
|
|||||||
constructor(scene: Phaser.Scene, x: number, y: number) {
|
constructor(scene: Phaser.Scene, x: number, y: number) {
|
||||||
super(scene, x, y);
|
super(scene, x, y);
|
||||||
|
|
||||||
this.status = AvailabilityStatus.ONLINE;
|
this.availabilityStatus = AvailabilityStatus.ONLINE;
|
||||||
|
|
||||||
this.statusImage = this.scene.add.image(0, 0, "iconStatusIndicatorInside");
|
this.statusImage = this.scene.add.image(0, 0, "iconStatusIndicatorInside");
|
||||||
this.statusImageOutline = this.scene.add.image(0, 0, "iconStatusIndicatorOutline");
|
this.statusImageOutline = this.scene.add.image(0, 0, "iconStatusIndicatorOutline");
|
||||||
@ -31,11 +31,11 @@ export class PlayerStatusDot extends Phaser.GameObjects.Container {
|
|||||||
this.scene.add.existing(this);
|
this.scene.add.existing(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public setStatus(status: AvailabilityStatus, instant: boolean = false): void {
|
public setAvailabilityStatus(availabilityStatus: AvailabilityStatus, instant: boolean = false): void {
|
||||||
if (this.status === status || status === AvailabilityStatus.UNCHANGED) {
|
if (this.availabilityStatus === availabilityStatus || availabilityStatus === AvailabilityStatus.UNCHANGED) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.status = status;
|
this.availabilityStatus = availabilityStatus;
|
||||||
if (instant) {
|
if (instant) {
|
||||||
this.redraw();
|
this.redraw();
|
||||||
} else {
|
} else {
|
||||||
@ -61,7 +61,7 @@ export class PlayerStatusDot extends Phaser.GameObjects.Container {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private redraw(): void {
|
private redraw(): void {
|
||||||
const colors = this.COLORS[this.status];
|
const colors = this.COLORS[this.availabilityStatus];
|
||||||
this.statusImage.setTintFill(colors.filling);
|
this.statusImage.setTintFill(colors.filling);
|
||||||
this.statusImageOutline.setTintFill(colors.outline);
|
this.statusImageOutline.setTintFill(colors.outline);
|
||||||
}
|
}
|
||||||
|
@ -236,8 +236,8 @@ export abstract class Character extends Container implements OutlineableInterfac
|
|||||||
this.talkIcon.show(show, forceClose);
|
this.talkIcon.show(show, forceClose);
|
||||||
}
|
}
|
||||||
|
|
||||||
public setStatus(status: AvailabilityStatus, instant: boolean = false): void {
|
public setAvailabilityStatus(availabilityStatus: AvailabilityStatus, instant: boolean = false): void {
|
||||||
this.statusDot.setStatus(status, instant);
|
this.statusDot.setAvailabilityStatus(availabilityStatus, instant);
|
||||||
}
|
}
|
||||||
|
|
||||||
public addCompanion(name: string, texturePromise?: CancelablePromise<string>): void {
|
public addCompanion(name: string, texturePromise?: CancelablePromise<string>): void {
|
||||||
|
@ -687,7 +687,8 @@ export class GameScene extends DirtyScene {
|
|||||||
right: camera.scrollX + camera.width,
|
right: camera.scrollX + camera.width,
|
||||||
bottom: camera.scrollY + camera.height,
|
bottom: camera.scrollY + camera.height,
|
||||||
},
|
},
|
||||||
this.companion
|
this.companion,
|
||||||
|
get(availabilityStatusStore)
|
||||||
)
|
)
|
||||||
.then((onConnect: OnConnectInterface) => {
|
.then((onConnect: OnConnectInterface) => {
|
||||||
this.connection = onConnect.connection;
|
this.connection = onConnect.connection;
|
||||||
@ -711,7 +712,7 @@ export class GameScene extends DirtyScene {
|
|||||||
characterLayers: message.characterLayers,
|
characterLayers: message.characterLayers,
|
||||||
name: message.name,
|
name: message.name,
|
||||||
position: message.position,
|
position: message.position,
|
||||||
status: message.status,
|
availabilityStatus: message.availabilityStatus,
|
||||||
visitCardUrl: message.visitCardUrl,
|
visitCardUrl: message.visitCardUrl,
|
||||||
companion: message.companion,
|
companion: message.companion,
|
||||||
userUuid: message.userUuid,
|
userUuid: message.userUuid,
|
||||||
@ -889,9 +890,10 @@ export class GameScene extends DirtyScene {
|
|||||||
this.tryChangeShowVoiceIndicatorState(this.jitsiDominantSpeaker && this.jitsiParticipantsCount > 1);
|
this.tryChangeShowVoiceIndicatorState(this.jitsiDominantSpeaker && this.jitsiParticipantsCount > 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.availabilityStatusStoreUnsubscriber = availabilityStatusStore.subscribe((status) => {
|
this.availabilityStatusStoreUnsubscriber = availabilityStatusStore.subscribe((availabilityStatus) => {
|
||||||
this.connection?.emitPlayerStatusChange(status);
|
console.log(availabilityStatus);
|
||||||
this.CurrentPlayer.setStatus(status);
|
this.connection?.emitPlayerStatusChange(availabilityStatus);
|
||||||
|
this.CurrentPlayer.setAvailabilityStatus(availabilityStatus);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.emoteUnsubscriber = emoteStore.subscribe((emote) => {
|
this.emoteUnsubscriber = emoteStore.subscribe((emote) => {
|
||||||
@ -1993,8 +1995,8 @@ ${escapedMessage}
|
|||||||
if (addPlayerData.outlineColor !== undefined) {
|
if (addPlayerData.outlineColor !== undefined) {
|
||||||
player.setApiOutlineColor(addPlayerData.outlineColor);
|
player.setApiOutlineColor(addPlayerData.outlineColor);
|
||||||
}
|
}
|
||||||
if (addPlayerData.status !== undefined) {
|
if (addPlayerData.availabilityStatus !== undefined) {
|
||||||
player.setStatus(addPlayerData.status, true);
|
player.setAvailabilityStatus(addPlayerData.availabilityStatus, true);
|
||||||
}
|
}
|
||||||
this.MapPlayers.add(player);
|
this.MapPlayers.add(player);
|
||||||
this.MapPlayersByKey.set(player.userId, player);
|
this.MapPlayersByKey.set(player.userId, player);
|
||||||
@ -2145,8 +2147,8 @@ ${escapedMessage}
|
|||||||
if (message.details?.showVoiceIndicator !== undefined) {
|
if (message.details?.showVoiceIndicator !== undefined) {
|
||||||
character.showTalkIcon(message.details?.showVoiceIndicator);
|
character.showTalkIcon(message.details?.showVoiceIndicator);
|
||||||
}
|
}
|
||||||
if (message.details?.status !== undefined) {
|
if (message.details?.availabilityStatus !== undefined) {
|
||||||
character.setStatus(message.details?.status);
|
character.setAvailabilityStatus(message.details?.availabilityStatus);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ export interface PlayerInterface {
|
|||||||
visitCardUrl: string | null;
|
visitCardUrl: string | null;
|
||||||
companion: string | null;
|
companion: string | null;
|
||||||
userUuid: string;
|
userUuid: string;
|
||||||
status: AvailabilityStatus;
|
availabilityStatus: AvailabilityStatus;
|
||||||
color?: string;
|
color?: string;
|
||||||
outlineColor?: number;
|
outlineColor?: number;
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ function createPlayersStore() {
|
|||||||
visitCardUrl: message.visitCardUrl,
|
visitCardUrl: message.visitCardUrl,
|
||||||
companion: message.companion,
|
companion: message.companion,
|
||||||
userUuid: message.userUuid,
|
userUuid: message.userUuid,
|
||||||
status: message.status,
|
availabilityStatus: message.status,
|
||||||
color: getRandomColor(),
|
color: getRandomColor(),
|
||||||
});
|
});
|
||||||
return users;
|
return users;
|
||||||
@ -59,7 +59,7 @@ function createPlayersStore() {
|
|||||||
characterLayers: [],
|
characterLayers: [],
|
||||||
visitCardUrl: null,
|
visitCardUrl: null,
|
||||||
companion: null,
|
companion: null,
|
||||||
status: AvailabilityStatus.ONLINE,
|
availabilityStatus: AvailabilityStatus.ONLINE,
|
||||||
userUuid: "dummy",
|
userUuid: "dummy",
|
||||||
color: getRandomColor(),
|
color: getRandomColor(),
|
||||||
});
|
});
|
||||||
|
@ -57,7 +57,7 @@ message SetPlayerDetailsMessage {
|
|||||||
google.protobuf.UInt32Value outlineColor = 3;
|
google.protobuf.UInt32Value outlineColor = 3;
|
||||||
google.protobuf.BoolValue removeOutlineColor = 4;
|
google.protobuf.BoolValue removeOutlineColor = 4;
|
||||||
google.protobuf.BoolValue showVoiceIndicator = 5;
|
google.protobuf.BoolValue showVoiceIndicator = 5;
|
||||||
AvailabilityStatus status = 6;
|
AvailabilityStatus availabilityStatus = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserMovesMessage {
|
message UserMovesMessage {
|
||||||
@ -210,7 +210,7 @@ message UserJoinedMessage {
|
|||||||
string userUuid = 7;
|
string userUuid = 7;
|
||||||
uint32 outlineColor = 8;
|
uint32 outlineColor = 8;
|
||||||
bool hasOutline = 9;
|
bool hasOutline = 9;
|
||||||
AvailabilityStatus status = 10;
|
AvailabilityStatus availabilityStatus = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserLeftMessage {
|
message UserLeftMessage {
|
||||||
@ -369,7 +369,7 @@ message JoinRoomMessage {
|
|||||||
CompanionMessage companion = 8;
|
CompanionMessage companion = 8;
|
||||||
string visitCardUrl = 9;
|
string visitCardUrl = 9;
|
||||||
string userRoomToken = 10;
|
string userRoomToken = 10;
|
||||||
AvailabilityStatus status = 11;
|
AvailabilityStatus availabilityStatus = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserJoinedZoneMessage {
|
message UserJoinedZoneMessage {
|
||||||
@ -383,7 +383,7 @@ message UserJoinedZoneMessage {
|
|||||||
string userUuid = 8;
|
string userUuid = 8;
|
||||||
uint32 outlineColor = 9;
|
uint32 outlineColor = 9;
|
||||||
bool hasOutline = 10;
|
bool hasOutline = 10;
|
||||||
AvailabilityStatus status = 11;
|
AvailabilityStatus availabilityStatus = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserLeftZoneMessage {
|
message UserLeftZoneMessage {
|
||||||
|
@ -20,6 +20,7 @@ import {
|
|||||||
FollowAbortMessage,
|
FollowAbortMessage,
|
||||||
VariableMessage,
|
VariableMessage,
|
||||||
LockGroupPromptMessage,
|
LockGroupPromptMessage,
|
||||||
|
AvailabilityStatus,
|
||||||
} from "../Messages/generated/messages_pb";
|
} from "../Messages/generated/messages_pb";
|
||||||
import { UserMovesMessage } from "../Messages/generated/messages_pb";
|
import { UserMovesMessage } from "../Messages/generated/messages_pb";
|
||||||
import { parse } from "query-string";
|
import { parse } from "query-string";
|
||||||
@ -53,6 +54,7 @@ interface UpgradeData {
|
|||||||
roomId: string;
|
roomId: string;
|
||||||
name: string;
|
name: string;
|
||||||
companion: CompanionMessage | undefined;
|
companion: CompanionMessage | undefined;
|
||||||
|
availabilityStatus: AvailabilityStatus;
|
||||||
characterLayers: WokaDetail[];
|
characterLayers: WokaDetail[];
|
||||||
messages: unknown[];
|
messages: unknown[];
|
||||||
tags: string[];
|
tags: string[];
|
||||||
@ -259,6 +261,7 @@ export class IoSocketController {
|
|||||||
const left = Number(query.left);
|
const left = Number(query.left);
|
||||||
const right = Number(query.right);
|
const right = Number(query.right);
|
||||||
const name = query.name;
|
const name = query.name;
|
||||||
|
const availabilityStatus = Number(query.availabilityStatus);
|
||||||
|
|
||||||
let companion: CompanionMessage | undefined = undefined;
|
let companion: CompanionMessage | undefined = undefined;
|
||||||
|
|
||||||
@ -270,6 +273,9 @@ export class IoSocketController {
|
|||||||
if (typeof name !== "string") {
|
if (typeof name !== "string") {
|
||||||
throw new Error("Expecting name");
|
throw new Error("Expecting name");
|
||||||
}
|
}
|
||||||
|
if (typeof availabilityStatus !== "number") {
|
||||||
|
throw new Error("Expecting availability status");
|
||||||
|
}
|
||||||
if (name === "") {
|
if (name === "") {
|
||||||
throw new Error("No empty name");
|
throw new Error("No empty name");
|
||||||
}
|
}
|
||||||
@ -411,6 +417,7 @@ export class IoSocketController {
|
|||||||
roomId,
|
roomId,
|
||||||
name,
|
name,
|
||||||
companion,
|
companion,
|
||||||
|
availabilityStatus,
|
||||||
characterLayers: characterLayerObjs,
|
characterLayers: characterLayerObjs,
|
||||||
messages: memberMessages,
|
messages: memberMessages,
|
||||||
tags: memberTags,
|
tags: memberTags,
|
||||||
@ -612,6 +619,7 @@ export class IoSocketController {
|
|||||||
client.visitCardUrl = ws.visitCardUrl;
|
client.visitCardUrl = ws.visitCardUrl;
|
||||||
client.characterLayers = ws.characterLayers;
|
client.characterLayers = ws.characterLayers;
|
||||||
client.companion = ws.companion;
|
client.companion = ws.companion;
|
||||||
|
client.availabilityStatus = ws.availabilityStatus;
|
||||||
client.roomId = ws.roomId;
|
client.roomId = ws.roomId;
|
||||||
client.listenedZones = new Set<Zone>();
|
client.listenedZones = new Set<Zone>();
|
||||||
return client;
|
return client;
|
||||||
|
@ -2,6 +2,7 @@ import { PointInterface } from "./PointInterface";
|
|||||||
import { Identificable } from "./Identificable";
|
import { Identificable } from "./Identificable";
|
||||||
import { ViewportInterface } from "../../Model/Websocket/ViewportMessage";
|
import { ViewportInterface } from "../../Model/Websocket/ViewportMessage";
|
||||||
import {
|
import {
|
||||||
|
AvailabilityStatus,
|
||||||
BatchMessage,
|
BatchMessage,
|
||||||
CompanionMessage,
|
CompanionMessage,
|
||||||
PusherToBackMessage,
|
PusherToBackMessage,
|
||||||
@ -26,6 +27,7 @@ export interface ExSocketInterface extends compressors.WebSocket, Identificable
|
|||||||
position: PointInterface;
|
position: PointInterface;
|
||||||
viewport: ViewportInterface;
|
viewport: ViewportInterface;
|
||||||
companion?: CompanionMessage;
|
companion?: CompanionMessage;
|
||||||
|
availabilityStatus: AvailabilityStatus;
|
||||||
/**
|
/**
|
||||||
* Pushes an event that will be sent in the next batch of events
|
* Pushes an event that will be sent in the next batch of events
|
||||||
*/
|
*/
|
||||||
|
@ -50,7 +50,7 @@ export class UserDescriptor {
|
|||||||
private name: string,
|
private name: string,
|
||||||
private characterLayers: CharacterLayerMessage[],
|
private characterLayers: CharacterLayerMessage[],
|
||||||
private position: PositionMessage,
|
private position: PositionMessage,
|
||||||
private status: AvailabilityStatus,
|
private availabilityStatus: AvailabilityStatus,
|
||||||
private visitCardUrl: string | null,
|
private visitCardUrl: string | null,
|
||||||
private companion?: CompanionMessage,
|
private companion?: CompanionMessage,
|
||||||
private outlineColor?: number
|
private outlineColor?: number
|
||||||
@ -71,7 +71,7 @@ export class UserDescriptor {
|
|||||||
message.getName(),
|
message.getName(),
|
||||||
message.getCharacterlayersList(),
|
message.getCharacterlayersList(),
|
||||||
position,
|
position,
|
||||||
message.getStatus(),
|
message.getAvailabilitystatus(),
|
||||||
message.getVisitcardurl(),
|
message.getVisitcardurl(),
|
||||||
message.getCompanion(),
|
message.getCompanion(),
|
||||||
message.getHasoutline() ? message.getOutlinecolor() : undefined
|
message.getHasoutline() ? message.getOutlinecolor() : undefined
|
||||||
@ -92,9 +92,9 @@ export class UserDescriptor {
|
|||||||
} else {
|
} else {
|
||||||
this.outlineColor = playerDetails.getOutlinecolor()?.getValue();
|
this.outlineColor = playerDetails.getOutlinecolor()?.getValue();
|
||||||
}
|
}
|
||||||
const status = playerDetails.getStatus();
|
const availabilityStatus = playerDetails.getAvailabilitystatus();
|
||||||
if (status !== undefined) {
|
if (availabilityStatus !== undefined) {
|
||||||
this.status = status;
|
this.availabilityStatus = availabilityStatus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ export class UserDescriptor {
|
|||||||
userJoinedMessage.setName(this.name);
|
userJoinedMessage.setName(this.name);
|
||||||
userJoinedMessage.setCharacterlayersList(this.characterLayers);
|
userJoinedMessage.setCharacterlayersList(this.characterLayers);
|
||||||
userJoinedMessage.setPosition(this.position);
|
userJoinedMessage.setPosition(this.position);
|
||||||
userJoinedMessage.setStatus(this.status);
|
userJoinedMessage.setAvailabilitystatus(this.availabilityStatus);
|
||||||
if (this.visitCardUrl) {
|
if (this.visitCardUrl) {
|
||||||
userJoinedMessage.setVisitcardurl(this.visitCardUrl);
|
userJoinedMessage.setVisitcardurl(this.visitCardUrl);
|
||||||
}
|
}
|
||||||
|
@ -175,6 +175,7 @@ export class SocketManager implements ZoneEventListener {
|
|||||||
joinRoomMessage.setIpaddress(client.IPAddress);
|
joinRoomMessage.setIpaddress(client.IPAddress);
|
||||||
joinRoomMessage.setRoomid(client.roomId);
|
joinRoomMessage.setRoomid(client.roomId);
|
||||||
joinRoomMessage.setName(client.name);
|
joinRoomMessage.setName(client.name);
|
||||||
|
joinRoomMessage.setAvailabilitystatus(client.availabilityStatus);
|
||||||
joinRoomMessage.setPositionmessage(ProtobufUtils.toPositionMessage(client.position));
|
joinRoomMessage.setPositionmessage(ProtobufUtils.toPositionMessage(client.position));
|
||||||
joinRoomMessage.setTagList(client.tags);
|
joinRoomMessage.setTagList(client.tags);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user