Add files via upload

This commit is contained in:
Bouletmarc 2022-11-04 08:52:23 -04:00 committed by GitHub
parent 0ea2f5c390
commit a968237f4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
42 changed files with 58695 additions and 0 deletions

22
FixDatalog.sln Normal file
View File

@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FixDatalog", "FixDatalog\FixDatalog.csproj", "{C275CB99-5903-46C1-B6DB-136D3BA067A6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C275CB99-5903-46C1-B6DB-136D3BA067A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C275CB99-5903-46C1-B6DB-136D3BA067A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C275CB99-5903-46C1-B6DB-136D3BA067A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C275CB99-5903-46C1-B6DB-136D3BA067A6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

24333
FixDatalog/ASM_Bytes.cs Normal file

File diff suppressed because it is too large Load Diff

6
FixDatalog/App.config Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>

15117
FixDatalog/DASM_Bytes.cs Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C275CB99-5903-46C1-B6DB-136D3BA067A6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FixDatalog</RootNamespace>
<AssemblyName>FixDatalog2</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ASM_Bytes.cs" />
<Compile Include="DASM_Bytes.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="FormEdit.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormEdit.Designer.cs">
<DependentUpon>FormEdit.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormEdit.resx">
<DependentUpon>FormEdit.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

609
FixDatalog/Form1.Designer.cs generated Normal file
View File

@ -0,0 +1,609 @@
namespace FixDatalog
{
partial class Form1
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.chk_Reloc = new System.Windows.Forms.CheckBox();
this.chk_FixDTL = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.txtLastTable = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.panel1 = new System.Windows.Forms.Panel();
this.chk_GenerateDTInfos = new System.Windows.Forms.CheckBox();
this.txtAutoCopyVersion = new System.Windows.Forms.TextBox();
this.chk_AutoCopy = new System.Windows.Forms.CheckBox();
this.chk_OverLong = new System.Windows.Forms.CheckBox();
this.chk_Quick = new System.Windows.Forms.CheckBox();
this.chk_Generate = new System.Windows.Forms.CheckBox();
this.chk_RelocUnused = new System.Windows.Forms.CheckBox();
this.chk_Array = new System.Windows.Forms.CheckBox();
this.chk_Word = new System.Windows.Forms.CheckBox();
this.chk_SingleByte = new System.Windows.Forms.CheckBox();
this.panel3 = new System.Windows.Forms.Panel();
this.txt_BMTuneLocation = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.chk_Quit = new System.Windows.Forms.CheckBox();
this.chk_FreeSpace = new System.Windows.Forms.CheckBox();
this.chk_ASM = new System.Windows.Forms.CheckBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txt_Logs = new System.Windows.Forms.TextBox();
this.button4 = new System.Windows.Forms.Button();
this.panel4 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.label7 = new System.Windows.Forms.Label();
this.chk_Do111 = new System.Windows.Forms.CheckBox();
this.label8 = new System.Windows.Forms.Label();
this.button5 = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.panel3.SuspendLayout();
this.panel4.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(10, 6);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(109, 17);
this.checkBox1.TabIndex = 0;
this.checkBox1.Text = "Decrypt DP Jump";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// button1
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.Color.Blue;
this.button1.Location = new System.Drawing.Point(319, 375);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(245, 35);
this.button1.TabIndex = 1;
this.button1.Text = "Apply";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(39, 6);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(451, 20);
this.textBox1.TabIndex = 2;
this.textBox1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.textBox1_MouseDoubleClick);
//
// openFileDialog1
//
this.openFileDialog1.Filter = "Binary|*.bin|Assembly|*.asm";
this.openFileDialog1.Title = "Open file";
//
// chk_Reloc
//
this.chk_Reloc.AutoSize = true;
this.chk_Reloc.Checked = true;
this.chk_Reloc.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Reloc.Location = new System.Drawing.Point(10, 58);
this.chk_Reloc.Name = "chk_Reloc";
this.chk_Reloc.Size = new System.Drawing.Size(179, 17);
this.chk_Reloc.TabIndex = 3;
this.chk_Reloc.Text = "Parameters Relocation(V1.14++)";
this.chk_Reloc.UseVisualStyleBackColor = true;
//
// chk_FixDTL
//
this.chk_FixDTL.AutoSize = true;
this.chk_FixDTL.Checked = true;
this.chk_FixDTL.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_FixDTL.Location = new System.Drawing.Point(10, 26);
this.chk_FixDTL.Name = "chk_FixDTL";
this.chk_FixDTL.Size = new System.Drawing.Size(129, 17);
this.chk_FixDTL.TabIndex = 4;
this.chk_FixDTL.Text = "Fix Datalog (BMTune)";
this.chk_FixDTL.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(73, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Last Table At:";
//
// txtLastTable
//
this.txtLastTable.Location = new System.Drawing.Point(83, 5);
this.txtLastTable.Name = "txtLastTable";
this.txtLastTable.Size = new System.Drawing.Size(62, 20);
this.txtLastTable.TabIndex = 6;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(7, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(26, 13);
this.label2.TabIndex = 7;
this.label2.Text = "File:";
//
// progressBar1
//
this.progressBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.progressBar1.Location = new System.Drawing.Point(0, 467);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(825, 10);
this.progressBar1.TabIndex = 8;
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel1.Controls.Add(this.chk_GenerateDTInfos);
this.panel1.Controls.Add(this.checkBox1);
this.panel1.Controls.Add(this.chk_FixDTL);
this.panel1.Location = new System.Drawing.Point(319, 157);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(245, 68);
this.panel1.TabIndex = 9;
//
// chk_GenerateDTInfos
//
this.chk_GenerateDTInfos.AutoSize = true;
this.chk_GenerateDTInfos.Checked = true;
this.chk_GenerateDTInfos.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_GenerateDTInfos.Location = new System.Drawing.Point(10, 46);
this.chk_GenerateDTInfos.Name = "chk_GenerateDTInfos";
this.chk_GenerateDTInfos.Size = new System.Drawing.Size(186, 17);
this.chk_GenerateDTInfos.TabIndex = 6;
this.chk_GenerateDTInfos.Text = "Generate Datalog Infos (BMTune)";
this.chk_GenerateDTInfos.UseVisualStyleBackColor = true;
//
// txtAutoCopyVersion
//
this.txtAutoCopyVersion.Location = new System.Drawing.Point(208, 136);
this.txtAutoCopyVersion.Name = "txtAutoCopyVersion";
this.txtAutoCopyVersion.Size = new System.Drawing.Size(31, 20);
this.txtAutoCopyVersion.TabIndex = 17;
this.txtAutoCopyVersion.Text = "114";
//
// chk_AutoCopy
//
this.chk_AutoCopy.AutoSize = true;
this.chk_AutoCopy.Checked = true;
this.chk_AutoCopy.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_AutoCopy.Location = new System.Drawing.Point(30, 138);
this.chk_AutoCopy.Name = "chk_AutoCopy";
this.chk_AutoCopy.Size = new System.Drawing.Size(181, 17);
this.chk_AutoCopy.TabIndex = 9;
this.chk_AutoCopy.Text = "AutoCopy \'Class32_Locations\' V:";
this.chk_AutoCopy.UseVisualStyleBackColor = true;
//
// chk_OverLong
//
this.chk_OverLong.AutoSize = true;
this.chk_OverLong.Checked = true;
this.chk_OverLong.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_OverLong.Location = new System.Drawing.Point(30, 118);
this.chk_OverLong.Name = "chk_OverLong";
this.chk_OverLong.Size = new System.Drawing.Size(163, 17);
this.chk_OverLong.TabIndex = 8;
this.chk_OverLong.Text = "Over Check Long Reference";
this.chk_OverLong.UseVisualStyleBackColor = true;
//
// chk_Quick
//
this.chk_Quick.AutoSize = true;
this.chk_Quick.Checked = true;
this.chk_Quick.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Quick.Location = new System.Drawing.Point(30, 98);
this.chk_Quick.Name = "chk_Quick";
this.chk_Quick.Size = new System.Drawing.Size(109, 17);
this.chk_Quick.TabIndex = 7;
this.chk_Quick.Text = "Quick Generation";
this.chk_Quick.UseVisualStyleBackColor = true;
//
// chk_Generate
//
this.chk_Generate.AutoSize = true;
this.chk_Generate.Checked = true;
this.chk_Generate.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Generate.Location = new System.Drawing.Point(10, 78);
this.chk_Generate.Name = "chk_Generate";
this.chk_Generate.Size = new System.Drawing.Size(175, 17);
this.chk_Generate.TabIndex = 5;
this.chk_Generate.Text = "Generate Relocations(V1.14++)";
this.chk_Generate.UseVisualStyleBackColor = true;
//
// chk_RelocUnused
//
this.chk_RelocUnused.AutoSize = true;
this.chk_RelocUnused.Checked = true;
this.chk_RelocUnused.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_RelocUnused.Location = new System.Drawing.Point(13, 88);
this.chk_RelocUnused.Name = "chk_RelocUnused";
this.chk_RelocUnused.Size = new System.Drawing.Size(175, 17);
this.chk_RelocUnused.TabIndex = 8;
this.chk_RelocUnused.Text = "Relocate Unused Bytes/Tables";
this.chk_RelocUnused.UseVisualStyleBackColor = true;
//
// chk_Array
//
this.chk_Array.AutoSize = true;
this.chk_Array.Checked = true;
this.chk_Array.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Array.Location = new System.Drawing.Point(13, 68);
this.chk_Array.Name = "chk_Array";
this.chk_Array.Size = new System.Drawing.Size(152, 17);
this.chk_Array.TabIndex = 7;
this.chk_Array.Text = "Remove Bytes Array Table";
this.chk_Array.UseVisualStyleBackColor = true;
//
// chk_Word
//
this.chk_Word.AutoSize = true;
this.chk_Word.Checked = true;
this.chk_Word.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Word.Location = new System.Drawing.Point(13, 48);
this.chk_Word.Name = "chk_Word";
this.chk_Word.Size = new System.Drawing.Size(125, 17);
this.chk_Word.TabIndex = 6;
this.chk_Word.Text = "Remove Word Table";
this.chk_Word.UseVisualStyleBackColor = true;
this.chk_Word.CheckedChanged += new System.EventHandler(this.chk_Word_CheckedChanged);
//
// chk_SingleByte
//
this.chk_SingleByte.AutoSize = true;
this.chk_SingleByte.Checked = true;
this.chk_SingleByte.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_SingleByte.Location = new System.Drawing.Point(13, 28);
this.chk_SingleByte.Name = "chk_SingleByte";
this.chk_SingleByte.Size = new System.Drawing.Size(152, 17);
this.chk_SingleByte.TabIndex = 5;
this.chk_SingleByte.Text = "Remove Single Byte Table";
this.chk_SingleByte.UseVisualStyleBackColor = true;
//
// panel3
//
this.panel3.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel3.Controls.Add(this.txt_BMTuneLocation);
this.panel3.Controls.Add(this.label6);
this.panel3.Controls.Add(this.textBox1);
this.panel3.Controls.Add(this.label2);
this.panel3.Location = new System.Drawing.Point(319, 34);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(496, 54);
this.panel3.TabIndex = 11;
//
// txt_BMTuneLocation
//
this.txt_BMTuneLocation.Location = new System.Drawing.Point(144, 28);
this.txt_BMTuneLocation.Name = "txt_BMTuneLocation";
this.txt_BMTuneLocation.Size = new System.Drawing.Size(346, 20);
this.txt_BMTuneLocation.TabIndex = 10;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(7, 31);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(131, 13);
this.label6.TabIndex = 11;
this.label6.Text = "BMTune Project Location:";
//
// button3
//
this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button3.ForeColor = System.Drawing.Color.Blue;
this.button3.Location = new System.Drawing.Point(193, 5);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(46, 21);
this.button3.TabIndex = 16;
this.button3.Text = "tbl_5f2f";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.Button3_Click);
//
// button2
//
this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button2.ForeColor = System.Drawing.Color.Blue;
this.button2.Location = new System.Drawing.Point(148, 5);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(46, 21);
this.button2.TabIndex = 15;
this.button2.Text = "tbl_5f03";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.Button2_Click);
//
// chk_Quit
//
this.chk_Quit.AutoSize = true;
this.chk_Quit.Checked = true;
this.chk_Quit.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Quit.Location = new System.Drawing.Point(386, 235);
this.chk_Quit.Name = "chk_Quit";
this.chk_Quit.Size = new System.Drawing.Size(101, 17);
this.chk_Quit.TabIndex = 9;
this.chk_Quit.Text = "Quit when done";
this.chk_Quit.UseVisualStyleBackColor = true;
//
// chk_FreeSpace
//
this.chk_FreeSpace.AutoSize = true;
this.chk_FreeSpace.Checked = true;
this.chk_FreeSpace.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_FreeSpace.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chk_FreeSpace.ForeColor = System.Drawing.Color.Blue;
this.chk_FreeSpace.Location = new System.Drawing.Point(46, 169);
this.chk_FreeSpace.Name = "chk_FreeSpace";
this.chk_FreeSpace.Size = new System.Drawing.Size(154, 17);
this.chk_FreeSpace.TabIndex = 8;
this.chk_FreeSpace.Text = "ENABLE FREE SPACE";
this.chk_FreeSpace.UseVisualStyleBackColor = true;
this.chk_FreeSpace.CheckedChanged += new System.EventHandler(this.Chk_FreeSpace_CheckedChanged);
//
// chk_ASM
//
this.chk_ASM.AutoSize = true;
this.chk_ASM.Checked = true;
this.chk_ASM.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_ASM.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chk_ASM.ForeColor = System.Drawing.Color.Green;
this.chk_ASM.Location = new System.Drawing.Point(334, 129);
this.chk_ASM.Name = "chk_ASM";
this.chk_ASM.Size = new System.Drawing.Size(213, 17);
this.chk_ASM.TabIndex = 5;
this.chk_ASM.Text = "ASSEMBLE/DISASSEMBLE FILE";
this.chk_ASM.UseVisualStyleBackColor = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(507, 7);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(119, 20);
this.label3.TabIndex = 10;
this.label3.Text = "Main Settings";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(363, 103);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(148, 16);
this.label4.TabIndex = 12;
this.label4.Text = "ASM/DASM Settings";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.Color.Blue;
this.label5.Location = new System.Drawing.Point(33, 5);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(136, 15);
this.label5.TabIndex = 13;
this.label5.Text = "Free Space Settings";
//
// txt_Logs
//
this.txt_Logs.Location = new System.Drawing.Point(11, 9);
this.txt_Logs.Multiline = true;
this.txt_Logs.Name = "txt_Logs";
this.txt_Logs.ReadOnly = true;
this.txt_Logs.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txt_Logs.Size = new System.Drawing.Size(302, 455);
this.txt_Logs.TabIndex = 14;
//
// button4
//
this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button4.ForeColor = System.Drawing.Color.Red;
this.button4.Location = new System.Drawing.Point(319, 438);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(245, 26);
this.button4.TabIndex = 15;
this.button4.Text = "Reload BACKUP";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.Button4_Click);
//
// panel4
//
this.panel4.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel4.Controls.Add(this.panel2);
this.panel4.Controls.Add(this.button3);
this.panel4.Controls.Add(this.label7);
this.panel4.Controls.Add(this.chk_FreeSpace);
this.panel4.Controls.Add(this.button2);
this.panel4.Controls.Add(this.txtAutoCopyVersion);
this.panel4.Controls.Add(this.chk_Reloc);
this.panel4.Controls.Add(this.chk_AutoCopy);
this.panel4.Controls.Add(this.txtLastTable);
this.panel4.Controls.Add(this.label1);
this.panel4.Controls.Add(this.chk_Generate);
this.panel4.Controls.Add(this.chk_OverLong);
this.panel4.Controls.Add(this.chk_Quick);
this.panel4.Location = new System.Drawing.Point(570, 157);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(245, 307);
this.panel4.TabIndex = 16;
//
// panel2
//
this.panel2.BackColor = System.Drawing.SystemColors.Control;
this.panel2.Controls.Add(this.label5);
this.panel2.Controls.Add(this.chk_SingleByte);
this.panel2.Controls.Add(this.chk_Word);
this.panel2.Controls.Add(this.chk_RelocUnused);
this.panel2.Controls.Add(this.chk_Array);
this.panel2.Location = new System.Drawing.Point(16, 191);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(214, 110);
this.panel2.TabIndex = 17;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.Color.Blue;
this.label7.Location = new System.Drawing.Point(23, 36);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(191, 15);
this.label7.TabIndex = 17;
this.label7.Text = "ASM/DASM V1.14++ Settings";
//
// chk_Do111
//
this.chk_Do111.AutoSize = true;
this.chk_Do111.Checked = true;
this.chk_Do111.CheckState = System.Windows.Forms.CheckState.Checked;
this.chk_Do111.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chk_Do111.ForeColor = System.Drawing.Color.Green;
this.chk_Do111.Location = new System.Drawing.Point(609, 129);
this.chk_Do111.Name = "chk_Do111";
this.chk_Do111.Size = new System.Drawing.Size(177, 17);
this.chk_Do111.TabIndex = 7;
this.chk_Do111.Text = "ACTIVATE V1.14++ MODS";
this.chk_Do111.UseVisualStyleBackColor = true;
this.chk_Do111.CheckedChanged += new System.EventHandler(this.Chk_Do111_CheckedChanged);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.Location = new System.Drawing.Point(635, 103);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(122, 16);
this.label8.TabIndex = 17;
this.label8.Text = "V1.14++ Settings";
this.label8.Click += new System.EventHandler(this.label8_Click);
//
// button5
//
this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button5.ForeColor = System.Drawing.SystemColors.ControlText;
this.button5.Location = new System.Drawing.Point(319, 411);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(245, 26);
this.button5.TabIndex = 18;
this.button5.Text = "Generate Infos Only";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(825, 477);
this.Controls.Add(this.button5);
this.Controls.Add(this.label8);
this.Controls.Add(this.chk_Do111);
this.Controls.Add(this.chk_Quit);
this.Controls.Add(this.panel4);
this.Controls.Add(this.button4);
this.Controls.Add(this.chk_ASM);
this.Controls.Add(this.txt_Logs);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel1);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "Honda Binary Decryptor/Encryptor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel4.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.CheckBox chk_Reloc;
private System.Windows.Forms.CheckBox chk_FixDTL;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtLastTable;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.CheckBox chk_RelocUnused;
private System.Windows.Forms.CheckBox chk_Array;
private System.Windows.Forms.CheckBox chk_Word;
private System.Windows.Forms.CheckBox chk_SingleByte;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.CheckBox chk_Quit;
private System.Windows.Forms.CheckBox chk_FreeSpace;
private System.Windows.Forms.CheckBox chk_ASM;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txt_Logs;
private System.Windows.Forms.CheckBox chk_Generate;
private System.Windows.Forms.TextBox txt_BMTuneLocation;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.CheckBox chk_GenerateDTInfos;
private System.Windows.Forms.CheckBox chk_Quick;
private System.Windows.Forms.CheckBox chk_OverLong;
private System.Windows.Forms.CheckBox chk_AutoCopy;
private System.Windows.Forms.TextBox txtAutoCopyVersion;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Panel panel4;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.CheckBox chk_Do111;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Button button5;
}
}

