Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b8fe2bb13f | |||
| 89d130a193 | |||
| 0cd912a1aa | |||
| c64cc61c78 | |||
| 2dcb047014 | |||
| 33f8bba2ed | |||
| 5aa159ed2f | |||
| 892558ab16 | |||
| f55634877a | |||
| 8b3a29a750 | |||
| 6a50bffe1e | |||
| 9144ad58ef | |||
| ee9f3fbe3a | |||
| 893c73512a | |||
| e7dd693147 | |||
| fef1007c8c | |||
| e33c442a18 | |||
| 09b185a3ad | |||
| 7d154ea4d4 | |||
| d2577e5d1f | |||
| e25f42f9ff | |||
| 28cc41c3ad | |||
| fc483c0854 | |||
| bcc45f7db8 | |||
| 689a240e5b | |||
| 85b75766a9 | |||
| b90ed974e5 | |||
| 3da57e086e | |||
| 745d196a8b | |||
| 860051777e | |||
| 6422db783a | |||
| 5d812d7acc | |||
| c214b6ca7f | |||
| 64842886d7 | |||
| c892c2b67a | |||
| e1a3ea45e2 | |||
| 8788cb0fcf | |||
| 27db256902 |
@@ -0,0 +1,25 @@
|
|||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/.idea
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/azds.yaml
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
LICENSE
|
||||||
|
README.md
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
.vs
|
.vs
|
||||||
|
.vscode
|
||||||
obj
|
obj
|
||||||
bin
|
bin
|
||||||
*.user
|
*.user
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="Images/ragon-logo.png" width="200" >
|
<img src="Images/logo.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## Ragon Server
|
## Ragon Server
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Client.Simulation
|
namespace Ragon.Client.Property
|
||||||
{
|
{
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class RagonBool : RagonProperty
|
public class RagonBool : RagonProperty
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Client.Simulation
|
namespace Ragon.Client.Property
|
||||||
{
|
{
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class RagonInt : RagonProperty
|
public class RagonInt : RagonProperty
|
||||||
|
|||||||
@@ -0,0 +1,76 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using System.Numerics;
|
||||||
|
using Ragon.Client.Compressor;
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
|
namespace Ragon.Client.Property;
|
||||||
|
|
||||||
|
public class RagonQuaternion : RagonProperty
|
||||||
|
{
|
||||||
|
private Quaternion _value;
|
||||||
|
|
||||||
|
public Quaternion Value
|
||||||
|
{
|
||||||
|
get => _value;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_value = value;
|
||||||
|
|
||||||
|
MarkAsChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private readonly FloatCompressor _compressor;
|
||||||
|
|
||||||
|
public RagonQuaternion(bool invokeLocal = false, int priority = 0) : base(priority, invokeLocal)
|
||||||
|
{
|
||||||
|
_compressor = new FloatCompressor(-1.0f, 1f, 0.01f);
|
||||||
|
|
||||||
|
SetFixedSize(_compressor.RequiredBits * 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Serialize(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
var compressedX = _compressor.Compress(_value.X);
|
||||||
|
var compressedY = _compressor.Compress(_value.Y);
|
||||||
|
var compressedZ = _compressor.Compress(_value.Z);
|
||||||
|
var compressedW = _compressor.Compress(_value.W);
|
||||||
|
|
||||||
|
buffer.Write(compressedX, _compressor.RequiredBits);
|
||||||
|
buffer.Write(compressedY, _compressor.RequiredBits);
|
||||||
|
buffer.Write(compressedZ, _compressor.RequiredBits);
|
||||||
|
buffer.Write(compressedW, _compressor.RequiredBits);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Deserialize(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
var compressedX = buffer.Read(_compressor.RequiredBits);
|
||||||
|
var compressedY = buffer.Read(_compressor.RequiredBits);
|
||||||
|
var compressedZ = buffer.Read(_compressor.RequiredBits);
|
||||||
|
var compressedW = buffer.Read(_compressor.RequiredBits);
|
||||||
|
|
||||||
|
var x = _compressor.Decompress(compressedX);
|
||||||
|
var y = _compressor.Decompress(compressedY);
|
||||||
|
var z = _compressor.Decompress(compressedZ);
|
||||||
|
var w = _compressor.Decompress(compressedW);
|
||||||
|
|
||||||
|
_value = new Quaternion(x, y, z, w);
|
||||||
|
|
||||||
|
InvokeChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Client.Simulation
|
namespace Ragon.Client.Property
|
||||||
{
|
{
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class RagonString : RagonProperty
|
public class RagonString : RagonProperty
|
||||||
|
|||||||
@@ -0,0 +1,330 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Numerics;
|
||||||
|
using Ragon.Client.Compressor;
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
|
namespace Ragon.Client.Property
|
||||||
|
{
|
||||||
|
[Serializable]
|
||||||
|
public enum RagonAxis
|
||||||
|
{
|
||||||
|
XYZ,
|
||||||
|
XY,
|
||||||
|
YZ,
|
||||||
|
XZ,
|
||||||
|
X,
|
||||||
|
Y,
|
||||||
|
Z
|
||||||
|
}
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
|
public class RagonVector3 : RagonProperty
|
||||||
|
{
|
||||||
|
private Vector3 _value;
|
||||||
|
|
||||||
|
public Vector3 Value
|
||||||
|
{
|
||||||
|
get => _value;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_value = value;
|
||||||
|
|
||||||
|
MarkAsChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private RagonAxis _axis;
|
||||||
|
private FloatCompressor _compressorX;
|
||||||
|
private FloatCompressor _compressorY;
|
||||||
|
private FloatCompressor _compressorZ;
|
||||||
|
|
||||||
|
|
||||||
|
public RagonVector3(
|
||||||
|
RagonAxis axis = RagonAxis.XYZ,
|
||||||
|
bool invokeLocal = true,
|
||||||
|
int priority = 0
|
||||||
|
) : base(priority, invokeLocal)
|
||||||
|
{
|
||||||
|
_axis = axis;
|
||||||
|
|
||||||
|
var defaultCompressor = new FloatCompressor(-1024.0f, 1024f, 0.01f);
|
||||||
|
|
||||||
|
_compressorX = defaultCompressor;
|
||||||
|
_compressorY = defaultCompressor;
|
||||||
|
_compressorZ = defaultCompressor;
|
||||||
|
|
||||||
|
switch (_axis)
|
||||||
|
{
|
||||||
|
case RagonAxis.XYZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XY:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.YZ:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.X:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Y:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Z:
|
||||||
|
SetFixedSize(_compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public RagonVector3(
|
||||||
|
Vector3 initialValue,
|
||||||
|
RagonAxis axis = RagonAxis.XYZ,
|
||||||
|
float min = -1024.0f,
|
||||||
|
float max = 1024.0f,
|
||||||
|
float precision = 0.1f,
|
||||||
|
bool invokeLocal = true,
|
||||||
|
int priority = 0
|
||||||
|
) : base(priority, invokeLocal)
|
||||||
|
{
|
||||||
|
_value = initialValue;
|
||||||
|
_axis = axis;
|
||||||
|
|
||||||
|
var defaultCompressor = new FloatCompressor(min, max, precision);
|
||||||
|
|
||||||
|
_compressorX = defaultCompressor;
|
||||||
|
_compressorY = defaultCompressor;
|
||||||
|
_compressorZ = defaultCompressor;
|
||||||
|
|
||||||
|
switch (_axis)
|
||||||
|
{
|
||||||
|
case RagonAxis.XYZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XY:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.YZ:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.X:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Y:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Z:
|
||||||
|
SetFixedSize(_compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public RagonVector3(
|
||||||
|
RagonAxis axis = RagonAxis.XYZ,
|
||||||
|
FloatCompressor compressorX = null,
|
||||||
|
FloatCompressor compressorY = null,
|
||||||
|
FloatCompressor compressorZ = null,
|
||||||
|
bool invokeLocal = true,
|
||||||
|
int priority = 0
|
||||||
|
) : base(priority, invokeLocal)
|
||||||
|
{
|
||||||
|
_axis = axis;
|
||||||
|
|
||||||
|
var defaultCompressor = new FloatCompressor(-1024.0f, 1024f, 0.01f);
|
||||||
|
|
||||||
|
_compressorX = defaultCompressor;
|
||||||
|
_compressorY = defaultCompressor;
|
||||||
|
_compressorZ = defaultCompressor;
|
||||||
|
|
||||||
|
if (compressorX != null)
|
||||||
|
_compressorX = compressorX;
|
||||||
|
|
||||||
|
if (compressorY != null)
|
||||||
|
_compressorY = compressorY;
|
||||||
|
|
||||||
|
if (compressorZ != null)
|
||||||
|
_compressorZ = compressorZ;
|
||||||
|
|
||||||
|
switch (_axis)
|
||||||
|
{
|
||||||
|
case RagonAxis.XYZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XY:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.XZ:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.YZ:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits + _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.X:
|
||||||
|
SetFixedSize(_compressorX.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Y:
|
||||||
|
SetFixedSize(_compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
case RagonAxis.Z:
|
||||||
|
SetFixedSize(_compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Serialize(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
switch (_axis)
|
||||||
|
{
|
||||||
|
case RagonAxis.XYZ:
|
||||||
|
{
|
||||||
|
var compressedX = _compressorX.Compress(_value.X);
|
||||||
|
var compressedY = _compressorY.Compress(_value.Y);
|
||||||
|
var compressedZ = _compressorZ.Compress(_value.Z);
|
||||||
|
|
||||||
|
buffer.Write(compressedX, _compressorX.RequiredBits);
|
||||||
|
buffer.Write(compressedY, _compressorY.RequiredBits);
|
||||||
|
buffer.Write(compressedZ, _compressorZ.RequiredBits);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case RagonAxis.XY:
|
||||||
|
{
|
||||||
|
var compressedX = _compressorX.Compress(_value.X);
|
||||||
|
var compressedY = _compressorY.Compress(_value.Y);
|
||||||
|
|
||||||
|
buffer.Write(compressedX, _compressorX.RequiredBits);
|
||||||
|
buffer.Write(compressedY, _compressorY.RequiredBits);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case RagonAxis.XZ:
|
||||||
|
{
|
||||||
|
var compressedX = _compressorX.Compress(_value.X);
|
||||||
|
var compressedZ = _compressorZ.Compress(_value.Z);
|
||||||
|
|
||||||
|
buffer.Write(compressedX, _compressorX.RequiredBits);
|
||||||
|
buffer.Write(compressedZ, _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case RagonAxis.YZ:
|
||||||
|
{
|
||||||
|
var compressedY = _compressorY.Compress(_value.Y);
|
||||||
|
var compressedZ = _compressorZ.Compress(_value.Z);
|
||||||
|
|
||||||
|
buffer.Write(compressedY, _compressorY.RequiredBits);
|
||||||
|
buffer.Write(compressedZ, _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.X:
|
||||||
|
{
|
||||||
|
var compressedX = _compressorX.Compress(_value.X);
|
||||||
|
|
||||||
|
buffer.Write(compressedX, _compressorX.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.Y:
|
||||||
|
{
|
||||||
|
var compressedY = _compressorY.Compress(_value.Y);
|
||||||
|
|
||||||
|
buffer.Write(compressedY, _compressorY.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.Z:
|
||||||
|
{
|
||||||
|
var compressedZ = _compressorZ.Compress(_value.Z);
|
||||||
|
|
||||||
|
buffer.Write(compressedZ, _compressorZ.RequiredBits);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Deserialize(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
switch (_axis)
|
||||||
|
{
|
||||||
|
case RagonAxis.XYZ:
|
||||||
|
{
|
||||||
|
var compressedX = buffer.Read(_compressorX.RequiredBits);
|
||||||
|
var compressedY = buffer.Read(_compressorY.RequiredBits);
|
||||||
|
var compressedZ = buffer.Read(_compressorZ.RequiredBits);
|
||||||
|
|
||||||
|
_value.X = _compressorX.Decompress(compressedX);
|
||||||
|
_value.Y = _compressorY.Decompress(compressedY);
|
||||||
|
_value.Z = _compressorZ.Decompress(compressedZ);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.XY:
|
||||||
|
{
|
||||||
|
var compressedX = buffer.Read(_compressorX.RequiredBits);
|
||||||
|
var compressedY = buffer.Read(_compressorY.RequiredBits);
|
||||||
|
|
||||||
|
_value.X = _compressorX.Decompress(compressedX);
|
||||||
|
_value.Z = _compressorY.Decompress(compressedY);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.XZ:
|
||||||
|
{
|
||||||
|
var compressedX = buffer.Read(_compressorX.RequiredBits);
|
||||||
|
var compressedZ = buffer.Read(_compressorZ.RequiredBits);
|
||||||
|
|
||||||
|
_value.X = _compressorX.Decompress(compressedX);
|
||||||
|
_value.Z = _compressorZ.Decompress(compressedZ);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.YZ:
|
||||||
|
{
|
||||||
|
var compressedY = buffer.Read(_compressorY.RequiredBits);
|
||||||
|
var compressedZ = buffer.Read(_compressorZ.RequiredBits);
|
||||||
|
|
||||||
|
_value.Y = _compressorY.Decompress(compressedY);
|
||||||
|
_value.Z = _compressorZ.Decompress(compressedZ);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.X:
|
||||||
|
{
|
||||||
|
var compressedX = buffer.Read(_compressorX.RequiredBits);
|
||||||
|
|
||||||
|
_value.X = _compressorX.Decompress(compressedX);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.Y:
|
||||||
|
{
|
||||||
|
var compressedY = buffer.Read(_compressorY.RequiredBits);
|
||||||
|
|
||||||
|
_value.Y = _compressorY.Decompress(compressedY);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RagonAxis.Z:
|
||||||
|
{
|
||||||
|
var compressedZ = buffer.Read(_compressorZ.RequiredBits);
|
||||||
|
|
||||||
|
_value.Z = _compressorZ.Decompress(compressedZ);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InvokeChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<OutputPath>/Users/edmand46/RagonProjects/ragon-oss-examples/Assets/Ragon/Plugins/</OutputPath>
|
<OutputPath>/Users/edmand46/UnityProjects/itd-client/Assets/Ragon/Runtime/Plugins/</OutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||||
|
|||||||
@@ -19,20 +19,49 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client
|
namespace Ragon.Client
|
||||||
{
|
{
|
||||||
public sealed class RagonEntity
|
public sealed class RagonEntity : IDisposable
|
||||||
{
|
{
|
||||||
|
private class EventSubscription : IDisposable
|
||||||
|
{
|
||||||
|
private List<Action<RagonPlayer, IRagonEvent>> _callbacks;
|
||||||
|
private List<Action<RagonPlayer, IRagonEvent>> _localCallbacks;
|
||||||
|
private Action<RagonPlayer, IRagonEvent> _callback;
|
||||||
|
|
||||||
|
public EventSubscription(
|
||||||
|
List<Action<RagonPlayer, IRagonEvent>> callbacks,
|
||||||
|
List<Action<RagonPlayer, IRagonEvent>> localCallbacks,
|
||||||
|
Action<RagonPlayer, IRagonEvent> callback)
|
||||||
|
{
|
||||||
|
_callbacks = callbacks;
|
||||||
|
_localCallbacks = localCallbacks;
|
||||||
|
_callback = callback;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
_callbacks?.Remove(_callback);
|
||||||
|
_localCallbacks?.Remove(_callback);
|
||||||
|
|
||||||
|
_callbacks = null!;
|
||||||
|
_localCallbacks = null!;
|
||||||
|
_callback = null!;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private delegate void OnEventDelegate(RagonPlayer player, RagonBuffer serializer);
|
private delegate void OnEventDelegate(RagonPlayer player, RagonBuffer serializer);
|
||||||
|
|
||||||
private RagonClient _client;
|
private RagonClient _client;
|
||||||
|
|
||||||
public ushort Id { get; private set; }
|
public ushort Id { get; private set; }
|
||||||
public ushort Type { get; private set; }
|
public ushort Type { get; private set; }
|
||||||
public bool Replication { get; private set; }
|
|
||||||
|
|
||||||
public RagonAuthority Authority { get; private set; }
|
public RagonAuthority Authority { get; private set; }
|
||||||
public RagonPlayer Owner { get; private set; }
|
public RagonPlayer Owner { get; private set; }
|
||||||
public RagonEntityState State { get; private set; }
|
public RagonEntityState State { get; private set; }
|
||||||
|
|
||||||
|
public bool IsStatic => SceneId > 0;
|
||||||
|
public bool IsReplicated { get; private set; }
|
||||||
public bool IsAttached { get; private set; }
|
public bool IsAttached { get; private set; }
|
||||||
public bool HasAuthority { get; private set; }
|
public bool HasAuthority { get; private set; }
|
||||||
|
|
||||||
@@ -50,32 +79,32 @@ namespace Ragon.Client
|
|||||||
private RagonPayload _destroyPayload;
|
private RagonPayload _destroyPayload;
|
||||||
|
|
||||||
private readonly Dictionary<int, OnEventDelegate> _events = new Dictionary<int, OnEventDelegate>();
|
private readonly Dictionary<int, OnEventDelegate> _events = new Dictionary<int, OnEventDelegate>();
|
||||||
private readonly Dictionary<int, Action<RagonPlayer, IRagonEvent>> _localEvents = new Dictionary<int, Action<RagonPlayer, IRagonEvent>>();
|
private readonly Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>> _localListeners = new Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>>();
|
||||||
|
private readonly Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>> _listeners = new Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>>();
|
||||||
|
|
||||||
public RagonEntity(ushort type = 0, ushort sceneId = 0)
|
public RagonEntity(ushort type = 0, ushort sceneId = 0, bool replicated = true)
|
||||||
{
|
{
|
||||||
State = new RagonEntityState(this);
|
State = new RagonEntityState(this);
|
||||||
Type = type;
|
Type = type;
|
||||||
|
IsReplicated = replicated;
|
||||||
|
|
||||||
_spawnPayload = new RagonPayload(0);
|
_spawnPayload = new RagonPayload(0);
|
||||||
_destroyPayload = new RagonPayload(0);
|
_destroyPayload = new RagonPayload(0);
|
||||||
_sceneId = sceneId;
|
_sceneId = sceneId;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void Attach(RagonClient client, ushort entityId, ushort entityType, bool hasAuthority, RagonPlayer owner)
|
internal void Attach()
|
||||||
{
|
{
|
||||||
Type = entityType;
|
|
||||||
Id = entityId;
|
|
||||||
Owner = owner;
|
|
||||||
IsAttached = true;
|
IsAttached = true;
|
||||||
Replication = true;
|
|
||||||
HasAuthority = hasAuthority;
|
|
||||||
|
|
||||||
_client = client;
|
|
||||||
|
|
||||||
Attached?.Invoke(this);
|
Attached?.Invoke(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SetReplication(bool enabled)
|
||||||
|
{
|
||||||
|
IsReplicated = enabled;
|
||||||
|
}
|
||||||
|
|
||||||
internal void Detach(RagonPayload payload)
|
internal void Detach(RagonPayload payload)
|
||||||
{
|
{
|
||||||
_destroyPayload = payload;
|
_destroyPayload = payload;
|
||||||
@@ -97,9 +126,16 @@ namespace Ragon.Client
|
|||||||
return payload;
|
return payload;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AttachPayload(RagonPayload payload)
|
public void Prepare(RagonClient client, ushort entityId, ushort entityType, bool hasAuthority, RagonPlayer player, RagonPayload payload)
|
||||||
{
|
{
|
||||||
|
Type = entityType;
|
||||||
|
Id = entityId;
|
||||||
|
HasAuthority = hasAuthority;
|
||||||
|
|
||||||
|
_client = client;
|
||||||
_spawnPayload = payload;
|
_spawnPayload = payload;
|
||||||
|
|
||||||
|
Owner = player;
|
||||||
}
|
}
|
||||||
|
|
||||||
public T GetAttachPayload<T>() where T : IRagonPayload, new()
|
public T GetAttachPayload<T>() where T : IRagonPayload, new()
|
||||||
@@ -155,12 +191,17 @@ namespace Ragon.Client
|
|||||||
{
|
{
|
||||||
if (replicationMode == RagonReplicationMode.Local)
|
if (replicationMode == RagonReplicationMode.Local)
|
||||||
{
|
{
|
||||||
_localEvents[eventCode].Invoke(_client.Room.Local, evnt);
|
var localListeners = _localListeners[eventCode];
|
||||||
|
foreach (var listener in localListeners)
|
||||||
|
listener.Invoke(_client.Room.Local, evnt);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (replicationMode == RagonReplicationMode.LocalAndServer)
|
if (replicationMode == RagonReplicationMode.LocalAndServer)
|
||||||
{
|
{
|
||||||
_localEvents[eventCode].Invoke(_client.Room.Local, evnt);
|
var localListeners = _localListeners[eventCode];
|
||||||
|
foreach (var listener in localListeners)
|
||||||
|
listener.Invoke(_client.Room.Local, evnt);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,27 +220,41 @@ namespace Ragon.Client
|
|||||||
_client.Reliable.Send(sendData);
|
_client.Reliable.Send(sendData);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnEvent<TEvent>(Action<RagonPlayer, TEvent> callback) where TEvent : IRagonEvent, new()
|
public IDisposable OnEvent<TEvent>(Action<RagonPlayer, TEvent> callback) where TEvent : IRagonEvent, new()
|
||||||
{
|
{
|
||||||
var t = new TEvent();
|
var t = new TEvent();
|
||||||
var eventCode = _client.Event.GetEventCode(t);
|
var eventCode = _client.Event.GetEventCode(t);
|
||||||
|
var action = (RagonPlayer player, IRagonEvent eventData) => callback.Invoke(player, (TEvent)eventData);
|
||||||
|
|
||||||
if (_events.ContainsKey(eventCode))
|
if (!_listeners.TryGetValue(eventCode, out var callbacks))
|
||||||
{
|
{
|
||||||
_events.Remove(eventCode);
|
callbacks = new List<Action<RagonPlayer, IRagonEvent>>();
|
||||||
_localEvents.Remove(eventCode);
|
_listeners.Add(eventCode, callbacks);
|
||||||
|
|
||||||
RagonLog.Warn($"Event already {eventCode} subscribed, removed old one!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_localEvents.Add(eventCode, (player, eventData) => { callback.Invoke(player, (TEvent)eventData); });
|
if (!_localListeners.TryGetValue(eventCode, out var localCallbacks))
|
||||||
|
{
|
||||||
|
localCallbacks = new List<Action<RagonPlayer, IRagonEvent>>();
|
||||||
|
_localListeners.Add(eventCode, localCallbacks);
|
||||||
|
}
|
||||||
|
|
||||||
|
callbacks.Add(action);
|
||||||
|
localCallbacks.Add(action);
|
||||||
|
|
||||||
|
if (!_events.ContainsKey(eventCode))
|
||||||
|
{
|
||||||
_events.Add(eventCode, (player, serializer) =>
|
_events.Add(eventCode, (player, serializer) =>
|
||||||
{
|
{
|
||||||
t.Deserialize(serializer);
|
t.Deserialize(serializer);
|
||||||
callback.Invoke(player, t);
|
|
||||||
|
foreach (var callbackListener in callbacks)
|
||||||
|
callbackListener.Invoke(player, t);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return new EventSubscription(callbacks, localCallbacks, action);
|
||||||
|
}
|
||||||
|
|
||||||
internal void Write(RagonBuffer buffer)
|
internal void Write(RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
buffer.WriteUShort(Id);
|
buffer.WriteUShort(Id);
|
||||||
@@ -209,7 +264,6 @@ namespace Ragon.Client
|
|||||||
_propertiesChanged = false;
|
_propertiesChanged = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
internal void Read(RagonBuffer buffer)
|
internal void Read(RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
State.ReadState(buffer);
|
State.ReadState(buffer);
|
||||||
@@ -217,6 +271,8 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
internal void Event(ushort eventCode, RagonPlayer caller, RagonBuffer buffer)
|
internal void Event(ushort eventCode, RagonPlayer caller, RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
|
if (!IsReplicated) return;
|
||||||
|
|
||||||
if (_events.TryGetValue(eventCode, out var evnt))
|
if (_events.TryGetValue(eventCode, out var evnt))
|
||||||
evnt?.Invoke(caller, buffer);
|
evnt?.Invoke(caller, buffer);
|
||||||
else
|
else
|
||||||
@@ -237,5 +293,12 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
OwnershipChanged?.Invoke(prevOwner, player);
|
OwnershipChanged?.Invoke(prevOwner, player);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
_events.Clear();
|
||||||
|
_listeners.Clear();
|
||||||
|
_localListeners.Clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -21,6 +21,8 @@ namespace Ragon.Client;
|
|||||||
|
|
||||||
public class RagonPayload
|
public class RagonPayload
|
||||||
{
|
{
|
||||||
|
public static RagonPayload Empty = new RagonPayload(0);
|
||||||
|
|
||||||
private readonly uint[] _data = new uint[128];
|
private readonly uint[] _data = new uint[128];
|
||||||
private readonly int _size = 0;
|
private readonly int _size = 0;
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
protected void InvokeChanged()
|
protected void InvokeChanged()
|
||||||
{
|
{
|
||||||
if (!InvokeLocal)
|
if (_entity.HasAuthority)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Changed?.Invoke();
|
Changed?.Invoke();
|
||||||
@@ -71,7 +71,8 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
protected void MarkAsChanged()
|
protected void MarkAsChanged()
|
||||||
{
|
{
|
||||||
InvokeChanged();
|
if (InvokeLocal)
|
||||||
|
Changed?.Invoke();
|
||||||
|
|
||||||
if (_dirty || _entity == null)
|
if (_dirty || _entity == null)
|
||||||
return;
|
return;
|
||||||
@@ -106,15 +107,15 @@ namespace Ragon.Client
|
|||||||
{
|
{
|
||||||
Serialize(_propertyBuffer);
|
Serialize(_propertyBuffer);
|
||||||
|
|
||||||
buffer.FromBuffer(_propertyBuffer, _size);
|
buffer.CopyFrom(_propertyBuffer, _size);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Serialize(_propertyBuffer);
|
Serialize(_propertyBuffer);
|
||||||
|
|
||||||
var propertySize = (ushort) _propertyBuffer.WriteOffset;
|
var propertySize = (ushort)_propertyBuffer.WriteOffset;
|
||||||
buffer.WriteUShort(propertySize);;
|
buffer.WriteUShort(propertySize);
|
||||||
buffer.FromBuffer(_propertyBuffer, propertySize);
|
buffer.CopyFrom(_propertyBuffer, propertySize);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void Read(RagonBuffer buffer)
|
internal void Read(RagonBuffer buffer)
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class AuthorizeFailedHandler: Handler
|
internal class AuthorizeFailedHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
public AuthorizeFailedHandler(RagonListenerList list)
|
public AuthorizeFailedHandler(RagonListenerList list)
|
||||||
@@ -27,9 +27,9 @@ internal class AuthorizeFailedHandler: Handler
|
|||||||
_listenerList = list;
|
_listenerList = list;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var message = buffer.ReadString();
|
var message = reader.ReadString();
|
||||||
_listenerList.OnAuthorizationFailed(message);
|
_listenerList.OnAuthorizationFailed(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class AuthorizeSuccessHandler: Handler
|
internal class AuthorizeSuccessHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
private readonly RagonClient _client;
|
private readonly RagonClient _client;
|
||||||
@@ -32,11 +32,11 @@ internal class AuthorizeSuccessHandler: Handler
|
|||||||
_listenerList = listenerList;
|
_listenerList = listenerList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var playerId = buffer.ReadString();
|
var playerId = reader.ReadString();
|
||||||
var playerName = buffer.ReadString();
|
var playerName = reader.ReadString();
|
||||||
var playerPayload = buffer.ReadString();
|
var playerPayload = reader.ReadString();
|
||||||
|
|
||||||
_client.SetStatus(RagonStatus.LOBBY);
|
_client.SetStatus(RagonStatus.LOBBY);
|
||||||
_listenerList.OnAuthorizationSuccess(playerId, playerName, playerPayload);
|
_listenerList.OnAuthorizationSuccess(playerId, playerName, playerPayload);
|
||||||
|
|||||||
@@ -18,12 +18,13 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class EntityCreateHandler : Handler
|
internal class EntityCreateHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonClient _client;
|
private readonly RagonClient _client;
|
||||||
private readonly RagonPlayerCache _playerCache;
|
private readonly RagonPlayerCache _playerCache;
|
||||||
private readonly RagonEntityCache _entityCache;
|
private readonly RagonEntityCache _entityCache;
|
||||||
private readonly IRagonEntityListener _entityListener;
|
private readonly IRagonEntityListener _entityListener;
|
||||||
|
|
||||||
public EntityCreateHandler(
|
public EntityCreateHandler(
|
||||||
RagonClient client,
|
RagonClient client,
|
||||||
RagonPlayerCache playerCache,
|
RagonPlayerCache playerCache,
|
||||||
@@ -37,30 +38,32 @@ internal class EntityCreateHandler : Handler
|
|||||||
_entityListener = entityListener;
|
_entityListener = entityListener;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var attachId = buffer.ReadUShort();
|
var attachId = reader.ReadUShort();
|
||||||
var entityType = buffer.ReadUShort();
|
var entityType = reader.ReadUShort();
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
var ownerId = buffer.ReadUShort();
|
var ownerId = reader.ReadUShort();
|
||||||
var player = _playerCache.GetPlayerByPeer(ownerId);
|
var player = _playerCache.GetPlayerByPeer(ownerId);
|
||||||
var payload = new RagonPayload(buffer.Capacity);
|
var payload = new RagonPayload(reader.Capacity);
|
||||||
payload.Read(buffer);
|
payload.Read(reader);
|
||||||
|
|
||||||
if (player == null)
|
if (player == null)
|
||||||
{
|
{
|
||||||
RagonLog.Warn($"Owner {ownerId}|{player.Name} not found in players");
|
RagonLog.Warn($"Owner {ownerId}|{player.Name} not found in players");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var hasAuthority = _playerCache.Local.Id == player.Id;
|
var hasAuthority = _playerCache.Local.Id == player.Id;
|
||||||
var entity = _entityCache.TryGetEntity(attachId, entityType, 0, entityId, hasAuthority, out var hasCreated);
|
var entity = _entityCache.TryGetEntity(attachId, entityType, 0, entityId, hasAuthority, out var hasCreated);
|
||||||
|
|
||||||
entity.AttachPayload(payload);
|
entity.Prepare(_client, entityId, entityType, hasAuthority, player, payload);
|
||||||
|
|
||||||
if (hasCreated)
|
if (hasCreated)
|
||||||
_entityListener.OnEntityCreated(entity);
|
_entityListener.OnEntityCreated(entity);
|
||||||
|
|
||||||
entity.Attach(_client, entityId, entityType, hasAuthority, player);
|
entity.Attach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -18,40 +18,39 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class EntityEventHandler : Handler
|
internal class EntityEventHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonClient _client;
|
|
||||||
private readonly RagonPlayerCache _playerCache;
|
private readonly RagonPlayerCache _playerCache;
|
||||||
private readonly RagonEntityCache _entityCache;
|
private readonly RagonEntityCache _entityCache;
|
||||||
|
|
||||||
public EntityEventHandler(
|
public EntityEventHandler(
|
||||||
RagonClient client,
|
|
||||||
RagonPlayerCache playerCache,
|
RagonPlayerCache playerCache,
|
||||||
RagonEntityCache entityCache
|
RagonEntityCache entityCache
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
_client = client;
|
|
||||||
_playerCache = playerCache;
|
_playerCache = playerCache;
|
||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var eventCode = buffer.ReadUShort();
|
var eventCode = reader.ReadUShort();
|
||||||
var peerId = buffer.ReadUShort();
|
var peerId = reader.ReadUShort();
|
||||||
var executionMode = (RagonReplicationMode)buffer.ReadByte();
|
var executionMode = (RagonReplicationMode)reader.ReadByte();
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
|
|
||||||
var player = _playerCache.GetPlayerByPeer(peerId);
|
var player = _playerCache.GetPlayerByPeer(peerId);
|
||||||
if (player == null)
|
if (player == null)
|
||||||
{
|
{
|
||||||
RagonLog.Warn($"Player not found for event {eventCode}");
|
RagonLog.Error($"Player with peerId:{peerId} not found as owner of event with code:{eventCode}");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (player.IsLocal && executionMode == RagonReplicationMode.LocalAndServer)
|
if (player.IsLocal && executionMode == RagonReplicationMode.LocalAndServer)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
_entityCache.OnEvent(player, entityId, eventCode, buffer);
|
_entityCache.OnEvent(player, entityId, eventCode, reader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class EntityOwnershipHandler: Handler
|
internal class EntityOwnershipHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
private readonly RagonPlayerCache _playerCache;
|
private readonly RagonPlayerCache _playerCache;
|
||||||
@@ -35,15 +35,23 @@ internal class EntityOwnershipHandler: Handler
|
|||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var newOwnerId = buffer.ReadUShort();
|
var newOwnerId = reader.ReadUShort();
|
||||||
var entities = buffer.ReadUShort();
|
var entities = reader.ReadUShort();
|
||||||
|
|
||||||
var player = _playerCache.GetPlayerByPeer(newOwnerId);
|
var player = _playerCache.GetPlayerByPeer(newOwnerId);
|
||||||
|
if (player == null)
|
||||||
|
{
|
||||||
|
RagonLog.Error($"Player with Id:{newOwnerId} not found in cache");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
for (var i = 0; i < entities; i++)
|
for (var i = 0; i < entities; i++)
|
||||||
{
|
{
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
_entityCache.OnOwnershipChanged(player, entityId);
|
_entityCache.OnOwnershipChanged(player, entityId);
|
||||||
|
|
||||||
RagonLog.Trace("Entity changed owner: " + entityId);
|
RagonLog.Trace("Entity changed owner: " + entityId);
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class EntityRemoveHandler: Handler
|
internal class EntityRemoveHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonEntityCache _entityCache;
|
private readonly RagonEntityCache _entityCache;
|
||||||
|
|
||||||
@@ -28,11 +28,11 @@ internal class EntityRemoveHandler: Handler
|
|||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
var payload = new RagonPayload(buffer.Capacity);
|
var payload = new RagonPayload(reader.Capacity);
|
||||||
payload.Read(buffer);
|
payload.Read(reader);
|
||||||
|
|
||||||
_entityCache.OnDestroy(entityId, payload);
|
_entityCache.OnDestroy(entityId, payload);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class StateEntityHandler: Handler
|
internal class StateEntityHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonEntityCache _entityCache;
|
private readonly RagonEntityCache _entityCache;
|
||||||
|
|
||||||
@@ -27,13 +27,13 @@ internal class StateEntityHandler: Handler
|
|||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var entitiesCount = buffer.ReadUShort();
|
var entitiesCount = reader.ReadUShort();
|
||||||
for (var i = 0; i < entitiesCount; i++)
|
for (var i = 0; i < entitiesCount; i++)
|
||||||
{
|
{
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
_entityCache.OnState(entityId, buffer);
|
_entityCache.OnState(entityId, reader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
public interface Handler
|
public interface IHandler
|
||||||
{
|
{
|
||||||
public void Handle(RagonBuffer buffer);
|
public void Handle(RagonBuffer reader);
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class JoinFailedHandler: Handler
|
internal class JoinFailedHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
|
|
||||||
@@ -28,9 +28,9 @@ internal class JoinFailedHandler: Handler
|
|||||||
_listenerList = listenerList;
|
_listenerList = listenerList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var message = buffer.ReadString();
|
var message = reader.ReadString();
|
||||||
_listenerList.OnFailed(message);
|
_listenerList.OnFailed(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -37,7 +37,7 @@ public struct RagonRoomInformation
|
|||||||
public ushort Max { get; private set; }
|
public ushort Max { get; private set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
internal class JoinSuccessHandler : Handler
|
internal class JoinSuccessHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
private readonly RagonPlayerCache _playerCache;
|
private readonly RagonPlayerCache _playerCache;
|
||||||
@@ -46,7 +46,6 @@ internal class JoinSuccessHandler : Handler
|
|||||||
|
|
||||||
public JoinSuccessHandler(
|
public JoinSuccessHandler(
|
||||||
RagonClient client,
|
RagonClient client,
|
||||||
RagonBuffer buffer,
|
|
||||||
RagonListenerList listenerList,
|
RagonListenerList listenerList,
|
||||||
RagonPlayerCache playerCache,
|
RagonPlayerCache playerCache,
|
||||||
RagonEntityCache entityCache
|
RagonEntityCache entityCache
|
||||||
@@ -58,14 +57,14 @@ internal class JoinSuccessHandler : Handler
|
|||||||
_playerCache = playerCache;
|
_playerCache = playerCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var roomId = buffer.ReadString();
|
var roomId = reader.ReadString();
|
||||||
var localId = buffer.ReadString();
|
var localId = reader.ReadString();
|
||||||
var ownerId = buffer.ReadString();
|
var ownerId = reader.ReadString();
|
||||||
var min = buffer.ReadUShort();
|
var min = reader.ReadUShort();
|
||||||
var max = buffer.ReadUShort();
|
var max = reader.ReadUShort();
|
||||||
var sceneName = buffer.ReadString();
|
var sceneName = reader.ReadString();
|
||||||
|
|
||||||
var scene = new RagonScene(_client, _playerCache, _entityCache, sceneName);
|
var scene = new RagonScene(_client, _playerCache, _entityCache, sceneName);
|
||||||
var roomInfo = new RagonRoomInformation(roomId, localId, ownerId, min, max);
|
var roomInfo = new RagonRoomInformation(roomId, localId, ownerId, min, max);
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class LeaveRoomHandler : Handler
|
internal class LeaveRoomHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonClient _client;
|
private readonly RagonClient _client;
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
@@ -35,7 +35,7 @@ internal class LeaveRoomHandler : Handler
|
|||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
_listenerList.OnLeft();
|
_listenerList.OnLeft();
|
||||||
_entityCache.Cleanup();
|
_entityCache.Cleanup();
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class SceneLoadHandler: Handler
|
internal class SceneLoadHandler: IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonClient _client;
|
private readonly RagonClient _client;
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
@@ -32,9 +32,9 @@ internal class SceneLoadHandler: Handler
|
|||||||
_listenerList = listenerList;
|
_listenerList = listenerList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var sceneName = buffer.ReadString();
|
var sceneName = reader.ReadString();
|
||||||
var room = _client.Room;
|
var room = _client.Room;
|
||||||
|
|
||||||
room.Cleanup();
|
room.Cleanup();
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class OwnershipRoomHandler: Handler
|
internal class OwnershipRoomHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly RagonListenerList _listenerList;
|
private readonly RagonListenerList _listenerList;
|
||||||
private readonly RagonPlayerCache _playerCache;
|
private readonly RagonPlayerCache _playerCache;
|
||||||
@@ -35,10 +35,17 @@ internal class OwnershipRoomHandler: Handler
|
|||||||
_entityCache = entityCache;
|
_entityCache = entityCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var newOwnerId = buffer.ReadUShort();
|
var newOwnerId = reader.ReadUShort();
|
||||||
var player = _playerCache.GetPlayerByPeer(newOwnerId);
|
var player = _playerCache.GetPlayerByPeer(newOwnerId);
|
||||||
|
if (player == null)
|
||||||
|
{
|
||||||
|
RagonLog.Warn($"Player with peerId:{newOwnerId} not found in cache");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_playerCache.OnOwnershipChanged(newOwnerId);
|
_playerCache.OnOwnershipChanged(newOwnerId);
|
||||||
_listenerList.OnOwnershipChanged(player);
|
_listenerList.OnOwnershipChanged(player);
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class PlayerJoinHandler : Handler
|
internal class PlayerJoinHandler : IHandler
|
||||||
{
|
{
|
||||||
private RagonPlayerCache _playerCache;
|
private RagonPlayerCache _playerCache;
|
||||||
private RagonListenerList _listenerList;
|
private RagonListenerList _listenerList;
|
||||||
@@ -33,11 +33,11 @@ internal class PlayerJoinHandler : Handler
|
|||||||
_listenerList = listenerList;
|
_listenerList = listenerList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var playerPeerId = buffer.ReadUShort();
|
var playerPeerId = reader.ReadUShort();
|
||||||
var playerId = buffer.ReadString();
|
var playerId = reader.ReadString();
|
||||||
var playerName = buffer.ReadString();
|
var playerName = reader.ReadString();
|
||||||
|
|
||||||
_playerCache.AddPlayer(playerPeerId, playerId, playerName);
|
_playerCache.AddPlayer(playerPeerId, playerId, playerName);
|
||||||
|
|
||||||
@@ -45,6 +45,6 @@ internal class PlayerJoinHandler : Handler
|
|||||||
if (player != null)
|
if (player != null)
|
||||||
_listenerList.OnPlayerJoined(player);
|
_listenerList.OnPlayerJoined(player);
|
||||||
else
|
else
|
||||||
RagonLog.Trace($"[Joined] {playerId}");
|
RagonLog.Warn($"Player with Id:{playerId} not found in cache");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class PlayerLeftHandler : Handler
|
internal class PlayerLeftHandler : IHandler
|
||||||
{
|
{
|
||||||
private RagonPlayerCache _playerCache;
|
private RagonPlayerCache _playerCache;
|
||||||
private RagonEntityCache _entityCache;
|
private RagonEntityCache _entityCache;
|
||||||
@@ -36,20 +36,20 @@ internal class PlayerLeftHandler : Handler
|
|||||||
_listenerList = listenerList;
|
_listenerList = listenerList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer reader)
|
||||||
{
|
{
|
||||||
var playerId = buffer.ReadString();
|
var playerId = reader.ReadString();
|
||||||
var player = _playerCache.GetPlayerById(playerId);
|
var player = _playerCache.GetPlayerById(playerId);
|
||||||
if (player != null)
|
if (player != null)
|
||||||
{
|
{
|
||||||
_playerCache.RemovePlayer(playerId);
|
_playerCache.RemovePlayer(playerId);
|
||||||
_listenerList.OnPlayerLeft(player);
|
_listenerList.OnPlayerLeft(player);
|
||||||
|
|
||||||
var entities = buffer.ReadUShort();
|
var entities = reader.ReadUShort();
|
||||||
var toDeleteIds = new ushort[entities];
|
var toDeleteIds = new ushort[entities];
|
||||||
for (var i = 0; i < entities; i++)
|
for (var i = 0; i < entities; i++)
|
||||||
{
|
{
|
||||||
var entityId = buffer.ReadUShort();
|
var entityId = reader.ReadUShort();
|
||||||
toDeleteIds[i] = entityId;
|
toDeleteIds[i] = entityId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,5 +57,9 @@ internal class PlayerLeftHandler : Handler
|
|||||||
foreach (var id in toDeleteIds)
|
foreach (var id in toDeleteIds)
|
||||||
_entityCache.OnDestroy(id, emptyPayload);
|
_entityCache.OnDestroy(id, emptyPayload);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
RagonLog.Warn($"Player with Id:{playerId} not found in cache");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
|
namespace Ragon.Client;
|
||||||
|
|
||||||
|
internal class RoomDataHandler: IHandler
|
||||||
|
{
|
||||||
|
private readonly RagonListenerList _listeners;
|
||||||
|
private readonly RagonPlayerCache _playerCache;
|
||||||
|
|
||||||
|
public RoomDataHandler(
|
||||||
|
RagonPlayerCache playerCache,
|
||||||
|
RagonListenerList listeners)
|
||||||
|
{
|
||||||
|
_playerCache = playerCache;
|
||||||
|
_listeners = listeners;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Handle(RagonBuffer reader)
|
||||||
|
{
|
||||||
|
var rawData = reader.RawData;
|
||||||
|
var peerId = (ushort)(rawData[1] + (rawData[2] << 8));
|
||||||
|
var player = _playerCache.GetPlayerByPeer(peerId);
|
||||||
|
|
||||||
|
if (player == null)
|
||||||
|
{
|
||||||
|
RagonLog.Error($"Player with peerId:{peerId} not found");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var headerSize = 3;
|
||||||
|
var payload = new byte[rawData.Length - headerSize];
|
||||||
|
|
||||||
|
Array.Copy(rawData, headerSize, payload, 0, payload.Length);
|
||||||
|
|
||||||
|
_listeners.OnData(player, payload);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
|
namespace Ragon.Client;
|
||||||
|
|
||||||
|
public class RoomEventHandler : IHandler
|
||||||
|
{
|
||||||
|
private readonly RagonClient _client;
|
||||||
|
private readonly RagonPlayerCache _playerCache;
|
||||||
|
|
||||||
|
public RoomEventHandler(
|
||||||
|
RagonClient client,
|
||||||
|
RagonPlayerCache playerCache
|
||||||
|
)
|
||||||
|
{
|
||||||
|
_client = client;
|
||||||
|
_playerCache = playerCache;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Handle(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
var eventCode = buffer.ReadUShort();
|
||||||
|
var peerId = buffer.ReadUShort();
|
||||||
|
var executionMode = (RagonReplicationMode)buffer.ReadByte();
|
||||||
|
|
||||||
|
var player = _playerCache.GetPlayerByPeer(peerId);
|
||||||
|
if (player == null)
|
||||||
|
{
|
||||||
|
RagonLog.Error($"Player with peerId:{peerId} not found as owner of event with code:{eventCode}");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (player.IsLocal && executionMode == RagonReplicationMode.LocalAndServer)
|
||||||
|
return;
|
||||||
|
|
||||||
|
_client.Room.Event(eventCode, player, buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -20,7 +20,7 @@ using Ragon.Protocol;
|
|||||||
|
|
||||||
namespace Ragon.Client;
|
namespace Ragon.Client;
|
||||||
|
|
||||||
internal class SnapshotHandler : Handler
|
internal class SnapshotHandler : IHandler
|
||||||
{
|
{
|
||||||
private readonly IRagonEntityListener _entityListener;
|
private readonly IRagonEntityListener _entityListener;
|
||||||
private readonly RagonClient _client;
|
private readonly RagonClient _client;
|
||||||
@@ -45,6 +45,7 @@ internal class SnapshotHandler : Handler
|
|||||||
|
|
||||||
public void Handle(RagonBuffer buffer)
|
public void Handle(RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
|
var entities = new List<RagonEntity>();
|
||||||
var playersCount = buffer.ReadUShort();
|
var playersCount = buffer.ReadUShort();
|
||||||
RagonLog.Trace("Players: " + playersCount);
|
RagonLog.Trace("Players: " + playersCount);
|
||||||
for (var i = 0; i < playersCount; i++)
|
for (var i = 0; i < playersCount; i++)
|
||||||
@@ -70,25 +71,28 @@ internal class SnapshotHandler : Handler
|
|||||||
var player = _playerCache.GetPlayerByPeer(ownerPeerId);
|
var player = _playerCache.GetPlayerByPeer(ownerPeerId);
|
||||||
if (player == null)
|
if (player == null)
|
||||||
{
|
{
|
||||||
RagonLog.Error($"Player not found with peerId: ${ownerPeerId}");
|
RagonLog.Error($"Player not found with peerId: {ownerPeerId}");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var hasAuthority = _playerCache.Local.Id == player.Id;
|
var hasAuthority = _playerCache.Local.Id == player.Id;
|
||||||
var entity = _entityCache.TryGetEntity(0, entityType, 0, entityId, hasAuthority, out _);
|
var entity = _entityCache.TryGetEntity(0, entityType, 0, entityId, hasAuthority, out _);
|
||||||
|
var payload = RagonPayload.Empty;
|
||||||
if (payloadSize > 0)
|
if (payloadSize > 0)
|
||||||
{
|
{
|
||||||
var payload = new RagonPayload(payloadSize);
|
payload = new RagonPayload(payloadSize);
|
||||||
payload.Read(buffer);
|
payload.Read(buffer);
|
||||||
|
|
||||||
entity.AttachPayload(payload);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
entity.Prepare(_client, entityId, entityType, hasAuthority, player, payload);
|
||||||
|
|
||||||
_entityListener.OnEntityCreated(entity);
|
_entityListener.OnEntityCreated(entity);
|
||||||
|
|
||||||
entity.Read(buffer);
|
entity.Read(buffer);
|
||||||
entity.Attach(_client, entityId, entityType, hasAuthority, player);
|
|
||||||
|
entities.Add(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
var staticEntities = buffer.ReadUShort();
|
var staticEntities = buffer.ReadUShort();
|
||||||
@@ -104,15 +108,19 @@ internal class SnapshotHandler : Handler
|
|||||||
var player = _playerCache.GetPlayerByPeer(ownerPeerId);
|
var player = _playerCache.GetPlayerByPeer(ownerPeerId);
|
||||||
if (player == null)
|
if (player == null)
|
||||||
{
|
{
|
||||||
RagonLog.Error($"Player not found with peerId: ${ownerPeerId}");
|
RagonLog.Error($"Player not found with peerId: {ownerPeerId}");
|
||||||
|
|
||||||
|
_playerCache.Dump();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var hasAuthority = _playerCache.Local.Id == player.Id;
|
var hasAuthority = _playerCache.Local.Id == player.Id;
|
||||||
var entity = _entityCache.TryGetEntity(0, entityType, staticId, entityId, hasAuthority, out _);
|
var entity = _entityCache.TryGetEntity(0, entityType, staticId, entityId, hasAuthority, out _);
|
||||||
|
|
||||||
|
entity.Prepare(_client, entityId, entityType, hasAuthority, player, RagonPayload.Empty);
|
||||||
entity.Read(buffer);
|
entity.Read(buffer);
|
||||||
entity.Attach(_client, entityId, entityType, hasAuthority, player);
|
|
||||||
|
entities.Add(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_client.Status == RagonStatus.LOBBY)
|
if (_client.Status == RagonStatus.LOBBY)
|
||||||
@@ -121,6 +129,9 @@ internal class SnapshotHandler : Handler
|
|||||||
_listenerList.OnJoined();
|
_listenerList.OnJoined();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (var entity in entities)
|
||||||
|
entity.Attach();
|
||||||
|
|
||||||
_listenerList.OnSceneLoaded();
|
_listenerList.OnSceneLoaded();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
|
namespace Ragon.Client;
|
||||||
|
|
||||||
|
public class TimestampHandler: IHandler
|
||||||
|
{
|
||||||
|
private readonly RagonClient _client;
|
||||||
|
public TimestampHandler(RagonClient client)
|
||||||
|
{
|
||||||
|
_client = client;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Handle(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
var timestamp0 = buffer.Read(32);
|
||||||
|
var timestamp1 = buffer.Read(32);
|
||||||
|
var value = new DoubleToUInt { Int0 = timestamp0, Int1 = timestamp1 };
|
||||||
|
|
||||||
|
_client.SetTimestamp(value.Double);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,5 +18,5 @@ namespace Ragon.Client;
|
|||||||
|
|
||||||
public interface IRagonConnection
|
public interface IRagonConnection
|
||||||
{
|
{
|
||||||
|
public void Close();
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Ragon.Client;
|
||||||
|
|
||||||
|
public interface IRagonDataListener
|
||||||
|
{
|
||||||
|
public void OnData(RagonPlayer player, byte[] data);
|
||||||
|
}
|
||||||
@@ -24,7 +24,7 @@ namespace Ragon.Client
|
|||||||
private readonly NetworkStatistics _stats;
|
private readonly NetworkStatistics _stats;
|
||||||
private IRagonEntityListener _entityListener;
|
private IRagonEntityListener _entityListener;
|
||||||
private IRagonSceneCollector _sceneCollector;
|
private IRagonSceneCollector _sceneCollector;
|
||||||
private Handler[] _handlers;
|
private IHandler[] _handlers;
|
||||||
private RagonBuffer _readBuffer;
|
private RagonBuffer _readBuffer;
|
||||||
private RagonBuffer _writeBuffer;
|
private RagonBuffer _writeBuffer;
|
||||||
private RagonRoom _room;
|
private RagonRoom _room;
|
||||||
@@ -35,9 +35,11 @@ namespace Ragon.Client
|
|||||||
private RagonEventCache _eventCache;
|
private RagonEventCache _eventCache;
|
||||||
private RagonStatus _status;
|
private RagonStatus _status;
|
||||||
|
|
||||||
|
private double _serverTimestamp;
|
||||||
private float _replicationRate = 0;
|
private float _replicationRate = 0;
|
||||||
private float _replicationTime = 0;
|
private float _replicationTime = 0;
|
||||||
|
|
||||||
|
public double ServerTimestamp => _serverTimestamp;
|
||||||
public IRagonConnection Connection => _connection;
|
public IRagonConnection Connection => _connection;
|
||||||
public RagonStatus Status => _status;
|
public RagonStatus Status => _status;
|
||||||
public RagonSession Session => _session;
|
public RagonSession Session => _session;
|
||||||
@@ -54,13 +56,13 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
public RagonClient(INetworkConnection connection, int rate)
|
public RagonClient(INetworkConnection connection, int rate)
|
||||||
{
|
{
|
||||||
|
listeners = new RagonListenerList(this);
|
||||||
|
|
||||||
_connection = connection;
|
_connection = connection;
|
||||||
_connection.OnData += OnData;
|
_connection.OnData += OnData;
|
||||||
_connection.OnConnected += OnConnected;
|
_connection.OnConnected += OnConnected;
|
||||||
_connection.OnDisconnected += OnDisconnected;
|
_connection.OnDisconnected += OnDisconnected;
|
||||||
|
|
||||||
listeners = new RagonListenerList(this);
|
|
||||||
|
|
||||||
_replicationRate = (1000.0f / rate) / 1000.0f;
|
_replicationRate = (1000.0f / rate) / 1000.0f;
|
||||||
_replicationTime = 0;
|
_replicationTime = 0;
|
||||||
|
|
||||||
@@ -96,15 +98,15 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
_writeBuffer = new RagonBuffer();
|
_writeBuffer = new RagonBuffer();
|
||||||
_readBuffer = new RagonBuffer();
|
_readBuffer = new RagonBuffer();
|
||||||
_session = new RagonSession(this, _readBuffer);
|
_session = new RagonSession(this, _writeBuffer);
|
||||||
|
|
||||||
_playerCache = new RagonPlayerCache();
|
_playerCache = new RagonPlayerCache();
|
||||||
_entityCache = new RagonEntityCache(this, _playerCache, _sceneCollector);
|
_entityCache = new RagonEntityCache(this, _playerCache, _sceneCollector);
|
||||||
|
|
||||||
_handlers = new Handler[byte.MaxValue];
|
_handlers = new IHandler[byte.MaxValue];
|
||||||
_handlers[(byte)RagonOperation.AUTHORIZED_SUCCESS] = new AuthorizeSuccessHandler(this, listeners);
|
_handlers[(byte)RagonOperation.AUTHORIZED_SUCCESS] = new AuthorizeSuccessHandler(this, listeners);
|
||||||
_handlers[(byte)RagonOperation.AUTHORIZED_FAILED] = new AuthorizeFailedHandler(listeners);
|
_handlers[(byte)RagonOperation.AUTHORIZED_FAILED] = new AuthorizeFailedHandler(listeners);
|
||||||
_handlers[(byte)RagonOperation.JOIN_SUCCESS] = new JoinSuccessHandler(this, _readBuffer, listeners, _playerCache, _entityCache);
|
_handlers[(byte)RagonOperation.JOIN_SUCCESS] = new JoinSuccessHandler(this, listeners, _playerCache, _entityCache);
|
||||||
_handlers[(byte)RagonOperation.JOIN_FAILED] = new JoinFailedHandler(listeners);
|
_handlers[(byte)RagonOperation.JOIN_FAILED] = new JoinFailedHandler(listeners);
|
||||||
_handlers[(byte)RagonOperation.LEAVE_ROOM] = new LeaveRoomHandler(this, listeners, _entityCache);
|
_handlers[(byte)RagonOperation.LEAVE_ROOM] = new LeaveRoomHandler(this, listeners, _entityCache);
|
||||||
_handlers[(byte)RagonOperation.OWNERSHIP_ROOM_CHANGED] = new OwnershipRoomHandler(listeners, _playerCache, _entityCache);
|
_handlers[(byte)RagonOperation.OWNERSHIP_ROOM_CHANGED] = new OwnershipRoomHandler(listeners, _playerCache, _entityCache);
|
||||||
@@ -115,8 +117,11 @@ namespace Ragon.Client
|
|||||||
_handlers[(byte)RagonOperation.CREATE_ENTITY] = new EntityCreateHandler(this, _playerCache, _entityCache, _entityListener);
|
_handlers[(byte)RagonOperation.CREATE_ENTITY] = new EntityCreateHandler(this, _playerCache, _entityCache, _entityListener);
|
||||||
_handlers[(byte)RagonOperation.REMOVE_ENTITY] = new EntityRemoveHandler(_entityCache);
|
_handlers[(byte)RagonOperation.REMOVE_ENTITY] = new EntityRemoveHandler(_entityCache);
|
||||||
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_STATE] = new StateEntityHandler(_entityCache);
|
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_STATE] = new StateEntityHandler(_entityCache);
|
||||||
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_EVENT] = new EntityEventHandler(this, _playerCache, _entityCache);
|
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_EVENT] = new EntityEventHandler(_playerCache, _entityCache);
|
||||||
|
_handlers[(byte)RagonOperation.REPLICATE_ROOM_EVENT] = new RoomEventHandler(this, _playerCache);
|
||||||
_handlers[(byte)RagonOperation.SNAPSHOT] = new SnapshotHandler(this, listeners, _entityCache, _playerCache, _entityListener);
|
_handlers[(byte)RagonOperation.SNAPSHOT] = new SnapshotHandler(this, listeners, _entityCache, _playerCache, _entityListener);
|
||||||
|
_handlers[(byte)RagonOperation.TIMESTAMP_SYNCHRONIZATION] = new TimestampHandler(this);
|
||||||
|
_handlers[(byte)RagonOperation.REPLICATE_RAW_DATA] = new RoomDataHandler(_playerCache, listeners);
|
||||||
|
|
||||||
var protocolRaw = RagonVersion.Parse(protocol);
|
var protocolRaw = RagonVersion.Parse(protocol);
|
||||||
_connection.Connect(address, port, protocolRaw);
|
_connection.Connect(address, port, protocolRaw);
|
||||||
@@ -138,8 +143,10 @@ namespace Ragon.Client
|
|||||||
_replicationTime += dt;
|
_replicationTime += dt;
|
||||||
if (_replicationTime >= _replicationRate)
|
if (_replicationTime >= _replicationRate)
|
||||||
{
|
{
|
||||||
_entityCache.WriteState(_readBuffer);
|
|
||||||
_replicationTime = 0;
|
_replicationTime = 0;
|
||||||
|
_entityCache.WriteState(_writeBuffer);
|
||||||
|
|
||||||
|
SendTimestamp();
|
||||||
}
|
}
|
||||||
|
|
||||||
_stats.Update(_connection.BytesSent, _connection.BytesReceived, _connection.Ping, dt);
|
_stats.Update(_connection.BytesSent, _connection.BytesReceived, _connection.Ping, dt);
|
||||||
@@ -150,9 +157,12 @@ namespace Ragon.Client
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
{
|
||||||
|
if (_status != RagonStatus.DISCONNECTED)
|
||||||
{
|
{
|
||||||
_status = RagonStatus.DISCONNECTED;
|
_status = RagonStatus.DISCONNECTED;
|
||||||
_connection.Disconnect();
|
_connection.Disconnect();
|
||||||
|
}
|
||||||
_connection.Dispose();
|
_connection.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,6 +177,7 @@ namespace Ragon.Client
|
|||||||
public void AddListener(IRagonPlayerLeftListener listener) => listeners.Add(listener);
|
public void AddListener(IRagonPlayerLeftListener listener) => listeners.Add(listener);
|
||||||
public void AddListener(IRagonSceneListener listener) => listeners.Add(listener);
|
public void AddListener(IRagonSceneListener listener) => listeners.Add(listener);
|
||||||
public void AddListener(IRagonSceneRequestListener listener) => listeners.Add(listener);
|
public void AddListener(IRagonSceneRequestListener listener) => listeners.Add(listener);
|
||||||
|
public void AddListener(IRagonDataListener listener) => listeners.Add(listener);
|
||||||
|
|
||||||
public void RemoveListener(IRagonListener listener) => listeners.Remove(listener);
|
public void RemoveListener(IRagonListener listener) => listeners.Remove(listener);
|
||||||
public void RemoveListener(IRagonAuthorizationListener listener) => listeners.Remove(listener);
|
public void RemoveListener(IRagonAuthorizationListener listener) => listeners.Remove(listener);
|
||||||
@@ -179,6 +190,7 @@ namespace Ragon.Client
|
|||||||
public void RemoveListener(IRagonPlayerLeftListener listener) => listeners.Remove(listener);
|
public void RemoveListener(IRagonPlayerLeftListener listener) => listeners.Remove(listener);
|
||||||
public void RemoveListener(IRagonSceneListener listener) => listeners.Remove(listener);
|
public void RemoveListener(IRagonSceneListener listener) => listeners.Remove(listener);
|
||||||
public void RemoveListener(IRagonSceneRequestListener listener) => listeners.Remove(listener);
|
public void RemoveListener(IRagonSceneRequestListener listener) => listeners.Remove(listener);
|
||||||
|
public void RemoveListener(IRagonDataListener listener) => listeners.Remove(listener);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@@ -186,6 +198,7 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
internal void AssignRoom(RagonRoom room)
|
internal void AssignRoom(RagonRoom room)
|
||||||
{
|
{
|
||||||
|
_room?.Dispose();
|
||||||
_room = room;
|
_room = room;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,10 +207,29 @@ namespace Ragon.Client
|
|||||||
_status = status;
|
_status = status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void SetTimestamp(double time)
|
||||||
|
{
|
||||||
|
_serverTimestamp = time;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PRIVATE
|
#region PRIVATE
|
||||||
|
|
||||||
|
private void SendTimestamp()
|
||||||
|
{
|
||||||
|
var timestamp = RagonTime.CurrentTimestamp();
|
||||||
|
var value = new DoubleToUInt()
|
||||||
|
{
|
||||||
|
Double = timestamp,
|
||||||
|
};
|
||||||
|
|
||||||
|
_writeBuffer.Clear();
|
||||||
|
_writeBuffer.WriteOperation(RagonOperation.TIMESTAMP_SYNCHRONIZATION);
|
||||||
|
_writeBuffer.Write(value.Int0, 32);
|
||||||
|
_writeBuffer.Write(value.Int1, 32);
|
||||||
|
}
|
||||||
|
|
||||||
private void OnConnected()
|
private void OnConnected()
|
||||||
{
|
{
|
||||||
RagonLog.Trace("Connected");
|
RagonLog.Trace("Connected");
|
||||||
@@ -214,7 +246,7 @@ namespace Ragon.Client
|
|||||||
_status = RagonStatus.DISCONNECTED;
|
_status = RagonStatus.DISCONNECTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnData(byte[] data)
|
private void OnData(byte[] data)
|
||||||
{
|
{
|
||||||
_readBuffer.Clear();
|
_readBuffer.Clear();
|
||||||
_readBuffer.FromArray(data);
|
_readBuffer.FromArray(data);
|
||||||
|
|||||||
@@ -83,12 +83,14 @@ public sealed class RagonEntityCache
|
|||||||
|
|
||||||
public void Destroy(RagonEntity entity, RagonPayload destroyPayload)
|
public void Destroy(RagonEntity entity, RagonPayload destroyPayload)
|
||||||
{
|
{
|
||||||
if (!entity.IsAttached)
|
if (!entity.IsAttached && !entity.HasAuthority)
|
||||||
{
|
{
|
||||||
RagonLog.Warn("Can't destroy object, he is not created");
|
RagonLog.Warn("Can't destroy object");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
entity.SetReplication(false);
|
||||||
|
|
||||||
var buffer = _client.Buffer;
|
var buffer = _client.Buffer;
|
||||||
|
|
||||||
buffer.Clear();
|
buffer.Clear();
|
||||||
@@ -114,7 +116,7 @@ public sealed class RagonEntityCache
|
|||||||
foreach (var ent in _entityList)
|
foreach (var ent in _entityList)
|
||||||
{
|
{
|
||||||
if (!ent.IsAttached ||
|
if (!ent.IsAttached ||
|
||||||
!ent.Replication ||
|
!ent.IsReplicated ||
|
||||||
!ent.PropertiesChanged) continue;
|
!ent.PropertiesChanged) continue;
|
||||||
|
|
||||||
ent.Write(buffer);
|
ent.Write(buffer);
|
||||||
@@ -184,12 +186,10 @@ public sealed class RagonEntityCache
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_pendingEntities.TryGetValue(attachId, out var pendingEntity))
|
if (_pendingEntities.TryGetValue(attachId, out var pendingEntity) && hasAuthority)
|
||||||
{
|
{
|
||||||
_pendingEntities.Remove(attachId);
|
_pendingEntities.Remove(attachId);
|
||||||
_entityMap.Add(entityId, pendingEntity);
|
_entityMap.Add(entityId, pendingEntity);
|
||||||
|
|
||||||
if (hasAuthority)
|
|
||||||
_entityList.Add(pendingEntity);
|
_entityList.Add(pendingEntity);
|
||||||
|
|
||||||
hasCreated = false;
|
hasCreated = false;
|
||||||
@@ -197,7 +197,6 @@ public sealed class RagonEntityCache
|
|||||||
return pendingEntity;
|
return pendingEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var entity = new RagonEntity(entityType, sceneId);
|
var entity = new RagonEntity(entityType, sceneId);
|
||||||
|
|
||||||
_entityMap.Add(entityId, entity);
|
_entityMap.Add(entityId, entity);
|
||||||
@@ -219,6 +218,7 @@ public sealed class RagonEntityCache
|
|||||||
_entityList.Remove(entity);
|
_entityList.Remove(entity);
|
||||||
|
|
||||||
entity.Detach(payload);
|
entity.Detach(payload);
|
||||||
|
entity.Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ namespace Ragon.Client
|
|||||||
private readonly List<IRagonOwnershipChangedListener> _ownershipChangedListeners = new();
|
private readonly List<IRagonOwnershipChangedListener> _ownershipChangedListeners = new();
|
||||||
private readonly List<IRagonPlayerJoinListener> _playerJoinListeners = new();
|
private readonly List<IRagonPlayerJoinListener> _playerJoinListeners = new();
|
||||||
private readonly List<IRagonPlayerLeftListener> _playerLeftListeners = new();
|
private readonly List<IRagonPlayerLeftListener> _playerLeftListeners = new();
|
||||||
|
private readonly List<IRagonDataListener> _dataListeners = new();
|
||||||
private readonly List<Action> _delayedActions = new();
|
private readonly List<Action> _delayedActions = new();
|
||||||
|
|
||||||
public RagonListenerList(RagonClient client)
|
public RagonListenerList(RagonClient client)
|
||||||
@@ -75,6 +76,10 @@ namespace Ragon.Client
|
|||||||
_delayedActions.Clear();
|
_delayedActions.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Add(IRagonDataListener dataListener)
|
||||||
|
{
|
||||||
|
_dataListeners.Add(dataListener);
|
||||||
|
}
|
||||||
|
|
||||||
public void Add(IRagonAuthorizationListener listener)
|
public void Add(IRagonAuthorizationListener listener)
|
||||||
{
|
{
|
||||||
@@ -126,6 +131,11 @@ namespace Ragon.Client
|
|||||||
_playerLeftListeners.Add(listener);
|
_playerLeftListeners.Add(listener);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Remove(IRagonDataListener listener)
|
||||||
|
{
|
||||||
|
_delayedActions.Add(() => _dataListeners.Remove(listener));
|
||||||
|
}
|
||||||
|
|
||||||
public void Remove(IRagonSceneRequestListener listener)
|
public void Remove(IRagonSceneRequestListener listener)
|
||||||
{
|
{
|
||||||
_delayedActions.Add(() => _sceneRequestListeners.Remove(listener));
|
_delayedActions.Add(() => _sceneRequestListeners.Remove(listener));
|
||||||
@@ -138,7 +148,6 @@ namespace Ragon.Client
|
|||||||
|
|
||||||
public void Remove(IRagonConnectionListener listener)
|
public void Remove(IRagonConnectionListener listener)
|
||||||
{
|
{
|
||||||
|
|
||||||
_delayedActions.Add(() => _connectionListeners.Remove(listener));
|
_delayedActions.Add(() => _connectionListeners.Remove(listener));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -248,5 +257,11 @@ namespace Ragon.Client
|
|||||||
foreach (var listener in _connectionListeners)
|
foreach (var listener in _connectionListeners)
|
||||||
listener.OnDisconnected(_client, disconnect);
|
listener.OnDisconnected(_client, disconnect);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void OnData(RagonPlayer player, byte[] data)
|
||||||
|
{
|
||||||
|
foreach (var listener in _dataListeners)
|
||||||
|
listener.OnData(player, data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -27,8 +27,21 @@ public sealed class RagonPlayerCache
|
|||||||
public RagonPlayer Local { get; private set; }
|
public RagonPlayer Local { get; private set; }
|
||||||
public bool IsRoomOwner => _ownerId == _localId;
|
public bool IsRoomOwner => _ownerId == _localId;
|
||||||
|
|
||||||
public RagonPlayer? GetPlayerById(string playerId) => _playersById[playerId];
|
public RagonPlayer? GetPlayerById(string playerId)
|
||||||
public RagonPlayer? GetPlayerByPeer(ushort peerId) => _playersByConnection[peerId];
|
{
|
||||||
|
if (_playersById.TryGetValue(playerId, out var player))
|
||||||
|
return player;
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public RagonPlayer? GetPlayerByPeer(ushort peerId)
|
||||||
|
{
|
||||||
|
if (_playersByConnection.TryGetValue(peerId, out var player))
|
||||||
|
return player;
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private string _ownerId;
|
private string _ownerId;
|
||||||
private string _localId;
|
private string _localId;
|
||||||
@@ -91,4 +104,14 @@ public sealed class RagonPlayerCache
|
|||||||
_playersByConnection.Clear();
|
_playersByConnection.Clear();
|
||||||
_playersById.Clear();
|
_playersById.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Dump()
|
||||||
|
{
|
||||||
|
RagonLog.Trace("Players: ");
|
||||||
|
RagonLog.Trace("[Connection] [ID] [Name]");
|
||||||
|
foreach (var player in _players)
|
||||||
|
{
|
||||||
|
RagonLog.Trace($"[{player.PeerId}] {player.Id} {player.Name}");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -14,10 +14,14 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Client
|
namespace Ragon.Client
|
||||||
{
|
{
|
||||||
public class RagonRoom
|
public class RagonRoom: IDisposable
|
||||||
{
|
{
|
||||||
|
private delegate void OnEventDelegate(RagonPlayer player, RagonBuffer serializer);
|
||||||
|
|
||||||
private RagonClient _client;
|
private RagonClient _client;
|
||||||
private RagonScene _scene;
|
private RagonScene _scene;
|
||||||
private RagonEntityCache _entityCache;
|
private RagonEntityCache _entityCache;
|
||||||
@@ -33,6 +37,10 @@ namespace Ragon.Client
|
|||||||
public RagonPlayer Local => _playerCache.Local;
|
public RagonPlayer Local => _playerCache.Local;
|
||||||
public RagonPlayer Owner => _playerCache.Owner;
|
public RagonPlayer Owner => _playerCache.Owner;
|
||||||
|
|
||||||
|
private readonly Dictionary<int, OnEventDelegate> _events = new Dictionary<int, OnEventDelegate>();
|
||||||
|
private readonly Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>> _localListeners = new Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>>();
|
||||||
|
private readonly Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>> _listeners = new Dictionary<int, List<Action<RagonPlayer, IRagonEvent>>>();
|
||||||
|
|
||||||
public RagonRoom(RagonClient client,
|
public RagonRoom(RagonClient client,
|
||||||
RagonEntityCache entityCache,
|
RagonEntityCache entityCache,
|
||||||
RagonPlayerCache playerCache,
|
RagonPlayerCache playerCache,
|
||||||
@@ -57,14 +65,83 @@ namespace Ragon.Client
|
|||||||
_scene.Update(sceneName);
|
_scene.Update(sceneName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void Event(ushort eventCode, RagonPlayer caller, RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
if (_events.TryGetValue(eventCode, out var evnt))
|
||||||
|
evnt?.Invoke(caller, buffer);
|
||||||
|
else
|
||||||
|
RagonLog.Warn($"Handler event on entity {Id} with eventCode {eventCode} not defined");
|
||||||
|
}
|
||||||
|
|
||||||
|
public Action<RagonPlayer, IRagonEvent> OnEvent<TEvent>(Action<RagonPlayer, TEvent> callback) where TEvent : IRagonEvent, new()
|
||||||
|
{
|
||||||
|
var t = new TEvent();
|
||||||
|
var eventCode = _client.Event.GetEventCode(t);
|
||||||
|
|
||||||
|
var action = (RagonPlayer player, IRagonEvent eventData) => callback.Invoke(player, (TEvent)eventData);
|
||||||
|
|
||||||
|
if (!_listeners.TryGetValue(eventCode, out var callbacks))
|
||||||
|
{
|
||||||
|
callbacks = new List<Action<RagonPlayer, IRagonEvent>>();
|
||||||
|
_listeners.Add(eventCode, callbacks);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!_localListeners.TryGetValue(eventCode, out var localCallbacks))
|
||||||
|
{
|
||||||
|
localCallbacks = new List<Action<RagonPlayer, IRagonEvent>>();
|
||||||
|
_localListeners.Add(eventCode, localCallbacks);
|
||||||
|
}
|
||||||
|
|
||||||
|
callbacks.Add(action);
|
||||||
|
localCallbacks.Add(action);
|
||||||
|
|
||||||
|
if (!_events.ContainsKey(eventCode))
|
||||||
|
{
|
||||||
|
_events.Add(eventCode, (player, serializer) =>
|
||||||
|
{
|
||||||
|
t.Deserialize(serializer);
|
||||||
|
|
||||||
|
foreach (var callbackListener in callbacks)
|
||||||
|
callbackListener.Invoke(player, t);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return action;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OffEvent<TEvent>(Action<RagonPlayer, IRagonEvent> callback) where TEvent : IRagonEvent, new()
|
||||||
|
{
|
||||||
|
var t = new TEvent();
|
||||||
|
var eventCode = _client.Event.GetEventCode(t);
|
||||||
|
|
||||||
|
if (_listeners.TryGetValue(eventCode, out var callbacks))
|
||||||
|
callbacks.Remove(callback);
|
||||||
|
|
||||||
|
if (_localListeners.TryGetValue(eventCode, out var localCallbacks))
|
||||||
|
localCallbacks.Remove(callback);
|
||||||
|
}
|
||||||
|
|
||||||
public void LoadScene(string sceneName) => _scene.Load(sceneName);
|
public void LoadScene(string sceneName) => _scene.Load(sceneName);
|
||||||
public void SceneLoaded() => _scene.SceneLoaded();
|
public void SceneLoaded() => _scene.SceneLoaded();
|
||||||
|
|
||||||
|
public void ReplicateEvent<TEvent>(TEvent evnt, RagonTarget target, RagonReplicationMode mode) where TEvent : IRagonEvent, new() => _scene.ReplicateEvent(evnt, target, mode);
|
||||||
|
public void ReplicateEvent<TEvent>(TEvent evnt, RagonPlayer target, RagonReplicationMode mode) where TEvent : IRagonEvent, new() => _scene.ReplicateEvent(evnt, target, mode);
|
||||||
|
public void ReplicateData(byte[] data, bool reliable = false) => _scene.ReplicateData(data, reliable);
|
||||||
|
|
||||||
public void CreateEntity(RagonEntity entity) => CreateEntity(entity, null);
|
public void CreateEntity(RagonEntity entity) => CreateEntity(entity, null);
|
||||||
public void CreateEntity(RagonEntity entity, RagonPayload payload) => _entityCache.Create(entity, payload);
|
public void CreateEntity(RagonEntity entity, RagonPayload payload) => _entityCache.Create(entity, payload);
|
||||||
public void TransferEntity(RagonEntity entity, RagonPlayer player) => _entityCache.Transfer(entity, player);
|
public void TransferEntity(RagonEntity entity, RagonPlayer player) => _entityCache.Transfer(entity, player);
|
||||||
|
|
||||||
public void DestroyEntity(RagonEntity entityId) => DestroyEntity(entityId, null);
|
public void DestroyEntity(RagonEntity entityId) => DestroyEntity(entityId, null);
|
||||||
public void DestroyEntity(RagonEntity entityId, RagonPayload payload) => _entityCache.Destroy(entityId, payload);
|
public void DestroyEntity(RagonEntity entityId, RagonPayload payload) => _entityCache.Destroy(entityId, payload);
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
Cleanup();
|
||||||
|
|
||||||
|
_events.Clear();
|
||||||
|
_listeners.Clear();
|
||||||
|
_localListeners.Clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -67,4 +67,51 @@ public class RagonScene
|
|||||||
var sendData = buffer.ToArray();
|
var sendData = buffer.ToArray();
|
||||||
_client.Reliable.Send(sendData);
|
_client.Reliable.Send(sendData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void ReplicateEvent<TEvent>(TEvent evnt, RagonTarget target, RagonReplicationMode replicationMode)
|
||||||
|
where TEvent : IRagonEvent, new()
|
||||||
|
{
|
||||||
|
var evntId = _client.Event.GetEventCode(evnt);
|
||||||
|
var buffer = _client.Buffer;
|
||||||
|
|
||||||
|
buffer.Clear();
|
||||||
|
buffer.WriteOperation(RagonOperation.REPLICATE_ROOM_EVENT);
|
||||||
|
buffer.WriteUShort(evntId);
|
||||||
|
buffer.WriteByte((byte)replicationMode);
|
||||||
|
buffer.WriteByte((byte)target);
|
||||||
|
|
||||||
|
var sendData = buffer.ToArray();
|
||||||
|
_client.Reliable.Send(sendData);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal void ReplicateEvent<TEvent>(TEvent evnt, RagonPlayer target, RagonReplicationMode replicationMode)
|
||||||
|
where TEvent : IRagonEvent, new()
|
||||||
|
{
|
||||||
|
var evntId = _client.Event.GetEventCode(evnt);
|
||||||
|
var buffer = _client.Buffer;
|
||||||
|
|
||||||
|
buffer.Clear();
|
||||||
|
buffer.WriteOperation(RagonOperation.REPLICATE_ROOM_EVENT);
|
||||||
|
buffer.WriteUShort(evntId);
|
||||||
|
buffer.WriteByte((byte)replicationMode);
|
||||||
|
buffer.WriteByte((byte)RagonTarget.Player);
|
||||||
|
buffer.WriteUShort(target.PeerId);
|
||||||
|
|
||||||
|
evnt.Serialize(buffer);
|
||||||
|
|
||||||
|
var sendData = buffer.ToArray();
|
||||||
|
_client.Reliable.Send(sendData);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ReplicateData(byte[] data, bool reliable)
|
||||||
|
{
|
||||||
|
var sendData = new byte[data.Length + 1];
|
||||||
|
sendData[0] = (byte) RagonOperation.REPLICATE_RAW_DATA;
|
||||||
|
Array.Copy(data, 0, sendData, 1, data.Length);
|
||||||
|
|
||||||
|
if (reliable)
|
||||||
|
_client.Reliable.Send(sendData);
|
||||||
|
else
|
||||||
|
_client.Unreliable.Send(sendData);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -51,9 +51,9 @@ namespace Ragon.Client
|
|||||||
Create(null, new RagonRoomParameters() {Scene = sceneName, Min = minPlayers, Max = maxPlayers});
|
Create(null, new RagonRoomParameters() {Scene = sceneName, Min = minPlayers, Max = maxPlayers});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Create(string roomId, string sceneNa, int minPlayers, int maxPlayers)
|
public void Create(string roomId, string sceneName, int minPlayers, int maxPlayers)
|
||||||
{
|
{
|
||||||
Create(roomId, new RagonRoomParameters() {Scene = sceneNa, Min = minPlayers, Max = maxPlayers});
|
Create(roomId, new RagonRoomParameters() {Scene = sceneName, Min = minPlayers, Max = maxPlayers});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Create(string roomId, RagonRoomParameters parameters)
|
public void Create(string roomId, RagonRoomParameters parameters)
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
<LangVersion>8</LangVersion>
|
<LangVersion>8</LangVersion>
|
||||||
<RootNamespace>Ragon.Common</RootNamespace>
|
<RootNamespace>Ragon.Common</RootNamespace>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<Version>1.2.4-rc</Version>
|
|
||||||
<Title>Ragon.Protocol</Title>
|
<Title>Ragon.Protocol</Title>
|
||||||
<Copyright>Eduard Kargin</Copyright>
|
<Copyright>Eduard Kargin</Copyright>
|
||||||
<PackageProjectUrl>https://ragon-server.com</PackageProjectUrl>
|
<PackageProjectUrl>https://ragon-server.com</PackageProjectUrl>
|
||||||
|
|||||||
@@ -68,16 +68,19 @@ namespace Ragon.Protocol
|
|||||||
private int _read;
|
private int _read;
|
||||||
private int _write;
|
private int _write;
|
||||||
private uint[] _buckets;
|
private uint[] _buckets;
|
||||||
|
private byte[] _rawData;
|
||||||
private readonly UTF8Encoding _utf8Encoding = new UTF8Encoding(false, true);
|
private readonly UTF8Encoding _utf8Encoding = new UTF8Encoding(false, true);
|
||||||
|
|
||||||
|
public byte[] RawData => _rawData;
|
||||||
public int ReadOffset => _read;
|
public int ReadOffset => _read;
|
||||||
public int WriteOffset => _write;
|
public int WriteOffset => _write;
|
||||||
public int Length => ((_write - 1) >> 3) + 1;
|
public int Length => ((_write - 1) >> 3) + 1;
|
||||||
public int Capacity => _write - _read;
|
public int Capacity => _write - _read - 1;
|
||||||
|
|
||||||
public RagonBuffer(int capacity = 128)
|
public RagonBuffer(int capacity = 128)
|
||||||
{
|
{
|
||||||
_buckets = new uint[capacity];
|
_buckets = new uint[capacity];
|
||||||
|
_rawData = Array.Empty<byte>();
|
||||||
_read = 0;
|
_read = 0;
|
||||||
_write = 0;
|
_write = 0;
|
||||||
}
|
}
|
||||||
@@ -233,9 +236,6 @@ namespace Ragon.Protocol
|
|||||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
public void Write(uint value, int numBits = 16)
|
public void Write(uint value, int numBits = 16)
|
||||||
{
|
{
|
||||||
Debug.Assert(!(numBits < 0));
|
|
||||||
Debug.Assert(!(numBits > 32));
|
|
||||||
|
|
||||||
var currentBucketIndex = _write >> 5;
|
var currentBucketIndex = _write >> 5;
|
||||||
var used = _write & 0x0000001F;
|
var used = _write & 0x0000001F;
|
||||||
var mask = (1UL << used) - 1;
|
var mask = (1UL << used) - 1;
|
||||||
@@ -354,7 +354,7 @@ namespace Ragon.Protocol
|
|||||||
}
|
}
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
public void FromBuffer(RagonBuffer buffer, int size)
|
public void CopyFrom(RagonBuffer buffer, int size)
|
||||||
{
|
{
|
||||||
WriteArray(buffer._buckets, size);
|
WriteArray(buffer._buckets, size);
|
||||||
}
|
}
|
||||||
@@ -397,10 +397,13 @@ namespace Ragon.Protocol
|
|||||||
|
|
||||||
_write = ((length - 1) * 8) + positionInByte;
|
_write = ((length - 1) * 8) + positionInByte;
|
||||||
_read = 0;
|
_read = 0;
|
||||||
|
_rawData = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
public byte[] ToArray()
|
public byte[] ToArray()
|
||||||
{
|
{
|
||||||
|
Write(1, 1);
|
||||||
|
|
||||||
var data = new byte[Length];
|
var data = new byte[Length];
|
||||||
int bucketsCount = (_write >> 5) + 1;
|
int bucketsCount = (_write >> 5) + 1;
|
||||||
int length = data.Length;
|
int length = data.Length;
|
||||||
@@ -426,6 +429,32 @@ namespace Ragon.Protocol
|
|||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void ToArray(byte[] outData)
|
||||||
|
{
|
||||||
|
Write(1, 1);
|
||||||
|
|
||||||
|
var bucketsCount = (_write >> 5) + 1;
|
||||||
|
var length = Length;
|
||||||
|
|
||||||
|
for (int i = 0; i < bucketsCount; i++)
|
||||||
|
{
|
||||||
|
var dataIdx = i * 4;
|
||||||
|
var bucket = _buckets[i];
|
||||||
|
|
||||||
|
if (dataIdx < length)
|
||||||
|
outData[dataIdx] = (byte)bucket;
|
||||||
|
|
||||||
|
if (dataIdx + 1 < length)
|
||||||
|
outData[dataIdx + 1] = (byte)(bucket >> 8);
|
||||||
|
|
||||||
|
if (dataIdx + 2 < length)
|
||||||
|
outData[dataIdx + 2] = (byte)(bucket >> 16);
|
||||||
|
|
||||||
|
if (dataIdx + 3 < length)
|
||||||
|
outData[dataIdx + 3] = (byte)(bucket >> 24);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void Resize(int capacity)
|
private void Resize(int capacity)
|
||||||
{
|
{
|
||||||
var buckets = new uint[_buckets.Length * 2 + capacity];
|
var buckets = new uint[_buckets.Length * 2 + capacity];
|
||||||
|
|||||||
@@ -19,27 +19,30 @@ namespace Ragon.Protocol
|
|||||||
{
|
{
|
||||||
public enum RagonOperation: byte
|
public enum RagonOperation: byte
|
||||||
{
|
{
|
||||||
AUTHORIZE,
|
AUTHORIZE = 1,
|
||||||
AUTHORIZED_SUCCESS,
|
AUTHORIZED_SUCCESS = 2,
|
||||||
AUTHORIZED_FAILED,
|
AUTHORIZED_FAILED = 3,
|
||||||
JOIN_OR_CREATE_ROOM,
|
JOIN_OR_CREATE_ROOM = 4,
|
||||||
CREATE_ROOM,
|
CREATE_ROOM = 5,
|
||||||
JOIN_ROOM,
|
JOIN_ROOM = 6,
|
||||||
LEAVE_ROOM,
|
LEAVE_ROOM = 7,
|
||||||
OWNERSHIP_ENTITY_CHANGED,
|
OWNERSHIP_ENTITY_CHANGED = 8,
|
||||||
OWNERSHIP_ROOM_CHANGED,
|
OWNERSHIP_ROOM_CHANGED= 9,
|
||||||
JOIN_SUCCESS,
|
JOIN_SUCCESS = 10,
|
||||||
JOIN_FAILED,
|
JOIN_FAILED = 11,
|
||||||
LOAD_SCENE,
|
LOAD_SCENE = 12,
|
||||||
SCENE_LOADED,
|
SCENE_LOADED = 13,
|
||||||
PLAYER_JOINED,
|
PLAYER_JOINED = 14,
|
||||||
PLAYER_LEAVED,
|
PLAYER_LEAVED = 15,
|
||||||
CREATE_ENTITY,
|
CREATE_ENTITY = 16,
|
||||||
REMOVE_ENTITY,
|
REMOVE_ENTITY = 17,
|
||||||
SNAPSHOT,
|
SNAPSHOT = 18,
|
||||||
REPLICATE_ENTITY_STATE,
|
REPLICATE_ENTITY_STATE = 19,
|
||||||
REPLICATE_ENTITY_EVENT,
|
REPLICATE_ENTITY_EVENT = 20,
|
||||||
TRANSFER_ROOM_OWNERSHIP,
|
REPLICATE_RAW_DATA = 21,
|
||||||
TRANSFER_ENTITY_OWNERSHIP,
|
REPLICATE_ROOM_EVENT = 22,
|
||||||
|
TRANSFER_ROOM_OWNERSHIP = 23,
|
||||||
|
TRANSFER_ENTITY_OWNERSHIP = 24,
|
||||||
|
TIMESTAMP_SYNCHRONIZATION = 25,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -16,9 +16,34 @@
|
|||||||
|
|
||||||
|
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ragon.Protocol
|
namespace Ragon.Protocol
|
||||||
{
|
{
|
||||||
|
[StructLayout(LayoutKind.Explicit)]
|
||||||
|
public struct DoubleToUInt
|
||||||
|
{
|
||||||
|
[FieldOffset(0)]
|
||||||
|
public double Double;
|
||||||
|
|
||||||
|
[FieldOffset(0)]
|
||||||
|
public uint Int0;
|
||||||
|
|
||||||
|
[FieldOffset(4)]
|
||||||
|
public uint Int1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class RagonTime {
|
||||||
|
public static double CurrentTimestamp()
|
||||||
|
{
|
||||||
|
var currentTime = System.DateTime.UtcNow.ToUniversalTime().Subtract(
|
||||||
|
new System.DateTime(1970, 1, 1, 0, 0, 0, System.DateTimeKind.Utc)
|
||||||
|
).TotalMilliseconds;
|
||||||
|
|
||||||
|
return currentTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static class DeBruijn
|
public static class DeBruijn
|
||||||
{
|
{
|
||||||
private static readonly int[] _lookup = new int[32]
|
private static readonly int[] _lookup = new int[32]
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Ragon.Server.ENet\Ragon.Server.ENet.csproj" />
|
<ProjectReference Include="..\Ragon.Server.ENetServer\Ragon.Server.ENetServer.csproj" />
|
||||||
<ProjectReference Include="..\Ragon.Server.WebSocketServer\Ragon.Server.WebSocketServer.csproj" />
|
<ProjectReference Include="..\Ragon.Server.WebSocketServer\Ragon.Server.WebSocketServer.csproj" />
|
||||||
<ProjectReference Include="..\Ragon.Server\Ragon.Server.csproj" />
|
<ProjectReference Include="..\Ragon.Server\Ragon.Server.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Server;
|
using Ragon.Server;
|
||||||
using Ragon.Server.ENet;
|
using Ragon.Server.ENetServer;
|
||||||
using Ragon.Server.WebSocketServer;
|
using Ragon.Server.WebSocketServer;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.Plugin;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using Ragon.Server;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.Plugin;
|
||||||
|
|
||||||
namespace Ragon.Relay;
|
namespace Ragon.Relay;
|
||||||
@@ -21,4 +22,9 @@ public class RelayServerPlugin: BaseServerPlugin
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override IRoomPlugin CreateRoomPlugin(RoomInformation information)
|
||||||
|
{
|
||||||
|
return new RelayRoomPlugin();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -17,7 +17,7 @@
|
|||||||
using ENet;
|
using ENet;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.ENet;
|
namespace Ragon.Server.ENetServer;
|
||||||
|
|
||||||
public sealed class ENetConnection: INetworkConnection
|
public sealed class ENetConnection: INetworkConnection
|
||||||
{
|
{
|
||||||
@@ -31,8 +31,8 @@ public sealed class ENetConnection: INetworkConnection
|
|||||||
_peer = peer;
|
_peer = peer;
|
||||||
|
|
||||||
Id = (ushort) peer.ID;
|
Id = (ushort) peer.ID;
|
||||||
Reliable = new ENetReliableChannel(peer, 0);
|
Reliable = new ENetReliableChannel(peer, NetworkChannel.RELIABLE);
|
||||||
Unreliable = new ENetUnreliableChannel(peer, 1);
|
Unreliable = new ENetUnreliableChannel(peer, NetworkChannel.UNRELIABLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Close()
|
public void Close()
|
||||||
+17
-3
@@ -14,20 +14,24 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
using System.Net;
|
||||||
using ENet;
|
using ENet;
|
||||||
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.ENet;
|
namespace Ragon.Server.ENetServer;
|
||||||
|
|
||||||
public sealed class ENetReliableChannel: INetworkChannel
|
public sealed class ENetReliableChannel: INetworkChannel
|
||||||
{
|
{
|
||||||
private Peer _peer;
|
private Peer _peer;
|
||||||
private byte _channelId;
|
private byte _channelId;
|
||||||
|
private byte[] _data;
|
||||||
|
|
||||||
public ENetReliableChannel(Peer peer, int channelId)
|
public ENetReliableChannel(Peer peer, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
_peer = peer;
|
_peer = peer;
|
||||||
_channelId = (byte) channelId;
|
_data = new byte[1500];
|
||||||
|
_channelId = (byte) channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Send(byte[] data)
|
public void Send(byte[] data)
|
||||||
@@ -37,4 +41,14 @@ public sealed class ENetReliableChannel: INetworkChannel
|
|||||||
|
|
||||||
_peer.Send(_channelId, ref newPacket);
|
_peer.Send(_channelId, ref newPacket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Send(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
buffer.ToArray(_data);
|
||||||
|
|
||||||
|
var newPacket = new Packet();
|
||||||
|
newPacket.Create(_data, buffer.Length, PacketFlags.Reliable);
|
||||||
|
|
||||||
|
_peer.Send(_channelId, ref newPacket);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+20
-16
@@ -19,27 +19,20 @@ using NLog;
|
|||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.ENet
|
namespace Ragon.Server.ENetServer
|
||||||
{
|
{
|
||||||
public sealed class ENetServer: INetworkServer
|
public sealed class ENetServer : INetworkServer
|
||||||
{
|
{
|
||||||
public Executor Executor => _executor;
|
public Executor Executor => _executor;
|
||||||
|
|
||||||
private readonly Host _host;
|
private readonly Host _host = new();
|
||||||
private readonly ILogger _logger = LogManager.GetCurrentClassLogger();
|
private readonly ILogger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
private ENetConnection[] _connections;
|
private ENetConnection[] _connections = Array.Empty<ENetConnection>();
|
||||||
private INetworkListener _listener;
|
private INetworkListener _listener;
|
||||||
private uint _protocol;
|
private uint _protocol;
|
||||||
private Event _event;
|
private ENet.Event _event;
|
||||||
private Executor _executor;
|
private Executor _executor = new();
|
||||||
|
|
||||||
public ENetServer()
|
|
||||||
{
|
|
||||||
_host = new Host();
|
|
||||||
_executor = new Executor();
|
|
||||||
_connections = Array.Empty<ENetConnection>();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Start(INetworkListener listener, NetworkConfiguration configuration)
|
public void Start(INetworkListener listener, NetworkConfiguration configuration)
|
||||||
{
|
{
|
||||||
@@ -52,7 +45,7 @@ namespace Ragon.Server.ENet
|
|||||||
|
|
||||||
var address = new Address
|
var address = new Address
|
||||||
{
|
{
|
||||||
Port = (ushort) configuration.Port,
|
Port = (ushort)configuration.Port,
|
||||||
};
|
};
|
||||||
|
|
||||||
_host.Create(address, _connections.Length, 2, 0, 0, 1024 * 1024);
|
_host.Create(address, _connections.Length, 2, 0, 0, 1024 * 1024);
|
||||||
@@ -90,6 +83,7 @@ namespace Ragon.Server.ENet
|
|||||||
_event.Peer.DisconnectNow(0);
|
_event.Peer.DisconnectNow(0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var connection = new ENetConnection(_event.Peer);
|
var connection = new ENetConnection(_event.Peer);
|
||||||
|
|
||||||
_connections[_event.Peer.ID] = connection;
|
_connections[_event.Peer.ID] = connection;
|
||||||
@@ -110,20 +104,30 @@ namespace Ragon.Server.ENet
|
|||||||
}
|
}
|
||||||
case EventType.Receive:
|
case EventType.Receive:
|
||||||
{
|
{
|
||||||
var peerId = (ushort) _event.Peer.ID;
|
var peerId = (ushort)_event.Peer.ID;
|
||||||
var connection = _connections[peerId];
|
var connection = _connections[peerId];
|
||||||
var dataRaw = new byte[_event.Packet.Length];
|
var dataRaw = new byte[_event.Packet.Length];
|
||||||
|
|
||||||
_event.Packet.CopyTo(dataRaw);
|
_event.Packet.CopyTo(dataRaw);
|
||||||
_event.Packet.Dispose();
|
_event.Packet.Dispose();
|
||||||
|
|
||||||
_listener.OnData(connection, dataRaw);
|
_listener.OnData(connection, (NetworkChannel)_event.ChannelID, dataRaw);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Broadcast(byte[] data, NetworkChannel channel)
|
||||||
|
{
|
||||||
|
var packet = new Packet();
|
||||||
|
var flag = channel == NetworkChannel.RELIABLE? PacketFlags.Reliable: PacketFlags.None;
|
||||||
|
|
||||||
|
packet.Create(data, flag);
|
||||||
|
|
||||||
|
_host.Broadcast((byte)channel, ref packet);
|
||||||
|
}
|
||||||
|
|
||||||
public void Stop()
|
public void Stop()
|
||||||
{
|
{
|
||||||
_host?.Dispose();
|
_host?.Dispose();
|
||||||
+15
-3
@@ -15,19 +15,21 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using ENet;
|
using ENet;
|
||||||
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.ENet;
|
namespace Ragon.Server.ENetServer;
|
||||||
|
|
||||||
public sealed class ENetUnreliableChannel: INetworkChannel
|
public sealed class ENetUnreliableChannel: INetworkChannel
|
||||||
{
|
{
|
||||||
private Peer _peer;
|
private Peer _peer;
|
||||||
private byte _channelId;
|
private byte _channelId;
|
||||||
|
private byte[] _data;
|
||||||
|
|
||||||
public ENetUnreliableChannel(Peer peer, int channelId)
|
public ENetUnreliableChannel(Peer peer, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
_peer = peer;
|
_peer = peer;
|
||||||
_channelId = (byte) channelId;
|
_channelId = (byte) channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Send(byte[] data)
|
public void Send(byte[] data)
|
||||||
@@ -37,4 +39,14 @@ public sealed class ENetUnreliableChannel: INetworkChannel
|
|||||||
|
|
||||||
_peer.Send(_channelId, ref newPacket);
|
_peer.Send(_channelId, ref newPacket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Send(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
buffer.ToArray(_data);
|
||||||
|
|
||||||
|
var newPacket = new Packet();
|
||||||
|
newPacket.Create(_data, buffer.Length, PacketFlags.None);
|
||||||
|
|
||||||
|
_peer.Send(_channelId, ref newPacket);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -15,6 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.WebSocketServer;
|
namespace Ragon.Server.WebSocketServer;
|
||||||
@@ -35,9 +36,17 @@ public class WebSocketReliableChannel : INetworkChannel
|
|||||||
_queue.Enqueue(data);
|
_queue.Enqueue(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Send(RagonBuffer buffer)
|
||||||
|
{
|
||||||
|
var sendData = buffer.ToArray();
|
||||||
|
_queue.Enqueue(sendData);
|
||||||
|
}
|
||||||
|
|
||||||
public async Task Flush()
|
public async Task Flush()
|
||||||
{
|
{
|
||||||
while (_queue.TryDequeue(out var sendData) && _socket.State == WebSocketState.Open)
|
while (_queue.TryDequeue(out var sendData) && _socket.State == WebSocketState.Open)
|
||||||
|
{
|
||||||
await _socket.SendAsync(sendData, WebSocketMessageType.Binary, WebSocketMessageFlags.EndOfMessage, CancellationToken.None);
|
await _socket.SendAsync(sendData, WebSocketMessageType.Binary, WebSocketMessageFlags.EndOfMessage, CancellationToken.None);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -46,6 +46,9 @@ public class WebSocketServer : INetworkServer
|
|||||||
public async void StartAccept(CancellationToken cancellationToken)
|
public async void StartAccept(CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
while (!cancellationToken.IsCancellationRequested)
|
while (!cancellationToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
WebSocketConnection connection = null!;
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var context = await _httpListener.GetContextAsync();
|
var context = await _httpListener.GetContextAsync();
|
||||||
if (!context.Request.IsWebSocketRequest)
|
if (!context.Request.IsWebSocketRequest)
|
||||||
@@ -58,11 +61,18 @@ public class WebSocketServer : INetworkServer
|
|||||||
|
|
||||||
var webSocketContext = await context.AcceptWebSocketAsync(null);
|
var webSocketContext = await context.AcceptWebSocketAsync(null);
|
||||||
var webSocket = webSocketContext.WebSocket;
|
var webSocket = webSocketContext.WebSocket;
|
||||||
|
|
||||||
var peerId = _sequencer.Pop();
|
var peerId = _sequencer.Pop();
|
||||||
var connection = new WebSocketConnection(webSocket, peerId);
|
|
||||||
|
|
||||||
_connections[peerId] = connection;
|
connection = new WebSocketConnection(webSocket, peerId);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.Warn(ex);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
_connections[connection.Id] = connection;
|
||||||
|
|
||||||
StartListen(connection, cancellationToken);
|
StartListen(connection, cancellationToken);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -75,6 +85,7 @@ public class WebSocketServer : INetworkServer
|
|||||||
var webSocket = connection.Socket;
|
var webSocket = connection.Socket;
|
||||||
var bytes = new byte[2048];
|
var bytes = new byte[2048];
|
||||||
var buffer = new Memory<byte>(bytes);
|
var buffer = new Memory<byte>(bytes);
|
||||||
|
|
||||||
while (
|
while (
|
||||||
webSocket.State == WebSocketState.Open ||
|
webSocket.State == WebSocketState.Open ||
|
||||||
!cancellationToken.IsCancellationRequested)
|
!cancellationToken.IsCancellationRequested)
|
||||||
@@ -82,9 +93,11 @@ public class WebSocketServer : INetworkServer
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
var result = await webSocket.ReceiveAsync(buffer, cancellationToken);
|
var result = await webSocket.ReceiveAsync(buffer, cancellationToken);
|
||||||
var dataRaw = buffer.Slice(0, result.Count);
|
if (result.Count > 0)
|
||||||
if (dataRaw.Length > 0)
|
{
|
||||||
_networkListener.OnData(connection, dataRaw.ToArray());
|
var payload = buffer.Slice(0, result.Count);
|
||||||
|
_networkListener.OnData(connection, NetworkChannel.RELIABLE, payload.ToArray());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -94,6 +107,7 @@ public class WebSocketServer : INetworkServer
|
|||||||
|
|
||||||
_sequencer.Push(connection.Id);
|
_sequencer.Push(connection.Id);
|
||||||
_activeConnections.Remove(connection);
|
_activeConnections.Remove(connection);
|
||||||
|
|
||||||
_networkListener.OnDisconnected(connection);
|
_networkListener.OnDisconnected(connection);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,6 +116,12 @@ public class WebSocketServer : INetworkServer
|
|||||||
Flush();
|
Flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Broadcast(byte[] data, NetworkChannel channel)
|
||||||
|
{
|
||||||
|
foreach (var activeConnection in _activeConnections)
|
||||||
|
activeConnection.Reliable.Send(data);
|
||||||
|
}
|
||||||
|
|
||||||
public async void Flush()
|
public async void Flush()
|
||||||
{
|
{
|
||||||
foreach (var conn in _activeConnections)
|
foreach (var conn in _activeConnections)
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Ragon.Core</RootNamespace>
|
<RootNamespace>Ragon.Core</RootNamespace>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<Version>1.2.4-rc</Version>
|
<Version>1.3.1</Version>
|
||||||
<Title>Ragon.Server</Title>
|
<Title>Ragon.Server</Title>
|
||||||
<Copyright>Eduard Kargin</Copyright>
|
<Copyright>Eduard Kargin</Copyright>
|
||||||
<PackageProjectUrl>https://ragon-server.com</PackageProjectUrl>
|
<PackageProjectUrl>https://ragon-server.com</PackageProjectUrl>
|
||||||
@@ -25,4 +25,5 @@
|
|||||||
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
|
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
|
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.Event;
|
||||||
using Ragon.Server.Room;
|
using Ragon.Server.Room;
|
||||||
|
|
||||||
namespace Ragon.Server.Entity;
|
namespace Ragon.Server.Entity;
|
||||||
@@ -130,19 +131,24 @@ public class RagonEntity : IRagonEntity
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void ReplicateEvent(
|
public void ReplicateEvent(
|
||||||
RagonRoomPlayer caller,
|
RagonRoomPlayer invoker,
|
||||||
RagonEvent evnt,
|
RagonEvent evnt,
|
||||||
RagonReplicationMode eventMode,
|
RagonReplicationMode eventMode,
|
||||||
RagonRoomPlayer targetPlayer
|
RagonRoomPlayer targetPlayer
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
if (Authority == RagonAuthority.OwnerOnly && invoker.Connection.Id != Owner.Connection.Id)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var room = Owner.Room;
|
var room = Owner.Room;
|
||||||
var buffer = room.Writer;
|
var buffer = room.Writer;
|
||||||
|
|
||||||
buffer.Clear();
|
buffer.Clear();
|
||||||
buffer.WriteOperation(RagonOperation.REPLICATE_ENTITY_EVENT);
|
buffer.WriteOperation(RagonOperation.REPLICATE_ENTITY_EVENT);
|
||||||
buffer.WriteUShort(evnt.EventCode);
|
buffer.WriteUShort(evnt.EventCode);
|
||||||
buffer.WriteUShort(caller.Connection.Id);
|
buffer.WriteUShort(invoker.Connection.Id);
|
||||||
buffer.WriteByte((byte)eventMode);
|
buffer.WriteByte((byte)eventMode);
|
||||||
buffer.WriteUShort(Id);
|
buffer.WriteUShort(Id);
|
||||||
|
|
||||||
@@ -153,22 +159,18 @@ public class RagonEntity : IRagonEntity
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void ReplicateEvent(
|
public void ReplicateEvent(
|
||||||
RagonRoomPlayer caller,
|
RagonRoomPlayer invoker,
|
||||||
RagonEvent evnt,
|
RagonEvent evnt,
|
||||||
RagonReplicationMode eventMode,
|
RagonReplicationMode eventMode,
|
||||||
RagonTarget targetMode
|
RagonTarget targetMode
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (Authority == RagonAuthority.OwnerOnly &&
|
if (Authority == RagonAuthority.OwnerOnly && invoker.Connection.Id != Owner.Connection.Id)
|
||||||
Owner.Connection.Id != caller.Connection.Id)
|
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Player have not enough authority for event with Id {evnt.EventCode}");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventMode == RagonReplicationMode.Buffered &&
|
if (eventMode == RagonReplicationMode.Buffered && targetMode != RagonTarget.Owner && _bufferedEvents.Count < _limitBufferedEvents)
|
||||||
targetMode != RagonTarget.Owner &&
|
|
||||||
_bufferedEvents.Count < _limitBufferedEvents)
|
|
||||||
{
|
{
|
||||||
_bufferedEvents.Add(evnt);
|
_bufferedEvents.Add(evnt);
|
||||||
}
|
}
|
||||||
@@ -179,7 +181,7 @@ public class RagonEntity : IRagonEntity
|
|||||||
buffer.Clear();
|
buffer.Clear();
|
||||||
buffer.WriteOperation(RagonOperation.REPLICATE_ENTITY_EVENT);
|
buffer.WriteOperation(RagonOperation.REPLICATE_ENTITY_EVENT);
|
||||||
buffer.WriteUShort(evnt.EventCode);
|
buffer.WriteUShort(evnt.EventCode);
|
||||||
buffer.WriteUShort(caller.Connection.Id);
|
buffer.WriteUShort(invoker.Connection.Id);
|
||||||
buffer.WriteByte((byte)eventMode);
|
buffer.WriteByte((byte)eventMode);
|
||||||
buffer.WriteUShort(Id);
|
buffer.WriteUShort(Id);
|
||||||
|
|
||||||
@@ -207,7 +209,7 @@ public class RagonEntity : IRagonEntity
|
|||||||
{
|
{
|
||||||
foreach (var roomPlayer in room.ReadyPlayersList)
|
foreach (var roomPlayer in room.ReadyPlayersList)
|
||||||
{
|
{
|
||||||
if (roomPlayer.Connection.Id != caller.Connection.Id)
|
if (roomPlayer.Connection.Id != invoker.Connection.Id)
|
||||||
roomPlayer.Connection.Reliable.Send(sendData);
|
roomPlayer.Connection.Reliable.Send(sendData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Server.Entity;
|
namespace Ragon.Server.Entity;
|
||||||
|
|||||||
@@ -54,6 +54,13 @@ public class RagonProperty : RagonPayload
|
|||||||
|
|
||||||
public void Write(RagonBuffer buffer)
|
public void Write(RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
|
if (IsFixed)
|
||||||
|
{
|
||||||
|
buffer.WriteArray(_data, Size);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.Write((ushort) Size);
|
||||||
buffer.WriteArray(_data, Size);
|
buffer.WriteArray(_data, Size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -17,7 +17,7 @@
|
|||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Room;
|
using Ragon.Server.Room;
|
||||||
|
|
||||||
namespace Ragon.Server.Entity;
|
namespace Ragon.Server.Event;
|
||||||
|
|
||||||
public class RagonEvent
|
public class RagonEvent
|
||||||
{
|
{
|
||||||
@@ -45,7 +45,7 @@ public class RagonEvent
|
|||||||
|
|
||||||
public void Write(RagonBuffer buffer)
|
public void Write(RagonBuffer buffer)
|
||||||
{
|
{
|
||||||
if (_size == 0) return;
|
if (_size <= 0) return;
|
||||||
buffer.WriteArray(_data, _size);
|
buffer.WriteArray(_data, _size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -16,31 +16,32 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Lobby;
|
using Ragon.Server.Lobby;
|
||||||
using Ragon.Server.Plugin;
|
|
||||||
using Ragon.Server.Plugin.Web;
|
using Ragon.Server.Plugin.Web;
|
||||||
|
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class AuthorizationOperation: IRagonOperation
|
public sealed class AuthorizationOperation: BaseOperation
|
||||||
{
|
{
|
||||||
private Logger _logger = LogManager.GetCurrentClassLogger();
|
private Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
private readonly RagonWebHookPlugin _ragonWebHook;
|
private readonly RagonWebHookPlugin _webhook;
|
||||||
private readonly RagonContextObserver _contextObserver;
|
private readonly RagonContextObserver _observer;
|
||||||
private readonly RagonBuffer _writer;
|
private readonly RagonBuffer _writer;
|
||||||
|
|
||||||
public AuthorizationOperation(
|
public AuthorizationOperation(
|
||||||
RagonWebHookPlugin ragonWebHook,
|
RagonBuffer reader,
|
||||||
RagonContextObserver contextObserver,
|
RagonBuffer writer,
|
||||||
RagonBuffer writer)
|
RagonWebHookPlugin webhook,
|
||||||
|
RagonContextObserver observer): base(reader, writer)
|
||||||
{
|
{
|
||||||
_ragonWebHook = ragonWebHook;
|
_webhook = webhook;
|
||||||
_contextObserver = contextObserver;
|
_observer = observer;
|
||||||
_writer = writer;
|
_writer = writer;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
if (context.ConnectionStatus == ConnectionStatus.Authorized)
|
if (context.ConnectionStatus == ConnectionStatus.Authorized)
|
||||||
{
|
{
|
||||||
@@ -55,13 +56,13 @@ public sealed class AuthorizationOperation: IRagonOperation
|
|||||||
}
|
}
|
||||||
|
|
||||||
var configuration = context.Configuration;
|
var configuration = context.Configuration;
|
||||||
var key = reader.ReadString();
|
var key = Reader.ReadString();
|
||||||
var name = reader.ReadString();
|
var name = Reader.ReadString();
|
||||||
var payload = reader.ReadString();
|
var payload = Reader.ReadString();
|
||||||
|
|
||||||
if (key == configuration.ServerKey)
|
if (key == configuration.ServerKey)
|
||||||
{
|
{
|
||||||
if (_ragonWebHook.RequestAuthorization(context, name, payload))
|
if (_webhook.RequestAuthorization(context, name, payload))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var lobbyPlayer = new RagonLobbyPlayer(context.Connection, Guid.NewGuid().ToString(), name, payload);
|
var lobbyPlayer = new RagonLobbyPlayer(context.Connection, Guid.NewGuid().ToString(), name, payload);
|
||||||
@@ -79,7 +80,7 @@ public sealed class AuthorizationOperation: IRagonOperation
|
|||||||
{
|
{
|
||||||
context.ConnectionStatus = ConnectionStatus.Authorized;
|
context.ConnectionStatus = ConnectionStatus.Authorized;
|
||||||
|
|
||||||
_contextObserver.OnAuthorized(context);
|
_observer.OnAuthorized(context);
|
||||||
|
|
||||||
var playerId = context.LobbyPlayer.Id;
|
var playerId = context.LobbyPlayer.Id;
|
||||||
var playerName = context.LobbyPlayer.Name;
|
var playerName = context.LobbyPlayer.Name;
|
||||||
@@ -109,4 +110,6 @@ public sealed class AuthorizationOperation: IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Connection {context.Connection.Id}");
|
_logger.Trace($"Connection {context.Connection.Id}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
|
public abstract class BaseOperation
|
||||||
|
{
|
||||||
|
protected readonly RagonBuffer Reader;
|
||||||
|
protected readonly RagonBuffer Writer;
|
||||||
|
|
||||||
|
public BaseOperation(RagonBuffer reader, RagonBuffer writer)
|
||||||
|
{
|
||||||
|
Reader = reader;
|
||||||
|
Writer = writer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract void Handle(RagonContext context, NetworkChannel channel);
|
||||||
|
}
|
||||||
@@ -17,21 +17,26 @@
|
|||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Entity;
|
using Ragon.Server.Entity;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class EntityCreateOperation : IRagonOperation
|
public sealed class EntityCreateOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public EntityCreateOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var player = context.RoomPlayer;
|
var player = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var attachId = reader.ReadUShort();
|
var attachId = Reader.ReadUShort();
|
||||||
var entityType = reader.ReadUShort();
|
var entityType = Reader.ReadUShort();
|
||||||
var eventAuthority = (RagonAuthority) reader.ReadByte();
|
var eventAuthority = (RagonAuthority) Reader.ReadByte();
|
||||||
var propertiesCount = reader.ReadUShort();
|
var propertiesCount = Reader.ReadUShort();
|
||||||
|
|
||||||
var entityParameters = new RagonEntityParameters()
|
var entityParameters = new RagonEntityParameters()
|
||||||
{
|
{
|
||||||
@@ -45,14 +50,14 @@ public sealed class EntityCreateOperation : IRagonOperation
|
|||||||
var entity = new RagonEntity(entityParameters);
|
var entity = new RagonEntity(entityParameters);
|
||||||
for (var i = 0; i < propertiesCount; i++)
|
for (var i = 0; i < propertiesCount; i++)
|
||||||
{
|
{
|
||||||
var propertyType = reader.ReadBool();
|
var propertyType = Reader.ReadBool();
|
||||||
var propertySize = reader.ReadUShort();
|
var propertySize = Reader.ReadUShort();
|
||||||
|
|
||||||
entity.AddProperty(new RagonProperty(propertySize, propertyType));
|
entity.AddProperty(new RagonProperty(propertySize, propertyType));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (reader.Capacity > 0)
|
if (Reader.Capacity > 0)
|
||||||
entity.Payload.Read(reader);
|
entity.Payload.Read(Reader);
|
||||||
|
|
||||||
var plugin = room.Plugin;
|
var plugin = room.Plugin;
|
||||||
if (!plugin.OnEntityCreate(player, entity))
|
if (!plugin.OnEntityCreate(player, entity))
|
||||||
@@ -66,4 +71,6 @@ public sealed class EntityCreateOperation : IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} created entity {entity.Id}:{entity.Type}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} created entity {entity.Id}:{entity.Type}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -16,19 +16,24 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Entity;
|
using Ragon.Server.Event;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class EntityEventOperation : IRagonOperation
|
public sealed class EntityEventOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public EntityEventOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var player = context.RoomPlayer;
|
var player = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var entityId = reader.ReadUShort();
|
var entityId = Reader.ReadUShort();
|
||||||
|
|
||||||
if (!room.Entities.TryGetValue(entityId, out var ent))
|
if (!room.Entities.TryGetValue(entityId, out var ent))
|
||||||
{
|
{
|
||||||
@@ -36,16 +41,16 @@ public sealed class EntityEventOperation : IRagonOperation
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var eventId = reader.ReadUShort();
|
var eventId = Reader.ReadUShort();
|
||||||
var eventMode = (RagonReplicationMode)reader.ReadByte();
|
var eventMode = (RagonReplicationMode)Reader.ReadByte();
|
||||||
var targetMode = (RagonTarget)reader.ReadByte();
|
var targetMode = (RagonTarget)Reader.ReadByte();
|
||||||
var targetPlayerPeerId = (ushort)0;
|
var targetPlayerPeerId = (ushort)0;
|
||||||
|
|
||||||
if (targetMode == RagonTarget.Player)
|
if (targetMode == RagonTarget.Player)
|
||||||
targetPlayerPeerId = reader.ReadUShort();
|
targetPlayerPeerId = Reader.ReadUShort();
|
||||||
|
|
||||||
var @event = new RagonEvent(player, eventId);
|
var @event = new RagonEvent(player, eventId);
|
||||||
@event.Read(reader);
|
@event.Read(Reader);
|
||||||
|
|
||||||
if (targetMode == RagonTarget.Player && room.Players.TryGetValue(targetPlayerPeerId, out var targetPlayer))
|
if (targetMode == RagonTarget.Player && room.Players.TryGetValue(targetPlayerPeerId, out var targetPlayer))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,19 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class EntityOwnershipOperation : IRagonOperation
|
public sealed class EntityOwnershipOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public EntityOwnershipOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var currentOwner = context.RoomPlayer;
|
var currentOwner = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
|
|
||||||
var entityId = reader.ReadUShort();
|
var entityId = Reader.ReadUShort();
|
||||||
var playerPeerId = reader.ReadUShort();
|
var playerPeerId = Reader.ReadUShort();
|
||||||
|
|
||||||
if (!room.Entities.TryGetValue(entityId, out var entity))
|
if (!room.Entities.TryGetValue(entityId, out var entity))
|
||||||
{
|
{
|
||||||
@@ -29,7 +51,7 @@ public sealed class EntityOwnershipOperation : IRagonOperation
|
|||||||
|
|
||||||
if (!room.Players.TryGetValue(playerPeerId, out var nextOwner))
|
if (!room.Players.TryGetValue(playerPeerId, out var nextOwner))
|
||||||
{
|
{
|
||||||
_logger.Error($"Player not found with id {entityId}");
|
_logger.Error($"Player not found with id {playerPeerId}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,13 +62,13 @@ public sealed class EntityOwnershipOperation : IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Entity {entity.Id} next owner {nextOwner.Connection.Id}");
|
_logger.Trace($"Entity {entity.Id} next owner {nextOwner.Connection.Id}");
|
||||||
|
|
||||||
writer.Clear();
|
Writer.Clear();
|
||||||
writer.WriteOperation(RagonOperation.OWNERSHIP_ENTITY_CHANGED);
|
Writer.WriteOperation(RagonOperation.OWNERSHIP_ENTITY_CHANGED);
|
||||||
writer.WriteUShort(playerPeerId);
|
Writer.WriteUShort(playerPeerId);
|
||||||
writer.WriteUShort(1);
|
Writer.WriteUShort(1);
|
||||||
writer.WriteUShort(entity.Id);
|
Writer.WriteUShort(entity.Id);
|
||||||
|
|
||||||
var sendData = writer.ToArray();
|
var sendData = Writer.ToArray();
|
||||||
foreach (var player in room.PlayerList)
|
foreach (var player in room.PlayerList)
|
||||||
player.Connection.Reliable.Send(sendData);
|
player.Connection.Reliable.Send(sendData);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,23 +17,28 @@
|
|||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Entity;
|
using Ragon.Server.Entity;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class EntityDestroyOperation: IRagonOperation
|
public sealed class EntityDestroyOperation: BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public EntityDestroyOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var player = context.RoomPlayer;
|
var player = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var entityId = reader.ReadUShort();
|
var entityId = Reader.ReadUShort();
|
||||||
|
|
||||||
if (room.Entities.TryGetValue(entityId, out var entity))
|
if (room.Entities.TryGetValue(entityId, out var entity) && entity.Owner.Connection.Id == player.Connection.Id)
|
||||||
{
|
{
|
||||||
var payload = new RagonPayload();
|
var payload = new RagonPayload();
|
||||||
payload.Read(reader);
|
payload.Read(Reader);
|
||||||
|
|
||||||
room.DetachEntity(entity);
|
room.DetachEntity(entity);
|
||||||
player.DetachEntity(entity);
|
player.DetachEntity(entity);
|
||||||
@@ -42,5 +47,9 @@ public sealed class EntityDestroyOperation: IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} destoyed entity {entity.Id}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} destoyed entity {entity.Id}");
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Trace($"Entity {entity.Id} not found or Player {context.Connection.Id}|{context.LobbyPlayer.Name} have not authority");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -16,23 +16,28 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class EntityStateOperation: IRagonOperation
|
public sealed class EntityStateOperation: BaseOperation
|
||||||
{
|
{
|
||||||
private readonly ILogger _logger = LogManager.GetCurrentClassLogger();
|
private readonly ILogger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public EntityStateOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var player = context.RoomPlayer;
|
var player = context.RoomPlayer;
|
||||||
var entitiesCount = reader.ReadUShort();
|
var entitiesCount = Reader.ReadUShort();
|
||||||
|
|
||||||
for (var entityIndex = 0; entityIndex < entitiesCount; entityIndex++)
|
for (var entityIndex = 0; entityIndex < entitiesCount; entityIndex++)
|
||||||
{
|
{
|
||||||
var entityId = reader.ReadUShort();
|
var entityId = Reader.ReadUShort();
|
||||||
if (room.Entities.TryGetValue(entityId, out var entity) && entity.TryReadState(player, reader))
|
if (room.Entities.TryGetValue(entityId, out var entity) && entity.TryReadState(player, Reader))
|
||||||
{
|
{
|
||||||
room.Track(entity);
|
room.Track(entity);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Lobby;
|
using Ragon.Server.Lobby;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.Plugin;
|
||||||
using Ragon.Server.Plugin.Web;
|
using Ragon.Server.Plugin.Web;
|
||||||
@@ -23,20 +24,20 @@ using Ragon.Server.Room;
|
|||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class RoomCreateOperation: IRagonOperation
|
public sealed class RoomCreateOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly RagonRoomParameters _roomParameters = new();
|
private readonly RagonRoomParameters _roomParameters = new();
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
private readonly IServerPlugin _serverPlugin;
|
private readonly IServerPlugin _serverPlugin;
|
||||||
private readonly RagonWebHookPlugin _ragonWebHookPlugin;
|
private readonly RagonWebHookPlugin _ragonWebHookPlugin;
|
||||||
|
|
||||||
public RoomCreateOperation(IServerPlugin serverPlugin, RagonWebHookPlugin ragonWebHook)
|
public RoomCreateOperation(RagonBuffer reader, RagonBuffer writer, IServerPlugin serverPlugin, RagonWebHookPlugin ragonWebHook) : base(reader, writer)
|
||||||
{
|
{
|
||||||
_serverPlugin = serverPlugin;
|
_serverPlugin = serverPlugin;
|
||||||
_ragonWebHookPlugin = ragonWebHook;
|
_ragonWebHookPlugin = ragonWebHook;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
||||||
{
|
{
|
||||||
@@ -44,19 +45,19 @@ public sealed class RoomCreateOperation: IRagonOperation
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var custom = reader.ReadBool();
|
var custom = Reader.ReadBool();
|
||||||
var roomId = Guid.NewGuid().ToString();
|
var roomId = Guid.NewGuid().ToString();
|
||||||
|
|
||||||
if (custom)
|
if (custom)
|
||||||
{
|
{
|
||||||
roomId = reader.ReadString();
|
roomId = Reader.ReadString();
|
||||||
if (context.Lobby.FindRoomById(roomId, out _))
|
if (context.Lobby.FindRoomById(roomId, out _))
|
||||||
{
|
{
|
||||||
writer.Clear();
|
Writer.Clear();
|
||||||
writer.WriteOperation(RagonOperation.JOIN_FAILED);
|
Writer.WriteOperation(RagonOperation.JOIN_FAILED);
|
||||||
writer.WriteString($"Room with id {roomId} already exists");
|
Writer.WriteString($"Room with id {roomId} already exists");
|
||||||
|
|
||||||
var sendData = writer.ToArray();
|
var sendData = Writer.ToArray();
|
||||||
context.Connection.Reliable.Send(sendData);
|
context.Connection.Reliable.Send(sendData);
|
||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} join failed to room {roomId}, room already exist");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} join failed to room {roomId}, room already exist");
|
||||||
@@ -64,7 +65,7 @@ public sealed class RoomCreateOperation: IRagonOperation
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_roomParameters.Deserialize(reader);
|
_roomParameters.Deserialize(Reader);
|
||||||
|
|
||||||
var information = new RoomInformation()
|
var information = new RoomInformation()
|
||||||
{
|
{
|
||||||
@@ -89,7 +90,7 @@ public sealed class RoomCreateOperation: IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} create room {room.Id} with scene {information.Scene}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} create room {room.Id} with scene {information.Scene}");
|
||||||
|
|
||||||
JoinSuccess(roomPlayer, room, writer);
|
JoinSuccess(roomPlayer, room, Writer);
|
||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} joined to room {room.Id}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} joined to room {room.Id}");
|
||||||
}
|
}
|
||||||
@@ -101,8 +102,8 @@ public sealed class RoomCreateOperation: IRagonOperation
|
|||||||
writer.WriteString(room.Id);
|
writer.WriteString(room.Id);
|
||||||
writer.WriteString(player.Id);
|
writer.WriteString(player.Id);
|
||||||
writer.WriteString(room.Owner.Id);
|
writer.WriteString(room.Owner.Id);
|
||||||
writer.WriteUShort((ushort) room.PlayerMin);
|
writer.WriteUShort((ushort)room.PlayerMin);
|
||||||
writer.WriteUShort((ushort) room.PlayerMax);
|
writer.WriteUShort((ushort)room.PlayerMax);
|
||||||
writer.WriteString(room.Scene);
|
writer.WriteString(room.Scene);
|
||||||
|
|
||||||
var sendData = writer.ToArray();
|
var sendData = writer.ToArray();
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using NLog;
|
||||||
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
|
public sealed class RoomDataOperation : BaseOperation
|
||||||
|
{
|
||||||
|
public RoomDataOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
|
{
|
||||||
|
var player = context.RoomPlayer;
|
||||||
|
var room = context.Room;
|
||||||
|
|
||||||
|
var data = Reader.RawData;
|
||||||
|
var dataSize = data.Length - 1;
|
||||||
|
var headerSize = 3;
|
||||||
|
var size = headerSize + dataSize;
|
||||||
|
var sendData = new byte[size];
|
||||||
|
var peerId = player.Connection.Id;
|
||||||
|
|
||||||
|
sendData[0] = (byte)RagonOperation.REPLICATE_RAW_DATA;
|
||||||
|
sendData[1] = (byte)peerId;
|
||||||
|
sendData[2] = (byte)(peerId >> 8);
|
||||||
|
|
||||||
|
Array.Copy(data, 1, sendData, headerSize, dataSize);
|
||||||
|
|
||||||
|
room.Broadcast(sendData, channel);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.Event;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
|
public class RoomEventOperation : BaseOperation
|
||||||
|
{
|
||||||
|
public RoomEventOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
|
{
|
||||||
|
var room = context.Room;
|
||||||
|
var player = context.RoomPlayer;
|
||||||
|
|
||||||
|
var eventId = Reader.ReadUShort();
|
||||||
|
var replicationMode = (RagonReplicationMode)Reader.ReadByte();
|
||||||
|
var targetMode = (RagonTarget)Reader.ReadByte();
|
||||||
|
var targetPlayerPeerId = (ushort)0;
|
||||||
|
|
||||||
|
if (targetMode == RagonTarget.Player)
|
||||||
|
targetPlayerPeerId = Reader.ReadUShort();
|
||||||
|
|
||||||
|
var @event = new RagonEvent(player, eventId);
|
||||||
|
@event.Read(Reader);
|
||||||
|
|
||||||
|
Writer.Clear();
|
||||||
|
Writer.WriteUShort(eventId);
|
||||||
|
Writer.WriteUShort(player.Connection.Id);
|
||||||
|
Writer.WriteUShort((ushort) replicationMode);
|
||||||
|
|
||||||
|
var sendData = Writer.ToArray();
|
||||||
|
|
||||||
|
if (targetMode == RagonTarget.Player && room.Players.TryGetValue(targetPlayerPeerId, out var targetPlayer))
|
||||||
|
{
|
||||||
|
targetPlayer.Connection.Reliable.Send(sendData);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var roomPlayer in room.ReadyPlayersList)
|
||||||
|
roomPlayer.Connection.Reliable.Send(sendData);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -16,31 +16,31 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Plugin.Web;
|
using Ragon.Server.Plugin.Web;
|
||||||
using Ragon.Server.Room;
|
using Ragon.Server.Room;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class RoomJoinOperation : IRagonOperation
|
public sealed class RoomJoinOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
private readonly RagonWebHookPlugin _webHook;
|
private readonly RagonWebHookPlugin _webHook;
|
||||||
|
|
||||||
public RoomJoinOperation(RagonWebHookPlugin plugin)
|
public RoomJoinOperation(RagonBuffer reader, RagonBuffer writer, RagonWebHookPlugin plugin) : base(reader, writer)
|
||||||
{
|
{
|
||||||
_webHook = plugin;
|
_webHook = plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var roomId = reader.ReadString();
|
var roomId = Reader.ReadString();
|
||||||
var lobbyPlayer = context.LobbyPlayer;
|
var lobbyPlayer = context.LobbyPlayer;
|
||||||
|
|
||||||
if (!context.Lobby.FindRoomById(roomId, out var existsRoom))
|
if (!context.Lobby.FindRoomById(roomId, out var existsRoom))
|
||||||
{
|
{
|
||||||
JoinFailed(context, writer);
|
JoinFailed(context, Writer);
|
||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} failed to join room {roomId}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} failed to join room {roomId}");
|
||||||
return;
|
return;
|
||||||
@@ -54,7 +54,7 @@ public sealed class RoomJoinOperation : IRagonOperation
|
|||||||
|
|
||||||
_webHook.RoomJoined(context, existsRoom, player);
|
_webHook.RoomJoined(context, existsRoom, player);
|
||||||
|
|
||||||
JoinSuccess(context, existsRoom, writer);
|
JoinSuccess(context, existsRoom, Writer);
|
||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} joined to {existsRoom.Id}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} joined to {existsRoom.Id}");
|
||||||
}
|
}
|
||||||
@@ -66,8 +66,8 @@ public sealed class RoomJoinOperation : IRagonOperation
|
|||||||
writer.WriteString(room.Id);
|
writer.WriteString(room.Id);
|
||||||
writer.WriteString(context.RoomPlayer.Id);
|
writer.WriteString(context.RoomPlayer.Id);
|
||||||
writer.WriteString(room.Owner.Id);
|
writer.WriteString(room.Owner.Id);
|
||||||
writer.WriteUShort((ushort) room.PlayerMin);
|
writer.WriteUShort((ushort)room.PlayerMin);
|
||||||
writer.WriteUShort((ushort) room.PlayerMax);
|
writer.WriteUShort((ushort)room.PlayerMax);
|
||||||
writer.WriteString(room.Scene);
|
writer.WriteString(room.Scene);
|
||||||
|
|
||||||
var sendData = writer.ToArray();
|
var sendData = writer.ToArray();
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Lobby;
|
using Ragon.Server.Lobby;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.Plugin;
|
||||||
using Ragon.Server.Plugin.Web;
|
using Ragon.Server.Plugin.Web;
|
||||||
@@ -23,20 +24,20 @@ using Ragon.Server.Room;
|
|||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class RoomJoinOrCreateOperation : IRagonOperation
|
public sealed class RoomJoinOrCreateOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly RagonRoomParameters _roomParameters = new();
|
private readonly RagonRoomParameters _roomParameters = new();
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
private readonly IServerPlugin _serverPlugin;
|
private readonly IServerPlugin _serverPlugin;
|
||||||
private readonly RagonWebHookPlugin _ragonWebHookPlugin;
|
private readonly RagonWebHookPlugin _ragonWebHookPlugin;
|
||||||
|
|
||||||
public RoomJoinOrCreateOperation(IServerPlugin serverPlugin, RagonWebHookPlugin plugin)
|
public RoomJoinOrCreateOperation(RagonBuffer reader, RagonBuffer writer, IServerPlugin serverPlugin, RagonWebHookPlugin plugin): base(reader, writer)
|
||||||
{
|
{
|
||||||
_serverPlugin = serverPlugin;
|
_serverPlugin = serverPlugin;
|
||||||
_ragonWebHookPlugin = plugin;
|
_ragonWebHookPlugin = plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
||||||
{
|
{
|
||||||
@@ -47,7 +48,7 @@ public sealed class RoomJoinOrCreateOperation : IRagonOperation
|
|||||||
var roomId = Guid.NewGuid().ToString();
|
var roomId = Guid.NewGuid().ToString();
|
||||||
var lobbyPlayer = context.LobbyPlayer;
|
var lobbyPlayer = context.LobbyPlayer;
|
||||||
|
|
||||||
_roomParameters.Deserialize(reader);
|
_roomParameters.Deserialize(Reader);
|
||||||
|
|
||||||
if (context.Lobby.FindRoomByScene(_roomParameters.Scene, out var existsRoom))
|
if (context.Lobby.FindRoomByScene(_roomParameters.Scene, out var existsRoom))
|
||||||
{
|
{
|
||||||
@@ -56,7 +57,7 @@ public sealed class RoomJoinOrCreateOperation : IRagonOperation
|
|||||||
|
|
||||||
_ragonWebHookPlugin.RoomJoined(context, existsRoom, player);
|
_ragonWebHookPlugin.RoomJoined(context, existsRoom, player);
|
||||||
|
|
||||||
JoinSuccess(player, existsRoom, writer);
|
JoinSuccess(player, existsRoom, Writer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -79,7 +80,7 @@ public sealed class RoomJoinOrCreateOperation : IRagonOperation
|
|||||||
|
|
||||||
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} create room {room.Id} with scene {information.Scene}");
|
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} create room {room.Id} with scene {information.Scene}");
|
||||||
|
|
||||||
JoinSuccess(roomPlayer, room, writer);
|
JoinSuccess(roomPlayer, room, Writer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,21 +16,23 @@
|
|||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Plugin;
|
using Ragon.Server.Plugin;
|
||||||
using Ragon.Server.Plugin.Web;
|
using Ragon.Server.Plugin.Web;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class RoomLeaveOperation: IRagonOperation
|
public sealed class RoomLeaveOperation: BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
private readonly RagonWebHookPlugin _webHook;
|
private readonly RagonWebHookPlugin _webHook;
|
||||||
public RoomLeaveOperation(RagonWebHookPlugin plugin)
|
|
||||||
|
public RoomLeaveOperation(RagonBuffer reader, RagonBuffer writer, RagonWebHookPlugin plugin): base(reader, writer)
|
||||||
{
|
{
|
||||||
_webHook = plugin;
|
_webHook = plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var roomPlayer = context.RoomPlayer;
|
var roomPlayer = context.RoomPlayer;
|
||||||
|
|||||||
@@ -1,13 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Entity;
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class RoomOwnershipOperation : IRagonOperation
|
public sealed class RoomOwnershipOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
|
||||||
|
public RoomOwnershipOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,22 +14,24 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public class SceneLoadOperation: IRagonOperation
|
public class SceneLoadOperation: BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public SceneLoadOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer) {}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
var roomOwner = context.Room.Owner;
|
var roomOwner = context.Room.Owner;
|
||||||
var currentPlayer = context.RoomPlayer;
|
var currentPlayer = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
var sceneName = reader.ReadString();
|
var sceneName = Reader.ReadString();
|
||||||
|
|
||||||
if (roomOwner.Connection.Id != currentPlayer.Connection.Id)
|
if (roomOwner.Connection.Id != currentPlayer.Connection.Id)
|
||||||
{
|
{
|
||||||
@@ -39,11 +41,11 @@ public class SceneLoadOperation: IRagonOperation
|
|||||||
|
|
||||||
room.UpdateMap(sceneName);
|
room.UpdateMap(sceneName);
|
||||||
|
|
||||||
writer.Clear();
|
Writer.Clear();
|
||||||
writer.WriteOperation(RagonOperation.LOAD_SCENE);
|
Writer.WriteOperation(RagonOperation.LOAD_SCENE);
|
||||||
writer.WriteString(sceneName);
|
Writer.WriteString(sceneName);
|
||||||
|
|
||||||
var sendData = writer.ToArray();
|
var sendData = Writer.ToArray();
|
||||||
foreach (var player in room.PlayerList)
|
foreach (var player in room.PlayerList)
|
||||||
player.Connection.Reliable.Send(sendData);
|
player.Connection.Reliable.Send(sendData);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,21 +17,22 @@
|
|||||||
using NLog;
|
using NLog;
|
||||||
using Ragon.Protocol;
|
using Ragon.Protocol;
|
||||||
using Ragon.Server.Entity;
|
using Ragon.Server.Entity;
|
||||||
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Lobby;
|
using Ragon.Server.Lobby;
|
||||||
using Ragon.Server.Room;
|
using Ragon.Server.Room;
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
public sealed class SceneLoadedOperation : IRagonOperation
|
public sealed class SceneLoadedOperation : BaseOperation
|
||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public SceneLoadedOperation()
|
public SceneLoadedOperation(RagonBuffer reader, RagonBuffer writer): base(reader, writer)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer)
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
{
|
{
|
||||||
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
if (context.ConnectionStatus == ConnectionStatus.Unauthorized)
|
||||||
return;
|
return;
|
||||||
@@ -39,16 +40,21 @@ public sealed class SceneLoadedOperation : IRagonOperation
|
|||||||
var owner = context.Room.Owner;
|
var owner = context.Room.Owner;
|
||||||
var player = context.RoomPlayer;
|
var player = context.RoomPlayer;
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
|
if (player.IsLoaded)
|
||||||
|
{
|
||||||
|
_logger.Warn($"Player {player.Name}:{player.Connection.Id} already ready");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (player == owner)
|
if (player == owner)
|
||||||
{
|
{
|
||||||
var statics = reader.ReadUShort();
|
var statics = Reader.ReadUShort();
|
||||||
for (var staticIndex = 0; staticIndex < statics; staticIndex++)
|
for (var staticIndex = 0; staticIndex < statics; staticIndex++)
|
||||||
{
|
{
|
||||||
var entityType = reader.ReadUShort();
|
var entityType = Reader.ReadUShort();
|
||||||
var eventAuthority = (RagonAuthority)reader.ReadByte();
|
var eventAuthority = (RagonAuthority)Reader.ReadByte();
|
||||||
var staticId = reader.ReadUShort();
|
var staticId = Reader.ReadUShort();
|
||||||
var propertiesCount = reader.ReadUShort();
|
var propertiesCount = Reader.ReadUShort();
|
||||||
|
|
||||||
var entityParameters = new RagonEntityParameters()
|
var entityParameters = new RagonEntityParameters()
|
||||||
{
|
{
|
||||||
@@ -56,13 +62,14 @@ public sealed class SceneLoadedOperation : IRagonOperation
|
|||||||
Authority = eventAuthority,
|
Authority = eventAuthority,
|
||||||
AttachId = 0,
|
AttachId = 0,
|
||||||
StaticId = staticId,
|
StaticId = staticId,
|
||||||
|
BufferedEvents = context.Configuration.LimitBufferedEvents,
|
||||||
};
|
};
|
||||||
|
|
||||||
var entity = new RagonEntity(entityParameters);
|
var entity = new RagonEntity(entityParameters);
|
||||||
for (var propertyIndex = 0; propertyIndex < propertiesCount; propertyIndex++)
|
for (var propertyIndex = 0; propertyIndex < propertiesCount; propertyIndex++)
|
||||||
{
|
{
|
||||||
var propertyType = reader.ReadBool();
|
var propertyType = Reader.ReadBool();
|
||||||
var propertySize = reader.ReadUShort();
|
var propertySize = Reader.ReadUShort();
|
||||||
entity.AddProperty(new RagonProperty(propertySize, propertyType));
|
entity.AddProperty(new RagonProperty(propertySize, propertyType));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,14 +92,14 @@ public sealed class SceneLoadedOperation : IRagonOperation
|
|||||||
|
|
||||||
foreach (var roomPlayer in room.WaitPlayersList)
|
foreach (var roomPlayer in room.WaitPlayersList)
|
||||||
{
|
{
|
||||||
DispatchPlayerJoinExcludePlayer(room, roomPlayer, writer);
|
DispatchPlayerJoinExcludePlayer(room, roomPlayer, Writer);
|
||||||
|
|
||||||
roomPlayer.SetReady();
|
roomPlayer.SetReady();
|
||||||
}
|
}
|
||||||
|
|
||||||
room.UpdateReadyPlayerList();
|
room.UpdateReadyPlayerList();
|
||||||
|
|
||||||
DispatchSnapshot(room, room.WaitPlayersList, writer);
|
DispatchSnapshot(room, room.WaitPlayersList, Writer);
|
||||||
|
|
||||||
room.WaitPlayersList.Clear();
|
room.WaitPlayersList.Clear();
|
||||||
}
|
}
|
||||||
@@ -100,14 +107,14 @@ public sealed class SceneLoadedOperation : IRagonOperation
|
|||||||
{
|
{
|
||||||
player.SetReady();
|
player.SetReady();
|
||||||
|
|
||||||
DispatchPlayerJoinExcludePlayer(room, player, writer);
|
DispatchPlayerJoinExcludePlayer(room, player, Writer);
|
||||||
|
|
||||||
room.UpdateReadyPlayerList();
|
room.UpdateReadyPlayerList();
|
||||||
|
|
||||||
DispatchSnapshot(room, new List<RagonRoomPlayer>() { player }, writer);
|
DispatchSnapshot(room, new List<RagonRoomPlayer>() { player }, Writer);
|
||||||
|
|
||||||
foreach (var entity in room.EntityList)
|
foreach (var entity in room.EntityList)
|
||||||
entity.RestoreBufferedEvents(player, writer);
|
entity.RestoreBufferedEvents(player, Writer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2023 Eduard Kargin <kargin.eduard@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.IO;
|
||||||
|
|
||||||
|
namespace Ragon.Server.Handler;
|
||||||
|
|
||||||
|
public class TimestampSyncOperation: BaseOperation
|
||||||
|
{
|
||||||
|
public TimestampSyncOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(RagonContext context, NetworkChannel channel)
|
||||||
|
{
|
||||||
|
var timestamp0 = Reader.Read(32);
|
||||||
|
var timestamp1 = Reader.Read(32);
|
||||||
|
var value = new DoubleToUInt() { Int0 = timestamp0, Int1 = timestamp1 };
|
||||||
|
|
||||||
|
context.RoomPlayer?.SetTimestamp(value.Double);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,9 +14,12 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
|
||||||
namespace Ragon.Server.IO;
|
namespace Ragon.Server.IO;
|
||||||
|
|
||||||
public interface INetworkChannel
|
public interface INetworkChannel
|
||||||
{
|
{
|
||||||
void Send(byte[] data);
|
void Send(byte[] data);
|
||||||
|
void Send(RagonBuffer buffer);
|
||||||
}
|
}
|
||||||
@@ -21,5 +21,5 @@ public interface INetworkListener
|
|||||||
void OnConnected(INetworkConnection connection);
|
void OnConnected(INetworkConnection connection);
|
||||||
void OnDisconnected(INetworkConnection connection);
|
void OnDisconnected(INetworkConnection connection);
|
||||||
void OnTimeout(INetworkConnection connection);
|
void OnTimeout(INetworkConnection connection);
|
||||||
void OnData(INetworkConnection connection, byte[] data);
|
void OnData(INetworkConnection connection, NetworkChannel channel, byte[] data);
|
||||||
}
|
}
|
||||||
@@ -21,5 +21,6 @@ public interface INetworkServer
|
|||||||
public Executor Executor { get; }
|
public Executor Executor { get; }
|
||||||
public void Stop();
|
public void Stop();
|
||||||
public void Update();
|
public void Update();
|
||||||
|
public void Broadcast(byte[] data, NetworkChannel channel);
|
||||||
public void Start(INetworkListener listener, NetworkConfiguration configuration);
|
public void Start(INetworkListener listener, NetworkConfiguration configuration);
|
||||||
}
|
}
|
||||||
+4
-4
@@ -14,11 +14,11 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using Ragon.Protocol;
|
|
||||||
|
|
||||||
namespace Ragon.Server.Handler;
|
namespace Ragon.Server.IO;
|
||||||
|
|
||||||
public interface IRagonOperation
|
public enum NetworkChannel
|
||||||
{
|
{
|
||||||
public void Handle(RagonContext context, RagonBuffer reader, RagonBuffer writer);
|
RELIABLE = 0,
|
||||||
|
UNRELIABLE = 1,
|
||||||
}
|
}
|
||||||
@@ -14,6 +14,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
using Ragon.Protocol;
|
||||||
|
using Ragon.Server.Handler;
|
||||||
using Ragon.Server.IO;
|
using Ragon.Server.IO;
|
||||||
using Ragon.Server.Lobby;
|
using Ragon.Server.Lobby;
|
||||||
|
|
||||||
@@ -21,6 +23,7 @@ namespace Ragon.Server;
|
|||||||
|
|
||||||
public interface IRagonServer
|
public interface IRagonServer
|
||||||
{
|
{
|
||||||
|
BaseOperation ResolveHandler(RagonOperation operation);
|
||||||
RagonLobbyPlayer? GetPlayerByConnection(INetworkConnection connection);
|
RagonLobbyPlayer? GetPlayerByConnection(INetworkConnection connection);
|
||||||
RagonLobbyPlayer? GetPlayerById(string id);
|
RagonLobbyPlayer? GetPlayerById(string id);
|
||||||
}
|
}
|
||||||
@@ -25,12 +25,20 @@ public class LobbyInMemory : IRagonLobby
|
|||||||
private readonly List<RagonRoom> _rooms = new();
|
private readonly List<RagonRoom> _rooms = new();
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
|
|
||||||
public bool FindRoomById(string RagonRoomId, [MaybeNullWhen(false)] out RagonRoom room)
|
public bool FindRoomById(string roomId, [MaybeNullWhen(false)] out RagonRoom room)
|
||||||
{
|
{
|
||||||
foreach (var existRagonRoom in _rooms)
|
foreach (var existRagonRoom in _rooms)
|
||||||
{
|
{
|
||||||
if (existRagonRoom.Id == RagonRoomId && existRagonRoom.PlayerMin < existRagonRoom.PlayerMax)
|
if (existRagonRoom.Id == roomId)
|
||||||
{
|
{
|
||||||
|
if (existRagonRoom.PlayerCount >= existRagonRoom.PlayerMax)
|
||||||
|
{
|
||||||
|
_logger.Warn($"Room with id {roomId} fulfilled");
|
||||||
|
|
||||||
|
room = default;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
room = existRagonRoom;
|
room = existRagonRoom;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -44,8 +52,16 @@ public class LobbyInMemory : IRagonLobby
|
|||||||
{
|
{
|
||||||
foreach (var existsRoom in _rooms)
|
foreach (var existsRoom in _rooms)
|
||||||
{
|
{
|
||||||
if (existsRoom.Scene == sceneName && existsRoom.PlayerCount < existsRoom.PlayerMax)
|
if (existsRoom.Scene == sceneName)
|
||||||
{
|
{
|
||||||
|
if (existsRoom.PlayerCount >= existsRoom.PlayerMax)
|
||||||
|
{
|
||||||
|
_logger.Warn($"Room with scene {sceneName} fulfilled");
|
||||||
|
|
||||||
|
room = default;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
room = existsRoom;
|
room = existsRoom;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Ragon.Server.Logging;
|
||||||
|
|
||||||
|
public interface IRagonLogger
|
||||||
|
{
|
||||||
|
public void Warning(string tag, string message);
|
||||||
|
public void Info(string tag, string message);
|
||||||
|
public void Error(string tag, string message);
|
||||||
|
public void Trace(string tag, string message);
|
||||||
|
}
|
||||||
@@ -49,7 +49,7 @@ public class BaseServerPlugin: IServerPlugin
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IRoomPlugin CreateRoomPlugin(RoomInformation information)
|
public virtual IRoomPlugin CreateRoomPlugin(RoomInformation information)
|
||||||
{
|
{
|
||||||
return new BaseRoomPlugin();
|
return new BaseRoomPlugin();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,10 +28,10 @@ public class RagonWebHookPlugin
|
|||||||
{
|
{
|
||||||
private Dictionary<string, string> _webHooks;
|
private Dictionary<string, string> _webHooks;
|
||||||
|
|
||||||
private RagonServer _server;
|
private IRagonServer _server;
|
||||||
private HttpClient _httpClient;
|
private HttpClient _httpClient;
|
||||||
|
|
||||||
public RagonWebHookPlugin(RagonServer server, RagonServerConfiguration configuration)
|
public RagonWebHookPlugin(IRagonServer server, RagonServerConfiguration configuration)
|
||||||
{
|
{
|
||||||
_webHooks = new Dictionary<string, string>(configuration.WebHooks);
|
_webHooks = new Dictionary<string, string>(configuration.WebHooks);
|
||||||
_httpClient = new HttpClient();
|
_httpClient = new HttpClient();
|
||||||
@@ -46,7 +46,7 @@ public class RagonWebHookPlugin
|
|||||||
var executor = context.Executor;
|
var executor = context.Executor;
|
||||||
executor.Run(async () =>
|
executor.Run(async () =>
|
||||||
{
|
{
|
||||||
var authorizationOperation = (AuthorizationOperation) _server.ResolveOperation(RagonOperation.AUTHORIZE);
|
var authorizationOperation = (AuthorizationOperation) _server.ResolveHandler(RagonOperation.AUTHORIZE);
|
||||||
var response = await _httpClient.PostAsync(new Uri(value), httpContent);
|
var response = await _httpClient.PostAsync(new Uri(value), httpContent);
|
||||||
if (response.StatusCode != HttpStatusCode.OK)
|
if (response.StatusCode != HttpStatusCode.OK)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
{
|
{
|
||||||
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
||||||
private readonly INetworkServer _server;
|
private readonly INetworkServer _server;
|
||||||
private readonly IRagonOperation[] _handlers;
|
private readonly BaseOperation[] _handlers;
|
||||||
private readonly IRagonLobby _lobby;
|
private readonly IRagonLobby _lobby;
|
||||||
private readonly IServerPlugin _serverPlugin;
|
private readonly IServerPlugin _serverPlugin;
|
||||||
private readonly Thread _dedicatedThread;
|
private readonly Thread _dedicatedThread;
|
||||||
@@ -73,20 +73,23 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
|
|
||||||
_serverPlugin.OnAttached(this);
|
_serverPlugin.OnAttached(this);
|
||||||
|
|
||||||
_handlers = new IRagonOperation[byte.MaxValue];
|
_handlers = new BaseOperation[byte.MaxValue];
|
||||||
_handlers[(byte) RagonOperation.AUTHORIZE] = new AuthorizationOperation(_webhooks, contextObserver, _writer);
|
_handlers[(byte)RagonOperation.AUTHORIZE] = new AuthorizationOperation(_reader, _writer, _webhooks, contextObserver);
|
||||||
_handlers[(byte) RagonOperation.JOIN_OR_CREATE_ROOM] = new RoomJoinOrCreateOperation(plugin, _webhooks);
|
_handlers[(byte)RagonOperation.JOIN_OR_CREATE_ROOM] = new RoomJoinOrCreateOperation(_reader, _writer, plugin, _webhooks);
|
||||||
_handlers[(byte) RagonOperation.CREATE_ROOM] = new RoomCreateOperation(plugin, _webhooks);
|
_handlers[(byte)RagonOperation.CREATE_ROOM] = new RoomCreateOperation(_reader, _writer, plugin, _webhooks);
|
||||||
_handlers[(byte) RagonOperation.JOIN_ROOM] = new RoomJoinOperation(_webhooks);
|
_handlers[(byte)RagonOperation.JOIN_ROOM] = new RoomJoinOperation(_reader, _writer, _webhooks);
|
||||||
_handlers[(byte) RagonOperation.LEAVE_ROOM] = new RoomLeaveOperation(_webhooks);
|
_handlers[(byte)RagonOperation.LEAVE_ROOM] = new RoomLeaveOperation(_reader, _writer, _webhooks);
|
||||||
_handlers[(byte) RagonOperation.LOAD_SCENE] = new SceneLoadOperation();
|
_handlers[(byte)RagonOperation.LOAD_SCENE] = new SceneLoadOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.SCENE_LOADED] = new SceneLoadedOperation();
|
_handlers[(byte)RagonOperation.SCENE_LOADED] = new SceneLoadedOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.CREATE_ENTITY] = new EntityCreateOperation();
|
_handlers[(byte)RagonOperation.CREATE_ENTITY] = new EntityCreateOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.REMOVE_ENTITY] = new EntityDestroyOperation();
|
_handlers[(byte)RagonOperation.REMOVE_ENTITY] = new EntityDestroyOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.REPLICATE_ENTITY_EVENT] = new EntityEventOperation();
|
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_EVENT] = new EntityEventOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.REPLICATE_ENTITY_STATE] = new EntityStateOperation();
|
_handlers[(byte)RagonOperation.REPLICATE_ENTITY_STATE] = new EntityStateOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.TRANSFER_ROOM_OWNERSHIP] = new EntityOwnershipOperation();
|
_handlers[(byte)RagonOperation.TRANSFER_ROOM_OWNERSHIP] = new EntityOwnershipOperation(_reader, _writer);
|
||||||
_handlers[(byte) RagonOperation.TRANSFER_ENTITY_OWNERSHIP] = new EntityOwnershipOperation();
|
_handlers[(byte)RagonOperation.TRANSFER_ENTITY_OWNERSHIP] = new EntityOwnershipOperation(_reader, _writer);
|
||||||
|
_handlers[(byte)RagonOperation.TIMESTAMP_SYNCHRONIZATION] = new TimestampSyncOperation(_reader, _writer);
|
||||||
|
_handlers[(byte)RagonOperation.REPLICATE_ROOM_EVENT] = new RoomEventOperation(_reader, _writer);
|
||||||
|
_handlers[(byte)RagonOperation.REPLICATE_RAW_DATA] = new RoomDataOperation(_reader, _writer);
|
||||||
|
|
||||||
_logger.Trace($"Server Tick Rate: {_configuration.ServerTickRate}");
|
_logger.Trace($"Server Tick Rate: {_configuration.ServerTickRate}");
|
||||||
}
|
}
|
||||||
@@ -96,10 +99,17 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
_timer.Start();
|
_timer.Start();
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
if (_timer.ElapsedMilliseconds > _tickRate * 2)
|
||||||
|
{
|
||||||
|
_logger.Warn($"Slow perfomance: {_timer.ElapsedMilliseconds}");
|
||||||
|
}
|
||||||
|
|
||||||
if (_timer.ElapsedMilliseconds > _tickRate)
|
if (_timer.ElapsedMilliseconds > _tickRate)
|
||||||
{
|
{
|
||||||
_scheduler.Update(_timer.ElapsedMilliseconds / 1000.0f);
|
|
||||||
_timer.Restart();
|
_timer.Restart();
|
||||||
|
_scheduler.Update(_timer.ElapsedMilliseconds / 1000.0f);
|
||||||
|
|
||||||
|
SendTimestamp();
|
||||||
}
|
}
|
||||||
|
|
||||||
_executor.Update();
|
_executor.Update();
|
||||||
@@ -158,13 +168,13 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_logger.Trace($"Disconnected: {connection.Id}");
|
_logger.Trace($"Disconnected without context: {connection.Id}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnTimeout(INetworkConnection connection)
|
public void OnTimeout(INetworkConnection connection)
|
||||||
{
|
{
|
||||||
if (_contextsByConnection.Remove(connection.Id, out var context))
|
if (_contextsByConnection.Remove(connection.Id, out var context) && context.ConnectionStatus == ConnectionStatus.Authorized)
|
||||||
{
|
{
|
||||||
var room = context.Room;
|
var room = context.Room;
|
||||||
if (room != null)
|
if (room != null)
|
||||||
@@ -181,7 +191,7 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnData(INetworkConnection connection, byte[] data)
|
public void OnData(INetworkConnection connection, NetworkChannel channel, byte[] data)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -192,7 +202,7 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
_reader.FromArray(data);
|
_reader.FromArray(data);
|
||||||
|
|
||||||
var operation = _reader.ReadByte();
|
var operation = _reader.ReadByte();
|
||||||
_handlers[operation].Handle(context, _reader, _writer);
|
_handlers[operation]?.Handle(context, channel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@@ -201,22 +211,35 @@ public class RagonServer : IRagonServer, INetworkListener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public IRagonOperation ResolveOperation(RagonOperation operation)
|
public void SendTimestamp()
|
||||||
|
{
|
||||||
|
var timestamp = RagonTime.CurrentTimestamp();
|
||||||
|
var value = new DoubleToUInt
|
||||||
|
{
|
||||||
|
Double = timestamp,
|
||||||
|
};
|
||||||
|
|
||||||
|
_writer.Clear();
|
||||||
|
_writer.WriteOperation(RagonOperation.TIMESTAMP_SYNCHRONIZATION);
|
||||||
|
_writer.Write(value.Int0, 32);
|
||||||
|
_writer.Write(value.Int1, 32);
|
||||||
|
|
||||||
|
var sendData = _writer.ToArray();
|
||||||
|
_server.Broadcast(sendData, NetworkChannel.UNRELIABLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public BaseOperation ResolveHandler(RagonOperation operation)
|
||||||
{
|
{
|
||||||
return _handlers[(byte)operation];
|
return _handlers[(byte)operation];
|
||||||
}
|
}
|
||||||
|
|
||||||
public RagonLobbyPlayer? GetPlayerByConnection(INetworkConnection connection)
|
public RagonLobbyPlayer? GetPlayerByConnection(INetworkConnection connection)
|
||||||
{
|
{
|
||||||
return _contextsByConnection.TryGetValue(connection.Id, out var context) ?
|
return _contextsByConnection.TryGetValue(connection.Id, out var context) ? context.LobbyPlayer : null;
|
||||||
context.LobbyPlayer :
|
|
||||||
null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public RagonLobbyPlayer? GetPlayerById(string playerId)
|
public RagonLobbyPlayer? GetPlayerById(string playerId)
|
||||||
{
|
{
|
||||||
return _contextsByPlayerId.TryGetValue(playerId, out var context) ?
|
return _contextsByPlayerId.TryGetValue(playerId, out var context) ? context.LobbyPlayer : null;
|
||||||
context.LobbyPlayer :
|
|
||||||
null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -25,11 +25,6 @@ public enum ServerType
|
|||||||
WEBSOCKET,
|
WEBSOCKET,
|
||||||
}
|
}
|
||||||
|
|
||||||
public class WebHook
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public struct RagonServerConfiguration
|
public struct RagonServerConfiguration
|
||||||
{
|
{
|
||||||
@@ -47,7 +42,7 @@ public struct RagonServerConfiguration
|
|||||||
public Dictionary<string, string> WebHooks;
|
public Dictionary<string, string> WebHooks;
|
||||||
|
|
||||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||||
private static readonly string ServerVersion = "1.2.0-rc";
|
private static readonly string ServerVersion = "1.3.2";
|
||||||
private static Dictionary<string, ServerType> _serverTypes = new Dictionary<string, ServerType>()
|
private static Dictionary<string, ServerType> _serverTypes = new Dictionary<string, ServerType>()
|
||||||
{
|
{
|
||||||
{"enet", Server.ServerType.ENET},
|
{"enet", Server.ServerType.ENET},
|
||||||
|
|||||||
@@ -200,11 +200,19 @@ public class RagonRoom : IRagonRoom, IRagonAction
|
|||||||
_entitiesDirtySet.Add(entity);
|
_entitiesDirtySet.Add(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Broadcast(byte[] data)
|
public void Broadcast(byte[] data, NetworkChannel channel = NetworkChannel.RELIABLE)
|
||||||
|
{
|
||||||
|
if (channel == NetworkChannel.RELIABLE)
|
||||||
{
|
{
|
||||||
foreach (var readyPlayer in ReadyPlayersList)
|
foreach (var readyPlayer in ReadyPlayersList)
|
||||||
readyPlayer.Connection.Reliable.Send(data);
|
readyPlayer.Connection.Reliable.Send(data);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
foreach (var readyPlayer in ReadyPlayersList)
|
||||||
|
readyPlayer.Connection.Unreliable.Send(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public RagonRoomPlayer GetPlayerByConnection(INetworkConnection connection)
|
public RagonRoomPlayer GetPlayerByConnection(INetworkConnection connection)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ public class RagonRoomPlayer
|
|||||||
public string Id { get; }
|
public string Id { get; }
|
||||||
public string Name { get; }
|
public string Name { get; }
|
||||||
public bool IsLoaded { get; private set; }
|
public bool IsLoaded { get; private set; }
|
||||||
|
public double Timestamp { get; private set; }
|
||||||
public RagonRoom Room { get; private set; }
|
public RagonRoom Room { get; private set; }
|
||||||
public RagonEntityCache Entities { get; private set; }
|
public RagonEntityCache Entities { get; private set; }
|
||||||
|
|
||||||
@@ -65,4 +66,9 @@ public class RagonRoomPlayer
|
|||||||
{
|
{
|
||||||
IsLoaded = false;
|
IsLoaded = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void SetTimestamp(double time)
|
||||||
|
{
|
||||||
|
Timestamp = time;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+6
@@ -6,6 +6,7 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||||
|
<RootNamespace>Ragon.Client.Simulation</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -15,6 +16,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ENet-CSharp" Version="2.4.8" />
|
<PackageReference Include="ENet-CSharp" Version="2.4.8" />
|
||||||
|
<PackageReference Include="Raylib-cs" Version="4.5.0.4" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -23,4 +25,8 @@
|
|||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="Sources\Server\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
@@ -0,0 +1,143 @@
|
|||||||
|
using System.Numerics;
|
||||||
|
using Raylib_cs;
|
||||||
|
using static Raylib_cs.Raylib;
|
||||||
|
|
||||||
|
namespace Ragon.Simulation;
|
||||||
|
|
||||||
|
public class Client
|
||||||
|
{
|
||||||
|
public void Start()
|
||||||
|
{
|
||||||
|
// Initialization
|
||||||
|
//--------------------------------------------------------------------------------------
|
||||||
|
const int screenWidth = 800;
|
||||||
|
const int screenHeight = 450;
|
||||||
|
|
||||||
|
InitWindow(screenWidth, screenHeight, "raylib [models] example - first person maze");
|
||||||
|
|
||||||
|
// Define the camera to look into our 3d world
|
||||||
|
Camera3D camera = new();
|
||||||
|
camera.Position = new Vector3(0.2f, 0.4f, 0.2f);
|
||||||
|
camera.Target = new Vector3(0.0f, 0.0f, 0.0f);
|
||||||
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
||||||
|
camera.FovY = 45.0f;
|
||||||
|
camera.Projection = CameraProjection.CAMERA_PERSPECTIVE;
|
||||||
|
|
||||||
|
Image imMap = LoadImage("resources/cubicmap.png");
|
||||||
|
Texture2D cubicmap = LoadTextureFromImage(imMap);
|
||||||
|
Mesh mesh = GenMeshCubicmap(imMap, new Vector3(1.0f, 1.0f, 1.0f));
|
||||||
|
Model model = LoadModelFromMesh(mesh);
|
||||||
|
|
||||||
|
// NOTE: By default each cube is mapped to one part of texture atlas
|
||||||
|
Texture2D texture = LoadTexture("resources/cubicmap_atlas.png");
|
||||||
|
|
||||||
|
// Set map diffuse texture
|
||||||
|
Raylib.SetMaterialTexture(ref model, 0, MaterialMapIndex.MATERIAL_MAP_ALBEDO, ref texture);
|
||||||
|
|
||||||
|
// Get map image data to be used for collision detection
|
||||||
|
Color* mapPixels = LoadImageColors(imMap);
|
||||||
|
UnloadImage(imMap);
|
||||||
|
|
||||||
|
Vector3 mapPosition = new(-16.0f, 0.0f, -8.0f);
|
||||||
|
Vector3 playerPosition = camera.Position;
|
||||||
|
|
||||||
|
SetTargetFPS(60);
|
||||||
|
//--------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// Main game loop
|
||||||
|
while (!WindowShouldClose())
|
||||||
|
{
|
||||||
|
// Update
|
||||||
|
//----------------------------------------------------------------------------------
|
||||||
|
Vector3 oldCamPos = camera.Position;
|
||||||
|
|
||||||
|
UpdateCamera(ref camera, CameraMode.CAMERA_FIRST_PERSON);
|
||||||
|
|
||||||
|
// Check player collision (we simplify to 2D collision detection)
|
||||||
|
Vector2 playerPos = new(camera.Position.X, camera.Position.Z);
|
||||||
|
|
||||||
|
// Collision radius (player is modelled as a cilinder for collision)
|
||||||
|
float playerRadius = 0.1f;
|
||||||
|
|
||||||
|
int playerCellX = (int)(playerPos.X - mapPosition.X + 0.5f);
|
||||||
|
int playerCellY = (int)(playerPos.Y - mapPosition.Z + 0.5f);
|
||||||
|
|
||||||
|
// Out-of-limits security check
|
||||||
|
if (playerCellX < 0)
|
||||||
|
{
|
||||||
|
playerCellX = 0;
|
||||||
|
}
|
||||||
|
else if (playerCellX >= cubicmap.Width)
|
||||||
|
{
|
||||||
|
playerCellX = cubicmap.Width - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (playerCellY < 0)
|
||||||
|
{
|
||||||
|
playerCellY = 0;
|
||||||
|
}
|
||||||
|
else if (playerCellY >= cubicmap.Height)
|
||||||
|
{
|
||||||
|
playerCellY = cubicmap.Height - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check map collisions using image data and player position
|
||||||
|
// TODO: Improvement: Just check player surrounding cells for collision
|
||||||
|
for (int y = 0; y < cubicmap.Height; y++)
|
||||||
|
{
|
||||||
|
for (int x = 0; x < cubicmap.Width; x++)
|
||||||
|
{
|
||||||
|
Color* mapPixelsData = mapPixels;
|
||||||
|
|
||||||
|
// Collision: Color.white pixel, only check R channel
|
||||||
|
Rectangle rec = new(
|
||||||
|
mapPosition.X - 0.5f + x * 1.0f,
|
||||||
|
mapPosition.Z - 0.5f + y * 1.0f,
|
||||||
|
1.0f,
|
||||||
|
1.0f
|
||||||
|
);
|
||||||
|
|
||||||
|
bool collision = CheckCollisionCircleRec(playerPos, playerRadius, rec);
|
||||||
|
if ((mapPixelsData[y * cubicmap.Width + x].R == 255) && collision)
|
||||||
|
{
|
||||||
|
// Collision detected, reset camera position
|
||||||
|
camera.Position = oldCamPos;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// Draw
|
||||||
|
//----------------------------------------------------------------------------------
|
||||||
|
BeginDrawing();
|
||||||
|
ClearBackground(Color.RAYWHITE);
|
||||||
|
|
||||||
|
// Draw maze map
|
||||||
|
BeginMode3D(camera);
|
||||||
|
DrawModel(model, mapPosition, 1.0f, Color.WHITE);
|
||||||
|
EndMode3D();
|
||||||
|
|
||||||
|
DrawTextureEx(cubicmap, new Vector2(GetScreenWidth() - cubicmap.Width * 4 - 20, 20), 0.0f, 4.0f, Color.WHITE);
|
||||||
|
DrawRectangleLines(GetScreenWidth() - cubicmap.Width * 4 - 20, 20, cubicmap.Width * 4, cubicmap.Height * 4, Color.GREEN);
|
||||||
|
|
||||||
|
// Draw player position radar
|
||||||
|
DrawRectangle(GetScreenWidth() - cubicmap.Width * 4 - 20 + playerCellX * 4, 20 + playerCellY * 4, 4, 4, Color.RED);
|
||||||
|
|
||||||
|
DrawFPS(10, 10);
|
||||||
|
|
||||||
|
EndDrawing();
|
||||||
|
//----------------------------------------------------------------------------------
|
||||||
|
}
|
||||||
|
|
||||||
|
// De-Initialization
|
||||||
|
//--------------------------------------------------------------------------------------
|
||||||
|
UnloadImageColors(mapPixels);
|
||||||
|
|
||||||
|
UnloadTexture(cubicmap);
|
||||||
|
UnloadTexture(texture);
|
||||||
|
UnloadModel(model);
|
||||||
|
|
||||||
|
CloseWindow();
|
||||||
|
//--------------------------------------------------------------------------------------
|
||||||
|
}
|
||||||
|
}
|
||||||
+5
@@ -127,5 +127,10 @@ namespace Ragon.Client
|
|||||||
if (_libraryLoaded)
|
if (_libraryLoaded)
|
||||||
Library.Deinitialize();
|
Library.Deinitialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Close()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
@@ -128,5 +128,10 @@ namespace Ragon.Client
|
|||||||
if (_libraryLoaded)
|
if (_libraryLoaded)
|
||||||
Library.Deinitialize();
|
Library.Deinitialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Close()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user