mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 19:57:46 +00:00
105 lines
2.9 KiB
C#
105 lines
2.9 KiB
C#
![]() |
using FFXIVClassic_Lobby_Server.common;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FFXIVClassic_Map_Server.utils
|
|||
|
{
|
|||
|
class CharacterUtils
|
|||
|
{
|
|||
|
public struct FaceInfo
|
|||
|
{
|
|||
|
[BitfieldLength(5)]
|
|||
|
public uint characteristics;
|
|||
|
[BitfieldLength(3)]
|
|||
|
public uint characteristicsColor;
|
|||
|
[BitfieldLength(6)]
|
|||
|
public uint type;
|
|||
|
[BitfieldLength(2)]
|
|||
|
public uint ears;
|
|||
|
[BitfieldLength(2)]
|
|||
|
public uint mouth;
|
|||
|
[BitfieldLength(2)]
|
|||
|
public uint features;
|
|||
|
[BitfieldLength(3)]
|
|||
|
public uint nose;
|
|||
|
[BitfieldLength(3)]
|
|||
|
public uint eyeShape;
|
|||
|
[BitfieldLength(1)]
|
|||
|
public uint irisSize;
|
|||
|
[BitfieldLength(3)]
|
|||
|
public uint eyebrows;
|
|||
|
[BitfieldLength(2)]
|
|||
|
public uint unknown;
|
|||
|
}
|
|||
|
|
|||
|
public static FaceInfo getFaceInfo(byte characteristics, byte characteristicsColor, byte faceType, byte ears, byte faceMouth, byte faceFeatures, byte faceNose, byte faceEyeShape, byte faceIrisSize, byte faceEyebrows)
|
|||
|
{
|
|||
|
FaceInfo faceInfo = new FaceInfo();
|
|||
|
faceInfo.characteristics = characteristics;
|
|||
|
faceInfo.characteristicsColor = characteristicsColor;
|
|||
|
faceInfo.type = faceType;
|
|||
|
faceInfo.ears = ears;
|
|||
|
faceInfo.features = faceFeatures;
|
|||
|
faceInfo.eyebrows = faceEyebrows;
|
|||
|
faceInfo.eyeShape = faceEyeShape;
|
|||
|
faceInfo.irisSize = faceIrisSize;
|
|||
|
faceInfo.mouth = faceMouth;
|
|||
|
faceInfo.nose = faceNose;
|
|||
|
return faceInfo;
|
|||
|
}
|
|||
|
|
|||
|
public static UInt32 getTribeModel(byte tribe)
|
|||
|
{
|
|||
|
switch (tribe)
|
|||
|
{
|
|||
|
//Hyur Midlander Male
|
|||
|
case 1:
|
|||
|
default:
|
|||
|
return 1;
|
|||
|
|
|||
|
//Hyur Midlander Female
|
|||
|
case 2:
|
|||
|
return 2;
|
|||
|
|
|||
|
//Elezen Male
|
|||
|
case 4:
|
|||
|
case 6:
|
|||
|
return 3;
|
|||
|
|
|||
|
//Elezen Female
|
|||
|
case 5:
|
|||
|
case 7:
|
|||
|
return 4;
|
|||
|
|
|||
|
//Lalafell Male
|
|||
|
case 8:
|
|||
|
case 10:
|
|||
|
return 5;
|
|||
|
|
|||
|
//Lalafell Female
|
|||
|
case 9:
|
|||
|
case 11:
|
|||
|
return 6;
|
|||
|
|
|||
|
//Miqo'te Female
|
|||
|
case 12:
|
|||
|
case 13:
|
|||
|
return 8;
|
|||
|
|
|||
|
//Roegadyn Male
|
|||
|
case 14:
|
|||
|
case 15:
|
|||
|
return 7;
|
|||
|
|
|||
|
//Hyur Highlander Male
|
|||
|
case 3:
|
|||
|
return 9;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|