TechbloxModdingAPI/GamecraftModdingAPI/Utility/FullGameFields.cs
2019-12-16 20:55:52 -05:00

180 lines
3.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataLoader;
using Harmony;
using RobocraftX;
using RobocraftX.Blocks.GUI;
using RobocraftX.Common.Utilities;
using RobocraftX.GUI;
using RobocraftX.Multiplayer;
using RobocraftX.Rendering;
using Svelto.Context;
using Svelto.ECS;
using Svelto.ECS.Schedulers.Unity;
using UnityEngine;
using Unity.Entities;
using Unity.Physics.Systems;
namespace GamecraftModdingAPI.Utility
{
/// <summary>
/// Public access to the private variables in RobocraftX.FullGameCompositionRoot
/// </summary>
public static class FullGameFields
{
public static MultiplayerInitParameters _multiplayerParams
{ get
{
return (MultiplayerInitParameters)fgcr?.Field("_multiplayerParams").GetValue();
}
}
public static EnginesRoot _frontEndEnginesRoot
{
get
{
return (EnginesRoot)fgcr?.Field("_frontEndEnginesRoot").GetValue();
}
}
public static EnginesRoot _mainGameEnginesRoot
{
get
{
return (EnginesRoot)fgcr?.Field("_mainGameEnginesRoot").GetValue();
}
}
public static World _physicsWorld
{
get
{
return (World)fgcr?.Field("_physicsWorld").GetValue();
}
}
public static World _renderingWorld
{
get
{
return (World)fgcr?.Field("_renderingWorld").GetValue();
}
}
public static SimpleSubmissionEntityViewScheduler _mainGameSubmissionScheduler
{
get
{
return (SimpleSubmissionEntityViewScheduler)fgcr?.Field("_mainGameSubmissionScheduler").GetValue();
}
}
public static BuildPhysicsWorld _physicsWorldSystem
{
get
{
return (BuildPhysicsWorld)fgcr?.Field("_physicsWorldSystem").GetValue();
}
}
public static UnityContext<FullGameCompositionRoot> _contextHolder
{
get
{
return (UnityContext<FullGameCompositionRoot>)fgcr?.Field("_contextHolder").GetValue();
}
}
public static GameObject _frontEndGo
{
get
{
return (GameObject)fgcr?.Field("_frontEndGo").GetValue();
}
}
public static GameObject _mainGameGo
{
get
{
return (GameObject)fgcr?.Field("_mainGameGo").GetValue();
}
}
public static PhysicsUtility _physicsUtility
{
get
{
return (PhysicsUtility)fgcr?.Field("_physicsUtility").GetValue();
}
}
public static UnityEntitySubmissionScheduler _frontEndSubmissionScheduler
{
get
{
return (UnityEntitySubmissionScheduler)fgcr?.Field("_frontEndSubmissionScheduler").GetValue();
}
}
public static LoadingScreenImplementer _loadingScreen
{
get
{
return (LoadingScreenImplementer)fgcr?.Field("_loadingScreen").GetValue();
}
}
public static IDataDB _dataDb
{
get
{
return (IDataDB)fgcr?.Field("_dataDb").GetValue();
}
}
public static LabelResourceManager _textBlockLabelResourceManager
{
get
{
return (LabelResourceManager)fgcr?.Field("_textBlockLabelResourceManager").GetValue();
}
}
public static LabelResourceManager _labelResourceManager
{
get
{
return (LabelResourceManager)fgcr?.Field("_labelResourceManager").GetValue();
}
}
public static ECSGameObjectResourceManager _eCsGameObjectResourceManager
{
get
{
return (ECSGameObjectResourceManager)fgcr?.Field("_eCsGameObjectResourceManager").GetValue();
}
}
public static bool _isQuitting
{
get
{
return (bool)fgcr?.Field("_isQuitting").GetValue();
}
}
private static Traverse fgcr;
public static void Init(FullGameCompositionRoot instance)
{
fgcr = new Traverse(instance);
}
}
}