diff --git a/networkPaint.sln b/networkPaint.sln new file mode 100644 index 0000000..28fa3c4 --- /dev/null +++ b/networkPaint.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "networkPaint", "networkPaint\networkPaint.csproj", "{EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B7E5C09B-D943-4658-B2E3-561C781B23F7} + EndGlobalSection +EndGlobal diff --git a/networkPaint/MainForm.Designer.cs b/networkPaint/MainForm.Designer.cs new file mode 100644 index 0000000..c64b689 --- /dev/null +++ b/networkPaint/MainForm.Designer.cs @@ -0,0 +1,141 @@ +namespace networkPaint +{ + partial class MainForm + { + /// + /// 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.components = new System.ComponentModel.Container(); + this.paintArea = new System.Windows.Forms.PictureBox(); + this.timer = new System.Windows.Forms.Timer(this.components); + this.colorDialog = new System.Windows.Forms.ColorDialog(); + this.brushSizeNumericUpDown = new System.Windows.Forms.NumericUpDown(); + this.changeColorButton = new System.Windows.Forms.Button(); + this.urlTextBox = new System.Windows.Forms.TextBox(); + this.setUrlButton = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.paintArea)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.brushSizeNumericUpDown)).BeginInit(); + this.SuspendLayout(); + // + // paintArea + // + this.paintArea.BackColor = System.Drawing.Color.White; + this.paintArea.Location = new System.Drawing.Point(12, 38); + this.paintArea.Name = "paintArea"; + this.paintArea.Size = new System.Drawing.Size(640, 480); + this.paintArea.TabIndex = 0; + this.paintArea.TabStop = false; + this.paintArea.Click += new System.EventHandler(this.paintArea_Click); + // + // timer + // + this.timer.Tick += new System.EventHandler(this.timer_Tick); + // + // brushSizeNumericUpDown + // + this.brushSizeNumericUpDown.Location = new System.Drawing.Point(118, 12); + this.brushSizeNumericUpDown.Maximum = new decimal(new int[] { + 50, + 0, + 0, + 0}); + this.brushSizeNumericUpDown.Minimum = new decimal(new int[] { + 1, + 0, + 0, + 0}); + this.brushSizeNumericUpDown.Name = "brushSizeNumericUpDown"; + this.brushSizeNumericUpDown.Size = new System.Drawing.Size(50, 20); + this.brushSizeNumericUpDown.TabIndex = 2; + this.brushSizeNumericUpDown.Value = new decimal(new int[] { + 5, + 0, + 0, + 0}); + // + // changeColorButton + // + this.changeColorButton.Location = new System.Drawing.Point(12, 12); + this.changeColorButton.Name = "changeColorButton"; + this.changeColorButton.Size = new System.Drawing.Size(100, 20); + this.changeColorButton.TabIndex = 3; + this.changeColorButton.Text = "Change Color"; + this.changeColorButton.UseVisualStyleBackColor = true; + this.changeColorButton.Click += new System.EventHandler(this.changeColorButton_Click); + // + // urlTextBox + // + this.urlTextBox.Location = new System.Drawing.Point(174, 12); + this.urlTextBox.Name = "urlTextBox"; + this.urlTextBox.Size = new System.Drawing.Size(372, 20); + this.urlTextBox.TabIndex = 4; + this.urlTextBox.Text = "http://kawaiizenbo.me/toys/networkpaint/"; + // + // setUrlButton + // + this.setUrlButton.Location = new System.Drawing.Point(552, 12); + this.setUrlButton.Name = "setUrlButton"; + this.setUrlButton.Size = new System.Drawing.Size(100, 20); + this.setUrlButton.TabIndex = 5; + this.setUrlButton.Text = "Set Endpoint"; + this.setUrlButton.UseVisualStyleBackColor = true; + this.setUrlButton.Click += new System.EventHandler(this.setUrlButton_Click); + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(664, 530); + this.Controls.Add(this.setUrlButton); + this.Controls.Add(this.urlTextBox); + this.Controls.Add(this.changeColorButton); + this.Controls.Add(this.brushSizeNumericUpDown); + this.Controls.Add(this.paintArea); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.MaximizeBox = false; + this.Name = "MainForm"; + this.ShowIcon = false; + this.Text = "Network Paint"; + this.Load += new System.EventHandler(this.MainForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.paintArea)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.brushSizeNumericUpDown)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.PictureBox paintArea; + private System.Windows.Forms.Timer timer; + private System.Windows.Forms.ColorDialog colorDialog; + private System.Windows.Forms.NumericUpDown brushSizeNumericUpDown; + private System.Windows.Forms.Button changeColorButton; + private System.Windows.Forms.TextBox urlTextBox; + private System.Windows.Forms.Button setUrlButton; + } +} + diff --git a/networkPaint/MainForm.cs b/networkPaint/MainForm.cs new file mode 100644 index 0000000..f2603cd --- /dev/null +++ b/networkPaint/MainForm.cs @@ -0,0 +1,99 @@ +using System; +using System.Collections.Specialized; +using System.Drawing; +using System.Net; +using System.Windows.Forms; + +namespace networkPaint +{ + public partial class MainForm : Form + { + Color color; + Random r = new Random(); + WebClient client = new WebClient(); + Bitmap bitmap; + Graphics graphics; + string url = "http://kawaiizenbo.me/toys/networkpaint/"; + public MainForm() + { + InitializeComponent(); + color = intToRGB(r.Next(0, 0xFFFFFF)); + bitmap = new Bitmap(640, 480); + paintArea.Image = bitmap; + graphics = Graphics.FromImage(bitmap); + } + + private void paintArea_Click(object sender, EventArgs e) + { + MouseEventArgs em = (MouseEventArgs)e; + NameValueCollection values = new NameValueCollection(); + values["color"] = rgbToInt(color).ToString(); + values["x"] = em.X.ToString(); + values["y"] = em.Y.ToString(); + values["size"] = brushSizeNumericUpDown.Value.ToString(); + client.UploadValues(url + "post.php", values); + } + + private void MainForm_Load(object sender, EventArgs e) + { + timer.Start(); + } + + private void timer_Tick(object sender, EventArgs e) + { + string responseString = client.DownloadString(url + "data.ppf"); + client.Dispose(); + if (responseString.Trim() == "") return; + foreach (string packet in responseString.Split(';')) + { + try + { + if (packet.Trim() == "") continue; + int color = int.Parse(packet.Split(',')[0]); + int x = int.Parse(packet.Split(',')[1]); + int y = int.Parse(packet.Split(',')[2]); + int size = int.Parse(packet.Split(',')[3]); + graphics.FillEllipse(new SolidBrush(intToRGB(color)), new Rectangle(x - size / 2, y - size / 2, size, size)); + } + catch (Exception) + { + continue; + } + } + paintArea.Image = bitmap; + } + + public static int rgbToInt(Color color) + { + return ((255 & 0x0ff) << 24) | ((color.R & 0x0ff) << 16) | ((color.G & 0x0ff) << 8) | (color.B & 0x0ff); + } + + public static Color intToRGB(int color) + { + return Color.FromArgb(0xFF, (color & 0x00FF0000) >> 16, (color & 0x0000FF00) >> 8, color & 0x000000FF); + } + + private void changeColorButton_Click(object sender, EventArgs e) + { + colorDialog.ShowDialog(); + color = colorDialog.Color; + } + + private void setUrlButton_Click(object sender, EventArgs e) + { + try + { + if (client.DownloadString(urlTextBox.Text + "/valid.txt").Trim() != "networkPaint") throw new Exception(); + } + catch (Exception) + { + MessageBox.Show("This is not a valid networkPaint endpoint."); + urlTextBox.Text = url; + return; + } + string tempURL = urlTextBox.Text; + if (!tempURL.EndsWith("")) tempURL += "/"; + url = tempURL; + } + } +} diff --git a/networkPaint/MainForm.resx b/networkPaint/MainForm.resx new file mode 100644 index 0000000..524e6c3 --- /dev/null +++ b/networkPaint/MainForm.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 17, 17 + + + 220, 17 + + \ No newline at end of file diff --git a/networkPaint/Program.cs b/networkPaint/Program.cs new file mode 100644 index 0000000..ad528a0 --- /dev/null +++ b/networkPaint/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace networkPaint +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} diff --git a/networkPaint/Properties/AssemblyInfo.cs b/networkPaint/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..ab32deb --- /dev/null +++ b/networkPaint/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +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("networkPaint")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("networkPaint")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[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("eb72f45c-7fe8-4d6c-9d0b-0d02bca82adc")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/networkPaint/Properties/Resources.Designer.cs b/networkPaint/Properties/Resources.Designer.cs new file mode 100644 index 0000000..8cc0c96 --- /dev/null +++ b/networkPaint/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 networkPaint.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("networkPaint.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/networkPaint/Properties/Resources.resx b/networkPaint/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/networkPaint/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/networkPaint/Properties/Settings.Designer.cs b/networkPaint/Properties/Settings.Designer.cs new file mode 100644 index 0000000..7c8ab0f --- /dev/null +++ b/networkPaint/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 networkPaint.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/networkPaint/Properties/Settings.settings b/networkPaint/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/networkPaint/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/networkPaint/networkPaint.csproj b/networkPaint/networkPaint.csproj new file mode 100644 index 0000000..a176d6b --- /dev/null +++ b/networkPaint/networkPaint.csproj @@ -0,0 +1,74 @@ + + + + + Debug + AnyCPU + {EB72F45C-7FE8-4D6C-9D0B-0D02BCA82ADC} + WinExe + networkPaint + networkPaint + v2.0 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + Form + + + MainForm.cs + + + + + MainForm.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + \ No newline at end of file