Esempio n. 1
0
        internal void Purge()
        {
            _textureDrawPool.Clear();
            _textDrawPool.Clear();
            _weaponSortingListPool.Clear();
            _weaponStackedInfoPool.Clear();
            CharacterMap.Clear();
            _textureAddList.Clear();
            _textAddList.Clear();
            _drawList.Clear();
            _weapontoDraw.Clear();
            WeaponsToDisplay.Clear();

            List <StackedWeaponInfo> removeList;

            while (_weaponInfoListPool.TryDequeue(out removeList))
            {
                removeList.Clear();
            }

            List <List <Weapon> > removeList1;

            while (_weaponSubListsPool.TryDequeue(out removeList1))
            {
                for (int i = 0; i < removeList1.Count; i++)
                {
                    removeList1[i].Clear();
                }

                removeList1.Clear();
            }
        }
Esempio n. 2
0
        internal void DrawTextures()
        {
            var ticksSinceUpdate = TicksSinceUpdated;
            var reset            = false;

            _cameraWorldMatrix = _session.Camera.WorldMatrix;

            if (NeedsUpdate)
            {
                UpdateHudSettings();
            }

            if (WeaponsToDisplay.Count > 0 || KeepBackground)
            {
                if (ticksSinceUpdate >= MinUpdateTicks)
                {
                    if (TexturesToAdd > 0)
                    {
                        _weapontoDraw = SortDisplayedWeapons(WeaponsToDisplay);
                    }

                    _lastHudUpdateTick = _session.Tick;
                }
                else if (ticksSinceUpdate + 1 >= MinUpdateTicks)
                {
                    reset = true;
                }

                BuildHud(reset);
            }

            AddTextAndTextures();
            DrawHudOnce();


            WeaponsToDisplay.Clear();
            _textAddList.Clear();
            _textureAddList.Clear();
            _drawList.Clear();
            TexturesToAdd = 0;
        }
