Exemplo n.º 1
0
        private const int rumbleCount = 50;         // Average the last X block positions to get the position of the rumble
        public void Update(float dt)
        {
            intervalTimer += dt;
            Entity targetEntity = this.Target.Value.Target;

            if (targetEntity != null && targetEntity.Active && this.Index < this.Coords.Length)
            {
                EffectBlockFactory factory = Factory.Get <EffectBlockFactory>();
                Voxel m = targetEntity.Get <Voxel>();

                float interval = 0.03f * this.IntervalMultiplier;

                while (intervalTimer > interval && this.Index < this.Coords.Length)
                {
                    CoordinateEntry entry       = this.Coords[this.Index];
                    Entity          blockEntity = factory.CreateAndBind(main);
                    EffectBlock     effectBlock = blockEntity.Get <EffectBlock>();
                    entry.Coord.Data.ApplyToEffectBlock(blockEntity.Get <ModelInstance>());
                    effectBlock.CheckAdjacent = false;
                    effectBlock.Offset.Value  = m.GetRelativePosition(entry.Coord);
                    effectBlock.DoScale       = true;

                    effectBlock.StartPosition    = entry.Position + new Vector3(8.0f, 20.0f, 8.0f) * this.BlockLifetime.Value;
                    effectBlock.StartOrientation = Quaternion.CreateFromYawPitchRoll(0.15f * this.Index, 0.15f * this.Index, 0);

                    effectBlock.TotalLifetime = this.BlockLifetime;
                    effectBlock.Setup(targetEntity, entry.Coord, entry.Coord.Data.ID);
                    main.Add(blockEntity);

                    this.rumbleSum += entry.Position;
                    int lastIndex = this.Index - rumbleCount;
                    if (lastIndex >= 0)
                    {
                        this.rumbleSum -= this.Coords[lastIndex].Position;
                    }

                    this.Index.Value++;
                    intervalTimer -= interval;
                }
                if (this.Coords.Count > 200)
                {
                    this.RumblePosition.Value = this.rumbleSum / Math.Min(this.Index + 1, rumbleCount);
                    if (!this.rumbling)
                    {
                        AkSoundEngine.PostEvent(AK.EVENTS.PLAY_BLOCK_RUMBLE, this.Entity);
                        this.rumbling = true;
                    }
                }
            }
            else
            {
                this.Delete.Execute();
            }
        }
Exemplo n.º 2
0
        public override void Awake()
        {
            base.Awake();
            this.EnabledWhenPaused = false;

            this.addEntry();
            this.Add(new CommandBinding(this.Delete, delegate()
            {
                if (this.entry.Voxel != null)
                {
                    EffectBlock.animatingBlocks.Remove(this.entry);
                }
                this.entry.Voxel = null;
            }));

            EffectBlock.setupSoundTimer(main);
        }
Exemplo n.º 3
0
        public void Update(float dt)
        {
            intervalTimer += dt;
            Entity targetEntity = this.Target.Value.Target;

            if (targetEntity != null && targetEntity.Active && this.Index < this.Coords.Length)
            {
                float interval = 0.03f * this.IntervalMultiplier;
                while (intervalTimer > interval && this.Index < this.Coords.Length)
                {
                    EffectBlockFactory factory = Factory.Get <EffectBlockFactory>();
                    Voxel m = targetEntity.Get <Voxel>();

                    CoordinateEntry entry       = this.Coords[this.Index];
                    Entity          blockEntity = factory.CreateAndBind(main);
                    EffectBlock     effectBlock = blockEntity.Get <EffectBlock>();
                    entry.Coord.Data.ApplyToEffectBlock(blockEntity.Get <ModelInstance>());
                    effectBlock.CheckAdjacent = false;
                    effectBlock.Offset.Value  = m.GetRelativePosition(entry.Coord);
                    effectBlock.DoScale       = true;

                    effectBlock.StartPosition    = entry.Position + new Vector3(8.0f, 20.0f, 8.0f) * this.BlockLifetime.Value;
                    effectBlock.StartOrientation = Quaternion.CreateFromYawPitchRoll(0.15f * this.Index, 0.15f * this.Index, 0);

                    effectBlock.TotalLifetime = this.BlockLifetime;
                    effectBlock.Setup(targetEntity, entry.Coord, entry.Coord.Data.ID);
                    main.Add(blockEntity);

                    this.Index.Value++;
                    intervalTimer -= interval;
                }
            }
            else
            {
                this.Delete.Execute();
            }
        }
