tweak game interface values again
This commit is contained in:
parent
a4c3f9c2d1
commit
55b0caf900
@ -307,6 +307,11 @@ const sendEvent = (server, responseExpected, event, subtype, origin, target, dat
|
|||||||
const start = new Date();
|
const start = new Date();
|
||||||
|
|
||||||
while (pendingOut && pendingCheckCount <= 10) {
|
while (pendingOut && pendingCheckCount <= 10) {
|
||||||
|
if (server.Throttled) {
|
||||||
|
logger.WriteWarning('Server is throttled, so we are not attempting to send data');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const out = server.GetServerDvar(outDvar);
|
const out = server.GetServerDvar(outDvar);
|
||||||
pendingOut = !(out == null || out === '' || out === 'null');
|
pendingOut = !(out == null || out === '' || out === 'null');
|
||||||
@ -318,6 +323,7 @@ const sendEvent = (server, responseExpected, event, subtype, origin, target, dat
|
|||||||
logger.WriteDebug('Waiting for event bus to be cleared');
|
logger.WriteDebug('Waiting for event bus to be cleared');
|
||||||
System.Threading.Tasks.Task.Delay(1000).Wait();
|
System.Threading.Tasks.Task.Delay(1000).Wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
pendingCheckCount++;
|
pendingCheckCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -397,6 +403,10 @@ const initialize = (server) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const pollForEvents = server => {
|
const pollForEvents = server => {
|
||||||
|
if (server.Throttled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const logger = _serviceResolver.ResolveService('ILogger');
|
const logger = _serviceResolver.ResolveService('ILogger');
|
||||||
|
|
||||||
let input;
|
let input;
|
||||||
|
@ -391,7 +391,7 @@ namespace SharedLibraryCore
|
|||||||
public string[] ExecuteServerCommand(string command)
|
public string[] ExecuteServerCommand(string command)
|
||||||
{
|
{
|
||||||
var tokenSource = new CancellationTokenSource();
|
var tokenSource = new CancellationTokenSource();
|
||||||
tokenSource.CancelAfter(TimeSpan.FromSeconds(5));
|
tokenSource.CancelAfter(TimeSpan.FromSeconds(0.5));
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -406,7 +406,7 @@ namespace SharedLibraryCore
|
|||||||
public string GetServerDvar(string dvarName)
|
public string GetServerDvar(string dvarName)
|
||||||
{
|
{
|
||||||
var tokenSource = new CancellationTokenSource();
|
var tokenSource = new CancellationTokenSource();
|
||||||
tokenSource.CancelAfter(TimeSpan.FromSeconds(5));
|
tokenSource.CancelAfter(TimeSpan.FromSeconds(0.5));
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return this.GetDvarAsync<string>(dvarName, token: tokenSource.Token).GetAwaiter().GetResult().Value;
|
return this.GetDvarAsync<string>(dvarName, token: tokenSource.Token).GetAwaiter().GetResult().Value;
|
||||||
@ -420,7 +420,7 @@ namespace SharedLibraryCore
|
|||||||
public bool SetServerDvar(string dvarName, string dvarValue)
|
public bool SetServerDvar(string dvarName, string dvarValue)
|
||||||
{
|
{
|
||||||
var tokenSource = new CancellationTokenSource();
|
var tokenSource = new CancellationTokenSource();
|
||||||
tokenSource.CancelAfter(TimeSpan.FromSeconds(5));
|
tokenSource.CancelAfter(TimeSpan.FromSeconds(0.5));
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
this.SetDvarAsync(dvarName, dvarValue, tokenSource.Token).GetAwaiter().GetResult();
|
this.SetDvarAsync(dvarName, dvarValue, tokenSource.Token).GetAwaiter().GetResult();
|
||||||
|
Loading…
Reference in New Issue
Block a user