2024-12-02 20:43:28 +08:00
|
|
|
|
using PSO2SERVER.Database;
|
|
|
|
|
using PSO2SERVER.Models;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
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
|
|
|
|
{
|
|
|
|
|
public class Party
|
|
|
|
|
{
|
2024-11-25 23:33:41 +08:00
|
|
|
|
public enum PartyColor : byte
|
|
|
|
|
{
|
|
|
|
|
Red,
|
|
|
|
|
Green,
|
|
|
|
|
Yellow,
|
|
|
|
|
Blue,
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public string name;
|
|
|
|
|
private List<Client> members;
|
|
|
|
|
private Client host;
|
2024-12-10 01:23:49 +08:00
|
|
|
|
public PartyQuest currentQuest;
|
2024-12-11 14:07:19 +08:00
|
|
|
|
public PartySettingsPacket partySetting;
|
|
|
|
|
public string questname;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
|
|
|
|
public Party(string name, Client host)
|
|
|
|
|
{
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.host = host;
|
2024-12-11 14:07:19 +08:00
|
|
|
|
members = new List<Client>();
|
|
|
|
|
currentQuest = new PartyQuest();
|
|
|
|
|
partySetting = new PartySettingsPacket();
|
|
|
|
|
questname = string.Empty;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
addClientToParty(host);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void addClientToParty(Client c)
|
|
|
|
|
{
|
|
|
|
|
if (members.Count < 1)
|
|
|
|
|
{
|
2024-12-02 20:43:28 +08:00
|
|
|
|
c.SendPacket(new PartyInitPacket(new Character[1] { c.Character }));
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// ???
|
|
|
|
|
}
|
|
|
|
|
members.Add(c);
|
|
|
|
|
c.currentParty = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void removeClientFromParty(Client c)
|
|
|
|
|
{
|
2024-12-11 14:07:19 +08:00
|
|
|
|
if (!members.Contains(c))
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-20 21:58:37 +08:00
|
|
|
|
Logger.WriteWarning("[PTY] Client {0} was trying to be removed from {1}, but he was never in {1}!", c._account.Username, name);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
members.Remove(c);
|
|
|
|
|
//TODO do stuff like send the "remove from party" packet.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool hasClientInParty(Client c)
|
|
|
|
|
{
|
|
|
|
|
return members.Contains(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Client getPartyHost()
|
|
|
|
|
{
|
|
|
|
|
return host;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getSize()
|
|
|
|
|
{
|
|
|
|
|
return members.Count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Client> getMembers()
|
|
|
|
|
{
|
|
|
|
|
return members;
|
|
|
|
|
}
|
2024-12-06 03:42:25 +08:00
|
|
|
|
}
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-12-11 14:07:19 +08:00
|
|
|
|
[Serializable]
|
|
|
|
|
public unsafe struct PartyInfo
|
|
|
|
|
{
|
|
|
|
|
public fixed byte unk1[0x0C];
|
|
|
|
|
public ObjectHeader party_object; // Assuming ObjectHeader is another class
|
|
|
|
|
public string name; // Name of the party 0xE7E8, 0xFF
|
|
|
|
|
public fixed byte unk2[0x09];
|
|
|
|
|
public fixed byte unk3[0x03];
|
|
|
|
|
public uint unk4; // 32-bit unsigned integer
|
|
|
|
|
public uint invite_time; // Time when the player was invited
|
|
|
|
|
public uint unk6; // 32-bit unsigned integer
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-06 03:42:25 +08:00
|
|
|
|
[Flags]
|
|
|
|
|
public enum PartyFlags : byte
|
|
|
|
|
{
|
|
|
|
|
/// Is the party only for friends.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
FRIENDS_ONLY = 1 << 0, // 1
|
2024-12-06 03:42:25 +08:00
|
|
|
|
/// Is the party only for alliance members.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
ALLIANCE_ONLY = 1 << 1, // 2
|
2024-12-06 03:42:25 +08:00
|
|
|
|
/// Limit multiplayer requests from other parties.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
LIMIT_OTHERS = 1 << 2, // 4
|
2024-12-06 03:42:25 +08:00
|
|
|
|
/// Is the party only for a single run.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
SINGLE_RUN = 1 << 3, // 8
|
2024-12-06 03:42:25 +08:00
|
|
|
|
/// Is the party actively looking for members.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
OPEN = 1 << 4, // 16
|
2024-12-06 03:42:25 +08:00
|
|
|
|
/// Is the party voice chat focused.
|
2024-12-11 14:07:19 +08:00
|
|
|
|
VC_FOCUS = 1 << 6, // 64
|
|
|
|
|
|
|
|
|
|
// This flag would represent an invalid state (all bits set).
|
|
|
|
|
_ = byte.MaxValue, // 255 (all flags set)
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|