mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
223 lines
5.8 KiB
C#
223 lines
5.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using HISP.Game;
|
|
using HISP.Server;
|
|
namespace HISP.Player
|
|
{
|
|
class User
|
|
{
|
|
public int Id;
|
|
public string Username;
|
|
public bool Administrator;
|
|
public bool Moderator;
|
|
public bool NewPlayer = false;
|
|
public GameClient LoggedinClient;
|
|
|
|
public bool MuteAds = false;
|
|
public bool MuteGlobal = false;
|
|
public bool MuteIsland = false;
|
|
public bool MuteNear = false;
|
|
public bool MuteHere = false;
|
|
public bool MuteBuddy = false;
|
|
public bool MutePrivateMessage = false;
|
|
public bool MuteBuddyRequests = false;
|
|
public bool MuteSocials = false;
|
|
public bool MuteLogins = false;
|
|
|
|
public bool MetaPriority = false;
|
|
|
|
public bool Stealth = false;
|
|
|
|
public int Facing;
|
|
public Mailbox MailBox;
|
|
public Friends Friends;
|
|
public string Password; // For chat filter.
|
|
public PlayerInventory Inventory;
|
|
public Npc.NpcEntry LastTalkedToNpc;
|
|
public PlayerQuests Quests;
|
|
public int ChatViolations
|
|
{
|
|
get
|
|
{
|
|
return chatViolations;
|
|
}
|
|
set
|
|
{
|
|
Database.SetChatViolations(value,Id);
|
|
chatViolations = value;
|
|
}
|
|
}
|
|
public string ProfilePage {
|
|
get
|
|
{
|
|
return profilePage;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerProfile(value, Id);
|
|
profilePage = value;
|
|
}
|
|
}
|
|
|
|
public int Money
|
|
{
|
|
get
|
|
{
|
|
return money;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerMoney(value, Id);
|
|
money = value;
|
|
GameServer.UpdatePlayer(LoggedinClient);
|
|
}
|
|
}
|
|
|
|
public int QuestPoints
|
|
{
|
|
get
|
|
{
|
|
return questPoints;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerQuestPoints(value, Id);
|
|
questPoints = value;
|
|
}
|
|
}
|
|
|
|
public int BankMoney
|
|
{
|
|
get
|
|
{
|
|
return bankMoney;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerBankMoney(value, Id);
|
|
bankMoney = value;
|
|
}
|
|
}
|
|
|
|
public int X
|
|
{
|
|
get
|
|
{
|
|
return x;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerX(value, Id);
|
|
x = value;
|
|
}
|
|
}
|
|
|
|
public int Y
|
|
{
|
|
get
|
|
{
|
|
return y;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerY(value, Id);
|
|
y = value;
|
|
}
|
|
}
|
|
|
|
public int CharacterId
|
|
{
|
|
get
|
|
{
|
|
return charId;
|
|
}
|
|
set
|
|
{
|
|
Database.SetPlayerCharId(value, Id);
|
|
charId = value;
|
|
}
|
|
}
|
|
|
|
private int chatViolations;
|
|
private int charId;
|
|
private string profilePage;
|
|
private int x;
|
|
private int y;
|
|
private int money;
|
|
private int questPoints;
|
|
private int bankMoney;
|
|
|
|
public byte[] SecCodeSeeds = new byte[3];
|
|
public int SecCodeInc = 0;
|
|
public int SecCodeCount = 0;
|
|
|
|
public byte[] GenerateSecCode()
|
|
{
|
|
var i = 0;
|
|
SecCodeCount++;
|
|
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc);
|
|
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92);
|
|
i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1];
|
|
i = Math.Abs(i);
|
|
i = i % 92;
|
|
|
|
byte[] SecCode = new byte[4];
|
|
SecCode[0] = (byte)(SecCodeSeeds[0] + 33);
|
|
SecCode[1] = (byte)(SecCodeSeeds[1] + 33);
|
|
SecCode[2] = (byte)(SecCodeSeeds[2] + 33);
|
|
SecCode[3] = (byte)(i + 33);
|
|
return SecCode;
|
|
}
|
|
|
|
public User(GameClient baseClient, int UserId)
|
|
{
|
|
if (!Database.CheckUserExist(UserId))
|
|
throw new KeyNotFoundException("User " + UserId + " not found in database!");
|
|
|
|
if (!Database.CheckUserExtExists(UserId))
|
|
{
|
|
Database.CreateUserExt(UserId);
|
|
NewPlayer = true;
|
|
}
|
|
|
|
Id = UserId;
|
|
Username = Database.GetUsername(UserId);
|
|
|
|
Administrator = Database.CheckUserIsAdmin(Username);
|
|
Moderator = Database.CheckUserIsModerator(Username);
|
|
|
|
chatViolations = Database.GetChatViolations(UserId);
|
|
x = Database.GetPlayerX(UserId);
|
|
y = Database.GetPlayerY(UserId);
|
|
charId = Database.GetPlayerCharId(UserId);
|
|
|
|
Facing = PacketBuilder.DIRECTION_DOWN;
|
|
|
|
money = Database.GetPlayerMoney(UserId);
|
|
bankMoney = Database.GetPlayerBankMoney(UserId);
|
|
questPoints = Database.GetPlayerQuestPoints(UserId);
|
|
|
|
profilePage = Database.GetPlayerProfile(UserId);
|
|
|
|
MailBox = new Mailbox(this);
|
|
|
|
// Generate SecCodes
|
|
|
|
Random rng = new Random();
|
|
SecCodeSeeds[0] = (byte)rng.Next(40, 140);
|
|
SecCodeSeeds[1] = (byte)rng.Next(40, 140);
|
|
SecCodeSeeds[2] = (byte)rng.Next(40, 140);
|
|
SecCodeInc = (byte)rng.Next(0, 99);
|
|
|
|
// Make some friends! (Get a life!)
|
|
|
|
Friends = new Friends(this);
|
|
|
|
LoggedinClient = baseClient;
|
|
|
|
Inventory = new PlayerInventory(this);
|
|
|
|
Quests = new PlayerQuests(this);
|
|
}
|
|
}
|
|
}
|