From 3cd4e9864471850caf648e42003fc0de9bb18bdb Mon Sep 17 00:00:00 2001 From: Yusuf Sahin HAMZA Date: Wed, 4 Sep 2019 16:06:30 +0300 Subject: [PATCH] Initial commit --- .gitignore | 330 +++++++++++++++++++++++++++++++ Form1.Designer.cs | 151 ++++++++++++++ Form1.cs | 138 +++++++++++++ Form1.resx | 120 +++++++++++ LICENSE | 21 ++ LowLevelKeyboardHook.cs | 58 ++++++ Program.cs | 21 ++ Properties/AssemblyInfo.cs | 36 ++++ Properties/Resources.Designer.cs | 63 ++++++ Properties/Resources.resx | 117 +++++++++++ Properties/Settings.Designer.cs | 26 +++ Properties/Settings.settings | 7 + README.md | 15 ++ RSBMixer.csproj | 84 ++++++++ RSBMixer.sln | 25 +++ app.config | 3 + 16 files changed, 1215 insertions(+) create mode 100644 .gitignore create mode 100644 Form1.Designer.cs create mode 100644 Form1.cs create mode 100644 Form1.resx create mode 100644 LICENSE create mode 100644 LowLevelKeyboardHook.cs 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 README.md create mode 100644 RSBMixer.csproj create mode 100644 RSBMixer.sln create mode 100644 app.config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e759b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,330 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ +**/Properties/launchSettings.json + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..0ca0b09 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,151 @@ +using System.Windows.Forms; + +namespace RSBMixer +{ + partial class Form1 + { + /// + ///Gerekli tasarımcı değişkeni. + /// + private System.ComponentModel.IContainer components = null; + + /// + ///Kullanılan tüm kaynakları temizleyin. + /// + ///yönetilen kaynaklar dispose edilmeliyse doğru; aksi halde yanlış. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer üretilen kod + + /// + /// Tasarımcı desteği için gerekli metot - bu metodun + ///içeriğini kod düzenleyici ile değiştirmeyin. + /// + private void InitializeComponent() + { + this.button1 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.button3 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // button1 + // + this.button1.Location = new System.Drawing.Point(18, 110); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(203, 29); + this.button1.TabIndex = 0; + this.button1.Text = "Start"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.Button1_Click); + // + // button2 + // + this.button2.Location = new System.Drawing.Point(104, 70); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(111, 23); + this.button2.TabIndex = 1; + this.button2.Text = "A"; + this.button2.UseVisualStyleBackColor = true; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(15, 75); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(80, 13); + this.label1.TabIndex = 2; + this.label1.Text = "Start/Stop Key:"; + // + // button3 + // + this.button3.Location = new System.Drawing.Point(104, 12); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(111, 23); + this.button3.TabIndex = 3; + this.button3.Text = "D1"; + this.button3.UseVisualStyleBackColor = true; + // + // button4 + // + this.button4.Location = new System.Drawing.Point(104, 41); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(111, 23); + this.button4.TabIndex = 4; + this.button4.Text = "D2"; + this.button4.UseVisualStyleBackColor = true; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(15, 21); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(83, 13); + this.label2.TabIndex = 5; + this.label2.Text = "Main Laser Key:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(15, 46); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(53, 13); + this.label3.TabIndex = 6; + this.label3.Text = "RSB Key:"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(15, 152); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(44, 13); + this.label4.TabIndex = 7; + this.label4.Text = "Passive"; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(234, 177); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.button4); + this.Controls.Add(this.button3); + this.Controls.Add(this.label1); + this.Controls.Add(this.button2); + this.Controls.Add(this.button1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.Name = "Form1"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "RSB Mixer"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private Label label4; + } +} + diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..625e38e --- /dev/null +++ b/Form1.cs @@ -0,0 +1,138 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Diagnostics; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.Xml.Linq; + +namespace RSBMixer +{ + public partial class Form1 : Form + { + [System.Runtime.InteropServices.DllImport("user32.dll")] + private static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); + + private LowLevelKeyboardHook KeyboardHook = new LowLevelKeyboardHook(); + private Keys StartStopKey = Keys.A; + private Keys MainLaserKey = Keys.D1; + private Keys RSBKey = Keys.D2; + + private bool Active = false; + + public Form1() + { + InitializeComponent(); + + if (!File.Exists("settings.xml")) + { + using (var fs = File.Create("settings.xml")) + { + var xml = new XElement("Settings", + new XElement("StartStopKey", Keys.A.ToString()), + new XElement("MainLaserKey", Keys.D1.ToString()), + new XElement("RSBKey", Keys.D2.ToString()) + ); + + var info = new UTF8Encoding(true).GetBytes(xml.ToString()); + fs.Write(info, 0, info.Length); + } + } + else + { + var xml = XDocument.Load("settings.xml"); + StartStopKey = (Keys)Enum.Parse(typeof(Keys), xml.Descendants().SingleOrDefault(x => x.Name.LocalName == "StartStopKey").Value, true); + MainLaserKey = (Keys)Enum.Parse(typeof(Keys), xml.Descendants().SingleOrDefault(x => x.Name.LocalName == "MainLaserKey").Value, true); + RSBKey = (Keys)Enum.Parse(typeof(Keys), xml.Descendants().SingleOrDefault(x => x.Name.LocalName == "RSBKey").Value, true); + button2.Text = StartStopKey.ToString(); + button3.Text = MainLaserKey.ToString(); + button4.Text = RSBKey.ToString(); + } + + Task.Factory.StartNew(Tick); + KeyboardHook.OnKeyPressed += KeydownEventHandler; + } + + private void KeydownEventHandler(object sender, Keys key) + { + if (key == StartStopKey && !button2.Focused && !button3.Focused && !button4.Focused) + button1.PerformClick(); + + var settingsChanged = false; + + if (button3.Focused && key != RSBKey && key != StartStopKey) + { + button3.Text = key.ToString(); + MainLaserKey = key; + settingsChanged = true; + } + else if (button4.Focused && key != MainLaserKey && key != StartStopKey) + { + button4.Text = key.ToString(); + RSBKey = key; + settingsChanged = true; + } + else if (button2.Focused && key != RSBKey && key != MainLaserKey) + { + button2.Text = key.ToString(); + StartStopKey = key; + settingsChanged = true; + } + + if (settingsChanged) + { + var xml = new XElement("Settings", + new XElement("StartStopKey", StartStopKey), + new XElement("MainLaserKey", MainLaserKey), + new XElement("RSBKey", RSBKey) + ); + + xml.Save("settings.xml"); + } + } + + private void Button1_Click(object sender, EventArgs e) + { + PressKey(MainLaserKey); + + Active = Active ? false : true; + button1.Text = Active ? "Stop" : "Start"; + label4.Text = Active ? "Active" : "Passive"; + + button2.Enabled = Active ? false : true; + button3.Enabled = Active ? false : true; + button4.Enabled = Active ? false : true; + label1.Enabled = Active ? false : true; + label2.Enabled = Active ? false : true; + label3.Enabled = Active ? false : true; + } + + private const int KEYEVENTF_EXTENDEDKEY = 1; + private const int KEYEVENTF_KEYUP = 2; + + private void PressKey(Keys vKey) + { + keybd_event((byte)vKey, 0, KEYEVENTF_EXTENDEDKEY, 0); + keybd_event((byte)vKey, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0); + } + + private async void Tick() + { + while (true) + { + if (Active) + { + PressKey(RSBKey); + await Task.Delay(150); + PressKey(MainLaserKey); + await Task.Delay(3000); + } + } + } + } +} diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /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/LICENSE b/LICENSE new file mode 100644 index 0000000..576fcac --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Yusuf Şahin HAMZA + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/LowLevelKeyboardHook.cs b/LowLevelKeyboardHook.cs new file mode 100644 index 0000000..bd7b3d9 --- /dev/null +++ b/LowLevelKeyboardHook.cs @@ -0,0 +1,58 @@ +using System; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.Windows.Forms; + +public class LowLevelKeyboardHook +{ + private const int WH_KEYBOARD_LL = 13; + private const int WM_KEYDOWN = 0x0100; + private const int WM_SYSKEYDOWN = 0x0104; + + [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] + private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId); + + [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] + [return: MarshalAs(UnmanagedType.Bool)] + private static extern bool UnhookWindowsHookEx(IntPtr hhk); + + [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] + private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam); + + [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] + private static extern IntPtr GetModuleHandle(string lpModuleName); + + public delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam, IntPtr lParam); + + public event EventHandler OnKeyPressed; + + private LowLevelKeyboardProc _proc; + private IntPtr _hookID = IntPtr.Zero; + + public LowLevelKeyboardHook() + { + _proc = HookCallback; + _hookID = SetHook(_proc); + } + + private IntPtr SetHook(LowLevelKeyboardProc proc) + { + using (Process curProcess = Process.GetCurrentProcess()) + using (ProcessModule curModule = curProcess.MainModule) + { + return SetWindowsHookEx(WH_KEYBOARD_LL, proc, GetModuleHandle(curModule.ModuleName), 0); + } + } + + private IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam) + { + if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN || wParam == (IntPtr)WM_SYSKEYDOWN) + { + int vkCode = Marshal.ReadInt32(lParam); + + OnKeyPressed.Invoke(this, (Keys)vkCode); + } + + return CallNextHookEx(_hookID, nCode, wParam, lParam); + } +} \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..25f9fe8 --- /dev/null +++ b/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace RSBMixer +{ + static class Program + { + /// + /// Uygulamanın ana girdi noktası. + /// + [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..f6fd65b --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Bir bütünleştirilmiş koda ilişkin Genel Bilgiler aşağıdaki öznitelikler kümesiyle +// denetlenir. Bütünleştirilmiş kod ile ilişkili bilgileri değiştirmek için +// bu öznitelik değerlerini değiştirin. +[assembly: AssemblyTitle("RSBMixer")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("RSBMixer")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// ComVisible özniteliğinin false olarak ayarlanması bu bütünleştirilmiş koddaki türleri +// COM bileşenleri için görünmez yapar. Bu bütünleştirilmiş koddaki bir türe +// erişmeniz gerekirse ComVisible özniteliğini o türde true olarak ayarlayın. +[assembly: ComVisible(false)] + +// Bu proje COM'un kullanımına sunulursa, aşağıdaki GUID tür kitaplığının kimliği içindir +[assembly: Guid("cff192b6-5608-47df-908a-ef3fcf5f18b8")] + +// Bir derlemenin sürüm bilgileri aşağıdaki dört değerden oluşur: +// +// Ana Sürüm +// İkincil Sürüm +// Yapı Numarası +// Düzeltme +// +// Tüm değerleri belirtebilir veya varsayılan Derleme ve Düzeltme Numaralarını kullanmak için +// aşağıda gösterildiği gibi '*' kullanabilirsiniz: +// [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..135cf00 --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// +// Bu kod araç tarafından oluşturuldu. +// Çalışma Zamanı Sürümü:4.0.30319.42000 +// +// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve +// kod yeniden oluşturulursa kaybolur. +// +//------------------------------------------------------------------------------ + +namespace RSBMixer.Properties { + using System; + + + /// + /// Yerelleştirilmiş dizeleri aramak gibi işlemler için, türü kesin olarak belirtilmiş kaynak sınıfı. + /// + // Bu sınıf ResGen veya Visual Studio gibi bir araç kullanılarak StronglyTypedResourceBuilder + // sınıfı tarafından otomatik olarak oluşturuldu. + // Üye eklemek veya kaldırmak için .ResX dosyanızı düzenleyin ve sonra da ResGen + // komutunu /str seçeneğiyle yeniden çalıştırın veya VS projenizi yeniden oluşturun. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.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() { + } + + /// + /// Bu sınıf tarafından kullanılan, önbelleğe alınmış ResourceManager örneğini döndürür. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RSBMixer.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Tümü için geçerli iş parçacığının CurrentUICulture özelliğini geçersiz kular + /// CurrentUICulture özelliğini tüm kaynak aramaları için geçersiz kılar. + /// + [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..af7dbeb --- /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..3603c2b --- /dev/null +++ b/Properties/Settings.Designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// Bu kod araç tarafından oluşturuldu. +// Çalışma Zamanı Sürümü:4.0.30319.42000 +// +// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve +// kod yeniden oluşturulursa kaybolur. +// +//------------------------------------------------------------------------------ + +namespace RSBMixer.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.2.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..3964565 --- /dev/null +++ b/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..25d48ab --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +## DO-RSBMixer +A cheat, tool or whatever for a browser flash game named DarkOrbit. + +## How to use? +- Download latest release from [releases](https://github.com/yusufsahinhamza/do-rsbmixer/releases). +- Make sure you installed [.NET Framework 4.5.2](https://dotnet.microsoft.com/download/dotnet-framework/net452). +- Open **RSBMixer.exe**. +- Set Main Laser Key, RSB Key and Start/Stop Key. +- Go to DarkOrbit and enjoy. + +## Contributing +Create Issue for reporting bugs or suggestions and create Pull Request for your contributions, fixes, improves. + +## License +[MIT](https://choosealicense.com/licenses/mit/) diff --git a/RSBMixer.csproj b/RSBMixer.csproj new file mode 100644 index 0000000..7e9d736 --- /dev/null +++ b/RSBMixer.csproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + {CFF192B6-5608-47DF-908A-EF3FCF5F18B8} + WinExe + RSBMixer + RSBMixer + v4.5.2 + 512 + true + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + \ No newline at end of file diff --git a/RSBMixer.sln b/RSBMixer.sln new file mode 100644 index 0000000..5bff1b2 --- /dev/null +++ b/RSBMixer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29215.179 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RSBMixer", "RSBMixer.csproj", "{CFF192B6-5608-47DF-908A-EF3FCF5F18B8}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CFF192B6-5608-47DF-908A-EF3FCF5F18B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CFF192B6-5608-47DF-908A-EF3FCF5F18B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CFF192B6-5608-47DF-908A-EF3FCF5F18B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CFF192B6-5608-47DF-908A-EF3FCF5F18B8}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {23C7256E-570A-467C-BF82-52019788A397} + EndGlobalSection +EndGlobal diff --git a/app.config b/app.config new file mode 100644 index 0000000..ff99501 --- /dev/null +++ b/app.config @@ -0,0 +1,3 @@ + + +