Skip to content

Commit 09e4c28

Browse files
author
MarcStan
committed
added wpf demo app
1 parent 1995c20 commit 09e4c28

17 files changed

+559
-0
lines changed

MonoGame.Framework.WpfInterop.sln

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
44
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfTest", "WpfTest\WpfTest.csproj", "{47B74078-7603-4364-9E22-DE6FC395EBB8}"
7+
EndProject
68
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoGame.Framework.WpfInterop", "MonoGame.Framework.WpfInterop\MonoGame.Framework.WpfInterop.csproj", "{809F0D79-AEDC-4754-A213-FDBE97CCD6D6}"
79
EndProject
810
Global
@@ -15,6 +17,10 @@ Global
1517
{809F0D79-AEDC-4754-A213-FDBE97CCD6D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{809F0D79-AEDC-4754-A213-FDBE97CCD6D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{809F0D79-AEDC-4754-A213-FDBE97CCD6D6}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{47B74078-7603-4364-9E22-DE6FC395EBB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{47B74078-7603-4364-9E22-DE6FC395EBB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{47B74078-7603-4364-9E22-DE6FC395EBB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{47B74078-7603-4364-9E22-DE6FC395EBB8}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

MonoGame.Framework.WpfInterop/MonoGame.Framework.WpfInterop.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<Compile Include="D3D9.cs" />
5656
<Compile Include="DemoScene.cs" />
5757
<Compile Include="Properties\AssemblyInfo.cs" />
58+
<Compile Include="WpfGraphicsDeviceService.cs" />
5859
</ItemGroup>
5960
<ItemGroup>
6061
<None Include="MonoGame.Framework.WpfInterop.nuspec">
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
using Microsoft.Xna.Framework.Graphics;
2+
using System;
3+
using System.ComponentModel.Design;
4+
using Microsoft.Xna.Framework.Content;
5+
6+
namespace MonoGame.Framework.WpfInterop
7+
{
8+
/// <summary>
9+
/// The <see cref="ContentManager"/> needs a <see cref="IGraphicsDeviceService"/> to be in the <see cref="IServiceContainer"/>. This class fulfills this purpose.
10+
/// </summary>
11+
public class WpfGraphicsDeviceService : IGraphicsDeviceService
12+
{
13+
public GraphicsDevice GraphicsDevice { get; }
14+
15+
[Obsolete("Dummy implementation will never call DeviceCreated")]
16+
public event EventHandler<EventArgs> DeviceCreated;
17+
18+
[Obsolete("Dummy implementation will never call DeviceDisposing")]
19+
public event EventHandler<EventArgs> DeviceDisposing;
20+
21+
[Obsolete("Dummy implementation will never call DeviceReset")]
22+
public event EventHandler<EventArgs> DeviceReset;
23+
24+
[Obsolete("Dummy implementation will never call DeviceResetting")]
25+
public event EventHandler<EventArgs> DeviceResetting;
26+
27+
/// <summary>
28+
/// Create a new instance of the dummy. The constructor will autom. add the instance itself to the <see cref="D3D11Host.Services"/> container of <see cref="host"/>.
29+
/// </summary>
30+
/// <param name="host"></param>
31+
public WpfGraphicsDeviceService(D3D11Host host)
32+
{
33+
if (host == null)
34+
throw new ArgumentNullException(nameof(host));
35+
36+
if (host.Services.GetService(typeof(IGraphicsDeviceService)) != null)
37+
throw new NotSupportedException("A graphics device service is already registered.");
38+
39+
GraphicsDevice = host.GraphicsDevice;
40+
host.Services.AddService(typeof(IGraphicsDeviceService), this);
41+
}
42+
}
43+
}

WpfTest/App.xaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Application x:Class="WpfTest.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
StartupUri="MainWindow.xaml">
5+
<Application.Resources>
6+
</Application.Resources>
7+
</Application>

WpfTest/App.xaml.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace WpfTest
2+
{
3+
/// <summary>
4+
/// Interaction logic for App.xaml
5+
/// </summary>
6+
public partial class App
7+
{
8+
}
9+
}

WpfTest/Content/hello.png

1.28 KB
Loading

WpfTest/ContentScene.cs

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
using Microsoft.Xna.Framework;
2+
using Microsoft.Xna.Framework.Content;
3+
using Microsoft.Xna.Framework.Graphics;
4+
using MonoGame.Framework.WpfInterop;
5+
using System;
6+
7+
namespace WpfTest
8+
{
9+
public class ContentScene : D3D11Host
10+
{
11+
private ContentManager _content;
12+
13+
private Texture2D _texture;
14+
private IGraphicsDeviceService _graphicsDeviceManager;
15+
16+
public override void Initialize()
17+
{
18+
_graphicsDeviceManager = new WpfGraphicsDeviceService(this);
19+
20+
_content = new ContentManager(Services)
21+
{
22+
RootDirectory = "Content"
23+
};
24+
_texture = _content.Load<Texture2D>("hello");
25+
26+
_spriteBatch = new SpriteBatch(GraphicsDevice);
27+
}
28+
29+
private SpriteBatch _spriteBatch;
30+
public override void Render(TimeSpan time)
31+
{
32+
GraphicsDevice.Clear(Color.Black);
33+
34+
// since we share the GraphicsDevice with all hosts, we need to save and reset the states
35+
// this has to be done because spriteBatch internally sets states and doesn't reset themselves, fucking over any 3D rendering (which happens in the DemoScene)
36+
37+
var blend = GraphicsDevice.BlendState;
38+
var depth = GraphicsDevice.DepthStencilState;
39+
var raster = GraphicsDevice.RasterizerState;
40+
var sampler = GraphicsDevice.SamplerStates[0];
41+
42+
_spriteBatch.Begin();
43+
_spriteBatch.Draw(_texture, new Vector2(100, 100), Color.White);
44+
_spriteBatch.End();
45+
46+
GraphicsDevice.BlendState = blend;
47+
GraphicsDevice.DepthStencilState = depth;
48+
GraphicsDevice.RasterizerState = raster;
49+
GraphicsDevice.SamplerStates[0] = sampler;
50+
51+
base.Render(time);
52+
}
53+
54+
}
55+
}

WpfTest/MainWindow.xaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<Window x:Class="WpfTest.MainWindow"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6+
xmlns:wpfInterop="clr-namespace:MonoGame.Framework.WpfInterop;assembly=MonoGame.Framework.WpfInterop"
7+
xmlns:wpfTest="clr-namespace:WpfTest"
8+
mc:Ignorable="d"
9+
Title="MainWindow" Height="768" Width="1024" MinWidth="800" MinHeight="520">
10+
<Grid>
11+
<Grid.RowDefinitions>
12+
<RowDefinition Height="*" />
13+
<RowDefinition Height="*" />
14+
</Grid.RowDefinitions>
15+
<Grid.ColumnDefinitions>
16+
<ColumnDefinition Width="*" />
17+
<ColumnDefinition Width="*" />
18+
</Grid.ColumnDefinitions>
19+
<wpfInterop:D3D11Host Grid.Row="0" Grid.Column="0" Width="400" Height="240" />
20+
<wpfInterop:DemoScene Grid.Row="0" Grid.Column="1" Width="400" Height="240" />
21+
<wpfTest:ContentScene Grid.Row="1" Grid.Column="0" Width="400" Height="240" />
22+
<wpfInterop:DemoScene Grid.Row="1" Grid.Column="1" />
23+
<TextBlock Grid.Row="0" Grid.Column="0" Text="D3D11Host raw:" HorizontalAlignment="Center" Foreground="Green" />
24+
<TextBlock Grid.Row="0" Grid.Column="1" Text="DemoScene:" HorizontalAlignment="Center" />
25+
<TextBlock Grid.Row="1" Grid.Column="0" Text="ContentScene:" HorizontalAlignment="Center" Foreground="Green" />
26+
<TextBlock Grid.Row="1" Grid.Column="1" Text="DemoScene (scaled):" HorizontalAlignment="Center" />
27+
</Grid>
28+
</Window>

WpfTest/MainWindow.xaml.cs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
namespace WpfTest
2+
{
3+
/// <summary>
4+
/// Interaction logic for MainWindow.xaml
5+
/// </summary>
6+
public partial class MainWindow
7+
{
8+
public MainWindow()
9+
{
10+
InitializeComponent();
11+
}
12+
}
13+
}

WpfTest/Properties/AssemblyInfo.cs

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
using System.Reflection;
2+
using System.Resources;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
using System.Windows;
6+
7+
// General Information about an assembly is controlled through the following
8+
// set of attributes. Change these attribute values to modify the information
9+
// associated with an assembly.
10+
[assembly: AssemblyTitle("WpfTest")]
11+
[assembly: AssemblyDescription("")]
12+
[assembly: AssemblyConfiguration("")]
13+
[assembly: AssemblyCompany("")]
14+
[assembly: AssemblyProduct("WpfTest")]
15+
[assembly: AssemblyCopyright("Copyright © 2016")]
16+
[assembly: AssemblyTrademark("")]
17+
[assembly: AssemblyCulture("")]
18+
19+
// Setting ComVisible to false makes the types in this assembly not visible
20+
// to COM components. If you need to access a type in this assembly from
21+
// COM, set the ComVisible attribute to true on that type.
22+
[assembly: ComVisible(false)]
23+
24+
//In order to begin building localizable applications, set
25+
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
26+
//inside a <PropertyGroup>. For example, if you are using US english
27+
//in your source files, set the <UICulture> to en-US. Then uncomment
28+
//the NeutralResourceLanguage attribute below. Update the "en-US" in
29+
//the line below to match the UICulture setting in the project file.
30+
31+
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32+
33+
34+
[assembly: ThemeInfo(
35+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
36+
//(used if a resource is not found in the page,
37+
// or application resource dictionaries)
38+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
39+
//(used if a resource is not found in the page,
40+
// app, or any theme specific resource dictionaries)
41+
)]
42+
43+
44+
// Version information for an assembly consists of the following four values:
45+
//
46+
// Major Version
47+
// Minor Version
48+
// Build Number
49+
// Revision
50+
//
51+
// You can specify all the values or you can default the Build and Revision Numbers
52+
// by using the '*' as shown below:
53+
// [assembly: AssemblyVersion("1.0.*")]
54+
[assembly: AssemblyVersion("1.0.0.0")]
55+
[assembly: AssemblyFileVersion("1.0.0.0")]

WpfTest/Properties/Resources.Designer.cs

+63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)