Exemplo n.º 4
0
        public override void Awake()
        {
            base.Awake();

            this.blockFactory = Factory.Get <EffectBlockFactory>();

            this.EnabledWhenPaused = false;

            if (main.EditorEnabled)
            {
                this.BlockQueue.Clear();
            }

            this.particles = ParticleSystem.Get(main, "WhiteShatter");

            for (int i = 0; i < maxSparkLights; i++)
            {
                PointLight light = new PointLight();
                light.Serialize     = false;
                light.Color.Value   = new Vector3(1.0f);
                light.Enabled.Value = false;
                this.Entity.Add(light);
                this.sparkLights.Add(light);
            }

            if (!this.main.EditorEnabled)
            {
                this.Add(new CommandBinding <Voxel, IEnumerable <Voxel.Coord>, Voxel>(Voxel.GlobalCellsFilled, delegate(Voxel map, IEnumerable <Voxel.Coord> coords, Voxel transferredFromMap)
                {
                    foreach (Voxel.Coord c in coords)
                    {
                        Voxel.t id = c.Data.ID;
                        if (id == Voxel.t.Blue || id == Voxel.t.Powered || id == Voxel.t.PoweredSwitch || id == Voxel.t.Infected || id == Voxel.t.Neutral || id == Voxel.t.HardPowered || id == Voxel.t.Hard || id == Voxel.t.HardInfected)
                        {
                            Voxel.Coord newCoord = c;
                            newCoord.Data        = Voxel.States.Empty;
                            int generation;
                            EffectBlock.Entry generationsKey = new EffectBlock.Entry {
                                Voxel = map, Coordinate = newCoord
                            };
                            if (this.generations.TryGetValue(generationsKey, out generation))
                            {
                                this.generations.Remove(generationsKey);
                            }
                            if (!this.isInQueue(map.Entity, newCoord, false))
                            {
                                this.BlockQueue.Add(new ScheduledBlock
                                {
                                    Voxel      = map.Entity,
                                    Coordinate = newCoord,
                                    Time       = propagateDelay,
                                    Generation = generation,
                                });
                            }
                        }
                    }
                }));

                this.Add(new CommandBinding <Voxel, IEnumerable <Voxel.Coord>, Voxel>(Voxel.GlobalCellsEmptied, delegate(Voxel map, IEnumerable <Voxel.Coord> coords, Voxel transferringToNewMap)
                {
                    foreach (Voxel.Coord coord in coords)
                    {
                        Voxel.t id = coord.Data.ID;
                        if (id == Voxel.t.Powered || id == Voxel.t.PoweredSwitch || id == Voxel.t.HardPowered || id == Voxel.t.PermanentPowered)
                        {
                            this.removedPoweredCoords.Add(coord);
                        }
                        if (transferringToNewMap != null)
                        {
                            continue;
                        }

                        if (id == Voxel.t.Critical)                         // Critical. Explodes when destroyed.
                        {
                            Explosion.Explode(main, map, coord);
                        }
                        else if (id == Voxel.t.HardInfected)                         // Infected. Shatter effects.
                        {
                            ParticleSystem shatter = ParticleSystem.Get(main, "InfectedShatter");
                            Vector3 pos            = map.GetAbsolutePosition(coord);
                            AkSoundEngine.PostEvent(AK.EVENTS.PLAY_INFECTED_CRITICAL_SHATTER, pos);
                            for (int i = 0; i < 50; i++)
                            {
                                Vector3 offset = new Vector3((float)random.NextDouble() - 0.5f, (float)random.NextDouble() - 0.5f, (float)random.NextDouble() - 0.5f);
                                shatter.AddParticle(pos + offset, offset);
                            }
                        }
                        else if (id == Voxel.t.Powered || id == Voxel.t.Blue || id == Voxel.t.Neutral || id == Voxel.t.Infected || id == Voxel.t.Floater)
                        {
                            int generation;
                            Voxel.Coord c = coord;
                            c.Data        = Voxel.States.Empty;
                            EffectBlock.Entry generationKey = new EffectBlock.Entry {
                                Voxel = map, Coordinate = c
                            };
                            if (this.generations.TryGetValue(generationKey, out generation))
                            {
                                this.generations.Remove(generationKey);
                            }

                            if (id == Voxel.t.Floater)
                            {
                                Entity blockEntity      = this.blockFactory.CreateAndBind(main);
                                EffectBlock effectBlock = blockEntity.Get <EffectBlock>();
                                coord.Data.ApplyToEffectBlock(blockEntity.Get <ModelInstance>());
                                effectBlock.Delay            = 4.0f;
                                effectBlock.Offset.Value     = map.GetRelativePosition(coord);
                                effectBlock.StartPosition    = map.GetAbsolutePosition(coord) + new Vector3(2.5f, 5.0f, 2.5f);
                                effectBlock.StartOrientation = Quaternion.CreateFromYawPitchRoll(1.0f, 1.0f, 0);
                                effectBlock.TotalLifetime    = 0.5f;
                                effectBlock.Setup(map.Entity, coord, coord.Data.ID);
                                main.Add(blockEntity);
                            }

                            if (generation == 0)
                            {
                                if (!this.isInQueue(map.Entity, coord, true))
                                {
                                    this.BlockQueue.Add(new ScheduledBlock
                                    {
                                        Voxel      = map.Entity,
                                        Coordinate = coord,
                                        Time       = propagateDelay,
                                        Removing   = true,
                                    });
                                }
                            }
                            else if (generation < maxGenerations)
                            {
                                Direction down = map.GetRelativeDirection(Direction.NegativeY);
                                for (int i = 0; i < 6; i++)
                                {
                                    Direction dir        = DirectionExtensions.Directions[i];
                                    Voxel.Coord adjacent = coord.Move(dir);
                                    if (!coords.Contains(adjacent))
                                    {
                                        Voxel.t adjacentID     = map[adjacent].ID;
                                        bool adjacentIsFloater = adjacentID == Voxel.t.Floater;
                                        if (dir != down || adjacentIsFloater)
                                        {
                                            if (adjacentID == Voxel.t.Powered || adjacentID == Voxel.t.Blue || adjacentID == Voxel.t.Neutral || adjacentID == Voxel.t.Infected || adjacentIsFloater)
                                            {
                                                if (!this.isInQueue(map.Entity, adjacent, true))
                                                {
                                                    this.BlockQueue.Add(new ScheduledBlock
                                                    {
                                                        Voxel      = map.Entity,
                                                        Coordinate = adjacent,
                                                        Time       = propagateDelay,
                                                        Removing   = true,
                                                        Generation = generation + 1,
                                                    });
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        else if (id == Voxel.t.White || id == Voxel.t.Glass)                         // Shatter effects.
                        {
                            ParticleSystem shatter = ParticleSystem.Get(main, "WhiteShatter");
                            Vector3 pos            = map.GetAbsolutePosition(coord);
                            for (int i = 0; i < 50; i++)
                            {
                                Vector3 offset = new Vector3((float)this.random.NextDouble() - 0.5f, (float)this.random.NextDouble() - 0.5f, (float)this.random.NextDouble() - 0.5f);
                                shatter.AddParticle(pos + offset, offset);
                            }
                            float time = this.main.TotalTime;
                            if (time - this.lastShatterSound > 0.3f)
                            {
                                this.lastShatterSound = time;
                                AkSoundEngine.PostEvent(AK.EVENTS.PLAY_WHITE_SHATTER, pos);
                            }
                        }
                    }

                    if (this.removedPoweredCoords.Count > 0)
                    {
                        IEnumerable <IEnumerable <Voxel.Box> > poweredIslands = map.GetAdjacentIslands(this.removedPoweredCoords, x => x.ID == Voxel.t.Powered || x.ID == Voxel.t.HardPowered, x => x == Voxel.States.PermanentPowered || x == Voxel.States.PoweredSwitch);
                        List <Voxel.Coord> poweredCoords = poweredIslands.SelectMany(x => x).SelectMany(x => x.GetCoords()).ToList();
                        if (poweredCoords.Count > 0)
                        {
                            lock (map.MutationLock)
                            {
                                map.Empty(poweredCoords, true, true, map, false);
                                for (int i = 0; i < poweredCoords.Count; i++)
                                {
                                    Voxel.Coord coord = poweredCoords[i];
                                    if (coord.Data.ID == Voxel.t.HardPowered)
                                    {
                                        map.Fill(coord, Voxel.States.Hard, false);
                                    }
                                    else
                                    {
                                        map.Fill(coord, Voxel.States.Blue, false);
                                    }
                                }
                            }
                            this.toRegenerate.Add(map);
                        }
                        this.removedPoweredCoords.Clear();
                    }
                }));
            }
        }
Exemplo n.º 5
0
        public void Update(float dt)
        {
            if (this.TimeUntilRebuild > 0)
            {
                if (this.TargetVoxel.Value.Target == null || !this.TargetVoxel.Value.Target.Active)
                {
                    this.Delete.Execute();
                    return;
                }

                float newValue = Math.Max(0.0f, this.TimeUntilRebuild.Value - dt);
                this.TimeUntilRebuild.Value = newValue;
                if (newValue == 0.0f)
                {
                    // Rebuild
                    Entity targetMap = this.TargetVoxel.Value.Target;

                    Voxel m = targetMap.Get <Voxel>();

                    EffectBlockFactory factory = Factory.Get <EffectBlockFactory>();

                    int startIndex = this.Base.BaseBoxes.Sum(x => x.Volume);
                    int index      = startIndex;

                    foreach (Entity.Handle e in this.DynamicVoxels)
                    {
                        Entity dynamicMap          = e.Target;
                        Voxel  dynamicMapComponent = dynamicMap != null && dynamicMap.Active ? dynamicMap.Get <Voxel>() : null;

                        if (dynamicMap == null || !dynamicMap.Active)
                        {
                            continue;
                        }

                        Quaternion orientation = Quaternion.CreateFromRotationMatrix(dynamicMapComponent.Transform.Value);

                        List <Voxel.Coord> coords = new List <Voxel.Coord>();

                        foreach (Voxel.Coord c in dynamicMapComponent.Chunks.SelectMany(x => x.Boxes).SelectMany(x => x.GetCoords()))
                        {
                            if (m[c].ID == 0)
                            {
                                coords.Add(c);
                            }
                        }

                        foreach (Voxel.Coord c in coords.OrderBy(x => (new Vector3(x.X, x.Y, x.Z) - this.Base.Position).LengthSquared()))
                        {
                            Entity blockEntity = factory.CreateAndBind(main);
                            c.Data.ApplyToEffectBlock(blockEntity.Get <ModelInstance>());
                            EffectBlock effectBlock = blockEntity.Get <EffectBlock>();
                            effectBlock.Offset.Value = m.GetRelativePosition(c);
                            effectBlock.DoScale      = dynamicMapComponent == null;
                            if (dynamicMapComponent != null && dynamicMapComponent[c].ID == c.Data.ID)
                            {
                                effectBlock.StartPosition    = dynamicMapComponent.GetAbsolutePosition(c);
                                effectBlock.StartOrientation = orientation;
                            }
                            else
                            {
                                effectBlock.StartPosition    = m.GetAbsolutePosition(c) + new Vector3(0.25f, 0.5f, 0.25f) * index;
                                effectBlock.StartOrientation = Quaternion.CreateFromYawPitchRoll(0.15f * index, 0.15f * index, 0);
                            }
                            effectBlock.TotalLifetime = 0.05f + (index * rebuildTimeMultiplier * RebuildTime);
                            effectBlock.Setup(targetMap, c, c.Data.ID);
                            main.Add(blockEntity);
                            index++;
                        }
                        dynamicMap.Delete.Execute();
                    }
                    this.DynamicVoxels.Clear();

                    if (index > startIndex)                     // We built some stuff. Build the base.
                    {
                        int baseIndex = 0;
                        foreach (Voxel.Coord c in this.Base.BaseBoxes.SelectMany(x => x.GetCoords()))
                        {
                            if (m[c].ID == 0)
                            {
                                Entity      blockEntity = factory.CreateAndBind(main);
                                EffectBlock effectBlock = blockEntity.Get <EffectBlock>();
                                c.Data.ApplyToEffectBlock(blockEntity.Get <ModelInstance>());
                                effectBlock.Offset.Value     = m.GetRelativePosition(c);
                                effectBlock.StartPosition    = m.GetAbsolutePosition(c) + new Vector3(0.25f, 0.5f, 0.25f) * baseIndex;
                                effectBlock.StartOrientation = Quaternion.CreateFromYawPitchRoll(0.15f * baseIndex, 0.15f * baseIndex, 0);
                                effectBlock.TotalLifetime    = 0.05f + (baseIndex * rebuildTimeMultiplier * RebuildTime);
                                effectBlock.Setup(targetMap, c, c.Data.ID);
                                main.Add(blockEntity);
                                baseIndex++;
                            }
                        }
                        this.TimeUntilRebuildComplete.Value = 0.05f + (index * rebuildTimeMultiplier * RebuildTime);
                    }
                    else                     // We didn't build anything. Delete ourselves.
                    {
                        this.Delete.Execute();
                    }
                }
            }
            else if (this.TimeUntilRebuildComplete > 0)
            {
                // Rebuilding
                float newValue = Math.Max(0.0f, this.TimeUntilRebuildComplete.Value - dt);
                this.TimeUntilRebuildComplete.Value = newValue;
                if (newValue == 0.0f)
                {
                    // Done rebuilding
                    if (!this.Base.IsValid)
                    {
                        this.Delete.Execute();
                    }
                    else
                    {
                        this.Base.EnableCellEmptyBinding = !main.EditorEnabled;
                        if (this.IsTriggered)
                        {
                            fall();
                        }
                    }
                }
            }
        }