2019-04-21 20:18:32 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Drawing.Imaging;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
using Mesen.GUI.Debugger;
|
|
|
|
|
using Mesen.GUI.Controls;
|
|
|
|
|
using Mesen.GUI.Utilities;
|
|
|
|
|
|
|
|
|
|
namespace Mesen.GUI.Config
|
|
|
|
|
{
|
|
|
|
|
public class TileViewerConfig
|
|
|
|
|
{
|
|
|
|
|
public Size WindowSize = new Size(0, 0);
|
|
|
|
|
public Point WindowLocation;
|
|
|
|
|
|
|
|
|
|
public int ImageScale = 3;
|
|
|
|
|
public bool ShowTileGrid = false;
|
|
|
|
|
|
|
|
|
|
public SnesMemoryType Source = SnesMemoryType.VideoRam;
|
|
|
|
|
public TileFormat Format = TileFormat.Bpp4;
|
2019-05-13 20:39:46 -04:00
|
|
|
|
public TileLayout Layout = TileLayout.Normal;
|
2019-04-21 20:18:32 -04:00
|
|
|
|
public int ColumnCount = 16;
|
|
|
|
|
public int Bank = 0;
|
|
|
|
|
public int Offset = 0;
|
|
|
|
|
public int SelectedPalette = 0;
|
|
|
|
|
|
|
|
|
|
public bool AutoRefresh = true;
|
|
|
|
|
public int RefreshScanline = 240;
|
|
|
|
|
public int RefreshCycle = 0;
|
|
|
|
|
|
|
|
|
|
public TileViewerConfig()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|