mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 06:35:49 +03:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
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" );
|
|
foreach ( var c in def.callback_structs.OrderBy( x => x.CallbackId ) )
|
|
{
|
|
if ( Cleanup.IsDeprecated( c.Name ) )
|
|
Write( "// " );
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|