From c339f69055655290d57432940d3db9d88d9a0897 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 6 Jun 2017 11:35:55 +0000 Subject: Initial version. --- App.config | 6 ++ Data/zx81.bin | Bin 0 -> 8192 bytes Form1.Designer.cs | 93 ++++++++++++++++++++++++++++++ Form1.cs | 113 ++++++++++++++++++++++++++++++++++++ Form1.resx | 120 +++++++++++++++++++++++++++++++++++++++ Program.cs | 22 +++++++ Properties/AssemblyInfo.cs | 36 ++++++++++++ Properties/Resources.Designer.cs | 71 +++++++++++++++++++++++ Properties/Resources.resx | 117 ++++++++++++++++++++++++++++++++++++++ Properties/Settings.Designer.cs | 30 ++++++++++ Properties/Settings.settings | 7 +++ Rip81Font.csproj | 93 ++++++++++++++++++++++++++++++ Rip81Font.sln | 22 +++++++ 13 files changed, 730 insertions(+) create mode 100644 App.config create mode 100644 Data/zx81.bin create mode 100644 Form1.Designer.cs create mode 100644 Form1.cs create mode 100644 Form1.resx create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 Rip81Font.csproj create mode 100644 Rip81Font.sln diff --git a/App.config b/App.config new file mode 100644 index 0000000..fad249e --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Data/zx81.bin b/Data/zx81.bin new file mode 100644 index 0000000..557ddcb Binary files /dev/null and b/Data/zx81.bin differ diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..473e4e9 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,93 @@ +namespace Rip81Font +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.m_pictureBox = new System.Windows.Forms.PictureBox(); + this.m_number = new System.Windows.Forms.NumericUpDown(); + this.m_button = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.m_pictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.m_number)).BeginInit(); + this.SuspendLayout(); + // + // m_pictureBox + // + this.m_pictureBox.Location = new System.Drawing.Point(13, 13); + this.m_pictureBox.Name = "m_pictureBox"; + this.m_pictureBox.Size = new System.Drawing.Size(8, 8); + this.m_pictureBox.TabIndex = 0; + this.m_pictureBox.TabStop = false; + // + // m_number + // + this.m_number.Location = new System.Drawing.Point(48, 13); + this.m_number.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.m_number.Name = "m_number"; + this.m_number.Size = new System.Drawing.Size(120, 20); + this.m_number.TabIndex = 1; + this.m_number.ValueChanged += new System.EventHandler(this.OnCodeChanged); + // + // m_button + // + this.m_button.Location = new System.Drawing.Point(48, 40); + this.m_button.Name = "m_button"; + this.m_button.Size = new System.Drawing.Size(75, 23); + this.m_button.TabIndex = 2; + this.m_button.Text = "Export All"; + this.m_button.UseVisualStyleBackColor = true; + this.m_button.Click += new System.EventHandler(this.OnExportAll); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(275, 100); + this.Controls.Add(this.m_button); + this.Controls.Add(this.m_number); + this.Controls.Add(this.m_pictureBox); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Name = "Form1"; + this.Text = "Form1"; + ((System.ComponentModel.ISupportInitialize)(this.m_pictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.m_number)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox m_pictureBox; + private System.Windows.Forms.NumericUpDown m_number; + private System.Windows.Forms.Button m_button; + } +} + diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..980a5aa --- /dev/null +++ b/Form1.cs @@ -0,0 +1,113 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.IO; +using System.Drawing.Imaging; + +namespace Rip81Font +{ + public partial class Form1 : Form + { + private byte[] rom; + + public Form1() + { + InitializeComponent(); + + rom = File.ReadAllBytes("Data/zx81.bin"); + + m_pictureBox.Image = new Bitmap(8, 8); + } + + private void Rip(int code) + { + bool inv = false; + + if (code > 127) + { + inv = true; + code -= 128; + } + + if (code > 63) + { + using (Graphics g = Graphics.FromImage(m_pictureBox.Image)) + { + g.FillRectangle(Brushes.Red, 0, 0, 8, 8); + } + } + else + { + int addr = 0x1e00 + code * 8; + + using (Graphics g = Graphics.FromImage(m_pictureBox.Image)) + { + for(int f = 0; f < 8; f++) + { + byte b = rom[addr+f]; + + for(int n = 0; n < 8; n++) + { + Brush p; + + if ((b & (1 << n)) != 0) + { + if (inv) + { + p = Brushes.White; + } + else + { + p = Brushes.Black; + } + } + else + { + if (inv) + { + p = Brushes.Black; + } + else + { + p = Brushes.White; + } + } + + g.FillRectangle(p, 7 - n, f, 1, 1); + } + } + } + } + + using (Graphics g = m_pictureBox.CreateGraphics()) + { + g.DrawImageUnscaled(m_pictureBox.Image, 0, 0); + } + } + + private void OnCodeChanged(object sender, EventArgs e) + { + Rip(Convert.ToInt32(m_number.Value)); + } + + private void OnExportAll(object sender, EventArgs e) + { + Directory.CreateDirectory("Export"); + + for(int f = 0; f < 256; f++) + { + Rip(f); + + string fname = String.Format("Export/{0}.png", f); + + m_pictureBox.Image.Save(fname, ImageFormat.Png); + } + } + } +} diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..c664881 --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Rip81Font +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c2c5729 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Rip81Font")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Rip81Font")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("e8f2ca1f-4d94-4eee-9865-821ca2b03a04")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2a0bc00 --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Rip81Font.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Rip81Font.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Properties/Resources.resx b/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs new file mode 100644 index 0000000..248bcfd --- /dev/null +++ b/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Rip81Font.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Properties/Settings.settings b/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Rip81Font.csproj b/Rip81Font.csproj new file mode 100644 index 0000000..d05a5bc --- /dev/null +++ b/Rip81Font.csproj @@ -0,0 +1,93 @@ + + + + + Debug + AnyCPU + {4B8CA29D-5001-4E91-B4AF-BE4DC18883B5} + WinExe + Properties + Rip81Font + Rip81Font + v4.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + Always + + + + + \ No newline at end of file diff --git a/Rip81Font.sln b/Rip81Font.sln new file mode 100644 index 0000000..5580f18 --- /dev/null +++ b/Rip81Font.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.40629.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rip81Font", "Rip81Font.csproj", "{4B8CA29D-5001-4E91-B4AF-BE4DC18883B5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4B8CA29D-5001-4E91-B4AF-BE4DC18883B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4B8CA29D-5001-4E91-B4AF-BE4DC18883B5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4B8CA29D-5001-4E91-B4AF-BE4DC18883B5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4B8CA29D-5001-4E91-B4AF-BE4DC18883B5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal -- cgit v1.2.3