Skip to content

Instantly share code, notes, and snippets.

@flibitijibibo
Last active March 27, 2025 19:43
Show Gist options
  • Save flibitijibibo/16f96fbc06a35f8087cf02cc0527e933 to your computer and use it in GitHub Desktop.
Save flibitijibibo/16f96fbc06a35f8087cf02cc0527e933 to your computer and use it in GitHub Desktop.
Run this to lazily get an FNA3D_Trace.bin for a SpriteBatch game
using System;
using System.IO;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
class Program : Game
{
static void Main(string[] args)
{
using (Program p = new Program())
{
p.Run();
}
}
Program() : base()
{
new GraphicsDeviceManager(this);
}
List<Effect> effects;
SpriteBatch batch;
Texture2D pixel;
protected override void LoadContent()
{
string[] files = Directory.GetFiles(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Effects"));
effects = new List<Effect>(files.Length);
foreach (string file in files)
{
try
{
effects.Add(Content.Load<Effect>(file));
}
catch
{
Console.WriteLine(file + " failed");
}
}
batch = new SpriteBatch(GraphicsDevice);
pixel = new Texture2D(GraphicsDevice, 1, 1);
pixel.SetData(new Color[] { Color.White });
base.LoadContent();
}
protected override void UnloadContent()
{
if (effects != null)
{
foreach (Effect effect in effects)
{
effect.Dispose();
}
effects.Clear();
effects = null;
}
if (batch != null)
{
batch.Dispose();
batch = null;
}
if (pixel != null)
{
pixel.Dispose();
pixel = null;
}
base.UnloadContent();
}
protected override void Draw(GameTime gameTime)
{
batch.Begin(SpriteSortMode.Immediate, BlendState.Opaque);
batch.Draw(pixel, Vector2.Zero, Color.White);
foreach (Effect effect in effects)
{
Console.WriteLine(effect.Name);
foreach (EffectTechnique technique in effect.Techniques)
{
Console.WriteLine(technique.Name);
effect.CurrentTechnique = technique;
foreach (EffectPass pass in effect.CurrentTechnique.Passes)
{
Console.WriteLine(pass.Name);
pass.Apply();
batch.Draw(pixel, Vector2.Zero, Color.White);
}
}
}
batch.End();
base.Draw(gameTime);
Exit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment