TechbloxModdingAPI/GamecraftModdingAPI/Input/FakeInputEngine.cs

66 lines
1.8 KiB
C#
Raw Normal View History

2020-04-04 18:48:12 +00:00
using System;
using RobocraftX.Common.Input;
using RobocraftX.Players;
using Svelto.ECS;
using GamecraftModdingAPI.Utility;
2020-05-12 00:28:26 +00:00
using GamecraftModdingAPI.Engines;
2020-04-04 18:48:12 +00:00
namespace GamecraftModdingAPI.Input
{
public class FakeInputEngine : IApiEngine
{
public string Name { get; } = "GamecraftModdingAPIFakeInputEngine";
public EntitiesDB entitiesDB { set; private get; }
2020-05-12 00:28:26 +00:00
public bool isRemovable => false;
2020-04-04 18:48:12 +00:00
public bool IsReady = false;
public void Dispose()
{
IsReady = false;
}
public void Ready()
{
IsReady = true;
}
public bool SendCustomInput(LocalInputEntityStruct input, uint playerID, bool remote = false)
2020-04-04 18:48:12 +00:00
{
EGID egid = new EGID(playerID, remote ? InputExclusiveGroups.RemotePlayers : InputExclusiveGroups.LocalPlayers);
if (entitiesDB.Exists<LocalInputEntityStruct>(egid))
2020-04-04 18:48:12 +00:00
{
ref LocalInputEntityStruct ies = ref entitiesDB.QueryEntity<LocalInputEntityStruct>(egid);
2020-04-04 18:48:12 +00:00
ies = input;
return true;
}
else return false;
}
public LocalInputEntityStruct GetInput(uint playerID, bool remote = false)
2020-04-04 18:48:12 +00:00
{
EGID egid = new EGID(playerID, remote ? InputExclusiveGroups.RemotePlayers : InputExclusiveGroups.LocalPlayers);
if (entitiesDB.Exists<LocalInputEntityStruct>(egid))
2020-04-04 18:48:12 +00:00
{
return entitiesDB.QueryEntity<LocalInputEntityStruct>(egid);
2020-04-04 18:48:12 +00:00
}
else return default(LocalInputEntityStruct);
2020-04-04 18:48:12 +00:00
}
public ref LocalInputEntityStruct GetInputRef(uint playerID, bool remote = false)
2020-04-04 18:48:12 +00:00
{
EGID egid = new EGID(playerID, remote ? InputExclusiveGroups.RemotePlayers : InputExclusiveGroups.LocalPlayers);
return ref entitiesDB.QueryEntity<LocalInputEntityStruct>(egid);
2020-04-04 18:48:12 +00:00
}
public uint GetLocalPlayerID()
{
return LocalPlayerIDUtility.GetLocalPlayerID(entitiesDB);
}
}
}