2534
FixDatalog/Form1.cs Normal file

File diff suppressed because it is too large Load Diff

123
FixDatalog/Form1.resx Normal file
View File

@ -0,0 +1,123 @@
<?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>
<metadata name="openFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

396
FixDatalog/FormEdit.Designer.cs generated Normal file
View File

@ -0,0 +1,396 @@
namespace FixDatalog
{
partial class FormEdit
{
/// <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.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.lblLine = new System.Windows.Forms.Label();
this.lblSearchHEX = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.lblFoundHEX = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.lblParamFrom = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.lblBefore = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.lblAfter = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.label14 = new System.Windows.Forms.Label();
this.txtManualLine = new System.Windows.Forms.TextBox();
this.button3 = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.button4 = new System.Windows.Forms.Button();
this.txtASM_Full = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.button5 = new System.Windows.Forms.Button();
this.button6 = new System.Windows.Forms.Button();
this.button7 = new System.Windows.Forms.Button();
this.panel3 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.Red;
this.label1.Location = new System.Drawing.Point(93, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(247, 20);
this.label1.TabIndex = 0;
this.label1.Text = "ERROR FINDING COMMAND";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(14, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(30, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Line:";
//
// lblLine
//
this.lblLine.AutoSize = true;
this.lblLine.Location = new System.Drawing.Point(107, 9);
this.lblLine.Name = "lblLine";
this.lblLine.Size = new System.Drawing.Size(35, 13);
this.lblLine.TabIndex = 2;
this.lblLine.Text = "label3";
//
// lblSearchHEX
//
this.lblSearchHEX.AutoSize = true;
this.lblSearchHEX.Location = new System.Drawing.Point(107, 32);
this.lblSearchHEX.Name = "lblSearchHEX";
this.lblSearchHEX.Size = new System.Drawing.Size(35, 13);
this.lblSearchHEX.TabIndex = 4;
this.lblSearchHEX.Text = "label4";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(14, 32);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(84, 13);
this.label5.TabIndex = 3;
this.label5.Text = "Search for HEX:";
//
// lblFoundHEX
//
this.lblFoundHEX.AutoSize = true;
this.lblFoundHEX.Location = new System.Drawing.Point(324, 32);
this.lblFoundHEX.Name = "lblFoundHEX";
this.lblFoundHEX.Size = new System.Drawing.Size(35, 13);
this.lblFoundHEX.TabIndex = 6;
this.lblFoundHEX.Text = "label6";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(231, 32);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 13);
this.label7.TabIndex = 5;
this.label7.Text = "HEX Found:";
//
// lblParamFrom
//
this.lblParamFrom.AutoSize = true;
this.lblParamFrom.Location = new System.Drawing.Point(324, 9);
this.lblParamFrom.Name = "lblParamFrom";
this.lblParamFrom.Size = new System.Drawing.Size(35, 13);
this.lblParamFrom.TabIndex = 8;
this.lblParamFrom.Text = "label8";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(231, 9);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(84, 13);
this.label9.TabIndex = 7;
this.label9.Text = "Parameter From:";
//
// lblBefore
//
this.lblBefore.AutoSize = true;
this.lblBefore.Location = new System.Drawing.Point(186, 9);
this.lblBefore.Name = "lblBefore";
this.lblBefore.Size = new System.Drawing.Size(41, 13);
this.lblBefore.TabIndex = 10;
this.lblBefore.Text = "label10";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(14, 9);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(147, 13);
this.label11.TabIndex = 9;
this.label11.Text = "Matching HEX before at Line:";
//
// lblAfter
//
this.lblAfter.AutoSize = true;
this.lblAfter.Location = new System.Drawing.Point(186, 31);
this.lblAfter.Name = "lblAfter";
this.lblAfter.Size = new System.Drawing.Size(41, 13);
this.lblAfter.TabIndex = 12;
this.lblAfter.Text = "label12";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(14, 31);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(138, 13);
this.label13.TabIndex = 11;
this.label13.Text = "Matching HEX after at Line:";
//
// button1
//
this.button1.Location = new System.Drawing.Point(471, 106);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(128, 23);
this.button1.TabIndex = 13;
this.button1.Text = "< Set before location";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.Button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(605, 106);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(119, 23);
this.button2.TabIndex = 14;
this.button2.Text = "Set after location >";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.Button2_Click);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(12, 112);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(134, 13);
this.label14.TabIndex = 15;
this.label14.Text = "Set Manually Line Number:";
//
// txtManualLine
//
this.txtManualLine.Location = new System.Drawing.Point(178, 109);
this.txtManualLine.Name = "txtManualLine";
this.txtManualLine.Size = new System.Drawing.Size(87, 20);
this.txtManualLine.TabIndex = 16;
//
// button3
//
this.button3.Location = new System.Drawing.Point(271, 107);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(142, 23);
this.button3.TabIndex = 17;
this.button3.Text = "Set manual location";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.Button3_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.lblLine);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.lblSearchHEX);
this.panel1.Controls.Add(this.label7);
this.panel1.Controls.Add(this.lblFoundHEX);
this.panel1.Controls.Add(this.label9);
this.panel1.Controls.Add(this.lblParamFrom);
this.panel1.Location = new System.Drawing.Point(12, 38);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(516, 58);
this.panel1.TabIndex = 18;
//
// panel2
//
this.panel2.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel2.Controls.Add(this.label11);
this.panel2.Controls.Add(this.lblBefore);
this.panel2.Controls.Add(this.label13);
this.panel2.Controls.Add(this.lblAfter);
this.panel2.Location = new System.Drawing.Point(534, 38);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(346, 58);
this.panel2.TabIndex = 19;
//
// button4
//
this.button4.ForeColor = System.Drawing.Color.Red;
this.button4.Location = new System.Drawing.Point(761, 106);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(119, 23);
this.button4.TabIndex = 20;
this.button4.Text = "Remove Location";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.Button4_Click);
//
// txtASM_Full
//
this.txtASM_Full.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtASM_Full.Location = new System.Drawing.Point(12, 192);
this.txtASM_Full.Multiline = true;
this.txtASM_Full.Name = "txtASM_Full";
this.txtASM_Full.ReadOnly = true;
this.txtASM_Full.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtASM_Full.Size = new System.Drawing.Size(868, 314);
this.txtASM_Full.TabIndex = 23;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.SystemColors.ControlLight;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.Red;
this.label4.Location = new System.Drawing.Point(369, 8);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(123, 20);
this.label4.TabIndex = 25;
this.label4.Text = "ASM VIEWER";
//
// button5
//
this.button5.BackColor = System.Drawing.SystemColors.ControlLight;
this.button5.Location = new System.Drawing.Point(211, 8);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(150, 23);
this.button5.TabIndex = 26;
this.button5.Text = "< Check before location";
this.button5.UseVisualStyleBackColor = false;
this.button5.Click += new System.EventHandler(this.Button5_Click);
//
// button6
//
this.button6.BackColor = System.Drawing.SystemColors.ControlLight;
this.button6.Location = new System.Drawing.Point(501, 8);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(150, 23);
this.button6.TabIndex = 27;
this.button6.Text = "Check after location >";
this.button6.UseVisualStyleBackColor = false;
this.button6.Click += new System.EventHandler(this.Button6_Click);
//
// button7
//
this.button7.BackColor = System.Drawing.SystemColors.ControlLight;
this.button7.Location = new System.Drawing.Point(3, 8);
this.button7.Name = "button7";
this.button7.Size = new System.Drawing.Size(128, 23);
this.button7.TabIndex = 28;
this.button7.Text = "Check at Line Number";
this.button7.UseVisualStyleBackColor = false;
this.button7.Click += new System.EventHandler(this.Button7_Click);
//
// panel3
//
this.panel3.BackColor = System.Drawing.SystemColors.ControlLight;
this.panel3.Controls.Add(this.label4);
this.panel3.Controls.Add(this.button7);
this.panel3.Controls.Add(this.button5);
this.panel3.Controls.Add(this.button6);
this.panel3.Location = new System.Drawing.Point(12, 155);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(868, 36);
this.panel3.TabIndex = 29;
//
// FormEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(890, 518);
this.Controls.Add(this.panel3);
this.Controls.Add(this.txtASM_Full);
this.Controls.Add(this.button4);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.button3);
this.Controls.Add(this.txtManualLine);
this.Controls.Add(this.label14);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.Name = "FormEdit";
this.ShowIcon = false;
this.Text = "Error";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label lblLine;
private System.Windows.Forms.Label lblSearchHEX;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label lblFoundHEX;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label lblParamFrom;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label lblBefore;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label lblAfter;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.TextBox txtManualLine;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.TextBox txtASM_Full;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.Button button6;
private System.Windows.Forms.Button button7;
private System.Windows.Forms.Panel panel3;
}
}

