本文整理汇总了C#中Server.Network.Packet.Compile方法的典型用法代码示例。如果您正苦于以下问题:C# Packet.Compile方法的具体用法?C# Packet.Compile怎么用?C# Packet.Compile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server.Network.Packet
的用法示例。
在下文中一共展示了Packet.Compile方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Compress
public static Packet Compress(Packet p)
{
int length;
byte[] source = p.Compile(false, out length);
if (length > 100 && length < 60000)
{
byte[] dest = new byte[(int)(length * 1.001) + 10];
int destSize = dest.Length;
ZLibError error = Compression.Pack(dest, ref destSize, source, length, ZLibQuality.Default);
if (error != ZLibError.Okay)
{
Console.WriteLine("WARNING: Unable to compress admin packet, zlib error: {0}", error);
return p;
}
else
{
return new AdminCompressedPacket(dest, destSize, length);
}
}
else
{
return p;
}
}
示例2: Compress
public static Packet Compress( Packet p )
{
byte[] source = p.Compile( false );
if ( source.Length > 100 && source.Length < 60000 )
{
byte[] dest = new byte[(int)(source.Length*1.001)+1];
int destSize = dest.Length;
ZLibError error = ZLib.compress2( dest, ref destSize, source, source.Length, ZLibCompressionLevel.Z_BEST_COMPRESSION );// best compression (slowest)
if ( error != ZLibError.Z_OK )
{
Console.WriteLine( "WARNING: Unable to compress admin packet, zlib error: {0}", error );
return p;
}
else
{
return new AdminCompressedPacket( dest, destSize, source.Length );
}
}
else
{
return p;
}
}
示例3: Send
public void Send( Packet p )
{
if ( m_Socket == null || m_BlockAllPackets )
return;
PacketProfile prof = PacketProfile.GetOutgoingProfile( (byte)p.PacketID );
DateTime start = ( prof == null ? DateTime.MinValue : DateTime.Now );
byte[] buffer = p.Compile( m_CompressionEnabled );
if ( buffer != null )
{
if ( buffer.Length <= 0 )
return;
int length = buffer.Length;
if ( m_Encoder != null )
m_Encoder.EncodeOutgoingPacket( this, ref buffer, ref length );
bool shouldBegin = false;
lock ( m_SendQueue )
shouldBegin = ( m_SendQueue.Enqueue( buffer, length ) );
if ( shouldBegin )
{
int sendLength = 0;
byte[] sendBuffer = m_SendQueue.Peek( ref sendLength );
try
{
m_Socket.BeginSend( sendBuffer, 0, sendLength, SocketFlags.None, m_OnSend, null );
m_Sending = true;
//Console.WriteLine( "Send: {0}: Begin send of {1} bytes", this, sendLength );
}
catch // ( Exception ex )
{
//Console.WriteLine(ex);
Dispose( false );
}
}
if ( prof != null )
prof.Record( length, DateTime.Now - start );
}
else
{
Dispose();
}
}
示例4: Send
public virtual void Send( Packet p )
{
if ( m_Socket == null || m_BlockAllPackets ) {
p.OnSend();
return;
}
PacketSendProfile prof = PacketSendProfile.Acquire( p.GetType() );
int length;
byte[] buffer = p.Compile( m_CompressionEnabled, out length );
if ( buffer != null ) {
if ( buffer.Length <= 0 || length <= 0 ) {
p.OnSend();
return;
}
if ( prof != null ) {
prof.Start();
}
if ( m_Encoder != null ) {
m_Encoder.EncodeOutgoingPacket( this, ref buffer, ref length );
}
try {
SendQueue.Gram gram;
lock ( m_SendQueue ) {
gram = m_SendQueue.Enqueue( buffer, length );
}
if ( gram != null ) {
try {
m_Socket.BeginSend( gram.Buffer, 0, gram.Length, SocketFlags.None, m_OnSend, m_Socket );
} catch ( Exception ex ) {
TraceException( ex );
Dispose( false );
}
}
} catch ( CapacityExceededException ) {
Console.WriteLine( "Client: {0}: Too much data pending, disconnecting...", this );
Dispose( false );
}
p.OnSend();
if ( prof != null ) {
prof.Finish( length );
}
} else {
Console.WriteLine( "Client: {0}: null buffer send, disconnecting...", this );
using ( StreamWriter op = new StreamWriter( "null_send.log", true ) )
{
op.WriteLine( "{0} Client: {1}: null buffer send, disconnecting...", DateTime.Now, this );
op.WriteLine( new System.Diagnostics.StackTrace() );
}
Dispose();
}
}
示例5: Send
public void Send( Packet p )
{
if ( m_BlockAllPackets )
{
p.OnSend();
return;
}
PacketProfile prof = PacketProfile.GetOutgoingProfile( (byte) p.PacketID );
DateTime start = ( prof == null ? DateTime.MinValue : DateTime.Now );
int length;
byte[] buffer = p.Compile( m_CompressionEnabled, out length );
if ( buffer != null && buffer.Length > 0 && length > 0 )
{
m_NetState.Send( buffer, length );
}
if ( prof != null )
prof.Record( length, DateTime.Now - start );
p.OnSend();
}