Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickyangtpe authored Jun 6, 2024
1 parent a55e318 commit 77c83e6
Show file tree
Hide file tree
Showing 25 changed files with 698 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CppShroud.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.34407.143
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CppShroud", "CppShroud\CppShroud.csproj", "{6116E988-1A53-4145-B404-BB12673B503A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6116E988-1A53-4145-B404-BB12673B503A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6116E988-1A53-4145-B404-BB12673B503A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6116E988-1A53-4145-B404-BB12673B503A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6116E988-1A53-4145-B404-BB12673B503A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {BF8E1E42-F2D4-40C5-BBBB-D27A224E4886}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions CppShroud/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
83 changes: 83 additions & 0 deletions CppShroud/CppShroud.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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>{6116E988-1A53-4145-B404-BB12673B503A}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>CppShroud</RootNamespace>
<AssemblyName>CppShroud</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</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="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.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" />
</Project>
87 changes: 87 additions & 0 deletions CppShroud/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 79 additions & 0 deletions CppShroud/Form1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Windows.Forms;

namespace CppShroud
{
public partial class Form1 : Form
{
private static Random random = new Random();
private static StringBuilder defines = new StringBuilder();
private static Dictionary<string, string> replacementDict = new Dictionary<string, string>();

public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
defines.Clear(); // 每次點擊按鈕時清空定義
replacementDict.Clear(); // 清空替換字典
string input = textBox1.Text;
string result = ReplaceStrings(input);
textBox2.Text = defines.ToString() + result;
}

static string ReplaceStrings(string input)
{
// 使用正則表達式來處理每一行
string[] lines = input.Split(new[] { '\r', '\n' }, StringSplitOptions.None);
for (int i = 0; i < lines.Length; i++)
{
if (!lines[i].TrimStart().StartsWith("#") && !lines[i].Contains("//"))
{
lines[i] = Regex.Replace(lines[i], "\"(?:\\\\\"|[^\"])*\"|\\S+", new MatchEvaluator(match =>
{
string originalWord = match.Value;
// 檢查是否在引號中
if (originalWord.StartsWith("\"") && originalWord.EndsWith("\""))
{
return originalWord;
}
string replacement;
if (replacementDict.TryGetValue(originalWord, out replacement))
{
// 如果已經有替換的字,則直接返回
return " " + replacement;
}
else
{
// 否則,生成一個新的替換的字
int length = random.Next(5, 16); // 長度在5到15之間
const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
StringBuilder result = new StringBuilder(length);
// 確保第一個字符不是數字
result.Append(chars[random.Next(52)]); // 從字母開始
for (int j = 1; j < length; j++)
{
result.Append(chars[random.Next(chars.Length)]);
}
// 添加 #define 替換的字 被替換的字
defines.AppendLine($"#define {result} {originalWord} ");
replacementDict[originalWord] = result.ToString(); // 將替換的字添加到字典中
return " " + result;
}
}));
}
}
return string.Join(Environment.NewLine, lines);
}
}
}
Loading

0 comments on commit 77c83e6

Please sign in to comment.