From b0970451aa5fa452b7ecfaa24a797bd93a507388 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 30 Apr 2014 23:48:37 +0000 Subject: [PATCH] internal infrastructure for video presentation changes (aspect ratio, apparent size, etc) --- BizHawk.Client.EmuHawk/AVOut/AviWriter.cs | 18 ++++++++++-------- .../AVOut/BmpVideoProvder.cs | 6 ++++++ .../Base Implementations/NullEmulator.cs | 1 + .../Interfaces/IVideoProvider.cs | 7 ++++++- BizHawk.Emulation.Cores/Calculator/TI83.cs | 1 + .../Chips/Internals/Vic.VideoProvider.cs | 5 +++++ .../Commodore64/MOS/Vic.VideoProvider.cs | 5 +++++ .../Consoles/Atari/2600/Tia/TIA.cs | 5 +++++ .../Consoles/Atari/7800/Atari7800.cs | 3 ++- .../Consoles/Coleco/TMS9918A.cs | 3 ++- .../Consoles/Nintendo/GBA/Meteor.cs | 1 + .../Consoles/Nintendo/Gameboy/Gambatte.cs | 5 +++++ .../Consoles/Nintendo/Gameboy/GambatteLink.cs | 1 + .../Consoles/Nintendo/N64/N64VideoProvider.cs | 1 + .../Consoles/Nintendo/NES/NES.cs | 3 ++- .../Consoles/Nintendo/QuickNES/QuickNES.cs | 3 ++- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 1 + .../Consoles/PC Engine/VDC.Render.cs | 1 + .../Consoles/PC Engine/VPC.cs | 1 + .../Consoles/Sega/Genesis/GenVDP.cs | 1 + .../Consoles/Sega/SMS/VDP.cs | 14 +++++++++++++- .../Consoles/Sega/Saturn/Yabause.cs | 3 ++- .../Consoles/Sega/gpgx/GPGX.cs | 1 + .../Consoles/Sony/PSP/PSP.cs | 1 + .../Consoles/Sony/PSX/Octoshock.cs | 1 + BizHawk.Emulation.Cores/LibRetroEmulator.cs | 17 ++++++++++++++--- 26 files changed, 91 insertions(+), 18 deletions(-) diff --git a/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs b/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs index 4f107ec553..7b1bfd91b9 100644 --- a/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs +++ b/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs @@ -90,17 +90,19 @@ namespace BizHawk.Client.EmuHawk class VideoCopy : IVideoProvider { int[] vb; - int bw, bh, bc; - public int VirtualWidth { get { return bw; } } - public int BufferWidth { get { return bw; } } - public int BufferHeight { get { return bh; } } - public int BackgroundColor { get { return bc; } } + public int VirtualWidth { get; private set; } + public int VirtualHeight { get; private set; } + public int BufferWidth { get; private set; } + public int BufferHeight { get; private set; } + public int BackgroundColor { get; private set; } public VideoCopy(IVideoProvider c) { vb = (int[])c.GetVideoBuffer().Clone(); - bw = c.BufferWidth; - bh = c.BufferHeight; - bc = c.BackgroundColor; + BufferWidth = c.BufferWidth; + BufferHeight= c.BufferHeight; + BackgroundColor = c.BackgroundColor; + VirtualWidth = c.VirtualWidth; + VirtualHeight = c.VirtualHeight; } public int[] GetVideoBuffer() { diff --git a/BizHawk.Client.EmuHawk/AVOut/BmpVideoProvder.cs b/BizHawk.Client.EmuHawk/AVOut/BmpVideoProvder.cs index f04d36b928..d8bf7225a2 100644 --- a/BizHawk.Client.EmuHawk/AVOut/BmpVideoProvder.cs +++ b/BizHawk.Client.EmuHawk/AVOut/BmpVideoProvder.cs @@ -47,6 +47,12 @@ namespace BizHawk.Client.EmuHawk get { return bmp.Width; } } + public int VirtualHeight + { + // todo: Bitmap actually has size metric data; use it + get { return bmp.Height; } + } + public int BufferWidth { get { return bmp.Width; } diff --git a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs index 144c40484a..9e806b6416 100644 --- a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs @@ -75,6 +75,7 @@ namespace BizHawk.Emulation.Common public bool BinarySaveStatesPreferred { get { return false; } } public int[] GetVideoBuffer() { return frameBuffer; } public int VirtualWidth { get { return 256; } } + public int VirtualHeight { get { return 192; } } public int BufferWidth { get { return 256; } } public int BufferHeight { get { return 192; } } public int BackgroundColor { get { return 0; } } diff --git a/BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs b/BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs index b6e5c5de95..52e155a047 100644 --- a/BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs @@ -4,7 +4,12 @@ { int[] GetVideoBuffer(); - int VirtualWidth { get; } // Used for controlling aspect ratio. Just return BufferWidth if you dont know what to do with this. + // put together, these describe a metric on the screen + // they should define the smallest size that the buffer can be placed inside such that: + // 1. no actual pixel data is lost + // 2. aspect ratio is accurate + int VirtualWidth { get; } + int VirtualHeight { get; } int BufferWidth { get; } int BufferHeight { get; } diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index edf687cd23..cb0fcf17b4 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -414,6 +414,7 @@ namespace BizHawk.Emulation.Cores.Calculators return pixels; } public int VirtualWidth { get { return 96; } } + public int VirtualHeight { get { return 64; } } public int BufferWidth { get { return 96; } } public int BufferHeight { get { return 64; } } public int BackgroundColor { get { return 0; } } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Experimental/Chips/Internals/Vic.VideoProvider.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Experimental/Chips/Internals/Vic.VideoProvider.cs index 8b269d8c29..9d5a239bf3 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Experimental/Chips/Internals/Vic.VideoProvider.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Experimental/Chips/Internals/Vic.VideoProvider.cs @@ -47,6 +47,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Experimental get { return screenWidth; } } + public int VirtualHeight + { + get { return screenHeight; } + } + public int BufferWidth { get { return screenWidth; } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs index 81428d69de..dfdac33915 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs @@ -61,5 +61,10 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 { get { return bufWidth; } } + + public int VirtualHeight + { + get { return bufHeight; } + } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs index acd3e48e76..446e0ca918 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs @@ -118,6 +118,11 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 get { return 320; } } + public int VirtualHeight + { + get { return 262; } + } + public int BufferWidth { get { return 320; } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs index 1a0aeb2cc9..2d8ba3df17 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs @@ -406,7 +406,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 return vidbuffer; } - public int VirtualWidth { get { return BufferWidth; } } + public int VirtualWidth { get { return 275; } } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs index 70533e2306..3151db7a9b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs @@ -445,7 +445,8 @@ namespace BizHawk.Emulation.Cores.ColecoVision public int[] FrameBuffer = new int[256 * 192]; public int[] GetVideoBuffer() { return FrameBuffer; } - public int VirtualWidth { get { return 256; } } + public int VirtualWidth { get { return 293; } } + public int VirtualHeight { get { return 192; } } public int BufferWidth { get { return 256; } } public int BufferHeight { get { return 192; } } public int BackgroundColor { get { return 0; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs index 9b4aae3ad8..c8259bc869 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs @@ -535,6 +535,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public int[] GetVideoBuffer() { return videobuffer; } public int VirtualWidth { get { return 240; } } + public int VirtualHeight { get { return 160; } } public int BufferWidth { get { return 240; } } public int BufferHeight { get { return 160; } } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 2b3a19c482..58d70a305f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -807,6 +807,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy get { return 160; } } + public int VirtualHeight + { + get { return 144; } + } + public int BufferWidth { get { return 160; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs index befcee1b09..1027f30636 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs @@ -361,6 +361,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy int[] VideoBuffer = new int[160 * 2 * 144]; public int[] GetVideoBuffer() { return VideoBuffer; } public int VirtualWidth { get { return 320; } } + public int VirtualHeight { get { return 144; } } public int BufferWidth { get { return 320; } } public int BufferHeight { get { return 144; } } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64VideoProvider.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64VideoProvider.cs index f0f671e9d9..be3da2a8af 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64VideoProvider.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64VideoProvider.cs @@ -30,6 +30,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 } public int VirtualWidth { get { return BufferWidth; } } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return 0; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 935cc3bf76..64ac8aa88f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -212,7 +212,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } } } - public int VirtualWidth { get { return BufferWidth; } } + public int VirtualWidth { get { return (int)(BufferWidth * 1.146); } } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get { return right - left + 1; } } public int BackgroundColor { get { return 0; } } public int BufferHeight diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index 2c763c2072..16a3765447 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -536,7 +536,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES public IVideoProvider VideoProvider { get { return this; } } public int[] GetVideoBuffer() { return VideoOutput; } - public int VirtualWidth { get { return (int)(BufferWidth * 1.14); } } + public int VirtualWidth { get { return (int)(BufferWidth * 1.146); } } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 6620881739..b96def8f09 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -622,6 +622,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES int IVideoProvider.BackgroundColor { get { return 0; } } int[] IVideoProvider.GetVideoBuffer() { return vidBuffer; } int IVideoProvider.VirtualWidth { get { return vidWidth; } } + public int VirtualHeight { get { return vidHeight; } } int IVideoProvider.BufferWidth { get { return vidWidth; } } int IVideoProvider.BufferHeight { get { return vidHeight; } } diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.Render.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.Render.cs index dc6fc1ddb9..e85c7b78f1 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.Render.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.Render.cs @@ -427,6 +427,7 @@ namespace BizHawk.Emulation.Cores.PCEngine public int[] GetVideoBuffer() { return FrameBuffer; } public int VirtualWidth { get { return FramePitch; } } + public int VirtualHeight { get { return FrameHeight; } } public int BufferWidth { get { return FramePitch; } } public int BufferHeight { get { return FrameHeight; } } public int BackgroundColor { get { return vce.Palette[256]; } } diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/VPC.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/VPC.cs index 2bd5e5e9ac..74836981b6 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/VPC.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/VPC.cs @@ -520,6 +520,7 @@ namespace BizHawk.Emulation.Cores.PCEngine public int[] GetVideoBuffer() { return FrameBuffer; } public int VirtualWidth { get { return FrameWidth; } } + public int VirtualHeight { get { return FrameHeight; } } public int BufferWidth { get { return FrameWidth; } } public int BufferHeight { get { return FrameHeight; } } public int BackgroundColor { get { return VCE.Palette[0]; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/GenVDP.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/GenVDP.cs index 4937837414..21a782188d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/GenVDP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/GenVDP.cs @@ -465,6 +465,7 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis } public int VirtualWidth { get { return 320; } } + public int VirtualHeight { get { return FrameHeight; } } public int BufferWidth { diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs index 2348635c69..2e82abbff3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs @@ -434,7 +434,19 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem return GameGearFrameBuffer; } - public int VirtualWidth { get { return BufferWidth; } } + public int VirtualWidth + { + get + { + if (mode == MasterSystem.VdpMode.SMS) + return 293; + else if (Sms.Settings.ShowClippedRegions) + return 256; + else + return 160; + } + } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs index 75c0c4b4ea..08b49ab7ac 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs @@ -505,7 +505,8 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn public IVideoProvider VideoProvider { get { return this; } } int[] VideoBuffer = new int[704 * 512]; public int[] GetVideoBuffer() { return VideoBuffer; } - public int VirtualWidth { get; private set; } + public int VirtualWidth { get { return BufferWidth; } } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index 98f9029a25..abdb5fd75a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -642,6 +642,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx int vheight; public int[] GetVideoBuffer() { return vidbuff; } public int VirtualWidth { get { return BufferWidth; } } // TODO + public int VirtualHeight { get { return BufferHeight; } } // TODO public int BufferWidth { get { return vwidth; } } public int BufferHeight { get { return vheight; } } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs index 67e6326c47..e6b5a3fbea 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs @@ -203,6 +203,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSP readonly int[] screenbuffer = new int[screenwidth * screenheight]; public int[] GetVideoBuffer() { return screenbuffer; } public int VirtualWidth { get { return screenwidth; } } + public int VirtualHeight { get { return screenheight; } } public int BufferWidth { get { return screenwidth; } } public int BufferHeight { get { return screenheight; } } public int BackgroundColor { get { return unchecked((int)0xff000000); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index e75721def2..06bbf85ce1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -279,6 +279,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX public bool BinarySaveStatesPreferred { get { return false; } } public int[] GetVideoBuffer() { return frameBuffer; } public int VirtualWidth { get; private set; } + public int VirtualHeight { get { return BufferHeight; } } public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return 0; } } diff --git a/BizHawk.Emulation.Cores/LibRetroEmulator.cs b/BizHawk.Emulation.Cores/LibRetroEmulator.cs index 0574ddd8e8..c4961b2a05 100644 --- a/BizHawk.Emulation.Cores/LibRetroEmulator.cs +++ b/BizHawk.Emulation.Cores/LibRetroEmulator.cs @@ -545,12 +545,23 @@ namespace BizHawk.Emulation.Cores { get { - if (dar < 0.1f || dar > 3.0f) - return BufferWidth; - else + if (dar > 1.0f) return (int)(BufferWidth * dar); + else + return BufferWidth; } } + public int VirtualHeight + { + get + { + if (dar < 1.0f) + return (int)(BufferHeight / dar); + else + return BufferHeight; + } + } + public int BufferWidth { get; private set; } public int BufferHeight { get; private set; } public int BackgroundColor { get { return unchecked((int)0xff000000); } }