Page MenuHomeFeedback Tracker

Server Config JSON parser does not parse numeric values correctly
Awaiting internal Testing, NormalPublic

Description

The parser used to read server config json does not know how to parse 900 into a float:

class DoesntWorkProperly: JsonApiStruct
{
	float something;

	void WorseParserTest() {
		RegV("something");
	}
}

string somejson = "{\"something\": 900}";

WorseParserTest test = new WorseParserTest;
test.ExpandFromRAW(somejson);

Print(test.something);
// SCRIPT       : float something = 0

However:

string somejson = "{\"something\": 900.0}";

WorseParserTest test = new WorseParserTest;
test.ExpandFromRAW(somejson);

Print(test.something);
// SCRIPT       : float something = 900

This is incorrect per JSON spec. Whole number should work for float. It does when using SCR_JsonLoadContext:

string somejson = "{\"something\": 900}";

SCR_JsonLoadContext ctx = new SCR_JsonLoadContext;
ctx.ImportFromString(somejson);

float value;

ctx.ReadValue("something", value);

Print(value);
// SCRIPT       : float value = 900

Please fix the parser so that we can use whole numbers to represent floats. :(

Details

Severity
Major
Resolution
Open
Reproducibility
Always
Operating System
Linux x64
Category
General
Additional Information

Major severity because it is pain in the butt to manage servers with this bug (ie. mission header values)

Event Timeline

Geez changed the task status from New to Awaiting internal Testing.Mon, Mar 31, 2:54 PM