Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Galamoz committed May 21, 2018
1 parent 1609f2e commit ee29ec3
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 24 deletions.
1 change: 0 additions & 1 deletion Controls.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,4 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</root>
10 changes: 5 additions & 5 deletions MainForm.Designer.cs

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

5 changes: 4 additions & 1 deletion MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ private void InitializeSettings()
Settings.Default.ControlsItemCancel = Settings.Default.ControlsItemCancel;
Settings.Default.ControlsAngleUp = Settings.Default.ControlsAngleUp;
Settings.Default.ControlsAngleDown = Settings.Default.ControlsAngleDown;
Settings.Default.ControlsMoonwalk = Settings.Default.ControlsMoonwalk;
Settings.Default.ControlsIconCancel = Settings.Default.ControlsIconCancel;
Settings.Default.RandomizerDifficulty = Settings.Default.RandomizerDifficulty;
Settings.Default.RandoDiff06 = Settings.Default.RandoDiff06;
Settings.Default.CreateSpoilerLog = Settings.Default.CreateSpoilerLog;
}

Expand All @@ -59,7 +62,7 @@ private void MainForm_Load(object sender, EventArgs e)
{
filenameV11.Text = Settings.Default.OutputFileV11;
createSpoilerLog.Checked = Settings.Default.CreateSpoilerLog;
Text = string.Format("Hyper Metroid Item Randomizer v1.0", RandomizerVersion.CurrentDisplay);
Text = string.Format("Hyper Metroid Item Randomizer: v1.00", RandomizerVersion.CurrentDisplay);
randomizerDifficulty.SelectedItem = Settings.Default.RandomizerDifficulty;
RunCheckUpdate();
}
Expand Down
23 changes: 8 additions & 15 deletions SuperMetroidRandomizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<NoWin32Manifest>False</NoWin32Manifest>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
Expand All @@ -33,10 +34,6 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>
</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -50,6 +47,12 @@
</ItemGroup>
<ItemGroup>
<Compile Include="IO\FileName.cs" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Net\RandomizerVersion.cs" />
<Compile Include="Rom\Controller.cs" />
<Compile Include="Controls.cs">
Expand All @@ -60,24 +63,17 @@
</Compile>
<Compile Include="Rom\IRomLocations.cs" />
<Compile Include="Rom\Item.cs" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Rom\Location.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="IO\RandomizerLog.cs" />
<Compile Include="Random\RandomizerV10.cs" />
<Compile Include="Random\RandomizerV11.cs" />
<Compile Include="Rom\RomLocationsFactory.cs" />
<Compile Include="Rom\RomLocationsInsane.cs" />
<Compile Include="Rom\RomLocationsSpeedrunner.cs" />
<Compile Include="Rom\RomLocationsCasual.cs" />
<Compile Include="Rom\RomLocationsMasochist.cs" />
<Compile Include="Random\SeedRandom.cs" />
<Compile Include="Rom\RomLocationsSpeedrunner.cs" />
<EmbeddedResource Include="Controls.resx">
<DependentUpon>Controls.cs</DependentUpon>
</EmbeddedResource>
Expand Down Expand Up @@ -105,16 +101,13 @@
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<None Include="Rom\SuperMetroidRandomizer.sln" />
<None Include="sm.sfc" />
<None Include="smv11.sfc" />
</ItemGroup>
<ItemGroup>
<None Include="MenuFileSaveIcon.png" />
</ItemGroup>
<ItemGroup>
<Content Include="SMRandomizer.ico" />
</ItemGroup>
<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.
Expand Down
2 changes: 2 additions & 0 deletions SuperMetroidRandomizer.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
21 changes: 21 additions & 0 deletions SuperMetroidRandomizer.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# SharpDevelop 5.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperMetroidRandomizer", "SuperMetroidRandomizer\SuperMetroidRandomizer.csproj", "{AC965D93-99D7-4679-95D3-2A84025C4341}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AC965D93-99D7-4679-95D3-2A84025C4341}.Debug|x86.ActiveCfg = Debug|x86
{AC965D93-99D7-4679-95D3-2A84025C4341}.Debug|x86.Build.0 = Debug|x86
{AC965D93-99D7-4679-95D3-2A84025C4341}.Release|x86.ActiveCfg = Release|x86
{AC965D93-99D7-4679-95D3-2A84025C4341}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
13 changes: 11 additions & 2 deletions app.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
<setting name="ControlsDash" serializeAs="String">
<value>B</value>
</setting>
<setting name="ControlsIconCancel" serializeAs="String">
<value>False</value>
</setting>
<setting name="ControlsItemCancel" serializeAs="String">
<value>Y</value>
</setting>
Expand All @@ -25,17 +28,23 @@
<setting name="ControlsJump" serializeAs="String">
<value>A</value>
</setting>
<setting name="ControlsMoonwalk" serializeAs="String">
<value>False</value>
</setting>
<setting name="ControlsShot" serializeAs="String">
<value>X</value>
</setting>
<setting name="CreateSpoilerLog" serializeAs="String">
<value>False</value>
</setting>
<setting name="OutputFile" serializeAs="String">
<value>Hyper Rando - &lt;seed&gt;.sfc</value>
<value>Hyper Metroid Rando - &lt;seed&gt;.smc</value>
</setting>
<setting name="OutputFileV11" serializeAs="String">
<value>Hyper Rando - &lt;seed&gt;.sfc</value>
<value>Hyper Metroid Rando - &lt;seed&gt;.smc</value>
</setting>
<setting name="RandoDiff06" serializeAs="String">
<value>Casual</value>
</setting>
<setting name="RandomizerDifficulty" serializeAs="String">
<value>Casual</value>
Expand Down
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<body>
<h1>Hello World</h1>
<p>I'm hosted with GitHub Pages.</p>
</body>
</html>

0 comments on commit ee29ec3

Please sign in to comment.