Skip to content

Commit 0ca4c65

Browse files
committed
First Working
Runs and fine and works. Planned to remove not really needed Buttons to reduce confusion, aswell as adding options for other Categories. Currently only working for Any%.
1 parent 76ef0d4 commit 0ca4c65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3169
-0
lines changed

FFCC Memories.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30204.135
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FFCC Memories", "FFCC Memories\FFCC Memories.csproj", "{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {107310E9-8D60-4587-9744-841A4840946A}
24+
EndGlobalSection
25+
EndGlobal

FFCC Memories/Any% Letter Counts.txt

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Kat Ki 2 1 0 1 1
2+
Kat Fu 2 0 0 0 0
3+
Kat Te 2 0 0 0 0
4+
Kat A 1 0 1 2 2
5+
Kat Se 1 0 0 0 0
6+
Kat Shi 1 0 0 3 0
7+
Kat So 1 0 0 0 0
8+
Kat U 1 0 0 0 0
9+
Kat Ru 1 0 1 0 2
10+
Kat Ma 1 0 3 1 0
11+
Kat Ka 0 1 1 0 0
12+
Kat Ke 0 1 0 0 2
13+
Kat O 0 0 2 1 0
14+
Kat Ri 0 0 1 0 1
15+
Kat Ne 0 0 1 0 0
16+
Kat Ra 0 0 1 0 0
17+
Kat Re 0 0 1 0 0
18+
Kat Mo 0 0 0 2 1
19+
Kat Ko 0 0 0 1 1
20+
Kat Sa 0 0 0 1 0
21+
Kat Ta 0 0 0 1 0
22+
23+
Hir A 2 3 0 0 0
24+
Hir To 1 2 0 0 0
25+
Hir I 1 0 0 0 0
26+
Hir So 0 3 1 1 1
27+
Hir Se 0 2 0 0 0
28+
Hir O 0 1 2 1 0
29+
Hir Sa 0 1 0 0 0
30+
Hir Mo 0 1 0 0 0
31+
Hir Na 0 0 3 0 0
32+
33+
Kanji 8 5 8 9 12

FFCC Memories/App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
5+
</startup>
6+
</configuration>

FFCC Memories/FFCC Memories.csproj

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{DEF91CD9-C6D9-44AC-8756-2450BFB3EEC0}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>FFCC_Memories</RootNamespace>
10+
<AssemblyName>FFCC Memories</AssemblyName>
11+
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
37+
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
38+
</Reference>
39+
<Reference Include="System" />
40+
<Reference Include="System.Core" />
41+
<Reference Include="System.Windows.Forms.DataVisualization" />
42+
<Reference Include="System.Xml.Linq" />
43+
<Reference Include="System.Data.DataSetExtensions" />
44+
<Reference Include="Microsoft.CSharp" />
45+
<Reference Include="System.Data" />
46+
<Reference Include="System.Deployment" />
47+
<Reference Include="System.Drawing" />
48+
<Reference Include="System.Net.Http" />
49+
<Reference Include="System.Windows.Forms" />
50+
<Reference Include="System.Xml" />
51+
</ItemGroup>
52+
<ItemGroup>
53+
<Compile Include="Memories.cs" />
54+
<Compile Include="Form1.cs">
55+
<SubType>Form</SubType>
56+
</Compile>
57+
<Compile Include="Form1.Designer.cs">
58+
<DependentUpon>Form1.cs</DependentUpon>
59+
</Compile>
60+
<Compile Include="Program.cs" />
61+
<Compile Include="Properties\AssemblyInfo.cs" />
62+
<EmbeddedResource Include="Form1.resx">
63+
<DependentUpon>Form1.cs</DependentUpon>
64+
</EmbeddedResource>
65+
<EmbeddedResource Include="Properties\Resources.resx">
66+
<Generator>ResXFileCodeGenerator</Generator>
67+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
68+
<SubType>Designer</SubType>
69+
</EmbeddedResource>
70+
<Compile Include="Properties\Resources.Designer.cs">
71+
<AutoGen>True</AutoGen>
72+
<DependentUpon>Resources.resx</DependentUpon>
73+
<DesignTime>True</DesignTime>
74+
</Compile>
75+
<None Include="packages.config" />
76+
<None Include="Properties\Settings.settings">
77+
<Generator>SettingsSingleFileGenerator</Generator>
78+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
79+
</None>
80+
<Compile Include="Properties\Settings.Designer.cs">
81+
<AutoGen>True</AutoGen>
82+
<DependentUpon>Settings.settings</DependentUpon>
83+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
84+
</Compile>
85+
<None Include="FFCC-Any.json">
86+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
87+
</None>
88+
</ItemGroup>
89+
<ItemGroup>
90+
<None Include="App.config" />
91+
</ItemGroup>
92+
<ItemGroup>
93+
<Content Include="Letters\Hir-a.jpg" />
94+
<Content Include="Letters\Hir-i.jpg" />
95+
<Content Include="Letters\Hir-mo.jpg" />
96+
<Content Include="Letters\Hir-na.jpg" />
97+
<Content Include="Letters\Hir-o.jpg" />
98+
<Content Include="Letters\Hir-sa.jpg" />
99+
<Content Include="Letters\Hir-se.jpg" />
100+
<Content Include="Letters\Hir-so.jpg" />
101+
<Content Include="Letters\Hir-to.jpg" />
102+
<Content Include="Letters\Kat-a.jpg" />
103+
<Content Include="Letters\Kat-fu.jpg" />
104+
<Content Include="Letters\Kat-ka.jpg" />
105+
<Content Include="Letters\Kat-ke.jpg" />
106+
<Content Include="Letters\Kat-ki.jpg" />
107+
<Content Include="Letters\Kat-ko.jpg" />
108+
<Content Include="Letters\Kat-ma.jpg" />
109+
<Content Include="Letters\Kat-mo.jpg" />
110+
<Content Include="Letters\Kat-ne.jpg" />
111+
<Content Include="Letters\Kat-o.jpg" />
112+
<Content Include="Letters\Kat-ra.jpg" />
113+
<Content Include="Letters\Kat-re.jpg" />
114+
<Content Include="Letters\Kat-ri.jpg" />
115+
<Content Include="Letters\Kat-ru.jpg" />
116+
<Content Include="Letters\Kat-sa.jpg" />
117+
<Content Include="Letters\Kat-se.jpg" />
118+
<Content Include="Letters\Kat-shi.jpg" />
119+
<Content Include="Letters\Kat-so.jpg" />
120+
<Content Include="Letters\Kat-ta.jpg" />
121+
<Content Include="Letters\Kat-te.jpg" />
122+
<Content Include="Letters\Kat-u.jpg" />
123+
<Content Include="Letters\Mod.jpg" />
124+
<Content Include="Letters\Num-1.jpg" />
125+
<Content Include="Memories\L1-1.png" />
126+
<Content Include="Memories\L1-2.png" />
127+
<Content Include="Memories\L1-3.png" />
128+
<Content Include="Memories\L1-4.png" />
129+
<Content Include="Memories\L1-5.png" />
130+
<Content Include="Memories\L2-1.png" />
131+
<Content Include="Memories\L2-2.png" />
132+
<Content Include="Memories\L2-3.png" />
133+
<Content Include="Memories\L2-4.png" />
134+
<Content Include="Memories\L2-5.png" />
135+
<Content Include="Memories\L3-1.png" />
136+
<Content Include="Memories\L3-2.png" />
137+
<Content Include="Memories\L3-3.png" />
138+
<Content Include="Memories\L3-4.png" />
139+
<Content Include="Memories\L3-5.png" />
140+
<Content Include="Memories\L4-1.png" />
141+
<Content Include="Memories\L4-2.png" />
142+
<Content Include="Memories\L4-3.png" />
143+
<Content Include="Memories\L4-4.png" />
144+
<Content Include="Memories\L4-5.png" />
145+
<Content Include="Memories\L5-1.png" />
146+
<Content Include="Memories\L5-2.png" />
147+
<Content Include="Memories\L5-3.png" />
148+
<Content Include="Memories\L5-4.png" />
149+
<Content Include="Memories\L5-5.png" />
150+
</ItemGroup>
151+
<ItemGroup />
152+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
153+
</Project>

0 commit comments

Comments
 (0)