Created 2 new projects that are basically rewrites of the other two, many many many things are missing. but I want to effectively be able to switch states and commands without having to create dependencies.

Currently you can connect and Reach the "ConnectState" from there anything you state will just be an "InvalidCommand"
This commit is contained in:
darxval_cp 2012-06-04 18:40:46 -07:00
parent bec840f5e4
commit a0c406d482
37 changed files with 960 additions and 3 deletions

View file

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9D9E8CAC-8876-4725-9A65-2077DE4322DD}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WinPC.Engine</RootNamespace>
<AssemblyName>WinPC.Engine</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<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.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Abstract.Actions\ILoadable.cs" />
<Compile Include="Abstract.Actions\ISaveable.cs" />
<Compile Include="Abstract.Core\ICommand.cs" />
<Compile Include="Abstract.Core\IEngine.cs" />
<Compile Include="Abstract.Core\IGame.cs" />
<Compile Include="Abstract.Core\IGameObject.cs" />
<Compile Include="Abstract.Core\IInventory.cs" />
<Compile Include="Abstract.Core\ILogger.cs" />
<Compile Include="Abstract.Core\IPlayer.cs" />
<Compile Include="Abstract.Core\IRealm.cs" />
<Compile Include="Abstract.Core\IRoom.cs" />
<Compile Include="Abstract.Core\IRule.cs" />
<Compile Include="Abstract.Core\IState.cs" />
<Compile Include="Abstract.Actions\IUseable.cs" />
<Compile Include="Abstract.Directors\IConnectionsDirector.cs" />
<Compile Include="Abstract.Directors\IRuleDirector.cs" />
<Compile Include="Abstract.Directors\IServerDirector.cs" />
<Compile Include="Abstract.Networking\IConnection.cs" />
<Compile Include="Abstract.Networking\IServer.cs" />
<Compile Include="Abstract.Objects\IItem.cs" />
<Compile Include="Commands\InvalidCommand.cs" />
<Compile Include="Core\Logger.cs" />
<Compile Include="Core\Player.cs" />
<Compile Include="Directors\ServerDirector.cs" />
<Compile Include="Engine.cs" />
<Compile Include="Networking\Server.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="States\ConnectState.cs" />
<Compile Include="States\MainMenuState.cs" />
</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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>