using FishNet.Connection;
using FishNet.Object;
using UnityEngine;
namespace FishNet.Observing
{
///
/// Condition a connection must meet to be added as an observer.
/// This class can be inherited from for custom conditions.
///
public abstract class ObserverCondition : ScriptableObject
{
#region Public.
///
/// NetworkObject this condition is for.
///
[HideInInspector]
public NetworkObject NetworkObject;
#endregion
///
/// Initializes this script for use.
///
///
public virtual void InitializeOnce(NetworkObject networkObject)
{
NetworkObject = networkObject;
}
///
/// Returns if the object which this condition resides should be visible to connection.
///
/// Connection which the condition is being checked for.
/// True if the connection currently has visibility of this object.
/// True if the condition was not processed. This can be used to skip processing for performance. While output as true this condition result assumes the previous ConditionMet value.
public abstract bool ConditionMet(NetworkConnection connection, bool currentlyAdded, out bool notProcessed);
///
/// True if the condition requires regular updates.
///
///
public abstract bool Timed();
///
/// Creates a clone of this condition to be instantiated.
///
///
public abstract ObserverCondition Clone();
}
}