-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tsushi
authored and
tsushi
committed
Aug 7, 2016
1 parent
cd5e676
commit 51892a0
Showing
11 changed files
with
274 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
...ter04/ActorTicTacToeApplication/ActorTicTacToeApplication/ApplicationParameters/Cloud.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Application Name="fabric:/ActorTicTacToeApplication" xmlns="http://schemas.microsoft.com/2011/01/fabric" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<Parameters> | ||
</Parameters> | ||
<Application xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="fabric:/ActorTicTacToeApplication" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Parameters /> | ||
</Application> |
4 changes: 3 additions & 1 deletion
4
...ter04/ActorTicTacToeApplication/ActorTicTacToeApplication/ApplicationParameters/Local.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Application Name="fabric:/ActorTicTacToeApplication" xmlns="http://schemas.microsoft.com/2011/01/fabric" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<Application xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="fabric:/ActorTicTacToeApplication" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Parameters> | ||
<Parameter Name="GameActorService_PartitionCount" Value="1" /> | ||
<Parameter Name="PlayerActorService_PartitionCount" Value="1" /> | ||
</Parameters> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletions
13
Chapter04/ActorTicTacToeApplication/Game/PackageRoot/Config/Settings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Section Name="GameActorServiceReplicatorConfig"> | ||
<Parameter Name="ReplicatorEndpoint" Value="GameActorServiceReplicatorEndpoint" /> | ||
<Parameter Name="BatchAcknowledgementInterval" Value="0.005" /> | ||
</Section> | ||
<Section Name="GameActorServiceReplicatorSecurityConfig"> | ||
<Parameter Name="CredentialType" Value="None" /> | ||
</Section> | ||
<!-- The content will be generated during build --> | ||
</Settings> | ||
</Settings> |
38 changes: 32 additions & 6 deletions
38
Chapter04/ActorTicTacToeApplication/Game/PackageRoot/ServiceManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ServiceManifest Name="GamePkg" | ||
Version="1.0.0" | ||
xmlns="http://schemas.microsoft.com/2011/01/fabric" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<ServiceManifest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="GamePkg" Version="1.0.0" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<ServiceTypes> | ||
<StatefulServiceType ServiceTypeName="GameActorServiceType"> | ||
<Extensions> | ||
<Extension Name="__GeneratedServiceType__" GeneratedId="b92d987c-9d88-4cdd-8206-a073e458a372|Volatile"> | ||
<GeneratedNames xmlns="http://schemas.microsoft.com/2015/03/fabact-no-schema"> | ||
<DefaultService Name="GameActorService" /> | ||
<ServiceEndpoint Name="GameActorServiceEndpoint" /> | ||
<ReplicatorEndpoint Name="GameActorServiceReplicatorEndpoint" /> | ||
<ReplicatorConfigSection Name="GameActorServiceReplicatorConfig" /> | ||
<ReplicatorSecurityConfigSection Name="GameActorServiceReplicatorSecurityConfig" /> | ||
<StoreConfigSection Name="GameActorServiceLocalStoreConfig" /> | ||
</GeneratedNames> | ||
</Extension> | ||
</Extensions> | ||
</StatefulServiceType> | ||
</ServiceTypes> | ||
<CodePackage Name="Code" Version="1.0.0"> | ||
<EntryPoint> | ||
<ExeHost> | ||
<Program>Game.exe</Program> | ||
</ExeHost> | ||
</EntryPoint> | ||
</CodePackage> | ||
<ConfigPackage Name="Config" Version="1.0.0" /> | ||
<Resources> | ||
<Endpoints> | ||
<Endpoint Name="GameActorServiceEndpoint" /> | ||
<Endpoint Name="GameActorServiceReplicatorEndpoint" /> | ||
</Endpoints> | ||
</Resources> | ||
<!-- The content will be generated during build --> | ||
</ServiceManifest> | ||
</ServiceManifest> |
13 changes: 9 additions & 4 deletions
13
Chapter04/ActorTicTacToeApplication/Player/PackageRoot/Config/Settings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<Section Name="PlayerActorServiceReplicatorConfig"> | ||
<Parameter Name="ReplicatorEndpoint" Value="PlayerActorServiceReplicatorEndpoint" /> | ||
<Parameter Name="BatchAcknowledgementInterval" Value="0.005" /> | ||
</Section> | ||
<Section Name="PlayerActorServiceReplicatorSecurityConfig"> | ||
<Parameter Name="CredentialType" Value="None" /> | ||
</Section> | ||
<!-- The content will be generated during build --> | ||
</Settings> | ||
</Settings> |
38 changes: 32 additions & 6 deletions
38
Chapter04/ActorTicTacToeApplication/Player/PackageRoot/ServiceManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ServiceManifest Name="PlayerPkg" | ||
Version="1.0.0" | ||
xmlns="http://schemas.microsoft.com/2011/01/fabric" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<ServiceManifest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="PlayerPkg" Version="1.0.0" xmlns="http://schemas.microsoft.com/2011/01/fabric"> | ||
<ServiceTypes> | ||
<StatefulServiceType ServiceTypeName="PlayerActorServiceType"> | ||
<Extensions> | ||
<Extension Name="__GeneratedServiceType__" GeneratedId="d9abc88b-11d3-4491-988b-7e8416ad4426|None"> | ||
<GeneratedNames xmlns="http://schemas.microsoft.com/2015/03/fabact-no-schema"> | ||
<DefaultService Name="PlayerActorService" /> | ||
<ServiceEndpoint Name="PlayerActorServiceEndpoint" /> | ||
<ReplicatorEndpoint Name="PlayerActorServiceReplicatorEndpoint" /> | ||
<ReplicatorConfigSection Name="PlayerActorServiceReplicatorConfig" /> | ||
<ReplicatorSecurityConfigSection Name="PlayerActorServiceReplicatorSecurityConfig" /> | ||
<StoreConfigSection Name="PlayerActorServiceLocalStoreConfig" /> | ||
</GeneratedNames> | ||
</Extension> | ||
</Extensions> | ||
</StatefulServiceType> | ||
</ServiceTypes> | ||
<CodePackage Name="Code" Version="1.0.0"> | ||
<EntryPoint> | ||
<ExeHost> | ||
<Program>Player.exe</Program> | ||
</ExeHost> | ||
</EntryPoint> | ||
</CodePackage> | ||
<ConfigPackage Name="Config" Version="1.0.0" /> | ||
<Resources> | ||
<Endpoints> | ||
<Endpoint Name="PlayerActorServiceEndpoint" /> | ||
<Endpoint Name="PlayerActorServiceReplicatorEndpoint" /> | ||
</Endpoints> | ||
</Resources> | ||
<!-- The content will be generated during build --> | ||
</ServiceManifest> | ||
</ServiceManifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.