diff --git a/BizHawk.Client.Common/BizHawk.Client.Common.csproj b/BizHawk.Client.Common/BizHawk.Client.Common.csproj index d3c67435b7..3bef277011 100644 --- a/BizHawk.Client.Common/BizHawk.Client.Common.csproj +++ b/BizHawk.Client.Common/BizHawk.Client.Common.csproj @@ -258,6 +258,10 @@ {5160CFB1-5389-47C1-B7F6-8A0DC97641EE} BizHawk.Bizware.BizwareGL.OpenTK + + {E6B436B1-A3CD-4C9A-8F76-5D7154726884} + BizHawk.Bizware.BizwareGL.SlimDX + {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465} BizHawk.Bizware.BizwareGL diff --git a/BizHawk.Client.Common/GLManager.cs b/BizHawk.Client.Common/GLManager.cs index e65bf8fddc..44440f04b5 100644 --- a/BizHawk.Client.Common/GLManager.cs +++ b/BizHawk.Client.Common/GLManager.cs @@ -35,7 +35,8 @@ namespace BizHawk.Client.Common { return new ContextRef { - gc = gc + gc = gc, + gl = gc.IGL }; } @@ -59,13 +60,24 @@ namespace BizHawk.Client.Common public void Activate(ContextRef cr) { + bool begun = false; + + //this needs a begin signal to set the swap chain to the next backbuffer + if (cr.gl is BizHawk.Bizware.BizwareGL.Drivers.SlimDX.IGL_SlimDX9) + { + cr.gc.Begin(); + begun = true; + } + if (cr == ActiveContext) return; + ActiveContext = cr; if (cr.gc != null) { //TODO - this is checking the current context inside to avoid an extra NOP context change. make this optional or remove it, since we're tracking it here - cr.gc.Begin(); + if(!begun) + cr.gc.Begin(); } if (cr.gl != null) { diff --git a/BizHawk.Client.Common/PathManager.cs b/BizHawk.Client.Common/PathManager.cs index b70c322121..59e96f5337 100644 --- a/BizHawk.Client.Common/PathManager.cs +++ b/BizHawk.Client.Common/PathManager.cs @@ -29,6 +29,8 @@ namespace BizHawk.Client.Common /// public static string MakeProgramRelativePath(string path) { return MakeAbsolutePath("%exe%/" + path, null); } + public static string GetDllDirectory() { return Path.Combine(GetExeDirectoryAbsolute(), "dll"); } + /// /// The location of the default INI file /// diff --git a/BizHawk.Client.Common/config/Config.cs b/BizHawk.Client.Common/config/Config.cs index 20faf7e8b0..792c9ec053 100644 --- a/BizHawk.Client.Common/config/Config.cs +++ b/BizHawk.Client.Common/config/Config.cs @@ -225,41 +225,41 @@ namespace BizHawk.Client.Common public int DispFPSx = DefaultMessageOptions.DispFPSx; public int DispFPSy = DefaultMessageOptions.DispFPSy; - public int DispFrameCx = DefaultMessageOptions.DispFrameCx; - public int DispFrameCy = DefaultMessageOptions.DispFrameCy; - public int DispLagx = DefaultMessageOptions.DispLagx; - public int DispLagy = DefaultMessageOptions.DispLagy; - public int DispInpx = DefaultMessageOptions.DispInpx; - public int DispInpy = DefaultMessageOptions.DispInpy; - public int DispRecx = DefaultMessageOptions.DispRecx; - public int DispRecy = DefaultMessageOptions.DispRecy; - public int DispMultix = DefaultMessageOptions.DispMultix; - public int DispMultiy = DefaultMessageOptions.DispMultiy; + public int DispFrameCx = DefaultMessageOptions.DispFrameCx; + public int DispFrameCy = DefaultMessageOptions.DispFrameCy; + public int DispLagx = DefaultMessageOptions.DispLagx; + public int DispLagy = DefaultMessageOptions.DispLagy; + public int DispInpx = DefaultMessageOptions.DispInpx; + public int DispInpy = DefaultMessageOptions.DispInpy; + public int DispRecx = DefaultMessageOptions.DispRecx; + public int DispRecy = DefaultMessageOptions.DispRecy; + public int DispMultix = DefaultMessageOptions.DispMultix; + public int DispMultiy = DefaultMessageOptions.DispMultiy; public int DispRamWatchx = DefaultMessageOptions.DispRamWatchx; public int DispRamWatchy = DefaultMessageOptions.DispRamWatchy; - public int DispMessagex = DefaultMessageOptions.DispMessagex; - public int DispMessagey = DefaultMessageOptions.DispMessagey; + public int DispMessagex = DefaultMessageOptions.DispMessagex; + public int DispMessagey = DefaultMessageOptions.DispMessagey; public int DispAutoholdx = DefaultMessageOptions.DispAutoholdx; - public int DispAutoholdy = DefaultMessageOptions.DispAutoholdy; + public int DispAutoholdy = DefaultMessageOptions.DispAutoholdy; - public int DispFPSanchor = DefaultMessageOptions.DispFPSanchor; // 0 = UL, 1 = UR, 2 = DL, 3 = DR - public int DispFrameanchor = DefaultMessageOptions.DispFrameanchor; - public int DispLaganchor = DefaultMessageOptions.DispLaganchor; - public int DispInpanchor = DefaultMessageOptions.DispInpanchor; - public int DispRecanchor = DefaultMessageOptions.DispRecanchor; - public int DispMultianchor = DefaultMessageOptions.DispMultianchor; - public int DispMessageanchor = DefaultMessageOptions.DispMessageanchor; - public int DispAutoholdanchor = DefaultMessageOptions.DispAutoholdanchor; + public int DispFPSanchor = DefaultMessageOptions.DispFPSanchor; // 0 = UL, 1 = UR, 2 = DL, 3 = DR + public int DispFrameanchor = DefaultMessageOptions.DispFrameanchor; + public int DispLaganchor = DefaultMessageOptions.DispLaganchor; + public int DispInpanchor = DefaultMessageOptions.DispInpanchor; + public int DispRecanchor = DefaultMessageOptions.DispRecanchor; + public int DispMultianchor = DefaultMessageOptions.DispMultianchor; + public int DispMessageanchor = DefaultMessageOptions.DispMessageanchor; + public int DispAutoholdanchor = DefaultMessageOptions.DispAutoholdanchor; - public int MessagesColor = DefaultMessageOptions.MessagesColor; - public int AlertMessageColor = DefaultMessageOptions.AlertMessageColor; - public int LastInputColor = DefaultMessageOptions.LastInputColor; - public int MovieInput = DefaultMessageOptions.MovieInput; + public int MessagesColor = DefaultMessageOptions.MessagesColor; + public int AlertMessageColor = DefaultMessageOptions.AlertMessageColor; + public int LastInputColor = DefaultMessageOptions.LastInputColor; + public int MovieInput = DefaultMessageOptions.MovieInput; public int DispPrescale = 1; //warning: we dont even want to deal with changing this at runtime. but we want it changed here for config purposes. so dont check this variable. check in GlobalWin or something like that. - public EDispMethod DispMethod = EDispMethod.OpenGL; + public EDispMethod DispMethod = EDispMethod.SlimDX9; public int DispChrome_FrameWindowed = 2; public bool DispChrome_StatusBarWindowed = true; diff --git a/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs b/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs index 0dbfc5cc1e..517f0c3265 100644 --- a/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs +++ b/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs @@ -82,7 +82,7 @@ namespace BizHawk.Client.EmuHawk { ffmpeg = new Process(); #if WINDOWS - ffmpeg.StartInfo.FileName = System.IO.Path.Combine(PathManager.GetBasePathAbsolute(), "dll", "ffmpeg.exe"); + ffmpeg.StartInfo.FileName = System.IO.Path.Combine(PathManager.GetDllDirectory(), "dll", "ffmpeg.exe"); #else ffmpeg.StartInfo.FileName = "ffmpeg"; // expecting native version to be in path #endif diff --git a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs index 97953fb7f4..6d6620478c 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs @@ -63,19 +63,22 @@ namespace BizHawk.Client.EmuHawk using (var tex = typeof(Program).Assembly.GetManifestResourceStream("BizHawk.Client.EmuHawk.Resources.courier16px_0.png")) TheOneFont = new StringRenderer(GL, xml, tex); - if (GL is BizHawk.Bizware.BizwareGL.Drivers.OpenTK.IGL_TK) + if (GL is BizHawk.Bizware.BizwareGL.Drivers.OpenTK.IGL_TK || GL is BizHawk.Bizware.BizwareGL.Drivers.SlimDX.IGL_SlimDX9) { - var fiHq2x = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk/hq2x.cgp")); - if (fiHq2x.Exists) - using (var stream = fiHq2x.OpenRead()) - ShaderChain_hq2x = new Filters.RetroShaderChain(GL, new Filters.RetroShaderPreset(stream), Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk")); - var fiScanlines = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk/BizScanlines.cgp")); - if (fiScanlines.Exists) - using (var stream = fiScanlines.OpenRead()) - ShaderChain_scanlines = new Filters.RetroShaderChain(GL, new Filters.RetroShaderPreset(stream), Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk")); - var fiBicubic = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk/bicubic-fast.cgp")); + //var fiHq2x = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk/hq2x.cgp")); + //if (fiHq2x.Exists) + // using (var stream = fiHq2x.OpenRead()) + // ShaderChain_hq2x = new Filters.RetroShaderChain(GL, new Filters.RetroShaderPreset(stream), Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk")); + //var fiScanlines = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk/BizScanlines.cgp")); + //if (fiScanlines.Exists) + // using (var stream = fiScanlines.OpenRead()) + // ShaderChain_scanlines = new Filters.RetroShaderChain(GL, new Filters.RetroShaderPreset(stream), Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk")); + string bicubic_path = "Shaders/BizHawk/bicubic-fast.cgp"; + if(GL is BizHawk.Bizware.BizwareGL.Drivers.SlimDX.IGL_SlimDX9) + bicubic_path = "Shaders/BizHawk/bicubic-normal.cgp"; + var fiBicubic = new FileInfo(Path.Combine(PathManager.GetExeDirectoryAbsolute(), bicubic_path)); if (fiBicubic.Exists) - using (var stream = fiBicubic.OpenRead()) + using (var stream = fiBicubic.Open(FileMode.Open, FileAccess.Read, FileShare.Read)) ShaderChain_bicubic = new Filters.RetroShaderChain(GL, new Filters.RetroShaderPreset(stream), Path.Combine(PathManager.GetExeDirectoryAbsolute(), "Shaders/BizHawk")); } @@ -241,10 +244,11 @@ namespace BizHawk.Client.EmuHawk Filters.FinalPresentation.eFilterOption finalFilter = Filters.FinalPresentation.eFilterOption.None; if (Global.Config.DispFinalFilter == 1) finalFilter = Filters.FinalPresentation.eFilterOption.Bilinear; if (Global.Config.DispFinalFilter == 2) finalFilter = Filters.FinalPresentation.eFilterOption.Bicubic; - //if bicubic is selected and unavailable, dont use it - if (ShaderChain_bicubic != null && !ShaderChain_bicubic.Available && fPresent.FilterOption == Filters.FinalPresentation.eFilterOption.Bicubic) + //if bicubic is selected and unavailable, dont use it. use bilinear instead I guess + if (finalFilter == Filters.FinalPresentation.eFilterOption.Bicubic) { - finalFilter = Filters.FinalPresentation.eFilterOption.None; + if (ShaderChain_bicubic == null || !ShaderChain_bicubic.Available) + finalFilter = Filters.FinalPresentation.eFilterOption.Bilinear; } fPresent.FilterOption = finalFilter; @@ -259,7 +263,7 @@ namespace BizHawk.Client.EmuHawk AppendLuaLayer(chain, "native"); //and OSD goes on top of that - //TODO - things break if this isnt present (the final presentation filter gets messed up) + //TODO - things break if this isnt present (the final presentation filter gets messed up when used with prescaling) //so, always include it (we'll handle this flag in the callback to do no rendering) //if (includeOSD) chain.AddFilter(fOSD, "osd"); @@ -519,7 +523,11 @@ namespace BizHawk.Client.EmuHawk FilterProgram UpdateSourceInternal(JobInfo job) { - GlobalWin.GLManager.Activate(CR_GraphicsControl); + //no drawing actually happens. it's important not to begin drawing on a control + if (!job.simulate) + { + GlobalWin.GLManager.Activate(CR_GraphicsControl); + } IVideoProvider videoProvider = job.videoProvider; bool simulate = job.simulate; @@ -550,19 +558,21 @@ namespace BizHawk.Client.EmuHawk int[] videoBuffer = videoProvider.GetVideoBuffer(); -TESTEROO: int bufferWidth = videoProvider.BufferWidth; int bufferHeight = videoProvider.BufferHeight; bool isGlTextureId = videoBuffer.Length == 1; - //TODO - need to do some work here for GDI+ to repair gl texture ID importing BitmapBuffer bb = null; Texture2d videoTexture = null; if (!simulate) { - //special codepath for GDI+ - //TODO - make for gdi+ only. maybe other codepath for d3d - if (!(GL is BizHawk.Bizware.BizwareGL.Drivers.OpenTK.IGL_TK)) + if (isGlTextureId) + { + //FYI: this is a million years from happening on n64, since it's all geriatric non-FBO code + //is it workable for saturn? + videoTexture = GL.WrapGLTexture2d(new IntPtr(videoBuffer[0]), bufferWidth, bufferHeight); + } + else { //wrap the videoprovider data in a BitmapBuffer (no point to refactoring that many IVideoProviders) bb = new BitmapBuffer(bufferWidth, bufferHeight, videoBuffer); @@ -570,30 +580,9 @@ TESTEROO: //now, acquire the data sent from the videoProvider into a texture videoTexture = VideoTextureFrugalizer.Get(bb); - GL.SetTextureWrapMode(videoTexture, true); - } - else - { - if (isGlTextureId) - { - videoTexture = GL.WrapGLTexture2d(new IntPtr(videoBuffer[0]), bufferWidth, bufferHeight); - } - else - { - //wrap the videoprovider data in a BitmapBuffer (no point to refactoring that many IVideoProviders) - bb = new BitmapBuffer(bufferWidth, bufferHeight, videoBuffer); - - //now, acquire the data sent from the videoProvider into a texture - videoTexture = VideoTextureFrugalizer.Get(bb); - GL.SetTextureWrapMode(videoTexture, true); - } - - //TEST (to be removed once we have an actual example of bring in a texture ID from opengl emu core): - if (!isGlTextureId) - { - videoBuffer = new int[1] { videoTexture.Id.ToInt32() }; - goto TESTEROO; - } + + //lets not use this. lets define BizwareGL to make clamp by default (TBD: check opengl) + //GL.SetTextureWrapMode(videoTexture, true); } } @@ -647,6 +636,8 @@ TESTEROO: //do i need to check this on an intel video card to see if running excessively is a problem? (it used to be in the FinalTarget command below, shouldnt be a problem) //GraphicsControl.Begin(); + GlobalWin.GL.BeginScene(); + //run filter chain Texture2d texCurr = null; RenderTarget rtCurr = null; @@ -693,6 +684,8 @@ TESTEROO: } } + GL.EndScene(); + if (job.offscreen) { job.offscreenBB = rtCurr.Texture2d.Resolve(); @@ -730,6 +723,7 @@ TESTEROO: NeedsToPaint = false; //?? } + } bool? LastVsyncSetting; diff --git a/BizHawk.Client.EmuHawk/GlobalWin.cs b/BizHawk.Client.EmuHawk/GlobalWin.cs index 6754cc9555..490c2a5a86 100644 --- a/BizHawk.Client.EmuHawk/GlobalWin.cs +++ b/BizHawk.Client.EmuHawk/GlobalWin.cs @@ -7,9 +7,19 @@ namespace BizHawk.Client.EmuHawk { public static MainForm MainForm; public static ToolManager Tools; + + /// + /// the IGL to be used for rendering + /// public static IGL GL; - public static Bizware.BizwareGL.Drivers.OpenTK.IGL_TK IGL_GL; + public static GLManager.ContextRef CR_GL; + + /// + /// The IGL_TK to be used for specifically opengl operations (accessing textures from opengl-based cores) + /// + public static Bizware.BizwareGL.Drivers.OpenTK.IGL_TK IGL_GL; + public static Sound Sound; public static OSDManager OSD = new OSDManager(); public static DisplayManager DisplayManager; diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 9320bc2a14..c56ac27182 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -211,6 +211,7 @@ namespace BizHawk.Client.EmuHawk Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb.txt")); //TODO GL - a lot of disorganized wiring-up here + CGC.CGCBinPath = Path.Combine(PathManager.GetDllDirectory(), "cgc.exe"); PresentationPanel = new PresentationPanel(); GlobalWin.DisplayManager = new DisplayManager(PresentationPanel); Controls.Add(PresentationPanel); diff --git a/BizHawk.Client.EmuHawk/config/DisplayConfigLite.Designer.cs b/BizHawk.Client.EmuHawk/config/DisplayConfigLite.Designer.cs index 40e2cb118f..258bdd78da 100644 --- a/BizHawk.Client.EmuHawk/config/DisplayConfigLite.Designer.cs +++ b/BizHawk.Client.EmuHawk/config/DisplayConfigLite.Designer.cs @@ -36,6 +36,7 @@ this.lblUserFilterName = new System.Windows.Forms.Label(); this.btnSelectUserFilter = new System.Windows.Forms.Button(); this.rbUser = new System.Windows.Forms.RadioButton(); + this.tbScanlineIntensity = new BizHawk.Client.EmuHawk.TransparentTrackBar(); this.rbNone = new System.Windows.Forms.RadioButton(); this.rbScanlines = new System.Windows.Forms.RadioButton(); this.rbHq2x = new System.Windows.Forms.RadioButton(); @@ -86,10 +87,10 @@ this.cbStatusBarWindowed = new System.Windows.Forms.CheckBox(); this.label9 = new System.Windows.Forms.Label(); this.cbMenuWindowed = new System.Windows.Forms.CheckBox(); - this.cbCaptionWindowed = new System.Windows.Forms.CheckBox(); - this.tbScanlineIntensity = new BizHawk.Client.EmuHawk.TransparentTrackBar(); this.trackbarFrameSizeWindowed = new BizHawk.Client.EmuHawk.TransparentTrackBar(); + this.cbCaptionWindowed = new System.Windows.Forms.CheckBox(); this.groupBox1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tbScanlineIntensity)).BeginInit(); this.grpFinalFilter.SuspendLayout(); this.grpARSelection.SuspendLayout(); this.tabControl1.SuspendLayout(); @@ -102,7 +103,6 @@ this.tabPage1.SuspendLayout(); this.groupBox4.SuspendLayout(); this.groupBox2.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tbScanlineIntensity)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.trackbarFrameSizeWindowed)).BeginInit(); this.SuspendLayout(); // @@ -184,6 +184,19 @@ this.rbUser.Text = "User"; this.rbUser.UseVisualStyleBackColor = true; // + // tbScanlineIntensity + // + this.tbScanlineIntensity.LargeChange = 32; + this.tbScanlineIntensity.Location = new System.Drawing.Point(83, 55); + this.tbScanlineIntensity.Maximum = 256; + this.tbScanlineIntensity.Name = "tbScanlineIntensity"; + this.tbScanlineIntensity.Size = new System.Drawing.Size(70, 42); + this.tbScanlineIntensity.TabIndex = 3; + this.tbScanlineIntensity.TickFrequency = 32; + this.tbScanlineIntensity.TickStyle = System.Windows.Forms.TickStyle.TopLeft; + this.tbScanlineIntensity.Scroll += new System.EventHandler(this.tbScanlineIntensity_Scroll); + this.tbScanlineIntensity.ValueChanged += new System.EventHandler(this.tbScanlineIntensity_Scroll); + // // rbNone // this.rbNone.AutoSize = true; @@ -373,8 +386,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(398, 27); this.label2.TabIndex = 17; - this.label2.Text = "Some people think the whitenoise is a great idea, and some people don\'t. Enabling" + - " this displays black instead."; + this.label2.Text = "Some people think the white noise is a great idea, and some people don\'t. Disabli" + + "ng this displays black instead."; // // checkSnowyNullEmulator // @@ -515,17 +528,17 @@ // // label8 // - this.label8.Location = new System.Drawing.Point(24, 30); + this.label8.Location = new System.Drawing.Point(21, 30); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(359, 47); this.label8.TabIndex = 20; - this.label8.Text = " • Not working yet\r\n • Best compatibility\r\n • No support for custom shaders\r\n"; + this.label8.Text = " • Best compatibility\r\n • May have trouble with OpenGL-based cores (Saturn,N64)\r\n" + + ""; // // rbD3D9 // this.rbD3D9.AutoSize = true; this.rbD3D9.Checked = true; - this.rbD3D9.Enabled = false; this.rbD3D9.Location = new System.Drawing.Point(6, 10); this.rbD3D9.Name = "rbD3D9"; this.rbD3D9.Size = new System.Drawing.Size(73, 17); @@ -540,8 +553,8 @@ this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(359, 47); this.label7.TabIndex = 18; - this.label7.Text = " • Mainly for compatibility purposes\r\n • Missing some features\r\n • Works better o" + - "ver Remote Desktop, etc.\r\n"; + this.label7.Text = " • Slow; Mainly for compatibility purposes\r\n • Missing many features\r\n • Works be" + + "tter over Remote Desktop, etc.\r\n"; // // rbGDIPlus // @@ -644,9 +657,9 @@ this.cbFSAutohideMouse.AutoSize = true; this.cbFSAutohideMouse.Location = new System.Drawing.Point(87, 19); this.cbFSAutohideMouse.Name = "cbFSAutohideMouse"; - this.cbFSAutohideMouse.Size = new System.Drawing.Size(139, 17); + this.cbFSAutohideMouse.Size = new System.Drawing.Size(141, 17); this.cbFSAutohideMouse.TabIndex = 28; - this.cbFSAutohideMouse.Text = "Auto-hide Mouse Cursor"; + this.cbFSAutohideMouse.Text = "Auto-Hide Mouse Cursor"; this.cbFSAutohideMouse.UseVisualStyleBackColor = true; // // label1 @@ -740,29 +753,6 @@ this.cbMenuWindowed.Text = "Menu"; this.cbMenuWindowed.UseVisualStyleBackColor = true; // - // cbCaptionWindowed - // - this.cbCaptionWindowed.AutoSize = true; - this.cbCaptionWindowed.Location = new System.Drawing.Point(9, 104); - this.cbCaptionWindowed.Name = "cbCaptionWindowed"; - this.cbCaptionWindowed.Size = new System.Drawing.Size(62, 17); - this.cbCaptionWindowed.TabIndex = 24; - this.cbCaptionWindowed.Text = "Caption"; - this.cbCaptionWindowed.UseVisualStyleBackColor = true; - // - // tbScanlineIntensity - // - this.tbScanlineIntensity.LargeChange = 32; - this.tbScanlineIntensity.Location = new System.Drawing.Point(83, 55); - this.tbScanlineIntensity.Maximum = 256; - this.tbScanlineIntensity.Name = "tbScanlineIntensity"; - this.tbScanlineIntensity.Size = new System.Drawing.Size(70, 42); - this.tbScanlineIntensity.TabIndex = 3; - this.tbScanlineIntensity.TickFrequency = 32; - this.tbScanlineIntensity.TickStyle = System.Windows.Forms.TickStyle.TopLeft; - this.tbScanlineIntensity.Scroll += new System.EventHandler(this.tbScanlineIntensity_Scroll); - this.tbScanlineIntensity.ValueChanged += new System.EventHandler(this.tbScanlineIntensity_Scroll); - // // trackbarFrameSizeWindowed // this.trackbarFrameSizeWindowed.LargeChange = 1; @@ -774,6 +764,16 @@ this.trackbarFrameSizeWindowed.Value = 1; this.trackbarFrameSizeWindowed.ValueChanged += new System.EventHandler(this.trackbarFrameSizeWindowed_ValueChanged); // + // cbCaptionWindowed + // + this.cbCaptionWindowed.AutoSize = true; + this.cbCaptionWindowed.Location = new System.Drawing.Point(9, 104); + this.cbCaptionWindowed.Name = "cbCaptionWindowed"; + this.cbCaptionWindowed.Size = new System.Drawing.Size(62, 17); + this.cbCaptionWindowed.TabIndex = 24; + this.cbCaptionWindowed.Text = "Caption"; + this.cbCaptionWindowed.UseVisualStyleBackColor = true; + // // DisplayConfigLite // this.AcceptButton = this.btnOk; @@ -790,6 +790,7 @@ this.Text = "Display Configuration"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tbScanlineIntensity)).EndInit(); this.grpFinalFilter.ResumeLayout(false); this.grpFinalFilter.PerformLayout(); this.grpARSelection.ResumeLayout(false); @@ -810,7 +811,6 @@ this.groupBox4.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tbScanlineIntensity)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.trackbarFrameSizeWindowed)).EndInit(); this.ResumeLayout(false); diff --git a/BizHawk.Client.MultiHawk/DisplayManager/DisplayManager.cs b/BizHawk.Client.MultiHawk/DisplayManager/DisplayManager.cs index 490670b31a..5c7719286b 100644 --- a/BizHawk.Client.MultiHawk/DisplayManager/DisplayManager.cs +++ b/BizHawk.Client.MultiHawk/DisplayManager/DisplayManager.cs @@ -399,11 +399,11 @@ TESTEROO: } //TEST (to be removed once we have an actual example of bring in a texture ID from opengl emu core): - if (!isGlTextureId) - { - videoBuffer = new int[1] { videoTexture.Id.ToInt32() }; - goto TESTEROO; - } + //if (!isGlTextureId) + //{ + // videoBuffer = new int[1] { videoTexture.Id.ToInt32() }; + // goto TESTEROO; + //} } //record the size of what we received, since lua and stuff is gonna want to draw onto it diff --git a/Bizware/BizHawk.Bizware.BizwareGL.GdiPlus/IGL_GdiPlus.cs b/Bizware/BizHawk.Bizware.BizwareGL.GdiPlus/IGL_GdiPlus.cs index acc1c37d8d..b927db9dfe 100644 --- a/Bizware/BizHawk.Bizware.BizwareGL.GdiPlus/IGL_GdiPlus.cs +++ b/Bizware/BizHawk.Bizware.BizwareGL.GdiPlus/IGL_GdiPlus.cs @@ -73,6 +73,9 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public class IGL_GdiPlus : IGL { + //rendering state + RenderTarget _CurrRenderTarget; + public IGL_GdiPlus() { MyBufferedGraphicsContext = new BufferedGraphicsContext(); @@ -113,17 +116,17 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public IntPtr GenTexture() { return ResourceIDs.Alloc(ResourceIdManager.EResourceType.Texture); } public void FreeTexture(Texture2d tex) { - ResourceIDs.Free(tex.Id); + ResourceIDs.Free((IntPtr)tex.Opaque); } public IntPtr GetEmptyHandle() { return new IntPtr(0); } public IntPtr GetEmptyUniformHandle() { return new IntPtr(-1); } - public Shader CreateFragmentShader(string source, bool required) + public Shader CreateFragmentShader(bool cg, string source, string entry, bool required) { return null; } - public Shader CreateVertexShader(string source, bool required) + public Shader CreateVertexShader(bool cg, string source, string entry, bool required) { return null; } @@ -142,27 +145,21 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public IBlendState BlendNoneOpaque { get { return _rsBlendNoneOpaque; } } public IBlendState BlendNormal { get { return _rsBlendNormal; } } - public Pipeline CreatePipeline(VertexLayout vertexLayout, Shader vertexShader, Shader fragmentShader, bool required) + public Pipeline CreatePipeline(VertexLayout vertexLayout, Shader vertexShader, Shader fragmentShader, bool required, string memo) { return null; } - public VertexLayout CreateVertexLayout() { return new VertexLayout(this, new IntPtr(0)); } + public void FreePipeline(Pipeline pipeline) {} - public void BindTexture2d(Texture2d tex) - { - CurrentBoundTexture = tex; - } + public VertexLayout CreateVertexLayout() { return new VertexLayout(this, new IntPtr(0)); } public void SetTextureWrapMode(Texture2d tex, bool clamp) { - if (CurrentBoundTexture == null) - throw new InvalidOperationException(); } public void DrawArrays(PrimitiveType mode, int first, int count) { - } public void BindPipeline(Pipeline pipeline) @@ -170,6 +167,10 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus } + public void Internal_FreeShader(Shader shader) + { + } + public void SetPipelineUniform(PipelineUniform uniform, bool value) { @@ -199,17 +200,14 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus { } - public void SetPipelineUniformSampler(PipelineUniform uniform, IntPtr texHandle) + public void SetPipelineUniformSampler(PipelineUniform uniform, Texture2d tex) { } - public void TexParameter2d(TextureParameterName pname, int param) + public void TexParameter2d(Texture2d tex, TextureParameterName pname, int param) { - if (CurrentBoundTexture == null) - return; - - TextureWrapper tw = TextureWrapperForTexture(CurrentBoundTexture); + TextureWrapper tw = TextureWrapperForTexture(tex); if (pname == TextureParameterName.TextureMinFilter) tw.MinFilter = (TextureMinFilter)param; if (pname == TextureParameterName.TextureMagFilter) @@ -223,7 +221,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus tw.SDBitmap = sdbmp; IntPtr id = GenTexture(); ResourceIDs.Lookup[id.ToInt32()] = tw; - return new Texture2d(this, id, null, bitmap.Width, bitmap.Height); + return new Texture2d(this, id, bitmap.Width, bitmap.Height); } public Texture2d LoadTexture(Stream stream) @@ -257,7 +255,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus var tw = new TextureWrapper(); tw.SDBitmap = sdbmp; ResourceIDs.Lookup[id.ToInt32()] = tw; - return new Texture2d(this, id, null, bmp.Width, bmp.Height); + return new Texture2d(this, id, bmp.Width, bmp.Height); } public unsafe BitmapBuffer ResolveTexture2d(Texture2d tex) @@ -279,9 +277,9 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus return CreateGuiProjectionMatrix(new sd.Size(w, h)); } - public Matrix4 CreateGuiViewMatrix(int w, int h) + public Matrix4 CreateGuiViewMatrix(int w, int h, bool autoflip) { - return CreateGuiViewMatrix(new sd.Size(w, h)); + return CreateGuiViewMatrix(new sd.Size(w, h), autoflip); } public Matrix4 CreateGuiProjectionMatrix(sd.Size dims) @@ -299,15 +297,25 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus ret.M22 = 1; else ret.M22 = 2.0f / (float)dims.Height; + return ret; } - public Matrix4 CreateGuiViewMatrix(sd.Size dims) + public Matrix4 CreateGuiViewMatrix(sd.Size dims, bool autoflip) { Matrix4 ret = Matrix4.Identity; ret.M22 = -1.0f; ret.M41 = -(float)dims.Width * 0.5f; ret.M42 = (float)dims.Height * 0.5f; + if (autoflip) + { + if (_CurrRenderTarget == null) { } + else + { + //flip as long as we're not a final render target + ret.M22 = 1.0f; + } + } return ret; } @@ -393,6 +401,14 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus } } + public void BeginScene() + { + } + + public void EndScene() + { + } + public IGraphicsControl Internal_CreateGraphicsControl() { var ret = new GLControlWrapper_GdiPlus(this); @@ -407,9 +423,9 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public void FreeRenderTarget(RenderTarget rt) { - int id = rt.Id.ToInt32(); + int id = (int)rt.Opaque; var rtw = ResourceIDs.Lookup[id] as RenderTargetWrapper; - ResourceIDs.Free(rt.Id); + ResourceIDs.Free(new IntPtr(id)); } public unsafe RenderTarget CreateRenderTarget(int w, int h) @@ -418,10 +434,10 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus tw.SDBitmap = new Bitmap(w,h, sdi.PixelFormat.Format32bppArgb); IntPtr texid = GenTexture(); ResourceIDs.Lookup[texid.ToInt32()] = tw; - var tex = new Texture2d(this, texid, null, w, h); + var tex = new Texture2d(this, texid, w, h); var rt = new RenderTarget(this, ResourceIDs.Alloc(ResourceIdManager.EResourceType.RenderTarget), tex); - int id = rt.Id.ToInt32(); + int id = (int)rt.Opaque; RenderTargetWrapper rtw = new RenderTargetWrapper(this); rtw.Target = rt; ResourceIDs.Lookup[id] = rtw; @@ -430,6 +446,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public void BindRenderTarget(RenderTarget rt) { + _CurrRenderTarget = rt; if (CurrentRenderTargetWrapper != null) { if (CurrentRenderTargetWrapper == CurrentControl.RenderTargetWrapper) @@ -460,12 +477,12 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public TextureWrapper TextureWrapperForTexture(Texture2d tex) { - return ResourceIDs.Lookup[tex.Id.ToInt32()] as TextureWrapper; + return ResourceIDs.Lookup[((IntPtr)tex.Opaque).ToInt32()] as TextureWrapper; } public RenderTargetWrapper RenderTargetWrapperForRt(RenderTarget rt) { - return ResourceIDs.Lookup[rt.Id.ToInt32()] as RenderTargetWrapper; + return ResourceIDs.Lookup[(int)rt.Opaque] as RenderTargetWrapper; } public Graphics GetCurrentGraphics() @@ -476,7 +493,6 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.GdiPlus public GLControlWrapper_GdiPlus CurrentControl; public RenderTargetWrapper CurrentRenderTargetWrapper; - Texture2d CurrentBoundTexture; //todo - not thread safe public static ResourceIdManager ResourceIDs = new ResourceIdManager(); diff --git a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/BizHawk.Bizware.BizwareGL.OpenTK.csproj b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/BizHawk.Bizware.BizwareGL.OpenTK.csproj index a0cdcfce53..0b3d7072af 100644 --- a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/BizHawk.Bizware.BizwareGL.OpenTK.csproj +++ b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/BizHawk.Bizware.BizwareGL.OpenTK.csproj @@ -68,7 +68,6 @@ UserControl -