2024-09-10 00:31:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
namespace PSO2SERVER.Party
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-12-07 15:45:09 +08:00
|
|
|
|
public class PartyManager
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-12-07 15:45:09 +08:00
|
|
|
|
public static readonly PartyManager instance = new PartyManager();
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-12-08 11:33:06 +08:00
|
|
|
|
public Dictionary<Party, string> parties = new Dictionary<Party, string>(); // Key: Party, Value: name? (for now)
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
|
|
|
|
public static PartyManager Instance
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 15:45:09 +08:00
|
|
|
|
public PartyManager()
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-10 01:36:26 +08:00
|
|
|
|
Logger.WriteInternal("[PTY] PartyManager 初始化完成.");
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Party GetCurrentPartyForClient(Client c)
|
|
|
|
|
{
|
|
|
|
|
foreach(Party p in parties.Keys) //TODO: Filter this on a per-block basis?
|
|
|
|
|
{
|
|
|
|
|
if (p.hasClientInParty(c))
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CreateNewParty(Client c)
|
|
|
|
|
{
|
|
|
|
|
if (GetCurrentPartyForClient(c) != null)
|
|
|
|
|
return; // For now
|
|
|
|
|
|
2024-09-20 21:58:37 +08:00
|
|
|
|
parties.Add(new Party(c._account.Username, c), c._account.Username);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddPlayerToParty(Client c, Party p)
|
|
|
|
|
{
|
|
|
|
|
if (!parties.ContainsKey(p))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (p.getSize() >= 4) // For now
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
p.addClientToParty(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RemovePlayerToParty(Client c, Party p)
|
|
|
|
|
{
|
|
|
|
|
if (!parties.ContainsKey(p))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
//TODO: Later just transfer owner like the real servers.
|
|
|
|
|
if (c == p.getPartyHost())
|
|
|
|
|
{
|
|
|
|
|
foreach(Client cl in p.getMembers())
|
|
|
|
|
{
|
|
|
|
|
p.removeClientFromParty(cl);
|
|
|
|
|
}
|
|
|
|
|
parties.Remove(p);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
p.removeClientFromParty(c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|