Merge pull request #4090 from pchote/cnc-flame-muzzles
Use the original flame and chem muzzle flashes.
This commit is contained in:
@@ -26,6 +26,12 @@ namespace OpenRA.Mods.RA.Render
|
|||||||
[Desc("Armament name")]
|
[Desc("Armament name")]
|
||||||
public readonly string Armament = "primary";
|
public readonly string Armament = "primary";
|
||||||
|
|
||||||
|
[Desc("Are the muzzle facings split into multiple shps?")]
|
||||||
|
public readonly bool SplitFacings = false;
|
||||||
|
|
||||||
|
[Desc("Number of separate facing images that are defined in the sequences.")]
|
||||||
|
public readonly int FacingCount = 8;
|
||||||
|
|
||||||
public object Create(ActorInitializer init) { return new WithMuzzleFlash(init.self, this); }
|
public object Create(ActorInitializer init) { return new WithMuzzleFlash(init.self, this); }
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,6 +40,7 @@ namespace OpenRA.Mods.RA.Render
|
|||||||
readonly WithMuzzleFlashInfo info;
|
readonly WithMuzzleFlashInfo info;
|
||||||
Dictionary<Barrel, bool> visible = new Dictionary<Barrel, bool>();
|
Dictionary<Barrel, bool> visible = new Dictionary<Barrel, bool>();
|
||||||
Dictionary<Barrel, AnimationWithOffset> anims = new Dictionary<Barrel, AnimationWithOffset>();
|
Dictionary<Barrel, AnimationWithOffset> anims = new Dictionary<Barrel, AnimationWithOffset>();
|
||||||
|
Func<int> getFacing;
|
||||||
|
|
||||||
public WithMuzzleFlash(Actor self, WithMuzzleFlashInfo info)
|
public WithMuzzleFlash(Actor self, WithMuzzleFlashInfo info)
|
||||||
{
|
{
|
||||||
@@ -50,7 +57,7 @@ namespace OpenRA.Mods.RA.Render
|
|||||||
var turreted = self.TraitsImplementing<Turreted>()
|
var turreted = self.TraitsImplementing<Turreted>()
|
||||||
.FirstOrDefault(t => t.Name == arm.Info.Turret);
|
.FirstOrDefault(t => t.Name == arm.Info.Turret);
|
||||||
|
|
||||||
var getFacing = turreted != null ? () => turreted.turretFacing :
|
getFacing = turreted != null ? () => turreted.turretFacing :
|
||||||
facing != null ? (Func<int>)(() => facing.Facing) : () => 0;
|
facing != null ? (Func<int>)(() => facing.Facing) : () => 0;
|
||||||
|
|
||||||
var muzzleFlash = new Animation(render.GetImage(self), getFacing);
|
var muzzleFlash = new Animation(render.GetImage(self), getFacing);
|
||||||
@@ -69,7 +76,12 @@ namespace OpenRA.Mods.RA.Render
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
visible[barrel] = true;
|
visible[barrel] = true;
|
||||||
anims[barrel].Animation.PlayThen(info.Sequence, () => visible[barrel] = false);
|
var sequence = info.Sequence;
|
||||||
|
|
||||||
|
if (info.SplitFacings)
|
||||||
|
sequence += Traits.Util.QuantizeFacing(getFacing(), info.FacingCount).ToString();
|
||||||
|
|
||||||
|
anims[barrel].Animation.PlayThen(sequence, () => visible[barrel] = false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<IRenderable> Render(Actor self, WorldRenderer wr)
|
public IEnumerable<IRenderable> Render(Actor self, WorldRenderer wr)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -101,10 +101,11 @@ E4:
|
|||||||
HP: 90
|
HP: 90
|
||||||
Armament:
|
Armament:
|
||||||
Weapon: Flamethrower
|
Weapon: Flamethrower
|
||||||
LocalOffset: 85,0,171
|
LocalOffset: 341,0,256
|
||||||
FireDelay: 3
|
FireDelay: 3
|
||||||
AttackFrontal:
|
AttackFrontal:
|
||||||
WithMuzzleFlash:
|
WithMuzzleFlash:
|
||||||
|
SplitFacings: true
|
||||||
RenderInfantryProne:
|
RenderInfantryProne:
|
||||||
IdleAnimations: idle1,idle2
|
IdleAnimations: idle1,idle2
|
||||||
StandAnimations: stand, stand2
|
StandAnimations: stand, stand2
|
||||||
@@ -135,10 +136,11 @@ E5:
|
|||||||
HP: 90
|
HP: 90
|
||||||
Armament:
|
Armament:
|
||||||
Weapon: Chemspray
|
Weapon: Chemspray
|
||||||
LocalOffset: 85,0,384
|
LocalOffset: 341,0,256
|
||||||
FireDelay: 3
|
FireDelay: 3
|
||||||
AttackFrontal:
|
AttackFrontal:
|
||||||
WithMuzzleFlash:
|
WithMuzzleFlash:
|
||||||
|
SplitFacings: true
|
||||||
-PoisonedByTiberium:
|
-PoisonedByTiberium:
|
||||||
RenderInfantryProne:
|
RenderInfantryProne:
|
||||||
IdleAnimations: idle1,idle2
|
IdleAnimations: idle1,idle2
|
||||||
|
|||||||
@@ -184,6 +184,7 @@ FTNK:
|
|||||||
RenderUnit:
|
RenderUnit:
|
||||||
AutoTarget:
|
AutoTarget:
|
||||||
WithMuzzleFlash:
|
WithMuzzleFlash:
|
||||||
|
SplitFacings: true
|
||||||
Explodes:
|
Explodes:
|
||||||
Weapon: FlametankExplode
|
Weapon: FlametankExplode
|
||||||
EmptyWeapon: FlametankExplode
|
EmptyWeapon: FlametankExplode
|
||||||
|
|||||||
@@ -382,10 +382,38 @@ e4:
|
|||||||
Start: 16
|
Start: 16
|
||||||
Length: 4
|
Length: 4
|
||||||
Tick: 1600
|
Tick: 1600
|
||||||
muzzle: flame2
|
muzzle0: flame-n
|
||||||
Start: 0
|
Start: 0
|
||||||
Length: 13
|
Length: *
|
||||||
Facings: 8
|
Offset: 1,6
|
||||||
|
muzzle1: flame-nw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 8,7
|
||||||
|
muzzle2: flame-w
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 8,2
|
||||||
|
muzzle3: flame-sw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 7,-2
|
||||||
|
muzzle4: flame-s
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 1,-2
|
||||||
|
muzzle5: flame-se
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -5,-2
|
||||||
|
muzzle6: flame-e
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -7,2
|
||||||
|
muzzle7: flame-ne
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -7,8
|
||||||
icon: e4icnh
|
icon: e4icnh
|
||||||
Start: 0
|
Start: 0
|
||||||
|
|
||||||
@@ -475,10 +503,38 @@ e5:
|
|||||||
Start: 16
|
Start: 16
|
||||||
Length: 4
|
Length: 4
|
||||||
Tick: 1600
|
Tick: 1600
|
||||||
muzzle: chem
|
muzzle0: chem-n
|
||||||
Start: 0
|
Start: 0
|
||||||
Length: 13
|
Length: *
|
||||||
Facings: 8
|
Offset: 1,2
|
||||||
|
muzzle1: chem-nw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 8,2
|
||||||
|
muzzle2: chem-w
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 8,-3
|
||||||
|
muzzle3: chem-sw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 7,-6
|
||||||
|
muzzle4: chem-s
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 1,-6
|
||||||
|
muzzle5: chem-se
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -5,-6
|
||||||
|
muzzle6: chem-e
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -7,-3
|
||||||
|
muzzle7: chem-ne
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -3,2
|
||||||
icon: e5icnh
|
icon: e5icnh
|
||||||
Start: 0
|
Start: 0
|
||||||
|
|
||||||
|
|||||||
@@ -101,10 +101,38 @@ ftnk:
|
|||||||
idle:
|
idle:
|
||||||
Start: 0
|
Start: 0
|
||||||
Facings: 32
|
Facings: 32
|
||||||
muzzle: flame2
|
muzzle0: flame-n
|
||||||
Start: 0
|
Start: 0
|
||||||
Length: 13
|
Length: *
|
||||||
Facings: 8
|
Offset: 3,8
|
||||||
|
muzzle1: flame-nw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 4,6
|
||||||
|
muzzle2: flame-w
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 7,2
|
||||||
|
muzzle3: flame-sw
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 3,-2
|
||||||
|
muzzle4: flame-s
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: 1,-2
|
||||||
|
muzzle5: flame-se
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -3,-1
|
||||||
|
muzzle6: flame-e
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -6,2
|
||||||
|
muzzle7: flame-ne
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
Offset: -5,6
|
||||||
icon: ftnkicnh
|
icon: ftnkicnh
|
||||||
Start: 0
|
Start: 0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user