mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 06:35:49 +03:00
More posix compatibility
This commit is contained in:
parent
39c5860041
commit
480c06f288
@ -107,7 +107,6 @@ unsafe void RunInternal()
|
|||||||
workshop.ugc.AddExcludedTag( Handle, tag );
|
workshop.ugc.AddExcludedTag( Handle, tag );
|
||||||
|
|
||||||
Callback = workshop.ugc.SendQueryUGCRequest( Handle, OnResult );
|
Callback = workshop.ugc.SendQueryUGCRequest( Handle, OnResult );
|
||||||
// workshop.steamworks.AddCallResult( Callback );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnResult( SteamNative.SteamUGCQueryCompleted_t data, bool bFailed )
|
void OnResult( SteamNative.SteamUGCQueryCompleted_t data, bool bFailed )
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -67,7 +67,7 @@ void Structs()
|
|||||||
WriteLine( "//" );
|
WriteLine( "//" );
|
||||||
StartBlock( $"public static {c.Name} FromPointer( IntPtr p )" );
|
StartBlock( $"public static {c.Name} FromPointer( IntPtr p )" );
|
||||||
{
|
{
|
||||||
WriteLine( $"if ( Platform.PackSmall ) return ({c.Name}.PackSmall) Marshal.PtrToStructure( p, typeof({c.Name}.PackSmall) );" );
|
WriteLine( $"if ( Platform.PackSmall ) return (PackSmall) Marshal.PtrToStructure( p, typeof(PackSmall) );" );
|
||||||
|
|
||||||
WriteLine( $"return ({c.Name}) Marshal.PtrToStructure( p, typeof({c.Name}) );" );
|
WriteLine( $"return ({c.Name}) Marshal.PtrToStructure( p, typeof({c.Name}) );" );
|
||||||
}
|
}
|
||||||
@ -199,11 +199,72 @@ private void Callback( SteamApiDefinition.StructDef c )
|
|||||||
WriteLine( $"handle.steamworks = steamworks;" );
|
WriteLine( $"handle.steamworks = steamworks;" );
|
||||||
WriteLine( $"" );
|
WriteLine( $"" );
|
||||||
|
|
||||||
|
CallbackCallresultShared( c, false );
|
||||||
|
|
||||||
|
WriteLine( "" );
|
||||||
|
WriteLine( "//" );
|
||||||
|
WriteLine( "// Register the callback with Steam" );
|
||||||
|
WriteLine( "//" );
|
||||||
|
WriteLine( $"steamworks.native.api.SteamAPI_RegisterCallback( handle.PinnedCallback.AddrOfPinnedObject(), CallbackId );" );
|
||||||
|
|
||||||
|
WriteLine();
|
||||||
|
WriteLine( "steamworks.RegisterCallbackHandle( handle );" );
|
||||||
|
}
|
||||||
|
EndBlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void CallResult( SteamApiDefinition.StructDef c )
|
||||||
|
{
|
||||||
|
WriteLine();
|
||||||
|
StartBlock( $"public static CallbackHandle CallResult( Facepunch.Steamworks.BaseSteamworks steamworks, SteamAPICall_t call, Action<{c.Name}, bool> CallbackFunction )" );
|
||||||
|
{
|
||||||
|
WriteLine( $"var handle = new CallbackHandle();" );
|
||||||
|
WriteLine( $"handle.steamworks = steamworks;" );
|
||||||
|
WriteLine( $"handle.CallResultHandle = call;" );
|
||||||
|
WriteLine( $"handle.CallResult = true;" );
|
||||||
|
WriteLine( $"" );
|
||||||
|
|
||||||
|
CallbackCallresultShared( c, true );
|
||||||
|
|
||||||
|
WriteLine( "" );
|
||||||
|
WriteLine( "//" );
|
||||||
|
WriteLine( "// Register the callback with Steam" );
|
||||||
|
WriteLine( "//" );
|
||||||
|
WriteLine( $"steamworks.native.api.SteamAPI_RegisterCallResult( handle.PinnedCallback.AddrOfPinnedObject(), call );" );
|
||||||
|
|
||||||
|
WriteLine();
|
||||||
|
WriteLine( "return handle;" );
|
||||||
|
}
|
||||||
|
EndBlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void CallbackCallresultShared( SteamApiDefinition.StructDef c, bool Result )
|
||||||
|
{
|
||||||
WriteLine( "//" );
|
WriteLine( "//" );
|
||||||
WriteLine( "// Create the functions we need for the vtable" );
|
WriteLine( "// Create the functions we need for the vtable" );
|
||||||
WriteLine( "//" );
|
WriteLine( "//" );
|
||||||
WriteLine( $"Callback.Result funcA = ( _, p ) => {{ CallbackFunction( FromPointer( p ), false ); }};" );
|
WriteLine( $"Callback.Result funcA = ( _, p ) => {{ handle.Dispose(); CallbackFunction( FromPointer( p ), false ); }};" );
|
||||||
|
|
||||||
|
if ( Result )
|
||||||
|
{
|
||||||
|
StartBlock( $"Callback.ResultWithInfo funcB = ( _, p, bIOFailure, hSteamAPICall ) => " );
|
||||||
|
{
|
||||||
|
WriteLine( "if ( hSteamAPICall != call ) return;" );
|
||||||
|
WriteLine();
|
||||||
|
WriteLine( "handle.CallResultHandle = 0;" );
|
||||||
|
WriteLine( "handle.Dispose();" );
|
||||||
|
WriteLine();
|
||||||
|
WriteLine( "CallbackFunction( FromPointer( p ), bIOFailure );" );
|
||||||
|
}
|
||||||
|
EndBlock( ";" );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
WriteLine( $"Callback.ResultWithInfo funcB = ( _, p, bIOFailure, hSteamAPICall ) => {{ CallbackFunction( FromPointer( p ), bIOFailure ); }};" );
|
WriteLine( $"Callback.ResultWithInfo funcB = ( _, p, bIOFailure, hSteamAPICall ) => {{ CallbackFunction( FromPointer( p ), bIOFailure ); }};" );
|
||||||
|
}
|
||||||
|
|
||||||
WriteLine( $"Callback.GetSize funcC = ( _ ) => {{ return Marshal.SizeOf( typeof( {c.Name} ) ); }};" );
|
WriteLine( $"Callback.GetSize funcC = ( _ ) => {{ return Marshal.SizeOf( typeof( {c.Name} ) ); }};" );
|
||||||
WriteLine();
|
WriteLine();
|
||||||
WriteLine( "//" );
|
WriteLine( "//" );
|
||||||
@ -262,103 +323,6 @@ private void Callback( SteamApiDefinition.StructDef c )
|
|||||||
WriteLine( "// Pin the callback, so it doesn't get garbage collected and we can pass the pointer to native" );
|
WriteLine( "// Pin the callback, so it doesn't get garbage collected and we can pass the pointer to native" );
|
||||||
WriteLine( "//" );
|
WriteLine( "//" );
|
||||||
WriteLine( $"handle.PinnedCallback = GCHandle.Alloc( cb, GCHandleType.Pinned );" );
|
WriteLine( $"handle.PinnedCallback = GCHandle.Alloc( cb, GCHandleType.Pinned );" );
|
||||||
|
|
||||||
WriteLine( "" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Register the callback with Steam" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( $"steamworks.native.api.SteamAPI_RegisterCallback( handle.PinnedCallback.AddrOfPinnedObject(), CallbackId );" );
|
|
||||||
|
|
||||||
WriteLine();
|
|
||||||
WriteLine( "steamworks.RegisterCallbackHandle( handle );" );
|
|
||||||
}
|
|
||||||
EndBlock();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void CallResult( SteamApiDefinition.StructDef c )
|
|
||||||
{
|
|
||||||
WriteLine();
|
|
||||||
StartBlock( $"public static CallbackHandle CallResult( Facepunch.Steamworks.BaseSteamworks steamworks, SteamAPICall_t call, Action<{c.Name}, bool> CallbackFunction )" );
|
|
||||||
{
|
|
||||||
WriteLine( $"var handle = new CallbackHandle();" );
|
|
||||||
WriteLine( $"handle.steamworks = steamworks;" );
|
|
||||||
WriteLine( $"handle.CallResultHandle = call;" );
|
|
||||||
WriteLine( $"handle.CallResult = true;" );
|
|
||||||
WriteLine( $"" );
|
|
||||||
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Create the functions we need for the vtable" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( $"Callback.Result funcA = ( _, p ) => {{ handle.Dispose(); CallbackFunction( FromPointer( p ), false ); }};" );
|
|
||||||
StartBlock( $"Callback.ResultWithInfo funcB = ( _, p, bIOFailure, hSteamAPICall ) => " );
|
|
||||||
{
|
|
||||||
WriteLine( "if ( hSteamAPICall != call ) return;" );
|
|
||||||
WriteLine();
|
|
||||||
WriteLine( "handle.CallResultHandle = 0;" );
|
|
||||||
WriteLine( "handle.Dispose();" );
|
|
||||||
WriteLine();
|
|
||||||
WriteLine( "CallbackFunction( FromPointer( p ), bIOFailure );" );
|
|
||||||
}
|
|
||||||
EndBlock( ";" );
|
|
||||||
WriteLine( $"Callback.GetSize funcC = ( _ ) => {{ return Marshal.SizeOf( typeof( {c.Name} ) ); }};" );
|
|
||||||
WriteLine();
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// If this platform is PackSmall, use PackSmall versions of everything instead" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
StartBlock( "if ( Platform.PackSmall )" );
|
|
||||||
{
|
|
||||||
WriteLine( $"funcC = ( _ ) => {{ return Marshal.SizeOf( typeof( PackSmall ) ); }};" );
|
|
||||||
}
|
|
||||||
EndBlock();
|
|
||||||
|
|
||||||
WriteLine( "" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Allocate a handle to each function, so they don't get disposed" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "handle.FuncA = GCHandle.Alloc( funcA );" );
|
|
||||||
WriteLine( "handle.FuncB = GCHandle.Alloc( funcB );" );
|
|
||||||
WriteLine( "handle.FuncC = GCHandle.Alloc( funcC );" );
|
|
||||||
WriteLine();
|
|
||||||
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Create the VTable by manually allocating the memory and copying across" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "handle.vTablePtr = Marshal.AllocHGlobal( Marshal.SizeOf( typeof( Callback.VTable ) ) );" );
|
|
||||||
StartBlock( "var vTable = new Callback.VTable()" );
|
|
||||||
{
|
|
||||||
WriteLine( "ResultA = Marshal.GetFunctionPointerForDelegate( funcB ), // The order of these functions is a point of contention" );
|
|
||||||
WriteLine( "ResultB = Marshal.GetFunctionPointerForDelegate( funcA ), // Doesn't seem to matter win64, but win32 crashes if WithInfo not first" );
|
|
||||||
WriteLine( "GetSize = Marshal.GetFunctionPointerForDelegate( funcC ), // Which is the opposite of how they are in code, but whatever works" );
|
|
||||||
}
|
|
||||||
EndBlock( ";" );
|
|
||||||
|
|
||||||
WriteLine( "Marshal.StructureToPtr( vTable, handle.vTablePtr, false );" );
|
|
||||||
|
|
||||||
WriteLine( "" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Create the callback object" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( $"var cb = new Callback();" );
|
|
||||||
WriteLine( $"cb.vTablePtr = handle.vTablePtr;" );
|
|
||||||
WriteLine( $"cb.CallbackFlags = steamworks.IsGameServer ? (byte) SteamNative.Callback.Flags.GameServer : (byte) 0;" );
|
|
||||||
WriteLine( $"cb.CallbackId = CallbackId;" );
|
|
||||||
|
|
||||||
WriteLine( "" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Pin the callback, so it doesn't get garbage collected and we can pass the pointer to native" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( $"handle.PinnedCallback = GCHandle.Alloc( cb, GCHandleType.Pinned );" );
|
|
||||||
|
|
||||||
WriteLine( "" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( "// Register the callback with Steam" );
|
|
||||||
WriteLine( "//" );
|
|
||||||
WriteLine( $"steamworks.native.api.SteamAPI_RegisterCallResult( handle.PinnedCallback.AddrOfPinnedObject(), call );" );
|
|
||||||
|
|
||||||
WriteLine();
|
|
||||||
WriteLine( "return handle;" );
|
|
||||||
}
|
|
||||||
EndBlock();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user