149
FixDatalog/FormEdit.cs Normal file
View File

@ -0,0 +1,149 @@
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.Runtime.InteropServices;
namespace FixDatalog
{
public partial class FormEdit : Form
{
public int ReturnLineNumber = 0;
public bool RemovingLocation = false;
private int Linenumber = 0;
private int LineBefore = 0;
private int LineAfter = 0;
const int EM_LINESCROLL = 0x00B6;
[DllImport("user32.dll")]
static extern int SetScrollPos(IntPtr hWnd, int nBar, int nPos, bool bRedraw);
[DllImport("user32.dll")]
static extern int SendMessage(IntPtr hWnd, int wMsg, int wParam, int lParam);
public FormEdit()
{
InitializeComponent();
}
public void SetInfos(int TLineNumber, string SearchHEX, string FoundHEX, string ParamFrom, int MatchBefore, int MatchAfter, string[] AllLines)
{
Linenumber = TLineNumber;
LineBefore = MatchBefore;
LineAfter = MatchAfter;
lblLine.Text = (Linenumber + 1).ToString();
lblSearchHEX.Text = SearchHEX.ToString();
lblFoundHEX.Text = FoundHEX.ToString();
lblParamFrom.Text = ParamFrom.ToString();
txtManualLine.Text = (Linenumber + 1).ToString();
//Set Found Matches
if (MatchBefore != -99999) lblBefore.Text = (MatchBefore + 1).ToString();
if (MatchAfter != -99999) lblAfter.Text = (MatchAfter + 1).ToString();
//Set at -99999
if (MatchBefore == -99999) lblBefore.Text = MatchBefore.ToString();
if (MatchAfter == -99999) lblAfter.Text = MatchAfter.ToString();
if (lblBefore.Text != "-99999") lblBefore.Text += " (diff: " + (LineBefore - Linenumber) + ")";
else
{
lblBefore.ForeColor = System.Drawing.Color.Red;
button1.Enabled = false;
button5.Enabled = false;
}
if (lblAfter.Text != "-99999") lblAfter.Text += " (diff: " + (LineAfter - Linenumber) + ")";
else
{
lblAfter.ForeColor = System.Drawing.Color.Red;
button2.Enabled = false;
button6.Enabled = false;
}
//Generate Viewer
txtASM_Full.Text = "";
for (int i = 0; i < AllLines.Length; i++)
{
if (i != Linenumber && i != LineBefore && i != LineAfter) txtASM_Full.AppendText((i + 1) + ". " + AllLines[i] + Environment.NewLine);
else
{
if (i == Linenumber) txtASM_Full.AppendText((i + 1) + ". " + AllLines[i] + "\t\t**CURRENT LINE**" + Environment.NewLine);
if (i == LineBefore) txtASM_Full.AppendText((i + 1) + ". " + AllLines[i] + "\t\t**LINE BEFORE**" + Environment.NewLine);
if (i == LineAfter) txtASM_Full.AppendText((i + 1) + ". " + AllLines[i] + "\t\t**LINE AFTER**" + Environment.NewLine);
}
}
MoveCaretToLine(txtASM_Full, Linenumber);
}
private void MoveCaretToLine(TextBox txtBox, int lineNumber)
{
SetScrollPos(txtBox.Handle, 1, lineNumber - 1, true);
SendMessage(txtBox.Handle, EM_LINESCROLL, 0, lineNumber - 1);
}
/*private void MoveCaretToLine(TextBox txtBox, int lineNumber)
{
txtBox.HideSelection = false;
int position = 0;
if (lineNumber < txtBox.Lines.Length)
{
for (int i = 0; i < lineNumber; i++) position += txtBox.Lines[i].Length;
}
txtBox.SelectionStart = position;
//txtBox.SelectionLength = txtBox.Lines[lineNumber].Length;
txtBox.ScrollToCaret();
}*/
private void Button1_Click(object sender, EventArgs e)
{
ReturnLineNumber = LineBefore;
this.Close();
}
private void Button2_Click(object sender, EventArgs e)
{
ReturnLineNumber = LineAfter;
this.Close();
}
private void Button3_Click(object sender, EventArgs e)
{
try
{
ReturnLineNumber = int.Parse(txtManualLine.Text) - 1;
this.Close();
}
catch { }
}
private void Button4_Click(object sender, EventArgs e)
{
RemovingLocation = true;
this.Close();
}
private void Button5_Click(object sender, EventArgs e)
{
MoveCaretToLine(txtASM_Full, LineBefore);
}
private void Button6_Click(object sender, EventArgs e)
{
MoveCaretToLine(txtASM_Full, LineAfter);
}
private void Button7_Click(object sender, EventArgs e)
{
MoveCaretToLine(txtASM_Full, Linenumber);
}
}
}

