Victory conditions
This commit is contained in:
@@ -25,6 +25,7 @@ namespace OpenRA.Mods.RA
|
|||||||
Dictionary<string, Actor> Actors;
|
Dictionary<string, Actor> Actors;
|
||||||
Dictionary<string, Player> Players;
|
Dictionary<string, Player> Players;
|
||||||
Map Map;
|
Map Map;
|
||||||
|
|
||||||
public void WorldLoaded(World w)
|
public void WorldLoaded(World w)
|
||||||
{
|
{
|
||||||
Map = w.Map;
|
Map = w.Map;
|
||||||
@@ -50,8 +51,33 @@ namespace OpenRA.Mods.RA
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void OnVictory(World w)
|
||||||
|
{
|
||||||
|
started = false;
|
||||||
|
Sound.PlayToPlayer(w.LocalPlayer, "accom1.aud");
|
||||||
|
w.LocalPlayer.WinState = WinState.Won;
|
||||||
|
|
||||||
|
w.WorldActor.CancelActivity();
|
||||||
|
w.WorldActor.QueueActivity(new Wait(125));
|
||||||
|
w.WorldActor.QueueActivity(new CallFunc(() =>
|
||||||
|
{
|
||||||
|
Sound.StopMusic();
|
||||||
|
w.DisableTick = true;
|
||||||
|
var player = Widget.RootWidget.OpenWindow("FMVPLAYER").GetWidget<VqaPlayerWidget>("PLAYER");
|
||||||
|
player.Load("gunboat.vqa");
|
||||||
|
player.PlayThen(() =>
|
||||||
|
{
|
||||||
|
Widget.RootWidget.CloseWindow();
|
||||||
|
w.DisableTick = false;
|
||||||
|
Game.Disconnect();
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
int ticks = 0;
|
int ticks = 0;
|
||||||
bool started = false;
|
bool started = false;
|
||||||
|
|
||||||
|
int lastBadCount = -1;
|
||||||
public void Tick(Actor self)
|
public void Tick(Actor self)
|
||||||
{
|
{
|
||||||
if (!started)
|
if (!started)
|
||||||
@@ -60,7 +86,19 @@ namespace OpenRA.Mods.RA
|
|||||||
if (ticks == 0)
|
if (ticks == 0)
|
||||||
SetGunboatPath();
|
SetGunboatPath();
|
||||||
|
|
||||||
|
// GoodGuy win conditions
|
||||||
|
// BadGuy is dead
|
||||||
|
int badcount = self.World.Queries.OwnedBy[Players["BadGuy"]].Count(a => a.IsInWorld && !a.IsDead());
|
||||||
|
if (badcount != lastBadCount)
|
||||||
|
{
|
||||||
|
Game.Debug("{0} badguys remain".F(badcount));
|
||||||
|
lastBadCount = badcount;
|
||||||
|
|
||||||
|
if (badcount == 0)
|
||||||
|
OnVictory(self.World);
|
||||||
|
}
|
||||||
|
|
||||||
|
// GoodGuy reinforcements
|
||||||
if (ticks == 25*5)
|
if (ticks == 25*5)
|
||||||
{
|
{
|
||||||
ReinforceFromSea(self.World,
|
ReinforceFromSea(self.World,
|
||||||
|
|||||||
Reference in New Issue
Block a user