Skip to content

Commit

Permalink
Change to Version 1.1
Browse files Browse the repository at this point in the history
Added Support for FairyFood Items, Adventure Mode Items(the first three)
and also some little changes:
Add maximize Buttons, if it's needed.
  • Loading branch information
nedron92 committed Apr 4, 2016
1 parent a31d6a1 commit dfc6bbd
Show file tree
Hide file tree
Showing 32 changed files with 2,238 additions and 56 deletions.
Binary file modified ZeldaHWLSaveEditor.v12.suo
Binary file not shown.
23 changes: 16 additions & 7 deletions ZeldaHWLSaveEditor.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<TargetName>HWLSaveEditor</TargetName>
<IntDir>tmp\$(ProjectName)\$(Configuration)\</IntDir>
<PostBuildEventUseInBuild>true</PostBuildEventUseInBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<TargetName>HWLSaveEditor</TargetName>
<IntDir>tmp\$(ProjectName)\$(Configuration)\</IntDir>
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand All @@ -58,13 +60,15 @@
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<OutputFile>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>bin\$(Configuration)\$(Platform)\$(TargetName).pdb</ProgramDatabaseFile>
</Link>
<PostBuildEvent>
<Command>rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
<PostBuildEvent />
<BuildLog>
<Path />
</BuildLog>
<PostBuildEvent>
<Command>rd /s /q "$(IntDir)" &amp;&amp; rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
Expand All @@ -76,29 +80,34 @@
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<OutputFile>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>bin\$(Configuration)\$(Platform)\$(TargetName).pdb</ProgramDatabaseFile>
</Link>
<PostBuildEvent>
<Command>rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
<PostBuildEvent />
<BuildLog>
<Path />
</BuildLog>
<PostBuildEvent>
<Command>rd /s /q "$(IntDir)" &amp;&amp; rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="source\console\main.cpp" />
<ClCompile Include="source\core\HWLAdventureModeItems.cpp" />
<ClCompile Include="source\core\HWLException.cpp" />
<ClCompile Include="source\core\HWLFairyFood.cpp" />
<ClCompile Include="source\core\HWLMaterial.cpp" />
<ClCompile Include="source\core\HWLPlayer.cpp" />
<ClCompile Include="source\core\HWLSaveEditor.cpp" />
<ClCompile Include="source\core\HWLSaveEditorCore.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="source\console\resource.h" />
<ClInclude Include="source\core\HWLAdventureModeItems.h" />
<ClInclude Include="source\core\HWLException.h" />
<ClInclude Include="source\core\HWLFairyFood.h" />
<ClInclude Include="source\core\HWLMaterial.h" />
<ClInclude Include="source\core\HWLPlayer.h" />
<ClInclude Include="source\core\HWLSaveEditor.h" />
Expand Down
12 changes: 12 additions & 0 deletions ZeldaHWLSaveEditor.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
<ClCompile Include="source\console\main.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\core\HWLFairyFood.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\core\HWLAdventureModeItems.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="source\core\HWLException.h">
Expand All @@ -53,6 +59,12 @@
<ClInclude Include="source\console\resource.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\core\HWLFairyFood.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\core\HWLAdventureModeItems.h">
<Filter>Headerdateien</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Image Include="source\core\res\ZeldaHWLSaveEditorGUI.ico">
Expand Down
10 changes: 9 additions & 1 deletion ZeldaHWLSaveEditor.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerCommand>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</LocalDebuggerCommand>
<LocalDebuggerWorkingDirectory>$(ProjectDir)</LocalDebuggerWorkingDirectory>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerCommand>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
22 changes: 19 additions & 3 deletions ZeldaHWLSaveEditorGUI.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<TargetName>HWLSaveEditorGUI</TargetName>
<IntDir>tmp\$(ProjectName)\$(Configuration)\</IntDir>
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<TargetName>HWLSaveEditorGUI</TargetName>
<IntDir>tmp\$(ProjectName)\$(Configuration)\</IntDir>
<PostBuildEventUseInBuild>true</PostBuildEventUseInBuild>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand All @@ -59,9 +61,10 @@
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<OutputFile>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>bin\$(Configuration)\$(Platform)\$(TargetName).pdb</ProgramDatabaseFile>
</Link>
<PostBuildEvent>
<Command>rd /s /q "$(TargetDir)"</Command>
<Command>rd /s /q "$(IntDir)" &amp;&amp; rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
<BuildLog>
<Path />
Expand All @@ -79,20 +82,22 @@
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<OutputFile>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>bin\$(Configuration)\$(Platform)\$(TargetName).pdb</ProgramDatabaseFile>
</Link>
<PostBuildEvent>
<Command>rd /s /q "$(TargetDir)"</Command>
<Command>rd /s /q "$(IntDir)" &amp;&amp; rd /s /q "$(TargetDir)"</Command>
</PostBuildEvent>
<BuildLog>
<Path />
</BuildLog>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="source\core\HWLAdventureModeItems.h" />
<ClInclude Include="source\core\HWLException.h" />
<ClInclude Include="source\core\HWLFairyFood.h" />
<ClInclude Include="source\core\HWLMaterial.h" />
<ClInclude Include="source\core\HWLPlayer.h" />
<ClInclude Include="source\core\HWLSaveEditor.h" />
Expand All @@ -101,20 +106,26 @@
<ClInclude Include="source\gui\stdafx.h" />
<ClInclude Include="source\gui\targetver.h" />
<ClInclude Include="source\gui\ZeldaAboutDlg.h" />
<ClInclude Include="source\gui\ZeldaEditAdventureModeItem.h" />
<ClInclude Include="source\gui\ZeldaEditCharaStatsDlg.h" />
<ClInclude Include="source\gui\ZeldaEditFairyFoods.h" />
<ClInclude Include="source\gui\ZeldaEditGeneralDlg.h" />
<ClInclude Include="source\gui\ZeldaEditMaterials.h" />
<ClInclude Include="source\gui\ZeldaHWLSaveEditorGUI.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="source\core\HWLAdventureModeItems.cpp" />
<ClCompile Include="source\core\HWLException.cpp" />
<ClCompile Include="source\core\HWLFairyFood.cpp" />
<ClCompile Include="source\core\HWLMaterial.cpp" />
<ClCompile Include="source\core\HWLPlayer.cpp" />
<ClCompile Include="source\core\HWLSaveEditor.cpp" />
<ClCompile Include="source\core\HWLSaveEditorCore.cpp" />
<ClCompile Include="source\gui\stdafx.cpp" />
<ClCompile Include="source\gui\ZeldaAboutDlg.cpp" />
<ClCompile Include="source\gui\ZeldaEditAdventureModeItem.cpp" />
<ClCompile Include="source\gui\ZeldaEditCharaStatsDlg.cpp" />
<ClCompile Include="source\gui\ZeldaEditFairyFoods.cpp" />
<ClCompile Include="source\gui\ZeldaEditGeneralDlg.cpp" />
<ClCompile Include="source\gui\ZeldaEditMaterials.cpp" />
<ClCompile Include="source\gui\ZeldaHWLSaveEditorGUI.cpp" />
Expand All @@ -128,4 +139,9 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties RESOURCE_FILE="source\gui\ZeldaHWLSaveEditorGUI.rc" />
</VisualStudio>
</ProjectExtensions>
</Project>
24 changes: 24 additions & 0 deletions ZeldaHWLSaveEditorGUI.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@
<ClInclude Include="source\core\HWLSaveEditorCore.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\core\HWLAdventureModeItems.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\core\HWLFairyFood.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\gui\ZeldaEditFairyFoods.h">
<Filter>Headerdateien</Filter>
</ClInclude>
<ClInclude Include="source\gui\ZeldaEditAdventureModeItem.h">
<Filter>Headerdateien</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="source\gui\stdafx.cpp">
Expand Down Expand Up @@ -89,6 +101,18 @@
<ClCompile Include="source\core\HWLSaveEditorCore.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\core\HWLAdventureModeItems.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\core\HWLFairyFood.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\gui\ZeldaEditFairyFoods.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
<ClCompile Include="source\gui\ZeldaEditAdventureModeItem.cpp">
<Filter>Quelldateien</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="source\gui\ZeldaHWLSaveEditorGUI.rc">
Expand Down
11 changes: 11 additions & 0 deletions ZeldaHWLSaveEditorGUI.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerCommand>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerCommand>bin\$(Configuration)\$(Platform)\$(TargetName)$(TargetExt)</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
Binary file modified source/console/ZeldaHWLSaveEditorConsole.rc
Binary file not shown.
Loading

0 comments on commit dfc6bbd

Please sign in to comment.