2019-12-25 21:16:17 +00:00
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
using RobocraftX.SimulationModeState;
|
|
|
|
|
|
|
|
|
|
namespace GamecraftModdingAPI.Utility
|
|
|
|
|
{
|
|
|
|
|
class GameStateEngine : IApiEngine
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; } = "GamecraftModdingAPIGameStateGameEngine";
|
|
|
|
|
|
2020-03-12 22:36:23 +00:00
|
|
|
|
public EntitiesDB entitiesDB { set; private get; }
|
2019-12-25 21:16:17 +00:00
|
|
|
|
|
|
|
|
|
private bool _isInGame = false;
|
|
|
|
|
|
|
|
|
|
public bool IsInGame { get { return _isInGame; } }
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
_isInGame = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Ready()
|
|
|
|
|
{
|
|
|
|
|
_isInGame = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsBuildMode()
|
|
|
|
|
{
|
|
|
|
|
return _isInGame && SimModeUtil.IsBuildMode(entitiesDB);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsSimulationMode()
|
|
|
|
|
{
|
|
|
|
|
return _isInGame && SimModeUtil.IsSimulationMode(entitiesDB);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|