Exchange seems to have been fixed. Needs a bit more testing, but seems to be acting as expected

This commit is contained in:
Twirlbug 2023-06-30 18:34:30 -05:00
parent da9d5a4830
commit 56d1005b32
7 changed files with 54 additions and 20 deletions

View file

@ -1,8 +1,10 @@
using MonomiPark.SlimeRancher.Regions;
using DG.Tweening;
using MonomiPark.SlimeRancher.Regions;
using SRMultiplayer.Packets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
@ -52,7 +54,7 @@ namespace SRMultiplayer.Networking
private void OnEnable()
{
if(Owner == 0)
if (Owner == 0)
{
TakeOwnership();
}
@ -68,7 +70,7 @@ namespace SRMultiplayer.Networking
private void Update()
{
if(IsLocal)
if (IsLocal)
{
m_MovementUpdateTimer -= Time.deltaTime;
if (m_MovementUpdateTimer <= 0)
@ -92,7 +94,7 @@ namespace SRMultiplayer.Networking
}.Send(Lidgren.Network.NetDeliveryMethod.Unreliable);
}
if(SlimeEat != null &&
if (SlimeEat != null &&
(!Utils.CloseEnoughForMe(SlimeEat.emotions.GetCurr(SlimeEmotions.Emotion.AGITATION), m_PreviousEmotions[SlimeEmotions.Emotion.AGITATION], 0.1f) ||
!Utils.CloseEnoughForMe(SlimeEat.emotions.GetCurr(SlimeEmotions.Emotion.FEAR), m_PreviousEmotions[SlimeEmotions.Emotion.FEAR], 0.1f) ||
!Utils.CloseEnoughForMe(SlimeEat.emotions.GetCurr(SlimeEmotions.Emotion.HUNGER), m_PreviousEmotions[SlimeEmotions.Emotion.HUNGER], 0.1f)))
@ -113,7 +115,7 @@ namespace SRMultiplayer.Networking
}
else
{
if(m_Rigidbody != null)
if (m_Rigidbody != null)
{
m_Rigidbody.velocity = Vector3.zero;
}
@ -227,7 +229,7 @@ namespace SRMultiplayer.Networking
}
}
var destroyOnTouching = GetComponentInChildren<DestroyOnTouching>();
if(destroyOnTouching != null)
if (destroyOnTouching != null)
{
if (destroyOnTouching.destroyFX != null)
{
@ -237,6 +239,7 @@ namespace SRMultiplayer.Networking
var exchangeBreakOnImpact = GetComponentInChildren<ExchangeBreakOnImpact>();
if (exchangeBreakOnImpact != null)
{
SRMP.Log("Exchange Box Broke!", "ACTOR");
SRBehaviour.SpawnAndPlayFX(exchangeBreakOnImpact.breakFX, exchangeBreakOnImpact.gameObject.transform.position, exchangeBreakOnImpact.gameObject.transform.rotation);
}
var breakOnImpact = GetComponentInChildren<BreakOnImpactBase>();
@ -245,7 +248,7 @@ namespace SRMultiplayer.Networking
SRBehaviour.SpawnAndPlayFX(breakOnImpact.breakFX, breakOnImpact.gameObject.transform.position, breakOnImpact.gameObject.transform.rotation);
}
var quicksilver = GetComponentInChildren<QuicksilverPlortCollector>();
if(quicksilver != null)
if (quicksilver != null)
{
if (quicksilver.destroyFX != null)
{

View file

@ -1,5 +1,4 @@
using Assets.Script.Util.Extensions;
using DG.Tweening;
using DG.Tweening;
using Lidgren.Network;
using MonomiPark.SlimeRancher.DataModel;
using MonomiPark.SlimeRancher.Persist;
@ -371,8 +370,9 @@ namespace SRMultiplayer.Networking
//send off fireworks
SRBehaviour.InstantiateDynamic(eject.awardFX, eject.awardAt.position, eject.awardAt.rotation);
}
SRSingleton<SceneContext>.Instance.ExchangeDirector.ClearOffer(type);
//dont clear out the offer yet, we arent done with it
//SRSingleton<SceneContext>.Instance.ExchangeDirector.ClearOffer(type);
}
//trigger offer status changed
@ -381,10 +381,7 @@ namespace SRMultiplayer.Networking
}
}
}
private static void OnExchangePrepareDaily(PacketExchangePrepareDaily packet)
private static void OnExchangePrepareDaily(PacketExchangePrepareDaily packet)
{
SRSingleton<SceneContext>.Instance.ExchangeDirector.worldModel.pendingOfferRancherIds = packet.pendingOfferRancherIds;
SRSingleton<SceneContext>.Instance.ExchangeDirector.OfferDidChange();

View file

@ -318,14 +318,24 @@ namespace SRMultiplayer.Networking
{
rewarder.AwardIfType(type);
}
SRSingleton<SceneContext>.Instance.ExchangeDirector.ClearOffer(type);
//trigger fireworks
//get ExchangeEjector
foreach (var eject in Resources.FindObjectsOfTypeAll<ExchangeEjector>())
{
//send off fireworks
SRBehaviour.InstantiateDynamic(eject.awardFX, eject.awardAt.position, eject.awardAt.rotation);
}
//dont clear out the offer yet, we arent done with it
//SRSingleton<SceneContext>.Instance.ExchangeDirector.ClearOffer(type);
}
SRSingleton<SceneContext>.Instance.ExchangeDirector.OfferDidChange();
}
}
}
packet.SendToAllExcept(player);
}
}
private static void OnExchangePrepareDaily(PacketExchangePrepareDaily packet, NetworkPlayer player)
{

View file

@ -97,6 +97,7 @@
ExchangeTryAccept,
ExchangeClear,
ExchangeOffers,
ExchangeBreak,
GordoEat,
Oasis,
OasisLive,

View file

@ -1,9 +1,13 @@
using HarmonyLib;
using MonomiPark.SlimeRancher.Regions;
using SRMultiplayer.Networking;
using SRMultiplayer.Packets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Text;
using UnityEngine;
namespace SRMultiplayer.Patches
{
@ -11,11 +15,19 @@ namespace SRMultiplayer.Patches
[HarmonyPatch("BreakOpen")]
class ExchangeBreakOnImpact_BreakOpen
{
static bool Prefix(ExchangeBreakOnImpact __instance)
{
if (!Globals.IsMultiplayer) return true;
//if multiplayer, only the server can trigger the impact
if (!Globals.IsMultiplayer) return true;
var entity = __instance.GetComponent<NetworkActor>();
SRMP.Log("Exchange Box Break: " + (entity != null && entity.IsLocal), "EXCHANGE");
//if the box exists and the entity is local process the break
return (entity != null && entity.IsLocal);
}
}

View file

@ -22,7 +22,18 @@ namespace SRMultiplayer.Patches
{
if (Globals.Actors.ContainsKey(netActor.ID))
{
//check if this is an exchange box
var exchangeBreakOnImpact = netActor.GetComponentInChildren<ExchangeBreakOnImpact>();
if (exchangeBreakOnImpact != null)
{
//exchange box was found processing it with the ondestroy command instead of just removing it!
//netActor.OnDestroyEffect();
//Destroyer.DestroyActor(netActor.gameObject, "NetworkHandlerServer.OnActorDestroy");
}
//make sure the actor still gets cleaned up
Globals.Actors.Remove(netActor.ID);
new PacketActorDestroy()
{
ID = netActor.ID

View file

@ -15,7 +15,7 @@ using System.Resources;
[assembly: AssemblyCulture("")]
// Version informationr(
[assembly: AssemblyVersion("0.0.0.1492")]
[assembly: AssemblyFileVersion("0.0.0.1492")]
[assembly: AssemblyVersion("0.0.0.1500")]
[assembly: AssemblyFileVersion("0.0.0.1500")]
[assembly: NeutralResourcesLanguageAttribute( "en-US" )]