Facepunch.Steamworks/Generator/CodeWriter/CustomEnums.cs

44 lines
1.1 KiB
C#
Raw Normal View History

2020-02-22 23:16:04 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Generator
{
public partial class CodeWriter
{
void CustomEnums()
{
StartBlock( "public enum CallbackType" );
2020-02-22 23:16:04 +03:00
foreach ( var c in def.callback_structs.OrderBy( x => x.CallbackId ) )
{
if ( Cleanup.IsDeprecated( c.Name ) )
Write( "// " );
2020-02-22 23:16:04 +03:00
WriteLine( $"{c.Name.Replace( "_t", "" ) } = {c.CallbackId}," );
}
EndBlock();
int last = -1;
StartBlock( "internal static partial class CallbackTypeFactory" );
StartBlock( "internal static System.Collections.Generic.Dictionary<CallbackType, System.Type> All = new System.Collections.Generic.Dictionary<CallbackType, System.Type>" );
foreach ( var c in def.callback_structs.OrderBy( x => x.CallbackId ) )
{
if ( Cleanup.IsDeprecated( c.Name ) )
continue;
if ( last == c.CallbackId )
Write( "// " );
WriteLine( $"{{ CallbackType.{c.Name.Replace( "_t", "" ) }, typeof( {Cleanup.ConvertType(c.Name)} )}}," );
last = c.CallbackId;
}
EndBlock( ";" );
EndBlock();
}
2020-02-22 23:16:04 +03:00
}
}