本文整理汇总了C#中fCraft.World.GetClassyName方法的典型用法代码示例。如果您正苦于以下问题:C# World.GetClassyName方法的具体用法?C# World.GetClassyName怎么用?C# World.GetClassyName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fCraft.World
的用法示例。
在下文中一共展示了World.GetClassyName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MakePlayerConnectedMessage
public static string MakePlayerConnectedMessage( Player player, bool firstTime, World world ) {
if( player == null ) throw new ArgumentNullException( "player" );
if( world == null ) throw new ArgumentNullException( "world" );
if( firstTime ) {
return String.Format( "&S{0} ({1}&S) connected, joined {2}",
player.Name,
player.Info.Rank.GetClassyName(),
world.GetClassyName() );
} else {
return String.Format( "&S{0} ({1}&S) connected again, joined {2}",
player.Name,
player.Info.Rank.GetClassyName(),
world.GetClassyName() );
}
}
示例2: JoinWorldNow
internal bool JoinWorldNow( World newWorld, bool firstTime, bool doUseWorldSpawn ) {
if( newWorld == null ) throw new ArgumentNullException( "newWorld" );
if( !Player.CanJoin( newWorld ) ) {
Logger.Log( "Session.JoinWorldNow: Access limits prevented {0} from joining {1}.", LogType.Error,
Player.Name, newWorld.Name );
return false;
}
if( !newWorld.FirePlayerTriedToJoinEvent( Player ) ) {
Logger.Log( "Session.JoinWorldNow: FirePlayerTriedToJoinEvent prevented {0} from joining {1}", LogType.Warning,
Player.Name, newWorld.Name );
return false;
}
World oldWorld = Player.World;
// remove player from the old world
if( oldWorld != null && oldWorld != newWorld ) {
if( !oldWorld.ReleasePlayer( Player ) ) {
Logger.Log( "Session.JoinWorldNow: Player asked to be released from its world, " +
"but the world did not contain the player.", LogType.Error );
}
}
ResetVisibleEntities();
ClearBlockUpdateQueue();
Map map;
// try to join the new world
if( oldWorld != newWorld ) {
bool announce = !firstTime && (oldWorld.Name != newWorld.Name);
map = newWorld.AcceptPlayer( Player, announce );
if( map == null ) {
return false;
}
} else {
map = oldWorld.EnsureMapLoaded();
}
Player.World = newWorld;
// Set spawn point
Position spawn;
if( doUseWorldSpawn ) {
spawn = map.Spawn;
}else{
spawn = postJoinPosition;
}
Player.Position = spawn;
// Start sending over the level copy
if( !firstTime ) {
SendNow( PacketWriter.MakeHandshake( Player,
ConfigKey.ServerName.GetString(),
"Loading world " + newWorld.GetClassyName() ) );
}
writer.WriteLevelBegin();
bytesSent++;
// enable Nagle's algorithm (in case it was turned off by LowLatencyMode)
// to avoid wasting bandwidth for map transfer
client.NoDelay = false;
// Fetch compressed map copy
byte[] buffer = new byte[1024];
int mapBytesSent = 0;
byte[] blockData;
using( MemoryStream stream = new MemoryStream() ) {
map.GetCompressedCopy( stream, true );
blockData = stream.ToArray();
}
Logger.Log( "Session.JoinWorldNow: Sending compressed level copy ({0} bytes) to {1}.", LogType.Debug,
blockData.Length, Player.Name );
// Transfer the map copy
while( mapBytesSent < blockData.Length ) {
int chunkSize = blockData.Length - mapBytesSent;
if( chunkSize > 1024 ) {
chunkSize = 1024;
} else {
// CRC fix for ManicDigger
for( int i = 0; i < buffer.Length; i++ ) {
buffer[i] = 0;
}
}
Array.Copy( blockData, mapBytesSent, buffer, 0, chunkSize );
byte progress = (byte)(100 * mapBytesSent / blockData.Length);
// write in chunks of 1024 bytes or less
writer.WriteLevelChunk( buffer, chunkSize, progress );
bytesSent += 1028;
mapBytesSent += chunkSize;
}
// Done sending over level copy
writer.WriteLevelEnd( map );
bytesSent += 7;
//.........这里部分代码省略.........