mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-10 06:34:16 +00:00
Implemented extra components selection for vehicles (#135)
* implemented extra compontents selection for vehicles, based on VehicleDef.CompRules fix flickering textures on vehicles, containing extra components #86 * fixed tabs * replaced CompRulesUnion fields by a single field and corresponding getters fixed minor copy-paste issues * fixed minor copy-paste issues
This commit is contained in:
parent
dbe0220de2
commit
776ea7c7bc
2 changed files with 197 additions and 2 deletions
|
@ -64,6 +64,14 @@ namespace SanAndreasUnity.Behaviours.Vehicles
|
|||
LeftRear,
|
||||
}
|
||||
|
||||
public enum VehicleComponentsRules
|
||||
{
|
||||
ALLOW_ALWAYS = 1,
|
||||
ONLY_WHEN_RAINING = 2,
|
||||
MAYBE_HIDE = 3,
|
||||
FULL_RANDOM = 4,
|
||||
}
|
||||
|
||||
private static VehicleDef[] _sRandomSpawnable;
|
||||
private static int _sMaxSpawnableIndex;
|
||||
|
||||
|
@ -287,9 +295,11 @@ namespace SanAndreasUnity.Behaviours.Vehicles
|
|||
|
||||
private readonly List<Wheel> _wheels = new List<Wheel>();
|
||||
private readonly List<Seat> _seats = new List<Seat>();
|
||||
private readonly List<Frame> _extras = new List<Frame>();
|
||||
|
||||
public List<Wheel> Wheels { get { return _wheels; } }
|
||||
public List<Seat> Seats { get { return _seats; } }
|
||||
public List<Frame> Extras { get { return _extras; } }
|
||||
|
||||
private WheelAlignment GetWheelAlignment(string frameName)
|
||||
{
|
||||
|
@ -405,6 +415,11 @@ namespace SanAndreasUnity.Behaviours.Vehicles
|
|||
|
||||
foreach (var frame in _frames)
|
||||
{
|
||||
if (frame.Name.StartsWith("extra"))
|
||||
{
|
||||
_extras.Add(frame);
|
||||
}
|
||||
|
||||
if (!frame.Name.StartsWith("wheel_")) continue;
|
||||
if (!frame.Name.EndsWith("_dummy")) continue;
|
||||
|
||||
|
@ -463,6 +478,8 @@ namespace SanAndreasUnity.Behaviours.Vehicles
|
|||
}
|
||||
}
|
||||
|
||||
SelectExtras();
|
||||
|
||||
InitializePhysics();
|
||||
|
||||
this.Health = this.MaxHealth = Mathf.Pow(this.HandlingData.Mass, VehicleManager.Instance.massToHealthExponent);
|
||||
|
@ -618,5 +635,147 @@ namespace SanAndreasUnity.Behaviours.Vehicles
|
|||
hinge.connectedBody = gameObject.GetComponent<Rigidbody>();
|
||||
}
|
||||
}
|
||||
|
||||
private void SelectExtras()
|
||||
{
|
||||
int firstExtraIdx = -1;
|
||||
int secondExtraIdx = -1;
|
||||
|
||||
VehicleDef.CompRulesUnion compsUnion = Definition.CompRules;
|
||||
if (compsUnion.HasExtraOne())
|
||||
{
|
||||
firstExtraIdx = ChooseComponent(Definition.CompRules.nExtraARule, compsUnion.nExtraAComp);
|
||||
}
|
||||
|
||||
if (compsUnion.HasExtraTwo())
|
||||
{
|
||||
firstExtraIdx = ChooseComponent(compsUnion.nExtraBRule, compsUnion.nExtraBComp);
|
||||
}
|
||||
|
||||
foreach (var extra in Extras)
|
||||
{
|
||||
Boolean isFirstExtra = extra.Name == ("extra" + firstExtraIdx.ToString());
|
||||
Boolean isSecondExtra = extra.Name == ("extra" + secondExtraIdx.ToString());
|
||||
|
||||
extra.gameObject.SetActive(isFirstExtra || isSecondExtra);
|
||||
}
|
||||
}
|
||||
|
||||
private int ChooseComponent(int rule, int comps)
|
||||
{
|
||||
VehicleDef.CompRulesUnion compsUnion = Definition.CompRules;
|
||||
|
||||
if ((rule != 0) && IsValidCompRule(rule))
|
||||
{
|
||||
return ChooseComponentInternal(rule, comps);
|
||||
}
|
||||
else if (UnityEngine.Random.Range(0, 3) < 2)
|
||||
{
|
||||
int[] anVariations = new int[6];
|
||||
int numComps = GetListOfComponentsNotUsedByRules(Extras.Count, anVariations);
|
||||
if (numComps > 0)
|
||||
return anVariations[UnityEngine.Random.Range(0, numComps)];
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
private bool IsValidCompRule(int nRule)
|
||||
{
|
||||
// TODO add weather checking, when weather is implemented.
|
||||
Boolean isRainingNow = false;
|
||||
|
||||
return (nRule != (int)VehicleComponentsRules.ONLY_WHEN_RAINING)
|
||||
|| isRainingNow
|
||||
;
|
||||
}
|
||||
|
||||
private int ChooseComponentInternal(int rule, int comps)
|
||||
{
|
||||
int component = -1;
|
||||
if (rule == (int)VehicleComponentsRules.ALLOW_ALWAYS ||
|
||||
rule == (int)VehicleComponentsRules.ONLY_WHEN_RAINING)
|
||||
{
|
||||
int iNumComps = CountCompsInRule(comps);
|
||||
int rand = UnityEngine.Random.Range(0, iNumComps);
|
||||
component = (comps >> (4 * rand)) & 0xF;
|
||||
}
|
||||
else if (rule == (int)VehicleComponentsRules.MAYBE_HIDE)
|
||||
{
|
||||
int iNumComps = CountCompsInRule(comps);
|
||||
int rand = UnityEngine.Random.Range(-1, iNumComps);
|
||||
if (rand != -1)
|
||||
component = (comps >> (4 * rand)) & 0xF;
|
||||
}
|
||||
else if (rule == (int)VehicleComponentsRules.FULL_RANDOM)
|
||||
{
|
||||
component = UnityEngine.Random.Range(0, 5);
|
||||
}
|
||||
|
||||
return component;
|
||||
}
|
||||
|
||||
int CountCompsInRule(int comps)
|
||||
{
|
||||
int result = 0;
|
||||
while (comps != 0)
|
||||
{
|
||||
if ((comps & 0xF) != 0xF)
|
||||
++result;
|
||||
|
||||
comps >>= 4;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
int GetListOfComponentsNotUsedByRules(int numExtras, int[] outList)
|
||||
{
|
||||
int[] iCompsList = new int[]{ 0, 1, 2, 3, 4, 5 };
|
||||
|
||||
VehicleDef.CompRulesUnion comps = Definition.CompRules;
|
||||
|
||||
if (comps.nExtraARule != 0 && IsValidCompRule(comps.nExtraARule))
|
||||
{
|
||||
if (comps.nExtraARule == (int)VehicleComponentsRules.FULL_RANDOM)
|
||||
return 0;
|
||||
|
||||
if (comps.nExtraA_comp1 != 0xF)
|
||||
iCompsList[comps.nExtraA_comp1] = 0xF;
|
||||
|
||||
if (comps.nExtraA_comp2 != 0xF)
|
||||
iCompsList[comps.nExtraA_comp2] = 0xF;
|
||||
|
||||
if (comps.nExtraA_comp3 != 0xF)
|
||||
iCompsList[comps.nExtraA_comp3] = 0xF;
|
||||
}
|
||||
|
||||
if (comps.nExtraBRule != 0 && IsValidCompRule(comps.nExtraBRule))
|
||||
{
|
||||
if (comps.nExtraBRule == (int)VehicleComponentsRules.FULL_RANDOM)
|
||||
return 0;
|
||||
|
||||
if (comps.nExtraB_comp1 != 0xF)
|
||||
iCompsList[comps.nExtraB_comp1] = 0xF;
|
||||
|
||||
if (comps.nExtraB_comp2 != 0xF)
|
||||
iCompsList[comps.nExtraB_comp2] = 0xF;
|
||||
|
||||
if (comps.nExtraB_comp3 != 0xF)
|
||||
iCompsList[comps.nExtraB_comp3] = 0xF;
|
||||
}
|
||||
|
||||
int iNumComps = 0;
|
||||
for (int i = 0; i < numExtras; ++i)
|
||||
{
|
||||
if (iCompsList[i] == 0xF)
|
||||
continue;
|
||||
|
||||
outList[iNumComps] = i;
|
||||
++iNumComps;
|
||||
}
|
||||
|
||||
return iNumComps;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -20,6 +20,42 @@ namespace SanAndreasUnity.Importing.Items.Definitions
|
|||
[Section("cars")]
|
||||
public class VehicleDef : Definition, IObjectDefinition
|
||||
{
|
||||
public struct CompRulesUnion
|
||||
{
|
||||
private readonly int value;
|
||||
|
||||
public int nExtraA_comp1 { get { return (nExtraA & 0x000F) >> 0; } }
|
||||
public int nExtraA_comp2 { get { return (nExtraA & 0x00F0) >> 4; } }
|
||||
public int nExtraA_comp3 { get { return (nExtraA & 0x0F00) >> 8; } }
|
||||
|
||||
public int nExtraB_comp1 { get { return (nExtraB & 0x000F) >> 0; } }
|
||||
public int nExtraB_comp2 { get { return (nExtraB & 0x00F0) >> 4; } }
|
||||
public int nExtraB_comp3 { get { return (nExtraB & 0x0F00) >> 8; } }
|
||||
|
||||
public int nExtraAComp { get { return (nExtraA & 0x0FFF) >> 0; } }
|
||||
public int nExtraARule { get { return (nExtraA & 0xF000) >> 12; } }
|
||||
public int nExtraBComp { get { return (nExtraB & 0x0FFF) >> 0; } }
|
||||
public int nExtraBRule { get { return (nExtraB & 0xF000) >> 12; } }
|
||||
|
||||
public int nExtraA { get { return (value & 0xFFFF) >> 0; } }
|
||||
public int nExtraB { get { return (int)(value & 0xFFFF0000) >> 16; } }
|
||||
|
||||
public CompRulesUnion(int value)
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public Boolean HasExtraOne()
|
||||
{
|
||||
return nExtraA != 0;
|
||||
}
|
||||
|
||||
public Boolean HasExtraTwo()
|
||||
{
|
||||
return nExtraB != 0;
|
||||
}
|
||||
}
|
||||
|
||||
public readonly int Id;
|
||||
|
||||
int IObjectDefinition.Id
|
||||
|
@ -39,7 +75,7 @@ namespace SanAndreasUnity.Importing.Items.Definitions
|
|||
|
||||
public readonly int Frequency;
|
||||
public readonly int Flags;
|
||||
public readonly int CompRules;
|
||||
public readonly CompRulesUnion CompRules;
|
||||
|
||||
public readonly bool HasWheels;
|
||||
|
||||
|
@ -65,7 +101,7 @@ namespace SanAndreasUnity.Importing.Items.Definitions
|
|||
|
||||
Frequency = GetInt(8);
|
||||
Flags = GetInt(9);
|
||||
CompRules = GetInt(10, NumberStyles.HexNumber);
|
||||
CompRules = new CompRulesUnion(GetInt(10, NumberStyles.HexNumber));
|
||||
|
||||
HasWheels = Parts >= 15;
|
||||
|
||||
|
|
Loading…
Reference in a new issue