2021-12-05 20:09:54 -08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using OWML.Utils;
|
2021-08-09 11:49:58 +01:00
|
|
|
|
using QSB.CampfireSync.WorldObjects;
|
2021-08-08 20:04:15 +01:00
|
|
|
|
using QSB.ClientServerStateSync;
|
2020-12-31 12:10:55 +00:00
|
|
|
|
using QSB.Events;
|
2020-12-14 16:28:03 +00:00
|
|
|
|
using QSB.Messaging;
|
2021-11-25 15:32:34 +00:00
|
|
|
|
using QSB.MeteorSync.WorldObjects;
|
2021-12-14 20:24:02 -08:00
|
|
|
|
using QSB.OrbSync.WorldObjects;
|
2021-12-22 14:46:37 -08:00
|
|
|
|
using QSB.QuantumSync.Events;
|
2021-12-13 22:49:18 -08:00
|
|
|
|
using QSB.QuantumSync.WorldObjects;
|
2021-11-25 15:25:17 +00:00
|
|
|
|
using QSB.Tools.TranslatorTool.TranslationSync;
|
|
|
|
|
using QSB.Tools.TranslatorTool.TranslationSync.WorldObjects;
|
2021-12-06 03:09:23 -08:00
|
|
|
|
using QSB.TornadoSync.WorldObjects;
|
2020-08-22 20:21:13 +01:00
|
|
|
|
using QSB.Utility;
|
2020-12-11 22:42:21 +00:00
|
|
|
|
using QSB.WorldSync;
|
2021-12-19 15:50:54 -08:00
|
|
|
|
using UnityEngine;
|
2020-08-10 14:40:06 +01:00
|
|
|
|
|
2020-11-03 21:33:48 +00:00
|
|
|
|
namespace QSB.Player.Events
|
2020-08-10 14:40:06 +01:00
|
|
|
|
{
|
2021-08-08 20:04:15 +01:00
|
|
|
|
// Can be sent by any client (including host) to signal they want latest worldobject, player, and server infomation
|
|
|
|
|
public class RequestStateResyncEvent : QSBEvent<PlayerMessage>
|
2020-12-02 21:23:01 +00:00
|
|
|
|
{
|
2021-12-11 11:47:21 +00:00
|
|
|
|
public static bool _waitingForEvent;
|
|
|
|
|
|
2021-12-05 11:03:09 +00:00
|
|
|
|
public override bool RequireWorldObjectsReady => false;
|
2021-12-04 16:39:37 +00:00
|
|
|
|
|
2021-08-08 20:04:15 +01:00
|
|
|
|
public override void SetupListener() => GlobalMessenger.AddListener(EventNames.QSBRequestStateResync, Handler);
|
|
|
|
|
public override void CloseListener() => GlobalMessenger.RemoveListener(EventNames.QSBRequestStateResync, Handler);
|
2020-08-15 20:32:58 +01:00
|
|
|
|
|
2021-12-11 11:47:21 +00:00
|
|
|
|
private void Handler()
|
|
|
|
|
{
|
|
|
|
|
if (_waitingForEvent)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_waitingForEvent = true;
|
|
|
|
|
SendEvent(CreateMessage());
|
|
|
|
|
}
|
2020-08-15 21:52:43 +02:00
|
|
|
|
|
2021-11-20 19:49:50 +00:00
|
|
|
|
private PlayerMessage CreateMessage() => new()
|
2020-12-02 21:23:01 +00:00
|
|
|
|
{
|
2021-08-08 20:04:15 +01:00
|
|
|
|
AboutId = LocalPlayerId
|
2020-12-02 21:23:01 +00:00
|
|
|
|
};
|
2020-08-10 18:17:54 +02:00
|
|
|
|
|
2021-12-11 11:47:21 +00:00
|
|
|
|
public override void OnReceiveLocal(bool isHost, PlayerMessage message)
|
|
|
|
|
{
|
|
|
|
|
QSBCore.UnityEvents.FireInNUpdates(() =>
|
|
|
|
|
{
|
|
|
|
|
if (_waitingForEvent)
|
|
|
|
|
{
|
|
|
|
|
DebugLog.ToConsole($"Did not receive PlayerInformationEvent in time. Setting _waitingForEvent to false.", OWML.Common.MessageType.Info);
|
|
|
|
|
_waitingForEvent = false;
|
|
|
|
|
}
|
|
|
|
|
}, 60);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-08 20:04:15 +01:00
|
|
|
|
public override void OnReceiveRemote(bool isHost, PlayerMessage message)
|
2020-12-02 21:23:01 +00:00
|
|
|
|
{
|
2021-12-06 01:00:56 -08:00
|
|
|
|
// send response only to the requesting client
|
2021-12-06 01:57:56 -08:00
|
|
|
|
QSBEventManager.ForIdOverride = message.FromId;
|
2021-12-06 01:43:06 -08:00
|
|
|
|
try
|
2020-12-19 10:56:25 +00:00
|
|
|
|
{
|
2021-12-06 01:43:06 -08:00
|
|
|
|
// if host, send worldobject and server states
|
|
|
|
|
if (isHost)
|
|
|
|
|
{
|
2021-12-20 11:49:03 +00:00
|
|
|
|
ServerStateManager.Instance.FireChangeServerStateEvent(ServerStateManager.Instance.GetServerState());
|
2021-12-22 17:38:08 -08:00
|
|
|
|
new PlayerInformationMessage().Send();
|
2021-08-08 20:04:15 +01:00
|
|
|
|
|
2021-12-06 01:43:06 -08:00
|
|
|
|
if (WorldObjectManager.AllObjectsReady)
|
|
|
|
|
{
|
|
|
|
|
SendWorldObjectInfo();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// if client, send player and client states
|
|
|
|
|
else
|
2021-12-06 00:49:56 -08:00
|
|
|
|
{
|
2021-12-22 17:38:08 -08:00
|
|
|
|
new PlayerInformationMessage().Send();
|
2021-12-06 00:49:56 -08:00
|
|
|
|
}
|
2021-12-13 22:16:32 -08:00
|
|
|
|
|
2021-12-15 01:20:51 -08:00
|
|
|
|
if (WorldObjectManager.AllObjectsReady)
|
2021-12-13 22:16:32 -08:00
|
|
|
|
{
|
2021-12-15 01:20:51 -08:00
|
|
|
|
SendAuthorityObjectInfo();
|
2021-12-13 22:16:32 -08:00
|
|
|
|
}
|
2020-12-19 10:56:25 +00:00
|
|
|
|
}
|
2021-12-06 01:43:06 -08:00
|
|
|
|
finally
|
2021-12-06 00:02:51 -08:00
|
|
|
|
{
|
2021-12-06 01:57:56 -08:00
|
|
|
|
QSBEventManager.ForIdOverride = uint.MaxValue;
|
2020-12-19 10:56:25 +00:00
|
|
|
|
}
|
2021-08-08 20:04:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SendWorldObjectInfo()
|
|
|
|
|
{
|
2021-07-07 23:04:00 +01:00
|
|
|
|
QSBWorldSync.DialogueConditions.ForEach(condition
|
2021-12-03 19:39:01 -08:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.DialogueConditionChanged, condition.Key, condition.Value));
|
2020-12-31 12:10:55 +00:00
|
|
|
|
|
2021-07-07 23:04:00 +01:00
|
|
|
|
QSBWorldSync.ShipLogFacts.ForEach(fact
|
2021-07-07 09:05:39 +01:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBRevealFact, fact.Id, fact.SaveGame, false));
|
2021-07-07 09:02:23 +01:00
|
|
|
|
|
2020-12-31 12:10:55 +00:00
|
|
|
|
foreach (var wallText in QSBWorldSync.GetWorldObjects<QSBWallText>().Where(x => x.AttachedObject.GetValue<bool>("_initialized") && x.AttachedObject.GetNumTextBlocks() > 0))
|
2021-07-07 09:05:39 +01:00
|
|
|
|
{
|
2021-07-07 23:04:00 +01:00
|
|
|
|
wallText.GetTranslatedIds().ForEach(id
|
2021-07-07 09:05:39 +01:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBTextTranslated, NomaiTextType.WallText, wallText.ObjectId, id));
|
|
|
|
|
}
|
2020-12-31 12:10:55 +00:00
|
|
|
|
|
|
|
|
|
foreach (var computer in QSBWorldSync.GetWorldObjects<QSBComputer>().Where(x => x.AttachedObject.GetValue<bool>("_initialized") && x.AttachedObject.GetNumTextBlocks() > 0))
|
2021-07-07 09:05:39 +01:00
|
|
|
|
{
|
2021-07-07 23:04:00 +01:00
|
|
|
|
computer.GetTranslatedIds().ForEach(id
|
2021-07-07 09:05:39 +01:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBTextTranslated, NomaiTextType.Computer, computer.ObjectId, id));
|
|
|
|
|
}
|
2020-12-31 12:10:55 +00:00
|
|
|
|
|
|
|
|
|
foreach (var vesselComputer in QSBWorldSync.GetWorldObjects<QSBVesselComputer>().Where(x => x.AttachedObject.GetValue<bool>("_initialized") && x.AttachedObject.GetNumTextBlocks() > 0))
|
2021-07-07 09:05:39 +01:00
|
|
|
|
{
|
2021-07-07 23:04:00 +01:00
|
|
|
|
vesselComputer.GetTranslatedIds().ForEach(id
|
2021-07-07 09:05:39 +01:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBTextTranslated, NomaiTextType.VesselComputer, vesselComputer.ObjectId, id));
|
|
|
|
|
}
|
2021-02-08 20:04:14 +00:00
|
|
|
|
|
2021-12-19 15:50:54 -08:00
|
|
|
|
QSBWorldSync.GetWorldObjects<IQSBQuantumObject>().ForEach(x =>
|
|
|
|
|
{
|
2021-12-22 14:46:37 -08:00
|
|
|
|
x.SendMessage(new QuantumAuthorityMessage
|
|
|
|
|
{
|
|
|
|
|
AuthorityOwner = x.ControllingPlayer
|
|
|
|
|
});
|
2021-12-19 15:50:54 -08:00
|
|
|
|
|
|
|
|
|
if (x is QSBQuantumMoon qsbQuantumMoon)
|
|
|
|
|
{
|
|
|
|
|
int stateIndex;
|
|
|
|
|
Vector3 onUnitSphere;
|
|
|
|
|
int orbitAngle;
|
|
|
|
|
|
|
|
|
|
var moon = qsbQuantumMoon.AttachedObject;
|
|
|
|
|
var moonBody = moon._moonBody;
|
|
|
|
|
stateIndex = moon.GetStateIndex();
|
|
|
|
|
var orbit = moon._orbits.First(y => y.GetStateIndex() == stateIndex);
|
|
|
|
|
var orbitBody = orbit.GetAttachedOWRigidbody();
|
|
|
|
|
var relPos = moonBody.GetWorldCenterOfMass() - orbitBody.GetWorldCenterOfMass();
|
|
|
|
|
var relVel = moonBody.GetVelocity() - orbitBody.GetVelocity();
|
|
|
|
|
onUnitSphere = relPos.normalized;
|
|
|
|
|
var perpendicular = Vector3.Cross(relPos, Vector3.up).normalized;
|
|
|
|
|
orbitAngle = (int)OWMath.WrapAngle(OWMath.Angle(perpendicular, relVel, relPos));
|
|
|
|
|
|
|
|
|
|
QSBEventManager.FireEvent(EventNames.QSBMoonStateChange, stateIndex, onUnitSphere, orbitAngle);
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-03-29 23:41:12 +01:00
|
|
|
|
|
2021-07-07 23:04:00 +01:00
|
|
|
|
QSBWorldSync.GetWorldObjects<QSBCampfire>().ForEach(campfire
|
2021-07-07 09:05:39 +01:00
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBCampfireState, campfire.ObjectId, campfire.GetState()));
|
2021-11-10 21:13:49 -08:00
|
|
|
|
|
2021-11-13 20:41:46 -08:00
|
|
|
|
QSBWorldSync.GetWorldObjects<QSBFragment>().ForEach(fragment
|
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBFragmentResync, fragment));
|
2021-12-05 20:09:54 -08:00
|
|
|
|
|
2021-12-06 03:09:23 -08:00
|
|
|
|
QSBWorldSync.GetWorldObjects<QSBTornado>().ForEach(tornado
|
|
|
|
|
=> QSBEventManager.FireEvent(EventNames.QSBTornadoFormState, tornado));
|
2020-12-02 21:23:01 +00:00
|
|
|
|
}
|
2021-12-15 01:20:51 -08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// send info for objects we have authority over
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void SendAuthorityObjectInfo()
|
|
|
|
|
{
|
|
|
|
|
foreach (var qsbOrb in QSBWorldSync.GetWorldObjects<QSBOrb>())
|
|
|
|
|
{
|
2021-12-15 02:25:13 -08:00
|
|
|
|
if (!qsbOrb.TransformSync.enabled ||
|
2021-12-17 16:53:23 -08:00
|
|
|
|
!qsbOrb.TransformSync.HasAuthority)
|
2021-12-15 01:20:51 -08:00
|
|
|
|
{
|
2021-12-15 02:25:13 -08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSBEventManager.FireEvent(EventNames.QSBOrbDrag, qsbOrb, qsbOrb.AttachedObject._isBeingDragged);
|
2021-12-17 16:53:23 -08:00
|
|
|
|
QSBEventManager.FireEvent(EventNames.QSBOrbSlot, qsbOrb, qsbOrb.AttachedObject._slots.IndexOf(qsbOrb.AttachedObject._occupiedSlot));
|
2021-12-15 01:20:51 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-02 21:23:01 +00:00
|
|
|
|
}
|
2021-08-08 20:04:15 +01:00
|
|
|
|
}
|