Skip to content

Commit

Permalink
v0.2 (Beta build 2)
Browse files Browse the repository at this point in the history
Beta build 2 changelog:
* Finished script dumps window
* Added new menu to select behavior for object (Edit -> Behavior)
* You can now change the names of object combos (Edit -> Object Combo
Name)
* Added a filter box in the select item window. (Idea from aglab2, but I
used a simpler approach)
* Texture parsing should be a lot faster now
* Fixed RGBA32 texture error
* Other minor bug fixes
  • Loading branch information
DavidSM64 committed Jan 30, 2018
1 parent d082e83 commit a77f0c9
Show file tree
Hide file tree
Showing 42 changed files with 16,218 additions and 246 deletions.
39 changes: 37 additions & 2 deletions Quad64.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<Optimize>true</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down Expand Up @@ -79,10 +79,18 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\COLLADA\collada_schema_1_4.cs" />
<Compile Include="src\COLLADA\DumpModel.cs" />
<Compile Include="src\Forms\MultiselectTree\MultiselectTreeView.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="src\Forms\MultiselectTree\MultiselectTreeView.Designer.cs" />
<Compile Include="src\Forms\RenameObjectCombo.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\RenameObjectCombo.Designer.cs">
<DependentUpon>RenameObjectCombo.cs</DependentUpon>
</Compile>
<Compile Include="src\Forms\ROMInfoForm.cs">
<SubType>Form</SubType>
</Compile>
Expand All @@ -104,6 +112,21 @@
<Compile Include="src\Forms\ScriptDumps_Tabs\Level\LevelTab_Levelscripts.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\ScriptDumps_Tabs\Objects\ObjectsTab_Behavior.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\ScriptDumps_Tabs\Objects\ObjectsTab_Fast3D.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\ScriptDumps_Tabs\Objects\ObjectsTab_GeoLayout.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\SelectBehavior.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Forms\SelectBehavior.Designer.cs">
<DependentUpon>SelectBehavior.cs</DependentUpon>
</Compile>
<Compile Include="src\Forms\SelectComboPreset.cs">
<SubType>Form</SubType>
</Compile>
Expand Down Expand Up @@ -143,7 +166,9 @@
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Globals.cs" />
<Compile Include="src\JSON\BehaviorNameEntry.cs" />
<Compile Include="src\JSON\ModelCombo.cs" />
<Compile Include="src\JSON\BehaviorNameFile.cs" />
<Compile Include="src\JSON\ModelComboFile.cs" />
<Compile Include="src\JSON\ObjectComboEntry.cs" />
<Compile Include="src\JSON\OtherTexturesFile.cs" />
Expand All @@ -158,6 +183,7 @@
<Compile Include="src\Prompts.cs" />
<Compile Include="src\Scripts\CollisionMap.cs" />
<Compile Include="src\Scripts\Fast3DScripts.cs" />
<Compile Include="src\Scripts\BehaviorScripts.cs" />
<Compile Include="src\Scripts\GeoScripts.cs" />
<Compile Include="src\Scripts\ModelBuilder.cs" />
<Compile Include="src\Scripts\TextureFormats.cs" />
Expand Down Expand Up @@ -195,12 +221,18 @@
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Include="src\Forms\MultiselectTree\MultiselectTreeView.resx" />
<EmbeddedResource Include="src\Forms\RenameObjectCombo.resx">
<DependentUpon>RenameObjectCombo.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="src\Forms\ROMInfoForm.resx">
<DependentUpon>ROMInfoForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="src\Forms\ScriptDumps.resx">
<DependentUpon>ScriptDumps.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="src\Forms\SelectBehavior.resx">
<DependentUpon>SelectBehavior.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="src\Forms\SelectComboPreset.resx">
<DependentUpon>SelectComboPreset.cs</DependentUpon>
</EmbeddedResource>
Expand All @@ -213,6 +245,9 @@
<EmbeddedResource Include="src\Forms\TextureEditor.resx">
<DependentUpon>TextureEditor.cs</DependentUpon>
</EmbeddedResource>
<None Include="data\BehaviorNames.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="data\ObjectCombos_EU.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
Loading

0 comments on commit a77f0c9

Please sign in to comment.