Facepunch.Steamworks/Generator/SteamApiDefinition.cs

93 lines
2.9 KiB
C#
Raw Normal View History

2016-10-18 18:34:28 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Generator
{
public class SteamApiDefinition
{
public class TypeDef
{
[JsonProperty( PropertyName = "typedef" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "type" )]
public string Type { get; set; }
}
2016-10-25 12:29:35 +03:00
public List<TypeDef> typedefs { get; set; }
2016-10-18 18:34:28 +03:00
public class EnumDef
{
public class EnumValue
{
[JsonProperty( PropertyName = "name" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "value" )]
public string Value { get; set; }
}
[JsonProperty( PropertyName = "enumname" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "values" )]
public EnumValue[] Values { get; set; }
}
public EnumDef[] enums { get; set; }
public class StructDef
{
public class StructFields
{
[JsonProperty( PropertyName = "fieldname" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "fieldtype" )]
public string Type { get; set; }
}
[JsonProperty( PropertyName = "struct" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "fields" )]
public StructFields[] Fields { get; set; }
2016-10-29 22:28:16 +03:00
public string CallbackId { get; set; }
2016-10-31 14:46:53 +03:00
public bool IsCallResult { get; set; }
2016-10-18 18:34:28 +03:00
}
2016-10-30 23:52:42 +03:00
public List<StructDef> structs { get; set; }
2016-10-18 18:34:28 +03:00
public class MethodDef
{
public class ParamType
{
[JsonProperty( PropertyName = "paramname" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "paramtype" )]
public string Type { get; set; }
}
[JsonProperty( PropertyName = "classname" )]
public string ClassName { get; set; }
[JsonProperty( PropertyName = "methodname" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "returntype" )]
public string ReturnType { get; set; }
[JsonProperty( PropertyName = "params" )]
public ParamType[] Params { get; set; }
2016-10-25 12:29:35 +03:00
2016-10-31 14:46:53 +03:00
[JsonProperty( PropertyName = "callresult" )]
public string CallResult { get; set; }
2016-10-25 12:29:35 +03:00
public bool NeedsSelfPointer = true;
2016-10-18 18:34:28 +03:00
}
2016-10-25 12:29:35 +03:00
public List<MethodDef> methods { get; set; }
2016-10-29 22:28:16 +03:00
public Dictionary<string, int> CallbackIds { get; internal set; }
2016-10-29 23:05:48 +03:00
public Dictionary<string, string> Defines { get; internal set; }
2016-10-18 18:34:28 +03:00
}
}