Esempio n. 3
0
        internal void DrawTextures()
        {
            _aspectratio       = _session.Camera.ViewportSize.Y / _session.Camera.ViewportSize.X;
            _cameraWorldMatrix = _session.Camera.WorldMatrix;

            #region WeaponHudDisplay
            //inlined becuase there can be many and too many method calls
            if (WeaponsToDisplay.Count > 0)
            {
                CurrWeaponDisplayPos = new Vector2((_session.Camera.ViewportSize.X * .25f) * _metersInPixel, (_session.Camera.ViewportSize.Y * .125f) * _metersInPixel);

                var ticksSinceUpdate = _session.Tick - _lastHudUpdateTick;

                var reset = false;
                if (ticksSinceUpdate >= _minUpdateTicks)
                {
                    _weapontoDraw      = SortDisplayedWeapons(WeaponsToDisplay);
                    _lastHudUpdateTick = _session.Tick;
                }
                else if (ticksSinceUpdate + 1 >= _minUpdateTicks)
                {
                    reset = true;
                }

                #region Background draw
                TextureDrawData backgroundTextureTop;
                if (!_textureDrawPool.TryDequeue(out backgroundTextureTop))
                {
                    backgroundTextureTop = new TextureDrawData();
                }

                TextureDrawData backgroundTextureCenter;
                if (!_textureDrawPool.TryDequeue(out backgroundTextureCenter))
                {
                    backgroundTextureCenter = new TextureDrawData();
                }

                TextureDrawData backgroundTextureBottom;
                if (!_textureDrawPool.TryDequeue(out backgroundTextureBottom))
                {
                    backgroundTextureBottom = new TextureDrawData();
                }


                var bgWidth     = (_currentLargestName * _metersInPixel) + _textOffset;
                var bgStartPosX = CurrWeaponDisplayPos.X - (bgWidth + _padding * 1.5f);

                var bgBorderHeight = bgWidth * .166f;
                var bgCenterHeight = _weapontoDraw.Count > 3 ? ((_weapontoDraw.Count - 2) * _infoPanelOffset) : _infoPanelOffset * 2;

                var bgStartPoxY = CurrWeaponDisplayPos.Y - (bgCenterHeight + _padding);

                backgroundTextureCenter.Material = _infoBackground[1].Material;
                backgroundTextureCenter.Color    = _bgColor * (_session.Session.Config.HUDBkOpacity * 1.8f);
                backgroundTextureCenter.Position = new Vector3D(bgStartPosX, bgStartPoxY, -.1f);
                backgroundTextureCenter.Width    = bgWidth;
                backgroundTextureCenter.Height   = bgCenterHeight;
                backgroundTextureCenter.P0       = _infoBackground[1].P0;
                backgroundTextureCenter.P1       = _infoBackground[1].P1;
                backgroundTextureCenter.P2       = _infoBackground[1].P2;
                backgroundTextureCenter.P3       = _infoBackground[1].P3;

                _textureAddList.Add(backgroundTextureCenter);

                backgroundTextureTop.Material = _infoBackground[0].Material;
                backgroundTextureTop.Color    = _bgColor * (_session.Session.Config.HUDBkOpacity * 1.8f);
                backgroundTextureTop.Position = new Vector3D(bgStartPosX, bgStartPoxY + bgBorderHeight + bgCenterHeight, -.1f);
                backgroundTextureTop.Width    = bgWidth;
                backgroundTextureTop.Height   = bgBorderHeight;
                backgroundTextureTop.P0       = _infoBackground[0].P0;
                backgroundTextureTop.P1       = _infoBackground[0].P1;
                backgroundTextureTop.P2       = _infoBackground[0].P2;
                backgroundTextureTop.P3       = _infoBackground[0].P3;

                _textureAddList.Add(backgroundTextureTop);

                backgroundTextureBottom.Material = _infoBackground[2].Material;
                backgroundTextureBottom.Color    = _bgColor * (_session.Session.Config.HUDBkOpacity * 1.8f);
                backgroundTextureBottom.Position = new Vector3D(bgStartPosX, bgStartPoxY - (bgBorderHeight + bgCenterHeight), -.1f);
                backgroundTextureBottom.Width    = bgWidth;
                backgroundTextureBottom.Height   = bgBorderHeight;
                backgroundTextureBottom.P0       = _infoBackground[2].P0;
                backgroundTextureBottom.P1       = _infoBackground[2].P1;
                backgroundTextureBottom.P2       = _infoBackground[2].P2;
                backgroundTextureBottom.P3       = _infoBackground[2].P3;

                _textureAddList.Add(backgroundTextureBottom);
                #endregion

                if (reset)
                {
                    _currentLargestName = 0;
                }

                for (int i = 0; i < _weapontoDraw.Count; i++)
                {
                    TextDrawRequest textInfo;
                    TextureDrawData reloadTexture;
                    TextureDrawData heatTexture;

                    var weapon     = _weapontoDraw[i].HighestValueWeapon;
                    var name       = weapon.System.WeaponName + ": ";
                    var textOffset = name.Length * _WeaponHudFontHeight;
                    textOffset += _textOffset;

                    if (weapon.State.Sync.Reloading && weapon.State.Sync.Reloading && weapon.Comp.Session.Tick - weapon.LastLoadedTick > 30)
                    {
                        if (!_textureDrawPool.TryDequeue(out reloadTexture))
                        {
                            reloadTexture = new TextureDrawData();
                        }

                        reloadTexture.Material = _reloadingTexture.Material;
                        reloadTexture.Color    = Color.Red * _session.UiOpacity;
                        reloadTexture.Position = new Vector3D(CurrWeaponDisplayPos.X - _reloadWidthOffset, CurrWeaponDisplayPos.Y + _reloadHeightOffset, -.1f);
                        reloadTexture.Width    = _reloadWidth;
                        reloadTexture.Height   = _reloadHeight;
                        reloadTexture.P0       = _reloadingTexture.P0;
                        reloadTexture.P1       = _reloadingTexture.P1;
                        reloadTexture.P2       = _reloadingTexture.P2;
                        reloadTexture.P3       = _reloadingTexture.P3;

                        _textureAddList.Add(reloadTexture);
                    }

                    if (!_textDrawPool.TryDequeue(out textInfo))
                    {
                        textInfo = new TextDrawRequest();
                    }

                    textInfo.Text     = name;
                    textInfo.Color    = Color.White * _session.UiOpacity;
                    textInfo.X        = CurrWeaponDisplayPos.X - textOffset;
                    textInfo.Y        = CurrWeaponDisplayPos.Y;
                    textInfo.FontSize = _WeaponHudFontSize;
                    _textAddList.Add(textInfo);


                    if (weapon.HeatPerc > 0)
                    {
                        if (!_textureDrawPool.TryDequeue(out heatTexture))
                        {
                            heatTexture = new TextureDrawData();
                        }
                        int heatBarIndex;
                        if (weapon.State.Sync.Overheated)
                        {
                            heatBarIndex = 10;
                        }
                        else
                        {
                            heatBarIndex = (int)(weapon.HeatPerc * 10);
                        }

                        heatTexture.Material = _heatBarTexture[heatBarIndex].Material;
                        heatTexture.Color    = Color.Transparent;
                        heatTexture.Position = new Vector3D(CurrWeaponDisplayPos.X - (_heatWidth * 1.5f), CurrWeaponDisplayPos.Y - _heatHeightOffset, -.1f);
                        heatTexture.Width    = _heatWidth;
                        heatTexture.Height   = _heatHeight;
                        heatTexture.P0       = _heatBarTexture[heatBarIndex].P0;
                        heatTexture.P1       = _heatBarTexture[heatBarIndex].P1;
                        heatTexture.P2       = _heatBarTexture[heatBarIndex].P2;
                        heatTexture.P3       = _heatBarTexture[heatBarIndex].P3;

                        _textureAddList.Add(heatTexture);
                    }

                    if (_weapontoDraw[i].WeaponStack > 1)
                    {
                        if (!_textDrawPool.TryDequeue(out textInfo))
                        {
                            textInfo = new TextDrawRequest();
                        }

                        textInfo.Text     = $"(x{_weapontoDraw[i].WeaponStack})";
                        textInfo.Color    = Color.LightSteelBlue * _session.UiOpacity;
                        textInfo.X        = CurrWeaponDisplayPos.X - (textOffset + ((textInfo.Text.Length * _metersInPixel) * 1.1f) + _padding);
                        textInfo.Y        = CurrWeaponDisplayPos.Y;
                        textInfo.FontSize = _WeaponHudFontSize * .75f;
                        _textAddList.Add(textInfo);
                    }

                    CurrWeaponDisplayPos.Y -= _infoPanelOffset + (_padding * .5f);

                    if (reset)
                    {
                        _weaponStackedInfoPool.Enqueue(_weapontoDraw[i]);
                    }
                }

                if (reset)
                {
                    _weapontoDraw.Clear();
                    _weaponInfoListPool.Enqueue(_weapontoDraw);
                }
            }
            #endregion

            #region UV Offset based draws
            for (int i = 0; i < _textAddList.Count; i++)
            {
                var textAdd  = _textAddList[i];
                var position = new Vector3D(textAdd.X, textAdd.Y, -.1);
                position = Vector3D.Transform(position, _cameraWorldMatrix);

                var height  = textAdd.FontSize * _metersInPixel;
                var width   = height * _aspectratio;
                var textPos = position;

                for (int j = 0; j < textAdd.Text.Length; j++)
                {
                    var             cm = _characterMap[textAdd.Text[j]];
                    TextureDrawData tdd;

                    if (!_textureDrawPool.TryDequeue(out tdd))
                    {
                        tdd = new TextureDrawData();
                    }

                    tdd.Material = cm.Material;
                    tdd.Color    = textAdd.Color;
                    tdd.Position = textPos;
                    tdd.Up       = _cameraWorldMatrix.Up;
                    tdd.Left     = _cameraWorldMatrix.Left;
                    tdd.Width    = width;
                    tdd.Height   = height;
                    tdd.P0       = cm.P0;
                    tdd.P1       = cm.P1;
                    tdd.P2       = cm.P2;
                    tdd.P3       = cm.P3;

                    _uvDrawList.Add(tdd);

                    textPos -= (_cameraWorldMatrix.Left * height);
                }

                _textDrawPool.Enqueue(textAdd);
            }

            for (int i = 0; i < _textureAddList.Count; i++)
            {
                var tdd = _textureAddList[i];

                tdd.Position = Vector3D.Transform(tdd.Position, _cameraWorldMatrix);
                tdd.Up       = _cameraWorldMatrix.Up;
                tdd.Left     = _cameraWorldMatrix.Left;
                _uvDrawList.Add(tdd);
            }

            for (int i = 0; i < _uvDrawList.Count; i++)
            {
                var textureToDraw = _uvDrawList[i];

                MyQuadD quad;
                MyUtils.GetBillboardQuadOriented(out quad, ref textureToDraw.Position, textureToDraw.Width, textureToDraw.Height, ref textureToDraw.Left, ref textureToDraw.Up);

                if (textureToDraw.Color != Color.Transparent)
                {
                    MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point1, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P1, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Color, textureToDraw.Blend);
                    MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point3, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P2, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Color, textureToDraw.Blend);
                }
                else
                {
                    MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point1, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P1, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Blend);
                    MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point3, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P2, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Blend);
                }

                _textureDrawPool.Enqueue(textureToDraw);
            }
            #endregion

            #region Simple based draws
            for (int i = 0; i < _simpleDrawList.Count; i++)
            {
                var textureToDraw = _simpleDrawList[i];
                var scale         = 0.075 * Math.Tan(_session.Camera.FovWithZoom * textureToDraw.Height);

                textureToDraw.Position = Vector3D.Transform(textureToDraw.Position, _cameraWorldMatrix);
                scale = 1 * scale;

                MyTransparentGeometry.AddBillboardOriented(textureToDraw.Material, textureToDraw.Color, textureToDraw.Position, _cameraWorldMatrix.Left, _cameraWorldMatrix.Up, (float)scale, textureToDraw.Blend);

                _textureDrawPool.Enqueue(textureToDraw);
            }
            #endregion

            WeaponsToDisplay.Clear();
            _textAddList.Clear();
            _textureAddList.Clear();
            _uvDrawList.Clear();
            _simpleDrawList.Clear();
            TexturesToAdd = 0;
        }