120
FixDatalog/FormEdit.resx Normal file
View File

@ -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>

22
FixDatalog/Program.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace FixDatalog
{
static class Program
{
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

View File

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Les informations générales relatives à un assembly dépendent de
// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations
// associées à un assembly.
[assembly: AssemblyTitle("FixDatalog")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FixDatalog")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly
// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de
// COM, affectez la valeur true à l'attribut ComVisible sur ce type.
[assembly: ComVisible(false)]
// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM
[assembly: Guid("c275cb99-5903-46c1-b6db-136d3ba067a6")]
// Les informations de version pour un assembly se composent des quatre valeurs suivantes :
//
// Version principale
// Version secondaire
// Numéro de build
// Révision
//
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -0,0 +1,71 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
//
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// </auto-generated>
//------------------------------------------------------------------------------
namespace FixDatalog.Properties
{
/// <summary>
/// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées.
/// </summary>
// Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder
// à l'aide d'un outil, tel que ResGen ou Visual Studio.
// Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen
// avec l'option /str ou régénérez votre projet VS.
[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()
{
}
/// <summary>
/// Retourne l'instance ResourceManager mise en cache utilisée par cette classe.
/// </summary>
[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("FixDatalog.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Remplace la propriété CurrentUICulture du thread actuel pour toutes
/// les recherches de ressources à l'aide de cette classe de ressource fortement typée.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}

View File

@ -0,0 +1,117 @@
<?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.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: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" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</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" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace FixDatalog.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;
}
}
}
}

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

Binary file not shown.

View File

@ -0,0 +1,175 @@
this.class18_0.class13_0.long_24 = 0x113dL; //Previous Location: 0x61a6L
this.class18_0.class13_0.long_31 = 0x1625L; //Previous Location: 0x610fL
this.class18_0.class13_0.long_32 = 0x162cL; //Previous Location: 0x6110L
this.class18_0.class13_0.long_43 = 0x13a4L; //Previous Location: 0x5f4eL
this.class18_0.class13_0.long_44 = 0x1371L; //Previous Location: 0x5f4aL
this.class18_0.class13_0.long_47 = 0x4e90L; //Previous Location: 0x61f3L
this.class18_0.class13_0.long_48 = 0x4ec6L; //Previous Location: 0x620eL
this.class18_0.class13_0.long_49 = 0x4e96L; //Previous Location: 0x61f4L
this.class18_0.class13_0.long_50 = 0x4f15L; //Previous Location: 0x61f5L
this.class18_0.class13_0.long_51 = 0x4ea2L; //Previous Location: 0x61f9L
this.class18_0.class13_0.long_54 = 0x17e7L; //Previous Location: 0x5f4dL
this.class18_0.class13_0.long_55 = 0x17e2L; //Previous Location: 0x5f49L
this.class18_0.class13_0.long_56 = 0x186cL; //Previous Location: 0x61f7L
this.class18_0.class13_0.long_58 = 0x1879L; //Previous Location: 0x5ffeL
this.class18_0.class13_0.long_59 = 0x1868L; //Previous Location: 0x5f46L
this.class18_0.class13_0.long_60 = 0x181dL; //Previous Location: 0x5f42L
this.class18_0.class13_0.long_61 = 0x1811L; //Previous Location: 0x5f41L
this.class18_0.class13_0.long_62 = 0x1824L; //Previous Location: 0x5f43L
this.class18_0.class13_0.long_65 = 0x4e9cL; //Previous Location: 0x61f8L
this.class18_0.class13_0.long_66 = 0x4edfL; //Previous Location: 0x620bL
this.class18_0.class13_0.long_67 = 0x4ed2L; //Previous Location: 0x620aL
this.class18_0.class13_0.long_71 = 0x1844L; //Previous Location: 0x6125L
this.class18_0.class13_0.long_72 = 0x1859L; //Previous Location: 0x6126L
this.class18_0.class13_0.long_77 = 0x3e42L; //Previous Location: 0x619aL
this.class18_0.class13_0.long_78 = 0x3d65L; //Previous Location: 0x61a7L
this.class18_0.class13_0.long_79 = 0x24baL; //Previous Location: 0x5ffcL
this.class18_0.class13_0.long_80 = 0x406bL; //Previous Location: 0x61ceL
this.class18_0.class13_0.long_88 = 0x189cL; //Previous Location: 0x5f4fL
this.class18_0.class13_0.long_100 = 0x0f3dL; //Previous Location: 0x61fdL
this.class18_0.class13_0.long_101 = 0x0f41L; //Previous Location: 0x6202L
this.class18_0.class13_0.long_103 = 0x3f19L; //Previous Location: 0x616bL
this.class18_0.class13_0.long_104 = 0x3f1fL; //Previous Location: 0x616cL
this.class18_0.class13_0.long_105 = 0x5429L; //Previous Location: 0x616dL
this.class18_0.class13_0.long_106 = 0x5434L; //Previous Location: 0x616eL
this.class18_0.class13_0.long_111 = 0x5448L; //Previous Location: 0x61bfL
this.class18_0.class13_0.long_116 = 0x0f34L; //Previous Location: 0x5f50L
this.class18_0.class13_0.long_123 = 0x3e46L; //Previous Location: 0x613aL
this.class18_0.class13_0.long_125 = 0x3e53L; //Previous Location: 0x613dL
this.class18_0.class13_0.long_156 = 0x0f22L; //Previous Location: 0x5f55L
this.class18_0.class13_0.long_160 = 0x0f17L; //Previous Location: 0x6163L
this.class18_0.class13_0.long_163 = 0x0f11L; //Previous Location: 0x5f8cL
this.class18_0.class13_0.long_180 = 0x0edeL; //Previous Location: 0x611bL
this.class18_0.class13_0.long_181 = 0x0ee3L; //Previous Location: 0x611cL
this.class18_0.class13_0.long_184 = 0x52b0L; //Previous Location: 0x6134L
this.class18_0.class13_0.long_192 = 0x0b67L; //Previous Location: 0x5f9dL
this.class18_0.class13_0.long_207 = 0x163dL; //Previous Location: 0x6112L
this.class18_0.class13_0.long_216 = 0x1c67L; //Previous Location: 0x61d4L
this.class18_0.class13_0.long_217 = 0x19b0L; //Previous Location: 0x5f5aL
this.class18_0.class13_0.long_218 = 0x4e8aL; //Previous Location: 0x61f2L
this.class18_0.class13_0.long_220 = 0x1113L; //Previous Location: 0x611fL
this.class18_0.class13_0.long_223 = 0x10f4L; //Previous Location: 0x611eL
this.class18_0.class13_0.long_224 = 0x37fcL; //Previous Location: 0x6123L
this.class18_0.class13_0.long_225 = 0x37d1L; //Previous Location: 0x6124L
this.class18_0.class13_0.long_227 = 0x1127L; //Previous Location: 0x6121L
this.class18_0.class13_0.long_228 = 0x1117L; //Previous Location: 0x6120L
this.class18_0.class13_0.long_229 = 0x10d1L; //Previous Location: 0x6122L
this.class18_0.class13_0.long_230 = 0x10e2L; //Previous Location: 0x611dL
this.class18_0.class13_0.long_233 = 0x546bL; //Previous Location: 0x5f7dL
this.class18_0.class13_0.long_236 = 0x4ee5L; //Previous Location: 0x6201L
this.class18_0.class13_0.long_243 = 0x375cL; //Previous Location: 0x6116L
this.class18_0.class13_0.long_279 = 0x0277L; //Previous Location: 0x6197L
this.class18_0.class13_0.long_282 = 0x53ddL; //Previous Location: 0x619cL
this.class18_0.class13_0.long_283 = 0x53f1L; //Previous Location: 0x619dL
this.class18_0.class13_0.long_284 = 0x53eeL; //Previous Location: 0x619eL
this.class18_0.class13_0.long_286 = 0x53f9L; //Previous Location: 0x619fL
this.class18_0.class13_0.long_287 = 0x541aL; //Previous Location: 0x61a5L
this.class18_0.class13_0.long_288 = 0x5413L; //Previous Location: 0x61a4L
this.class18_0.class13_0.long_289 = 0x540bL; //Previous Location: 0x61a3L
this.class18_0.class13_0.long_290 = 0x5407L; //Previous Location: 0x61a2L
this.class18_0.class13_0.long_291 = 0x5479L; //Previous Location: 0x61aaL
this.class18_0.class13_0.long_292 = 0x5487L; //Previous Location: 0x61adL
this.class18_0.class13_0.long_293 = 0x5484L; //Previous Location: 0x61aeL
this.class18_0.class13_0.long_295 = 0x5516L; //Previous Location: 0x61acL
this.class18_0.class13_0.long_296 = 0x54a0L; //Previous Location: 0x61b0L
this.class18_0.class13_0.long_297 = 0x5492L; //Previous Location: 0x61afL
this.class18_0.class13_0.long_298 = 0x5509L; //Previous Location: 0x61b1L
this.class18_0.class13_0.long_301 = 0x54dfL; //Previous Location: 0x61b6L
this.class18_0.class13_0.long_302 = 0x54e6L; //Previous Location: 0x61b7L
this.class18_0.class13_0.long_303 = 0x54c3L; //Previous Location: 0x61b8L
this.class18_0.class13_0.long_304 = 0x54caL; //Previous Location: 0x61b9L
this.class18_0.class13_0.long_305 = 0x54d1L; //Previous Location: 0x61baL
this.class18_0.class13_0.long_306 = 0x54d8L; //Previous Location: 0x61bbL
this.class18_0.class13_0.long_307 = 0x54edL; //Previous Location: 0x61bcL
this.class18_0.class13_0.long_308 = 0x54f4L; //Previous Location: 0x61beL
this.class18_0.class13_0.long_309 = 0x54fbL; //Previous Location: 0x61bdL
this.class18_0.class13_0.long_370 = 0x07aaL; //Previous Location: 0x5facL
this.class18_0.class13_0.long_371 = 0x07a3L; //Previous Location: 0x5fadL
this.class18_0.class13_0.long_472 = 0x0f1bL; //Previous Location: 0x61eaL
this.class18_0.class13_0.long_473 = 0x0f28L; //Previous Location: 0x61e9L
this.class18_0.class13_0.long_474 = 0x543eL; //Previous Location: 0x61ebL
#############################################
this.class18_0.class13_0.long_25 = 0x61e4L; //Previous Location: 0x61a8L
this.class18_0.class13_0.long_33 = 0x6187L; //Previous Location: 0x6101L
this.class18_0.class13_0.long_34 = 0x6193L; //Previous Location: 0x610dL
this.class18_0.class13_0.long_35 = 0x6189L; //Previous Location: 0x6103L
this.class18_0.class13_0.long_36 = 0x618bL; //Previous Location: 0x6105L
this.class18_0.class13_0.long_37 = 0x618dL; //Previous Location: 0x6107L
this.class18_0.class13_0.long_38 = 0x618fL; //Previous Location: 0x6109L
this.class18_0.class13_0.long_39 = 0x6191L; //Previous Location: 0x610bL
this.class18_0.class13_0.long_53 = 0x6204L; //Previous Location: 0x61f6L
this.class18_0.class13_0.long_83 = 0x6043L; //Previous Location: 0x5f8fL
this.class18_0.class13_0.long_110 = 0x61c4L; //Previous Location: 0x616fL
this.class18_0.class13_0.long_112 = 0x6209L; //Previous Location: 0x6200L
this.class18_0.class13_0.long_113 = 0x620aL; //Previous Location: 0x6203L
this.class18_0.class13_0.long_119 = 0x61aeL; //Previous Location: 0x6144L
this.class18_0.class13_0.long_121 = 0x61aaL; //Previous Location: 0x613eL
this.class18_0.class13_0.long_122 = 0x61acL; //Previous Location: 0x6140L
this.class18_0.class13_0.long_124 = 0x61a8L; //Previous Location: 0x613bL
this.class18_0.class13_0.long_135 = 0x602fL; //Previous Location: 0x5f77L
this.class18_0.class13_0.long_136 = 0x6057L; //Previous Location: 0x5fa5L
this.class18_0.class13_0.long_140 = 0x61baL; //Previous Location: 0x6156L
this.class18_0.class13_0.long_142 = 0x61efL; //Previous Location: 0x61cfL
this.class18_0.class13_0.long_143 = 0x61beL; //Previous Location: 0x6165L
this.class18_0.class13_0.long_150 = 0x6035L; //Previous Location: 0x5f80L
this.class18_0.class13_0.long_155 = 0x6016L; //Previous Location: 0x5f56L
this.class18_0.class13_0.long_159 = 0x61bcL; //Previous Location: 0x6161L
this.class18_0.class13_0.long_162 = 0x6041L; //Previous Location: 0x5f8dL
this.class18_0.class13_0.long_173 = 0x6014L; //Previous Location: 0x5f51L
this.class18_0.class13_0.long_186 = 0x619cL; //Previous Location: 0x6128L
this.class18_0.class13_0.long_187 = 0x61a2L; //Previous Location: 0x612eL
this.class18_0.class13_0.long_188 = 0x619bL; //Previous Location: 0x6127L
this.class18_0.class13_0.long_189 = 0x6010L; //Previous Location: 0x5f44L
this.class18_0.class13_0.long_193 = 0x6050L; //Previous Location: 0x5f9eL
this.class18_0.class13_0.long_206 = 0x6195L; //Previous Location: 0x6111L
this.class18_0.class13_0.long_208 = 0x6196L; //Previous Location: 0x6113L
this.class18_0.class13_0.long_211 = 0x61c0L; //Previous Location: 0x6167L
this.class18_0.class13_0.long_212 = 0x61c2L; //Previous Location: 0x6169L
this.class18_0.class13_0.long_213 = 0x61f4L; //Previous Location: 0x61d5L
this.class18_0.class13_0.long_215 = 0x61f6L; //Previous Location: 0x61d7L
this.class18_0.class13_0.long_219 = 0x6210L; //Previous Location: 0x6209L
this.class18_0.class13_0.long_231 = 0x6033L; //Previous Location: 0x5f7bL
this.class18_0.class13_0.long_232 = 0x6034L; //Previous Location: 0x5f7cL
this.class18_0.class13_0.long_237 = 0x6074L; //Previous Location: 0x5fc9L
this.class18_0.class13_0.long_239 = 0x602cL; //Previous Location: 0x5f73L
this.class18_0.class13_0.long_241 = 0x6197L; //Previous Location: 0x6114L
this.class18_0.class13_0.long_242 = 0x6012L; //Previous Location: 0x5f4bL
this.class18_0.class13_0.long_244 = 0x6199L; //Previous Location: 0x6117L
this.class18_0.class13_0.long_249 = 0x61c5L; //Previous Location: 0x6173L
this.class18_0.class13_0.long_251 = 0x61c7L; //Previous Location: 0x6178L
this.class18_0.class13_0.long_256 = 0x6085L; //Previous Location: 0x5fffL
this.class18_0.class13_0.long_257 = 0x61d5L; //Previous Location: 0x618bL
this.class18_0.class13_0.long_258 = 0x61c9L; //Previous Location: 0x617fL
this.class18_0.class13_0.long_259 = 0x61cfL; //Previous Location: 0x6185L
this.class18_0.class13_0.long_263 = 0x60d3L; //Previous Location: 0x604dL
this.class18_0.class13_0.long_265 = 0x6024L; //Previous Location: 0x5f6bL
this.class18_0.class13_0.long_268 = 0x602dL; //Previous Location: 0x5f75L
this.class18_0.class13_0.long_270 = 0x601cL; //Previous Location: 0x5f63L
this.class18_0.class13_0.long_277 = 0x61e1L; //Previous Location: 0x6198L
this.class18_0.class13_0.long_285 = 0x61e2L; //Previous Location: 0x61a0L
this.class18_0.class13_0.long_294 = 0x61e6L; //Previous Location: 0x61abL
this.class18_0.class13_0.long_299 = 0x61e7L; //Previous Location: 0x61b2L
this.class18_0.class13_0.long_300 = 0x61e9L; //Previous Location: 0x61b4L
this.class18_0.class13_0.long_316 = 0x6078L; //Previous Location: 0x5fceL
this.class18_0.class13_0.long_321 = 0x6079L; //Previous Location: 0x5fd5L
this.class18_0.class13_0.long_322 = 0x607bL; //Previous Location: 0x5fd7L
this.class18_0.class13_0.long_338 = 0x607dL; //Previous Location: 0x5fe3L
this.class18_0.class13_0.long_343 = 0x607eL; //Previous Location: 0x5feaL
this.class18_0.class13_0.long_344 = 0x6080L; //Previous Location: 0x5fecL
this.class18_0.class13_0.long_361 = 0x61ebL; //Previous Location: 0x61c4L
this.class18_0.class13_0.long_364 = 0x61edL; //Previous Location: 0x61c8L
this.class18_0.class13_0.long_366 = 0x61eeL; //Previous Location: 0x61c9L
this.class18_0.class13_0.long_372 = 0x605dL; //Previous Location: 0x5faeL
this.class18_0.class13_0.long_373 = 0x6059L; //Previous Location: 0x5fa8L
this.class18_0.class13_0.long_377 = 0x6018L; //Previous Location: 0x5f5bL
this.class18_0.class13_0.long_380 = 0x601aL; //Previous Location: 0x5f5eL
this.class18_0.class13_0.long_384 = 0x601bL; //Previous Location: 0x5f62L
this.class18_0.class13_0.//long_408 = 0x6205L; //Previous Location: 0x61faL
this.class18_0.class13_0.//long_409 = 0x6208L; //Previous Location: 0x61ffL
this.class18_0.class13_0.long_423 = 0x61fcL; //Previous Location: 0x61e6L
this.class18_0.class13_0.long_438 = 0x61faL; //Previous Location: 0x61e1L
this.class18_0.class13_0.long_463 = 0x5fd6L; //Previous Location: 0x5f06L
this.class18_0.class13_0.long_466 = 0x61f7L; //Previous Location: 0x61deL
this.class18_0.class13_0.long_475 = 0x61feL; //Previous Location: 0x61ecL

View File

@ -0,0 +1,20 @@
DecryptDP=False
ParamRelococation=True
FixDTL=True
GenerateRelocations=True
GenerateDatalogInfos=True
QuickGeneration=True
CheckOverLong=False
AutoCopyToClass18=True
AutoCopyVersion=114
Activate111=True
ASM=True
FreeUpSpace=True
QuitOnExit=False
DoSingleByte=True
DoWord=False
DoArray=False
RelocateUnused=True
LastFile=C:\Users\boule\Desktop\BM Devs\asm-dasm662\BMTune Update\DONE\1.09\BMTune_V1.1.4.asm
LastTable=tbl_5fd5
BMTuneLocation=C:\Users\boule\Documents\Visual Studio 2019\Projects\BMTune2

Binary file not shown.

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

Binary file not shown.

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,10 @@
c:\users\boule\documents\visual studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog.Form1.resources
c:\users\boule\documents\visual studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog.Properties.Resources.resources
c:\users\boule\documents\visual studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog.csproj.GenerateResource.Cache
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog.csprojAssemblyReference.cache
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog.FormEdit.resources
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\bin\Debug\FixDatalog2.exe.config
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\bin\Debug\FixDatalog2.exe
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\bin\Debug\FixDatalog2.pdb
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog2.exe
C:\Users\boule\Documents\Visual Studio 2015\Projects\FixDatalog\FixDatalog\obj\Debug\FixDatalog2.pdb

Binary file not shown.

Binary file not shown.