Compare commits
4 Commits
56566003e0
...
f1817c5974
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1817c5974 | ||
|
|
67cdf2c384 | ||
|
|
fdd492a8f4 | ||
|
|
9feb0b3c35 |
@@ -9,4 +9,5 @@ public enum UserPermissions
|
|||||||
DisableSounds = 4,
|
DisableSounds = 4,
|
||||||
DisableVFX = 8,
|
DisableVFX = 8,
|
||||||
Sticky = 16,
|
Sticky = 16,
|
||||||
|
ShareLocation = 32,
|
||||||
}
|
}
|
||||||
@@ -28,6 +28,10 @@ public static class UserPermissionsExtensions
|
|||||||
{
|
{
|
||||||
return perm.HasFlag(UserPermissions.Sticky);
|
return perm.HasFlag(UserPermissions.Sticky);
|
||||||
}
|
}
|
||||||
|
public static bool IsSharingLocation(this UserPermissions perm)
|
||||||
|
{
|
||||||
|
return perm.HasFlag(UserPermissions.ShareLocation);
|
||||||
|
}
|
||||||
|
|
||||||
public static void SetDisableAnimations(this ref UserPermissions perm, bool set)
|
public static void SetDisableAnimations(this ref UserPermissions perm, bool set)
|
||||||
{
|
{
|
||||||
@@ -58,4 +62,10 @@ public static class UserPermissionsExtensions
|
|||||||
if (sticky) perm |= UserPermissions.Sticky;
|
if (sticky) perm |= UserPermissions.Sticky;
|
||||||
else perm &= ~UserPermissions.Sticky;
|
else perm &= ~UserPermissions.Sticky;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void SetShareLocation(this ref UserPermissions perm, bool? set)
|
||||||
|
{
|
||||||
|
if (set == true) perm |= UserPermissions.ShareLocation;
|
||||||
|
else perm &= ~UserPermissions.ShareLocation;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -59,6 +59,7 @@ public record struct LocationInfo
|
|||||||
[Key(4)] public uint WardId { get; set; }
|
[Key(4)] public uint WardId { get; set; }
|
||||||
[Key(5)] public uint HouseId { get; set; }
|
[Key(5)] public uint HouseId { get; set; }
|
||||||
[Key(6)] public uint RoomId { get; set; }
|
[Key(6)] public uint RoomId { get; set; }
|
||||||
|
[Key(7)] public uint InstanceId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[MessagePackObject]
|
[MessagePackObject]
|
||||||
|
|||||||
12
LightlessSyncAPI/Dto/User/LocationSharingDto.cs
Normal file
12
LightlessSyncAPI/Dto/User/LocationSharingDto.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
using LightlessSync.API.Data;
|
||||||
|
using LightlessSync.API.Dto.CharaData;
|
||||||
|
using MessagePack;
|
||||||
|
|
||||||
|
namespace LightlessSync.API.Dto.User;
|
||||||
|
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public record LocationDto(UserData User, LocationInfo Location);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public record LocationWithTimeDto(LocationDto Location, DateTimeOffset ExpireAt);
|
||||||
6
LightlessSyncAPI/Dto/User/LocationSharingToggleDto.cs
Normal file
6
LightlessSyncAPI/Dto/User/LocationSharingToggleDto.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
using MessagePack;
|
||||||
|
|
||||||
|
namespace LightlessSync.API.Dto.User;
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public record LocationSharingToggleDto(List<string> users, DateTimeOffset duration);
|
||||||
@@ -45,6 +45,7 @@ public interface ILightlessHub
|
|||||||
Task Client_GposeLobbyPushPoseData(UserData userData, PoseData poseData);
|
Task Client_GposeLobbyPushPoseData(UserData userData, PoseData poseData);
|
||||||
Task Client_GposeLobbyPushWorldData(UserData userData, WorldData worldData);
|
Task Client_GposeLobbyPushWorldData(UserData userData, WorldData worldData);
|
||||||
Task Client_ChatReceive(ChatMessageDto message);
|
Task Client_ChatReceive(ChatMessageDto message);
|
||||||
|
Task Client_SendLocationToClient(LocationDto locationDto, DateTimeOffset expireAt);
|
||||||
|
|
||||||
Task<ConnectionDto> GetConnectionDto();
|
Task<ConnectionDto> GetConnectionDto();
|
||||||
Task<IReadOnlyList<ZoneChatChannelInfoDto>> GetZoneChatChannels();
|
Task<IReadOnlyList<ZoneChatChannelInfoDto>> GetZoneChatChannels();
|
||||||
@@ -115,4 +116,9 @@ public interface ILightlessHub
|
|||||||
Task SendChatMessage(ChatSendRequestDto request);
|
Task SendChatMessage(ChatSendRequestDto request);
|
||||||
Task ReportChatMessage(ChatReportSubmitDto request);
|
Task ReportChatMessage(ChatReportSubmitDto request);
|
||||||
Task SetChatParticipantMute(ChatParticipantMuteRequestDto request);
|
Task SetChatParticipantMute(ChatParticipantMuteRequestDto request);
|
||||||
|
|
||||||
|
Task UpdateLocation(LocationDto locationDto, bool offline);
|
||||||
|
Task<List<LocationWithTimeDto>> RequestAllLocationInfo();
|
||||||
|
Task ToggleLocationSharing(LocationSharingToggleDto dto);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,4 +58,5 @@ public interface ILightlessHubClient : ILightlessHub
|
|||||||
void OnGposeLobbyPushCharacterData(Action<CharaDataDownloadDto> act);
|
void OnGposeLobbyPushCharacterData(Action<CharaDataDownloadDto> act);
|
||||||
void OnGposeLobbyPushPoseData(Action<UserData, PoseData> act);
|
void OnGposeLobbyPushPoseData(Action<UserData, PoseData> act);
|
||||||
void OnGposeLobbyPushWorldData(Action<UserData, WorldData> act);
|
void OnGposeLobbyPushWorldData(Action<UserData, WorldData> act);
|
||||||
|
void OnReciveLocation(Action<LocationDto> act);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user