2024-09-21 12:35:09 +08:00
|
|
|
|
using System.Collections.Generic;
|
2024-12-10 21:54:32 +08:00
|
|
|
|
using System.Security.AccessControl;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-21 12:35:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace PSO2SERVER.Models
|
|
|
|
|
{
|
|
|
|
|
public class Flags
|
|
|
|
|
{
|
|
|
|
|
public enum FlagType : uint
|
|
|
|
|
{
|
|
|
|
|
/// Flag is account related.
|
|
|
|
|
Account,
|
|
|
|
|
/// Flag is character related.
|
|
|
|
|
Character,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<byte> flags = new List<byte>();
|
|
|
|
|
private List<uint> paramsList = new List<uint>();
|
|
|
|
|
|
2024-12-11 19:54:48 +08:00
|
|
|
|
public Flags() { flags = new List<byte>(); paramsList = new List<uint>(); }
|
|
|
|
|
|
2024-09-21 12:35:09 +08:00
|
|
|
|
public void Set(int id, byte val)
|
|
|
|
|
{
|
|
|
|
|
int index = id / 8;
|
|
|
|
|
byte bitIndex = (byte)(id % 8);
|
|
|
|
|
|
|
|
|
|
while (flags.Count <= index)
|
|
|
|
|
flags.Add(0);
|
|
|
|
|
|
|
|
|
|
flags[index] = SetBit(flags[index], bitIndex, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public byte Get(int id)
|
|
|
|
|
{
|
|
|
|
|
int index = id / 8;
|
|
|
|
|
byte bitIndex = (byte)(id % 8);
|
|
|
|
|
|
|
|
|
|
if (index >= flags.Count)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return (byte)((flags[index] & (1 << bitIndex)) >> bitIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetParam(int id, uint val)
|
|
|
|
|
{
|
|
|
|
|
while (paramsList.Count <= id)
|
|
|
|
|
paramsList.Add(0);
|
|
|
|
|
|
|
|
|
|
paramsList[id] = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public uint GetParam(int id)
|
|
|
|
|
{
|
|
|
|
|
if (id >= paramsList.Count)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return paramsList[id];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AccountFlagsPacket ToAccountFlags()
|
|
|
|
|
{
|
2024-12-10 21:54:32 +08:00
|
|
|
|
var aflags = new AccountFlagsPacket();
|
|
|
|
|
aflags.Flags.SetListItem(flags);
|
|
|
|
|
aflags.Params.SetListItem(paramsList);
|
|
|
|
|
return aflags;
|
2024-09-21 12:35:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CharacterFlagsPacket ToCharFlags()
|
|
|
|
|
{
|
2024-12-10 21:54:32 +08:00
|
|
|
|
var cflags = new CharacterFlagsPacket();
|
|
|
|
|
cflags.Flags.SetListItem(flags);
|
|
|
|
|
cflags.Params.SetListItem(paramsList);
|
|
|
|
|
return cflags;
|
2024-09-21 12:35:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static byte SetBit(byte byteValue, byte index, byte val)
|
|
|
|
|
{
|
|
|
|
|
byteValue &= (byte)~(1 << index);
|
|
|
|
|
return (byte)(byteValue | ((val & 1) << index));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|