Skip to content

Commit

Permalink
Initial commit of CEasyUO.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkLotus committed Apr 12, 2019
1 parent c08e18f commit f7ad260
Show file tree
Hide file tree
Showing 75 changed files with 23,257 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/bin/
/obj/
6 changes: 6 additions & 0 deletions App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
</startup>
</configuration>
170 changes: 170 additions & 0 deletions CEasyUO.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{003E3EEF-9EDE-4188-B513-EDDA5722147B}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>CEasyUO</RootNamespace>
<AssemblyName>CEasyUO</AssemblyName>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>false</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Z:\480gb\ClassicUO\bin\Debug\Data\Plugins\CEasyUO\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icons\easyuo2.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="cuoapi, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<SpecificVersion>False</SpecificVersion>
<HintPath>.\cuoapi.dll</HintPath>
</Reference>
<Reference Include="EasyAntlr">
<HintPath>C:\Users\James\Documents\Visual Studio 2017\Projects\EasyLoA\EasyAntlr\bin\Debug\EasyAntlr.exe</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="Ultima, Version=4.3.3.0, Culture=neutral, processorArchitecture=AMD64">
<SpecificVersion>False</SpecificVersion>
<HintPath>.\Ultima.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Core\ActionQueue.cs" />
<Compile Include="Scripting\AST.cs" />
<Compile Include="Scripting\EUOInterpreter.cs" />
<Compile Include="Scripting\EUOParser.cs" />
<Compile Include="Scripting\EUOVars.cs" />
<Compile Include="Scripting\Lexer.cs" />
<Compile Include="Scripting\ParseException.cs" />
<Compile Include="Scripting\SpracheParser.cs" />
<Content Include="Core\Actions.cs">
<SubType>Component</SubType>
</Content>
<Compile Include="Core\BuffsDebuffs.cs" />
<Compile Include="Core\BuffsTimer.cs" />
<Compile Include="Core\Config.cs" />
<Compile Include="Core\ContainerLabels.cs" />
<Compile Include="Core\Geometry.cs" />
<Compile Include="Core\Item.cs" />
<Compile Include="Core\ItemID.cs" />
<Compile Include="Core\Language.cs" />
<Compile Include="Core\LocString.cs" />
<Compile Include="Core\Map.cs" />
<Compile Include="Core\Mobile.cs" />
<Compile Include="Core\ObjectPropertyList.cs" />
<Compile Include="Core\OverheadMessages.cs" />
<Compile Include="Core\Player.cs" />
<Compile Include="Core\Serial.cs" />
<Compile Include="Core\SkillTimer.cs" />
<Compile Include="Core\Spells.cs" />
<Compile Include="Core\Targeting.cs" />
<Compile Include="Core\Timer.cs" />
<Compile Include="Core\UOEntity.cs" />
<Compile Include="Core\Utility.cs" />
<Compile Include="Core\World.cs" />
<Compile Include="Engine.cs" />
<Compile Include="Network\ClientCommunication.cs" />
<Compile Include="CEasyUOMainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="CEasyUOMainForm.Designer.cs">
<DependentUpon>CEasyUOMainForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Network\Handlers.cs" />
<Compile Include="Network\Packet.cs" />
<Compile Include="Network\PacketHandler.cs" />
<Compile Include="Network\Packets.cs" />
<Compile Include="Network\PacketTable.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Network\ZLib.cs" />
<EmbeddedResource Include="Core\Actions.resx">
<DependentUpon>Actions.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="CEasyUOMainForm.resx">
<DependentUpon>CEasyUOMainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="cuoapi.dll" />
<EmbeddedResource Include="icons\clinew.ico" />
<EmbeddedResource Include="icons\cliswap.ico" />
<EmbeddedResource Include="icons\close.ico" />
<EmbeddedResource Include="icons\copy.ico" />
<EmbeddedResource Include="icons\cut.ico" />
<EmbeddedResource Include="icons\find.ico" />
<EmbeddedResource Include="icons\help.ico" />
<EmbeddedResource Include="icons\home.ico" />
<EmbeddedResource Include="icons\new.ico" />
<EmbeddedResource Include="icons\open.ico" />
<EmbeddedResource Include="icons\openeuo.ico" />
<EmbeddedResource Include="icons\paste.ico" />
<EmbeddedResource Include="icons\pause.ico" />
<EmbeddedResource Include="icons\reopen.ico" />
<EmbeddedResource Include="icons\replace.ico" />
<EmbeddedResource Include="icons\save.ico" />
<EmbeddedResource Include="icons\start.ico" />
<EmbeddedResource Include="icons\stop.ico" />
<EmbeddedResource Include="icons\stopall.ico" />
<Content Include="icons\easyuo2.ico" />
<Content Include="Ultima.dll" />
<Content Include="zlib.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Loading

0 comments on commit f7ad260

Please sign in to comment.