From 0a017f7f27db577409feaccbce5e692081dcfc10 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 3 May 2014 00:48:23 +0000 Subject: [PATCH] 2600 video setting stuff --- .../Consoles/Atari/2600/Atari2600.cs | 37 ++++++++++++++++--- .../Consoles/Atari/2600/Tia/TIA.cs | 16 +++++--- 2 files changed, 42 insertions(+), 11 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index 1c78ff1c2b..bf1b1bcccc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -7,6 +7,8 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; +using Newtonsoft.Json; + namespace BizHawk.Emulation.Cores.Atari.Atari2600 { [CoreAttributes( @@ -288,8 +290,35 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public bool ShowBall { get; set; } public bool ShowPlayfield { get; set; } - public int TopLine { get; set; } - public int BottomLine { get; set; } + public int NTSCTopLine + { + get { return _NTSCTopLine; } + set { _NTSCTopLine = Math.Min(64, Math.Max(value, 0)); } + } + public int NTSCBottomLine + { + get { return _NTSCBottomLine; } + set { _NTSCBottomLine = Math.Min(260, Math.Max(value, 192)); } + } + [JsonIgnore] + private int _NTSCTopLine = 24; + [JsonIgnore] + private int _NTSCBottomLine = 248; + + public int PALTopLine + { + get { return _PALTopLine; } + set { _PALTopLine = Math.Min(64, Math.Max(value, 0)); } + } + public int PALBottomLine + { + get { return _PALBottomLine; } + set { _PALBottomLine = Math.Min(310, Math.Max(value, 192)); } + } + [JsonIgnore] + private int _PALTopLine = 24; + [JsonIgnore] + private int _PALBottomLine = 296; public int BackgroundColor { get; set; } @@ -309,10 +338,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 ShowMissle2 = true, ShowBall = true, ShowPlayfield = true, - - TopLine = 24, - BottomLine = 248, - BackgroundColor = 0 }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs index ebcc2d956d..1e3660d77f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs @@ -119,7 +119,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public int VirtualHeight { - get { return _core.Settings.BottomLine - _core.Settings.TopLine; } + get { return BufferHeight; } } public int BufferWidth @@ -129,7 +129,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public int BufferHeight { - get { return _core.Settings.BottomLine - _core.Settings.TopLine; } + get + { + if (false) + return _core.Settings.PALBottomLine - _core.Settings.PALTopLine; + else + return _core.Settings.NTSCBottomLine - _core.Settings.NTSCTopLine; + } } public int BackgroundColor @@ -475,12 +481,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public int[] FrameBuffer = new int[ScreenWidth * MaxScreenHeight]; private const int ScreenWidth = 160; - private const int MaxScreenHeight = 262; + private const int MaxScreenHeight = 312; public void OutputFrame() { - var topLine = _core.Settings.TopLine; - var bottomLine = _core.Settings.BottomLine; + var topLine = _core.Settings.NTSCTopLine; + var bottomLine = _core.Settings.NTSCBottomLine; for (int row = topLine; row < bottomLine; row++) {