更新max

This commit is contained in:
2026-05-22 16:11:40 +08:00
parent dd55b961df
commit c8a5c4f2e5
69 changed files with 3719 additions and 3672 deletions
+23 -23
View File
@@ -15,31 +15,31 @@ namespace AppLovinMax.Internal
{
public class MaxEventExecutor : MonoBehaviour
{
private static MaxEventExecutor instance;
private static List<MaxAction> adEventsQueue = new List<MaxAction>();
private static MaxEventExecutor _instance;
private static readonly List<MaxAction> AdEventsQueue = new List<MaxAction>();
private static volatile bool adEventsQueueEmpty = true;
private static volatile bool _adEventsQueueEmpty = true;
struct MaxAction
{
public Action action;
public string eventName;
public readonly Action ActionToExecute;
public readonly string EventName;
public MaxAction(Action actionToExecute, string nameOfEvent)
{
action = actionToExecute;
eventName = nameOfEvent;
ActionToExecute = actionToExecute;
EventName = nameOfEvent;
}
}
public static void InitializeIfNeeded()
{
if (instance != null) return;
if (_instance != null) return;
var executor = new GameObject("MaxEventExecutor");
executor.hideFlags = HideFlags.HideAndDontSave;
DontDestroyOnLoad(executor);
instance = executor.AddComponent<MaxEventExecutor>();
_instance = executor.AddComponent<MaxEventExecutor>();
}
#region Public API
@@ -50,17 +50,17 @@ namespace AppLovinMax.Internal
get
{
InitializeIfNeeded();
return instance;
return _instance;
}
}
#endif
public static void ExecuteOnMainThread(Action action, string eventName)
{
lock (adEventsQueue)
lock (AdEventsQueue)
{
adEventsQueue.Add(new MaxAction(action, eventName));
adEventsQueueEmpty = false;
AdEventsQueue.Add(new MaxAction(action, eventName));
_adEventsQueueEmpty = false;
}
}
@@ -73,28 +73,28 @@ namespace AppLovinMax.Internal
public void Update()
{
if (adEventsQueueEmpty) return;
if (_adEventsQueueEmpty) return;
var actionsToExecute = new List<MaxAction>();
lock (adEventsQueue)
lock (AdEventsQueue)
{
actionsToExecute.AddRange(adEventsQueue);
adEventsQueue.Clear();
adEventsQueueEmpty = true;
actionsToExecute.AddRange(AdEventsQueue);
AdEventsQueue.Clear();
_adEventsQueueEmpty = true;
}
foreach (var maxAction in actionsToExecute)
{
if (maxAction.action.Target != null)
if (maxAction.ActionToExecute.Target != null)
{
try
{
maxAction.action.Invoke();
maxAction.ActionToExecute.Invoke();
}
catch (Exception exception)
{
MaxSdkLogger.UserError("Caught exception in publisher event: " + maxAction.eventName + ", exception: " + exception);
Debug.LogException(exception);
MaxSdkLogger.UserError("Caught exception in publisher event: " + maxAction.EventName + ", exception: " + exception);
MaxSdkLogger.LogException(exception);
}
}
}
@@ -102,7 +102,7 @@ namespace AppLovinMax.Internal
public void Disable()
{
instance = null;
_instance = null;
}
}
}