add a simple VDP viewer for SMS/GG
This commit is contained in:
parent
41faaedc18
commit
f1e3196ae9
|
@ -668,6 +668,12 @@
|
|||
<Compile Include="tools\PCE\PCETileViewer.Designer.cs">
|
||||
<DependentUpon>PCETileViewer.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="tools\SMS\VDPViewer.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="tools\SMS\VDPViewer.Designer.cs">
|
||||
<DependentUpon>VDPViewer.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="tools\SNES\SNESGameGenie.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
@ -1082,6 +1088,9 @@
|
|||
<EmbeddedResource Include="tools\PCE\PCETileViewer.resx">
|
||||
<DependentUpon>PCETileViewer.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="tools\SMS\VDPViewer.resx">
|
||||
<DependentUpon>VDPViewer.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="tools\SNES\SNESGameGenie.resx">
|
||||
<DependentUpon>SNESGameGenie.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
|
|
@ -222,6 +222,7 @@
|
|||
this.MovieSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.PCESubMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.PCEBGViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.PCEtileViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.PCEAlwaysPerformSpriteLimitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.PCEAlwaysEqualizeVolumesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
@ -341,7 +342,7 @@
|
|||
this.ClearSRAMContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.ShowMenuContextMenuSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.ShowMenuContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.PCEtileViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.SMSVDPViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.MainformMenu.SuspendLayout();
|
||||
this.MainStatusBar.SuspendLayout();
|
||||
this.MainFormContextMenu.SuspendLayout();
|
||||
|
@ -2007,6 +2008,13 @@
|
|||
this.PCEBGViewerMenuItem.Text = "&BG Viewer";
|
||||
this.PCEBGViewerMenuItem.Click += new System.EventHandler(this.PCEBGViewerMenuItem_Click);
|
||||
//
|
||||
// PCEtileViewerToolStripMenuItem
|
||||
//
|
||||
this.PCEtileViewerToolStripMenuItem.Name = "PCEtileViewerToolStripMenuItem";
|
||||
this.PCEtileViewerToolStripMenuItem.Size = new System.Drawing.Size(240, 22);
|
||||
this.PCEtileViewerToolStripMenuItem.Text = "&Tile Viewer";
|
||||
this.PCEtileViewerToolStripMenuItem.Click += new System.EventHandler(this.PCEtileViewerToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator25
|
||||
//
|
||||
this.toolStripSeparator25.Name = "toolStripSeparator25";
|
||||
|
@ -2051,7 +2059,8 @@
|
|||
this.HighlightActiveDisplayRegionMenuItem,
|
||||
this.toolStripSeparator24,
|
||||
this.SMSGraphicsSettingsMenuItem,
|
||||
this.GGGameGenieMenuItem});
|
||||
this.GGGameGenieMenuItem,
|
||||
this.SMSVDPViewerToolStripMenuItem});
|
||||
this.SMSSubMenu.Name = "SMSSubMenu";
|
||||
this.SMSSubMenu.Size = new System.Drawing.Size(39, 17);
|
||||
this.SMSSubMenu.Text = "&SMS";
|
||||
|
@ -2977,12 +2986,12 @@
|
|||
this.ShowMenuContextMenuItem.Text = "Show Menu";
|
||||
this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click);
|
||||
//
|
||||
// PCEtileViewerToolStripMenuItem
|
||||
// SMSVDPViewerToolStripMenuItem
|
||||
//
|
||||
this.PCEtileViewerToolStripMenuItem.Name = "PCEtileViewerToolStripMenuItem";
|
||||
this.PCEtileViewerToolStripMenuItem.Size = new System.Drawing.Size(240, 22);
|
||||
this.PCEtileViewerToolStripMenuItem.Text = "&Tile Viewer";
|
||||
this.PCEtileViewerToolStripMenuItem.Click += new System.EventHandler(this.PCEtileViewerToolStripMenuItem_Click);
|
||||
this.SMSVDPViewerToolStripMenuItem.Name = "SMSVDPViewerToolStripMenuItem";
|
||||
this.SMSVDPViewerToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
|
||||
this.SMSVDPViewerToolStripMenuItem.Text = "&VDP Viewer";
|
||||
this.SMSVDPViewerToolStripMenuItem.Click += new System.EventHandler(this.SMSVDPViewerToolStripMenuItem_Click);
|
||||
//
|
||||
// MainForm
|
||||
//
|
||||
|
@ -3338,6 +3347,7 @@
|
|||
private System.Windows.Forms.ToolStripMenuItem batchRunnerToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem DisplayConfigMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem PCEtileViewerToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem SMSVDPViewerToolStripMenuItem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3057,5 +3057,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
GlobalWin.Tools.Load<PCETileViewer>();
|
||||
}
|
||||
|
||||
private void SMSVDPViewerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
GlobalWin.Tools.Load<VDPViewer>();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@
|
|||
<data name="DisplayConfigMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NC
|
||||
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NC
|
||||
NwAAAaRJREFUOE+dk0FLAlEUhd9/kgwFMUQMhMEIhJLIhVCRDIRhAznEIEYtlBiQYApBSGQw2xhBlhLE
|
||||
zCLQTa3bt2nd8tR5pFTaLLxwuJd7vgNv3syIv+Xz+fA9TpSX96s0TZsAp+0862fAM3xpN5DNZpHL5VAo
|
||||
FFAqlVCpVFCtVsEgxZk7emTIMsOsyGQyGAwGM4lZkU6n4bouVg4aCO1cQDGusXbyiA1rIMWZO3pkyEYi
|
||||
|
@ -138,7 +138,7 @@
|
|||
<data name="FirmwaresMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAAEEsAABBLAeePRXsAAABwSURBVDhPzZDhCgAhCIN99HvzTgNj6k6i/lzwaW3DKJFH
|
||||
YQUAAAAJcEhZcwAAEEoAABBKATXIp58AAABwSURBVDhPzZDhCgAhCIN99HvzTgNj6k6i/lzwaW3DKJFH
|
||||
xhVMtMU6xYraIDR4BqlCQ87OfBEacnbmtfzsCYr/eu4UK+EJH2hyUjw82CAkeDsDjrDit/nNjofyOUDF
|
||||
BA4ow9YGzBIimaWheQQVt5HxAoOkokovUz91AAAAAElFTkSuQmCC
|
||||
</value>
|
||||
|
|
|
@ -148,7 +148,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
public void Restart()
|
||||
{
|
||||
if (!(Global.Emulator is PCEngine))
|
||||
{
|
||||
Close();
|
||||
return;
|
||||
}
|
||||
emu = (PCEngine)Global.Emulator;
|
||||
|
||||
vce = emu.VCE;
|
||||
|
|
|
@ -0,0 +1,123 @@
|
|||
namespace BizHawk.Client.EmuHawk
|
||||
{
|
||||
partial class VDPViewer
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||||
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
||||
this.bmpViewBG = new BizHawk.Client.EmuHawk.BmpView();
|
||||
this.bmpViewPalette = new BizHawk.Client.EmuHawk.BmpView();
|
||||
this.bmpViewTiles = new BizHawk.Client.EmuHawk.BmpView();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.groupBox2.SuspendLayout();
|
||||
this.groupBox3.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.bmpViewTiles);
|
||||
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(268, 153);
|
||||
this.groupBox1.TabIndex = 1;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Tiles";
|
||||
//
|
||||
// groupBox2
|
||||
//
|
||||
this.groupBox2.Controls.Add(this.bmpViewPalette);
|
||||
this.groupBox2.Location = new System.Drawing.Point(12, 171);
|
||||
this.groupBox2.Name = "groupBox2";
|
||||
this.groupBox2.Size = new System.Drawing.Size(268, 57);
|
||||
this.groupBox2.TabIndex = 2;
|
||||
this.groupBox2.TabStop = false;
|
||||
this.groupBox2.Text = "Palettes";
|
||||
//
|
||||
// groupBox3
|
||||
//
|
||||
this.groupBox3.Controls.Add(this.bmpViewBG);
|
||||
this.groupBox3.Location = new System.Drawing.Point(286, 12);
|
||||
this.groupBox3.Name = "groupBox3";
|
||||
this.groupBox3.Size = new System.Drawing.Size(268, 281);
|
||||
this.groupBox3.TabIndex = 3;
|
||||
this.groupBox3.TabStop = false;
|
||||
this.groupBox3.Text = "BG";
|
||||
//
|
||||
// bmpViewBG
|
||||
//
|
||||
this.bmpViewBG.Location = new System.Drawing.Point(6, 19);
|
||||
this.bmpViewBG.Name = "bmpViewBG";
|
||||
this.bmpViewBG.Size = new System.Drawing.Size(256, 256);
|
||||
this.bmpViewBG.TabIndex = 0;
|
||||
this.bmpViewBG.Text = "bmpViewBG";
|
||||
//
|
||||
// bmpViewPalette
|
||||
//
|
||||
this.bmpViewPalette.Location = new System.Drawing.Point(6, 19);
|
||||
this.bmpViewPalette.Name = "bmpViewPalette";
|
||||
this.bmpViewPalette.Size = new System.Drawing.Size(256, 32);
|
||||
this.bmpViewPalette.TabIndex = 3;
|
||||
this.bmpViewPalette.Text = "bmpViewPalette";
|
||||
this.bmpViewPalette.MouseClick += new System.Windows.Forms.MouseEventHandler(this.bmpViewPalette_MouseClick);
|
||||
//
|
||||
// bmpViewTiles
|
||||
//
|
||||
this.bmpViewTiles.Location = new System.Drawing.Point(6, 19);
|
||||
this.bmpViewTiles.Name = "bmpViewTiles";
|
||||
this.bmpViewTiles.Size = new System.Drawing.Size(256, 128);
|
||||
this.bmpViewTiles.TabIndex = 0;
|
||||
this.bmpViewTiles.Text = "bmpViewTiles";
|
||||
//
|
||||
// VDPViewer
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(572, 326);
|
||||
this.Controls.Add(this.groupBox3);
|
||||
this.Controls.Add(this.groupBox2);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Name = "VDPViewer";
|
||||
this.Text = "VDP Viewer";
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox2.ResumeLayout(false);
|
||||
this.groupBox3.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private BmpView bmpViewTiles;
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private System.Windows.Forms.GroupBox groupBox2;
|
||||
private BmpView bmpViewPalette;
|
||||
private System.Windows.Forms.GroupBox groupBox3;
|
||||
private BmpView bmpViewBG;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,182 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using BizHawk.Emulation.Cores.Sega.MasterSystem;
|
||||
using BizHawk.Common;
|
||||
using BizHawk.Client.Common;
|
||||
using System.Drawing.Imaging;
|
||||
|
||||
namespace BizHawk.Client.EmuHawk
|
||||
{
|
||||
public partial class VDPViewer : Form, IToolForm
|
||||
{
|
||||
private VDP vdp;
|
||||
int palindex = 0;
|
||||
|
||||
public VDPViewer()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
bmpViewTiles.ChangeBitmapSize(256, 128);
|
||||
bmpViewPalette.ChangeBitmapSize(16, 2);
|
||||
bmpViewBG.ChangeBitmapSize(256, 256);
|
||||
|
||||
Restart();
|
||||
}
|
||||
|
||||
|
||||
unsafe static void Draw8x8(byte* src, int* dest, int pitch, int* pal)
|
||||
{
|
||||
int inc = pitch - 8;
|
||||
dest -= inc;
|
||||
for (int i = 0; i < 64; i++)
|
||||
{
|
||||
if ((i & 7) == 0)
|
||||
dest += inc;
|
||||
*dest++ = pal[*src++];
|
||||
}
|
||||
}
|
||||
|
||||
unsafe static void Draw8x8hv(byte* src, int* dest, int pitch, int* pal, bool hflip, bool vflip)
|
||||
{
|
||||
int incx = hflip ? -1 : 1;
|
||||
int incy = vflip ? -pitch : pitch;
|
||||
if (hflip)
|
||||
dest -= incx * 7;
|
||||
if (vflip)
|
||||
dest -= incy * 7;
|
||||
incy -= incx * 8;
|
||||
for (int j = 0; j < 8; j++)
|
||||
{
|
||||
for (int i = 0; i < 8; i++)
|
||||
{
|
||||
*dest = pal[*src++];
|
||||
dest += incx;
|
||||
}
|
||||
dest += incy;
|
||||
}
|
||||
}
|
||||
|
||||
unsafe void DrawTiles(int *pal)
|
||||
{
|
||||
var lockdata = bmpViewTiles.bmp.LockBits(new Rectangle(0, 0, 256, 128), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
|
||||
int* dest = (int*)lockdata.Scan0;
|
||||
int pitch = lockdata.Stride / sizeof(int);
|
||||
|
||||
fixed (byte* src = vdp.PatternBuffer)
|
||||
{
|
||||
for (int tile = 0; tile < 512; tile++)
|
||||
{
|
||||
int srcaddr = tile * 64;
|
||||
int tx = tile & 31;
|
||||
int ty = tile >> 5;
|
||||
int destaddr = ty * 8 * pitch + tx * 8;
|
||||
Draw8x8(src + srcaddr, dest + destaddr, pitch, pal);
|
||||
}
|
||||
}
|
||||
bmpViewTiles.bmp.UnlockBits(lockdata);
|
||||
bmpViewTiles.Refresh();
|
||||
}
|
||||
|
||||
unsafe void DrawBG(int* pal)
|
||||
{
|
||||
var lockdata = bmpViewBG.bmp.LockBits(new Rectangle(0, 0, 256, 128), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
|
||||
int* dest = (int*)lockdata.Scan0;
|
||||
int pitch = lockdata.Stride / sizeof(int);
|
||||
|
||||
fixed (byte* src = vdp.PatternBuffer)
|
||||
{
|
||||
fixed (byte* vram = vdp.VRAM)
|
||||
{
|
||||
short* map = (short*)(vram + vdp.CalcNameTableBase());
|
||||
|
||||
for (int tile = 0; tile < 1024; tile++)
|
||||
{
|
||||
short bgent = *map++;
|
||||
bool hflip = (bgent & 1 << 9) != 0;
|
||||
bool vflip = (bgent & 1 << 10) != 0;
|
||||
int* tpal = pal + ((bgent & 1 << 11) >> 7);
|
||||
int srcaddr = (bgent & 511) * 64;
|
||||
int tx = tile & 31;
|
||||
int ty = tile >> 5;
|
||||
int destaddr = ty * 8 * pitch + tx * 8;
|
||||
Draw8x8hv(src + srcaddr, dest + destaddr, pitch, tpal, hflip, vflip);
|
||||
}
|
||||
}
|
||||
}
|
||||
bmpViewBG.bmp.UnlockBits(lockdata);
|
||||
bmpViewBG.Refresh();
|
||||
}
|
||||
|
||||
unsafe void DrawPal(int* pal)
|
||||
{
|
||||
var lockdata = bmpViewPalette.bmp.LockBits(new Rectangle(0, 0, 16, 2), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
|
||||
int* dest = (int*)lockdata.Scan0;
|
||||
int pitch = lockdata.Stride / sizeof(int);
|
||||
|
||||
for (int j = 0; j < 2; j++)
|
||||
{
|
||||
for (int i = 0; i < 16; i++)
|
||||
{
|
||||
*dest++ = *pal++;
|
||||
}
|
||||
dest -= 16;
|
||||
dest += pitch;
|
||||
}
|
||||
bmpViewPalette.bmp.UnlockBits(lockdata);
|
||||
bmpViewPalette.Refresh();
|
||||
}
|
||||
|
||||
public void UpdateValues()
|
||||
{
|
||||
unsafe
|
||||
{
|
||||
fixed (int* pal = vdp.Palette)
|
||||
{
|
||||
DrawTiles(pal + palindex * 16);
|
||||
DrawBG(pal);
|
||||
DrawPal(pal);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Restart()
|
||||
{
|
||||
if (!(Global.Emulator is SMS))
|
||||
{
|
||||
Close();
|
||||
return;
|
||||
}
|
||||
vdp = (Global.Emulator as SMS).Vdp;
|
||||
UpdateValues();
|
||||
}
|
||||
|
||||
public bool AskSave()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool UpdateBefore
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
private void bmpViewPalette_MouseClick(object sender, MouseEventArgs e)
|
||||
{
|
||||
int p = Math.Min(Math.Max(e.Y / 16, 0), 1);
|
||||
palindex = p;
|
||||
unsafe
|
||||
{
|
||||
fixed (int* pal = vdp.Palette)
|
||||
{
|
||||
DrawTiles(pal + palindex * 16);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
Loading…
Reference in New Issue