Esempio n. 4
0
        internal void DrawTextures()
        {
            var ticksSinceUpdate = _session.Tick - _lastHudUpdateTick;
            var reset            = false;

            _cameraWorldMatrix = _session.Camera.WorldMatrix;

            if (NeedsUpdate)
            {
                UpdateHudSettings();
            }

            if (WeaponsToDisplay.Count > 0)
            {
                if (ticksSinceUpdate >= _minUpdateTicks)
                {
                    _weapontoDraw      = SortDisplayedWeapons(WeaponsToDisplay);
                    _lastHudUpdateTick = _session.Tick;
                }
                else if (ticksSinceUpdate + 1 >= _minUpdateTicks)
                {
                    reset = true;
                }

                DrawHud(reset);
            }

            #region Proccess Custom Additions
            for (int i = 0; i < _textAddList.Count; i++)
            {
                var textAdd = _textAddList[i];

                var height = textAdd.FontSize;
                var width  = textAdd.FontSize * _aspectratioInv;
                textAdd.Position.Z = _viewPortSize.Z;
                var textPos = Vector3D.Transform(textAdd.Position, _cameraWorldMatrix);

                for (int j = 0; j < textAdd.Text.Length; j++)
                {
                    var cm = _characterMap[textAdd.Font][textAdd.Text[j]];

                    TextureDrawData tdd;

                    if (!_textureDrawPool.TryDequeue(out tdd))
                    {
                        tdd = new TextureDrawData();
                    }

                    tdd.Material = cm.Material;
                    tdd.Color    = textAdd.Color;
                    tdd.Position = textPos;
                    tdd.Up       = _cameraWorldMatrix.Up;
                    tdd.Left     = _cameraWorldMatrix.Left;
                    tdd.Width    = width;
                    tdd.Height   = height;
                    tdd.P0       = cm.P0;
                    tdd.P1       = cm.P1;
                    tdd.P2       = cm.P2;
                    tdd.P3       = cm.P3;
                    tdd.UvDraw   = true;
                    tdd.Simple   = textAdd.Simple;

                    _drawList.Add(tdd);

                    textPos -= _cameraWorldMatrix.Left * height;
                }

                _textDrawPool.Enqueue(textAdd);
            }

            for (int i = 0; i < _textureAddList.Count; i++)
            {
                var tdd = _textureAddList[i];
                tdd.Position.Z = _viewPortSize.Z;
                tdd.Position   = Vector3D.Transform(tdd.Position, _cameraWorldMatrix);
                tdd.Up         = _cameraWorldMatrix.Up;
                tdd.Left       = _cameraWorldMatrix.Left;
                _drawList.Add(tdd);
            }
            #endregion

            for (int i = 0; i < _drawList.Count; i++)
            {
                var textureToDraw = _drawList[i];

                if (textureToDraw.Simple)
                {
                    textureToDraw.Position.X = (textureToDraw.Position.X / (-_viewPortSize.X) * (_viewPortSize.X - 100) + 100);
                    textureToDraw.Position.Y = (textureToDraw.Position.Y / (-_viewPortSize.Y) * (_viewPortSize.Y - 100) + 100);
                }


                if (textureToDraw.UvDraw)
                {
                    MyQuadD quad;
                    MyUtils.GetBillboardQuadOriented(out quad, ref textureToDraw.Position, textureToDraw.Width, textureToDraw.Height, ref textureToDraw.Left, ref textureToDraw.Up);

                    if (textureToDraw.Color != Color.Transparent)
                    {
                        MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point1, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P1, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Color, textureToDraw.Blend);
                        MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point3, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P2, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Color, textureToDraw.Blend);
                    }
                    else
                    {
                        MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point1, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P1, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Blend);
                        MyTransparentGeometry.AddTriangleBillboard(quad.Point0, quad.Point3, quad.Point2, Vector3.Zero, Vector3.Zero, Vector3.Zero, textureToDraw.P0, textureToDraw.P2, textureToDraw.P3, textureToDraw.Material, 0, textureToDraw.Position, textureToDraw.Blend);
                    }
                }
                else
                {
                    textureToDraw.Position = Vector3D.Transform(textureToDraw.Position, _cameraWorldMatrix);

                    MyTransparentGeometry.AddBillboardOriented(textureToDraw.Material, textureToDraw.Color, textureToDraw.Position, _cameraWorldMatrix.Left, _cameraWorldMatrix.Up, textureToDraw.Height, textureToDraw.Blend);
                }
                if (!textureToDraw.Persistant)
                {
                    _textureDrawPool.Enqueue(textureToDraw);
                }
            }

            WeaponsToDisplay.Clear();
            _textAddList.Clear();
            _textureAddList.Clear();
            _drawList.Clear();
            TexturesToAdd = 0;
        }