Terraria 1.4.0.5 Source Code

This commit is contained in:
MikeyIsBaeYT 2021-10-26 12:45:26 -04:00
commit 05205f009e
1059 changed files with 563450 additions and 0 deletions

35
Net/SteamAddress.cs Normal file
View file

@ -0,0 +1,35 @@
// Decompiled with JetBrains decompiler
// Type: Terraria.Net.SteamAddress
// Assembly: Terraria, Version=1.4.0.5, Culture=neutral, PublicKeyToken=null
// MVID: 67F9E73E-0A81-4937-A22C-5515CD405A83
// Assembly location: C:\Users\mikeyisbaeyt\Downloads\depotdownloader-2.4.5\depots\105601\6707058\Terraria.exe
using Steamworks;
namespace Terraria.Net
{
public class SteamAddress : RemoteAddress
{
public readonly CSteamID SteamId;
private string _friendlyName;
public SteamAddress(CSteamID steamId)
{
this.Type = AddressType.Steam;
this.SteamId = steamId;
}
public override string ToString() => "STEAM_0:" + ((ulong) this.SteamId.m_SteamID % 2UL).ToString() + ":" + ((ulong) (this.SteamId.m_SteamID - (76561197960265728L + this.SteamId.m_SteamID % 2L)) / 2UL).ToString();
public override string GetIdentifier() => this.ToString();
public override bool IsLocalHost() => Program.LaunchParameters.ContainsKey("-localsteamid") && Program.LaunchParameters["-localsteamid"].Equals(__nonvirtual (this.SteamId.m_SteamID.ToString()));
public override string GetFriendlyName()
{
if (this._friendlyName == null)
this._friendlyName = SteamFriends.GetFriendPersonaName(this.SteamId);
return this._friendlyName;
}
}
}