Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

[ad_1]

I made a decision to study constructing video games, so I picked up C# to make use of it together with Home windows Type – I have already got C# expertise, in order that was the primary cause I did so. That mentioned, I tasked myself to construct a easy Home windows Type app that renders a noise picture focusing on hopefully at 60 FPS. I am utilizing the GDI+ APIs to render bitmaps on display screen; nonetheless, I observed the app is not even near render 60 FPS – it renders round 36-39 FPS on a launch construct.

I ought to point out I am a completely beginner in each Home windows Type, and picture rendering, so I imagine my code is not optimized in any respect. I am sharing beneath the code snippet the app runs to be able to loop infinitely to render the noise pictures.

    personal static Bitmap GetStaticNoise(int width, int top)
    {
        var bitmap = new Bitmap(width, top);
        for (int y = 0; y < bitmap.Peak; y++)
        {
            for (int x = 0; x < bitmap.Width; x++)
            {
                Colour coloration = Colour.Black;

                var rnd = Random.Shared.Subsequent(0, 2);
                if (rnd % 2 == 0)
                {
                    coloration = Colour.White;
                }

                bitmap.SetPixel(x, y, coloration);
            }
        }

        return bitmap;
    }

    personal void Form1_Load(object? sender, EventArgs e)
    {
        Job.Manufacturing unit.StartNew(() =>
        {
            var frameStopwatch = new Stopwatch();

            var screenGraphics = _screen.CreateGraphics();

            var font = new Font(FontFamily.GenericMonospace, 30);

            var ct = cts.Token;
            whereas (!ct.IsCancellationRequested)
            {
                for (int body = 0; body < 60; body++)
                {
                    frameStopwatch.Restart();

                    // generates "noise"
                    Bitmap bitmap = GetStaticNoise(_screen.ClientSize.Width, _screen.ClientSize.Peak);
                    screenGraphics.DrawImage(bitmap, new Level(0, 0));
                    
                    bitmap.Dispose();

                    frameStopwatch.Cease();

                    screenGraphics.DrawString(frameStopwatch.ElapsedMilliseconds.ToString(), font, Brushes.Crimson, new Level(0, 0));

                    //Thread.Sleep(Math.Max(0, _frameCooldown.Milliseconds - (int)frameStopwatch.ElapsedMilliseconds));
                }
            }

        }, TaskCreationOptions.LongRunning);
    }

Any recommendation about what could possibly be modified right here it is appreciated. Additionally, any useful resource that could possibly be helpful to study utilizing GDI+ for recreation growth with Home windows Type can be appreciated (or any useful resource that would assist me understanding as an example this case I am working into).

Ah! the Home windows Type is on .NET 6.0. I am additionally attaching an image of the bitmap rendered on display screen (higher left nook exhibits the time in MS to render the body)

app frame rate

[ad_2]

Leave a Reply

Your email address will not be published. Required fields are marked *