forked from dragagon/AegisBornPhoton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tested, minor tweaks made. Client needs handler code in ViewControlle…
…r and then client is ready
- Loading branch information
Showing
133 changed files
with
168 additions
and
61 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,9 @@ public interface IViewController | |
|
||
void ApplicationQuit(); | ||
|
||
bool IsConnected { get; } | ||
|
||
void Connect(); | ||
#endregion | ||
|
||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
AegisBornClient/Assets/PhotonEngine/_Scripts/_Handlers/IPhotonEventHandler.cs
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
using ExitGames.Client.Photon; | ||
|
||
public interface IPhotonEventHandler | ||
{ | ||
void HandleEvent(EventData eventData); | ||
void OnHandleEvent(EventData eventData); | ||
} |
7 changes: 7 additions & 0 deletions
7
AegisBornClient/Assets/PhotonEngine/_Scripts/_Handlers/IPhotonOperationHandler.cs
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
using ExitGames.Client.Photon; | ||
|
||
public interface IPhotonOperationHandler | ||
{ | ||
void HandleResponse(OperationResponse response); | ||
void OnHandleResponse(OperationResponse response); | ||
} |
29 changes: 29 additions & 0 deletions
29
AegisBornClient/Assets/PhotonEngine/_Scripts/_Handlers/PhotonEventHandler.cs
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using ExitGames.Client.Photon; | ||
|
||
public abstract class PhotonEventHandler : IPhotonEventHandler | ||
{ | ||
delegate void BeforeEventRecieved(); | ||
BeforeEventRecieved beforeEventRecieved; | ||
|
||
delegate void AfterEventRecieved(); | ||
AfterEventRecieved afterEventRecieved; | ||
|
||
public void HandleEvent(EventData eventData) | ||
{ | ||
if (beforeEventRecieved != null) | ||
{ | ||
beforeEventRecieved(); | ||
} | ||
OnHandleEvent(eventData); | ||
if (afterEventRecieved != null) | ||
{ | ||
afterEventRecieved(); | ||
} | ||
} | ||
|
||
public abstract void OnHandleEvent(EventData eventData); | ||
} |
29 changes: 29 additions & 0 deletions
29
AegisBornClient/Assets/PhotonEngine/_Scripts/_Handlers/PhotonOperationHandler.cs
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using ExitGames.Client.Photon; | ||
|
||
public abstract class PhotonOperationHandler : IPhotonOperationHandler | ||
{ | ||
delegate void BeforeResponseRecieved(); | ||
BeforeResponseRecieved beforeResponseRecieved; | ||
|
||
delegate void AfterResponseRecieved(); | ||
AfterResponseRecieved afterResponseRecieved; | ||
|
||
public void HandleResponse(OperationResponse response) | ||
{ | ||
if (beforeResponseRecieved != null) | ||
{ | ||
beforeResponseRecieved(); | ||
} | ||
OnHandleResponse(response); | ||
if (afterResponseRecieved != null) | ||
{ | ||
afterResponseRecieved(); | ||
} | ||
} | ||
|
||
public abstract void OnHandleResponse(OperationResponse response); | ||
} |
File renamed without changes.
8 changes: 7 additions & 1 deletion
8
...sBornClient/Assets/_Scripts/Views/View.cs → ...sets/PhotonEngine/_Scripts/_Views/View.cs
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
Binary file not shown.
11 changes: 0 additions & 11 deletions
11
AegisBornClient/Assets/_Scripts/Controllers/LoginController.cs
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
public class LoginController :ViewController | ||
{ | ||
public LoginController(IView controlledView) : base(controlledView) | ||
{ | ||
} | ||
} |
Binary file not shown.
Binary file modified
BIN
+1.5 KB
(120%)
AegisBornClient/Library/ScriptAssemblies/Assembly-CSharp.dll
Binary file not shown.
Binary file modified
BIN
+1.17 KB
(130%)
AegisBornClient/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000002000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000003000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000004000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000005000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000006000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000007000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000008000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/00000000000000009000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/0000000000000000a000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/0000000000000000b000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/00/0000000000000000c000000000000000
Binary file not shown.
Binary file renamed
BIN
+1.34 KB
...cache/e1/e14bb4f067cb47e47859b017b5fce663 → ...cache/05/05a9df11e01bd594ca8aa4be8785d91f
Binary file not shown.
Binary file renamed
BIN
+1.34 KB
...cache/37/37589686ff650da4c842cf2b3e1f21ea → ...cache/27/271e44dd22bfcbb40be72b584f4ef1f5
Binary file not shown.
Binary file renamed
BIN
+1.33 KB
...cache/b9/b945daa1e24df0b47b5865062ec91853 → ...cache/2a/2abb1d56ff3346b458d740132d71bc55
Binary file not shown.
Binary file renamed
BIN
+2.88 KB
...cache/f9/f953e2ea378aaef4b8cf134b4a38f15a → ...cache/30/30193895480874b4d9c1581202d3a27d
Binary file not shown.
Binary file renamed
BIN
+3.79 KB
...cache/0a/0ad09783ec3e0e54a959aa86df80f287 → ...cache/3c/3cd523147ec61cf42858379cfbce49d5
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+2.88 KB
...cache/d7/d749e87c72e7ea04195effe252780a1a → ...cache/45/45c4371711f2c9c46a24e216c64a1108
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/45/45cee8f1956ecbb4ea580a54cd24615f
Binary file not shown.
Binary file renamed
BIN
+3 KB
...cache/6c/6c7c66708c746b144b72356426f548a4 → ...cache/4c/4c417261ee0fb6f4ebfe626919105db2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/68/68ffb974f03a6b3448440ffd9e99cd25
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.7 KB
...cache/49/496f6b35673604141a89d03ec3fceaa3 → ...cache/88/884b916068db9a04ca33113245c7430f
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-48 Bytes
(99%)
AegisBornClient/Library/cache/a2/a2cea3d5a648f7c40a9e8c7bc5674696
Binary file not shown.
Binary file renamed
BIN
+3.34 KB
...cache/bc/bcad53667774eb04a94b4764bbdec058 → ...cache/ae/ae9e3f7f4d6ca7245b6681d9251add63
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.32 KB
...cache/a9/a9869d450b064a04aa731593bb878151 → ...cache/b9/b938066bae34b0742b2f023ba5da3a55
Binary file not shown.
Binary file renamed
BIN
+3.03 KB
...cache/4e/4e1aa3dcae09cdc48b23ff433bce5a71 → ...cache/ba/ba2913fd4368b7545b9ca77886c3a7fc
Binary file not shown.
Binary file renamed
BIN
+3.32 KB
...cache/94/943d2dc65737bf5459f4072b3da4a3ab → ...cache/c7/c74c337c1271d7a419514a6fe92beeb9
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/cache/cd/cd32b07373fe56f4ca146903e2f8c9ef
Binary file not shown.
Binary file renamed
BIN
+3.03 KB
...cache/99/998a24a99c6655e42ac7c660839fc740 → ...cache/da/da6538e3c09ff6844ad8ff33f535f840
Binary file not shown.
Binary file renamed
BIN
+4.41 KB
...cache/7a/7aebd8fc816bfd8409e9e1d3b0606234 → ...cache/e1/e18754fd4305b114189db69553ca49a4
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000002000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000003000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000004000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000005000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000006000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000007000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000008000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/00000000000000009000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/0000000000000000a000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/0000000000000000b000000000000000
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/00/0000000000000000c000000000000000
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(100%)
AegisBornClient/Library/metadata/26/2662bd23aad1326478a3f56a80dc014e
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+2.54 KB
...adata/e1/e14bb4f067cb47e47859b017b5fce663 → ...adata/2a/2abb1d56ff3346b458d740132d71bc55
Binary file not shown.
Binary file renamed
BIN
+3.18 KB
...adata/94/943d2dc65737bf5459f4072b3da4a3ab → ...adata/30/30193895480874b4d9c1581202d3a27d
Binary file not shown.
Binary file renamed
BIN
+3.17 KB
...adata/d7/d749e87c72e7ea04195effe252780a1a → ...adata/3c/3cd523147ec61cf42858379cfbce49d5
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.17 KB
...adata/6c/6c7c66708c746b144b72356426f548a4 → ...adata/45/45c4371711f2c9c46a24e216c64a1108
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/45/45cee8f1956ecbb4ea580a54cd24615f
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/68/68ffb974f03a6b3448440ffd9e99cd25
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.16 KB
...adata/a9/a9869d450b064a04aa731593bb878151 → ...adata/70/70c1b6f1d49fcc147a816089b6124984
Binary file not shown.
Binary file renamed
BIN
+2.53 KB
...adata/b9/b945daa1e24df0b47b5865062ec91853 → ...adata/7e/7e988d5cb13677940874fcd3cd63553b
Binary file not shown.
Binary file renamed
BIN
+3.15 KB
...adata/0a/0ad09783ec3e0e54a959aa86df80f287 → ...adata/88/884b916068db9a04ca33113245c7430f
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.16 KB
AegisBornClient/Library/metadata/99/998a24a99c6655e42ac7c660839fc740
Binary file not shown.
Binary file renamed
BIN
+2.54 KB
...adata/37/37589686ff650da4c842cf2b3e1f21ea → ...adata/9f/9fe4167d17496714ebdcf1c38a774343
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(100%)
AegisBornClient/Library/metadata/a2/a2cea3d5a648f7c40a9e8c7bc5674696
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.15 KB
...adata/49/496f6b35673604141a89d03ec3fceaa3 → ...adata/b9/b938066bae34b0742b2f023ba5da3a55
Binary file not shown.
Binary file renamed
BIN
+3.17 KB
...adata/7a/7aebd8fc816bfd8409e9e1d3b0606234 → ...adata/ba/ba2913fd4368b7545b9ca77886c3a7fc
Binary file not shown.
Binary file removed
BIN
-3.17 KB
AegisBornClient/Library/metadata/bc/bcad53667774eb04a94b4764bbdec058
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/Library/metadata/cd/cd32b07373fe56f4ca146903e2f8c9ef
Binary file not shown.
Binary file renamed
BIN
+3.15 KB
...adata/4e/4e1aa3dcae09cdc48b23ff433bce5a71 → ...adata/da/da6538e3c09ff6844ad8ff33f535f840
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.16 KB
AegisBornClient/Library/metadata/f9/f953e2ea378aaef4b8cf134b4a38f15a
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
AegisBornClient/_ReSharper.AegisBornClient-csharp/BuildScriptCache/.crc
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 +1 @@ | ||
K9d | ||
� |
Binary file added
BIN
+89 Bytes
AegisBornClient/_ReSharper.AegisBornClient-csharp/BuildScriptCache/6/f28f3b2.dat
Binary file not shown.
Binary file removed
BIN
-89 Bytes
AegisBornClient/_ReSharper.AegisBornClient-csharp/BuildScriptCache/7/6a0b30bf.dat
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
AegisBornClient/_ReSharper.AegisBornClient-csharp/NamedArguments/.crc
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 +1 @@ | ||
� | ||
�J� |
Binary file removed
BIN
-1.21 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/NamedArguments/3/111f548b.dat
Binary file not shown.
Binary file added
BIN
+1.72 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/NamedArguments/6/f28f3b2.dat
Binary file not shown.
Binary file modified
BIN
+750 Bytes
(140%)
AegisBornClient/_ReSharper.AegisBornClient-csharp/SymbolCache.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
AegisBornClient/_ReSharper.AegisBornClient-csharp/TodoCache/.crc
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 +1 @@ | ||
C� | ||
��� |
Binary file added
BIN
+1.35 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/TodoCache/6/f28f3b2.dat
Binary file not shown.
Binary file removed
BIN
-1.39 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/TodoCache/7/6a0b30bf.dat
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
AegisBornClient/_ReSharper.AegisBornClient-csharp/WordIndex/.crc
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 +1 @@ | ||
1��$ | ||
̬u1 |
Binary file removed
BIN
-2.89 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/WordIndex/3/111f548b.dat
Binary file not shown.
Binary file added
BIN
+3.51 KB
AegisBornClient/_ReSharper.AegisBornClient-csharp/WordIndex/7/5bcbd540.dat
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
AegisBornClient/obj/Debug/Assembly-CSharp-vs.csproj.FileListAbsolute.txt
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 +1,11 @@ | ||
D:\development\photon\AegisBornClient\obj\Debug\ResolveAssemblyReference.cache | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\Assembly-CSharp.dll | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\Assembly-CSharp.pdb | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\CJRGaming.MMO.Common.dll | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\Photon3Unity3D.dll | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\UnityEditor.dll | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\UnityEngine.dll | ||
C:\development\photon\AegisBornClient\Temp\bin\Debug\nunit.framework.dll | ||
C:\development\photon\AegisBornClient\obj\Debug\ResolveAssemblyReference.cache | ||
C:\development\photon\AegisBornClient\obj\Debug\Assembly-CSharp.dll | ||
C:\development\photon\AegisBornClient\obj\Debug\Assembly-CSharp.pdb |
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AegisBornClient/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+182 Bytes
CJRGaming.MMO/_ReSharper.CJRGaming.MMO/BuildScriptCache/2/250b9c4a.dat
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.