Skip to content

Commit

Permalink
Changed name to wudecon just because
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonHaze420 committed Dec 28, 2018
1 parent 97c4625 commit 6dffb1a
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 11 deletions.
2 changes: 1 addition & 1 deletion model2obj.sln → wudecon.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2000
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "model2obj", "model2obj\model2obj.csproj", "{F2A79431-B634-47F7-B3BC-6BB440A98A8A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "wudecon", "wudecon\wudecon.csproj", "{F2A79431-B634-47F7-B3BC-6BB440A98A8A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShenmueDKSharp", "ShenmueDKSharp\ShenmueDKSharp.csproj", "{68CA6FDA-E029-4247-9229-C3A75DFA9F8D}"
EndProject
Expand Down
File renamed without changes.
16 changes: 8 additions & 8 deletions model2obj/Program.cs → wudecon/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using ShenmueDKSharp.Files.Models;
using ShenmueDKSharp.Files.Containers;

namespace model2obj
namespace wudecon
{
class Program
{
Expand Down Expand Up @@ -180,19 +180,19 @@ static void ExtractTAC(string tadFilepath, string tacFilepath, string folder)

static void PrintUsage()
{
Console.WriteLine("\tmodel2obj <mode> <input> <output>");
Console.WriteLine("\tmodel2obj --mt5 <mt5 file> <obj file>");
Console.WriteLine("\tmodel2obj --mt7 <mt7 file> <obj file>");
Console.WriteLine("\tmodel2obj [--pkf|--pks|--spr|--ipac|--gz|--afs] <source file> <output dir>");
Console.WriteLine("\tmodel2obj --tac <tad file> <tac file> <output dir>");
Console.WriteLine("\tmodel2obj --batch-mt5 <mt5 dir> <obj output dir>");
Console.WriteLine("\twudecon <mode> <input> <output>");
Console.WriteLine("\twudecon --mt5 <mt5 file> <obj file>");
Console.WriteLine("\twudecon --mt7 <mt7 file> <obj file>");
Console.WriteLine("\twudecon [--pkf|--pks|--spr|--ipac|--gz|--afs] <source file> <output dir>");
Console.WriteLine("\twudecon --tac <tad file> <tac file> <output dir>");
Console.WriteLine("\twudecon --batch-mt5 <mt5 dir> <obj output dir>");

Console.WriteLine("\nBatch flags:\n\t--batch-mt5\n\t--batch-mt7\n\t--batch-pkf\n\t--batch-pks\n\t--batch-spr\n\t--batch-ipac\n\t--batch-gz\n\t--batch-afs");
}

static void Main(string[] args)
{
Console.WriteLine("model2obj v0.02\n");
Console.WriteLine("wudecon v0.02\n");

if (args.Count<string>() < 3 || args[0].Contains("-h") || args[0].Contains("--help") || args[0].Contains("/?"))
{
Expand Down
File renamed without changes.
31 changes: 29 additions & 2 deletions model2obj/model2obj.csproj → wudecon/wudecon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,26 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F2A79431-B634-47F7-B3BC-6BB440A98A8A}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>model2obj</RootNamespace>
<AssemblyName>model2obj</AssemblyName>
<RootNamespace>wudecon</RootNamespace>
<AssemblyName>wudecon</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -54,5 +69,17 @@
<Name>ShenmueDKSharp</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.6.1 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit 6dffb1a

Please sign in to comment.