Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by emthele · Dec 20, 2016 at 07:47 AM · timethreadtimingsleepclock

Accurate millisecond timed thread

Hello everyone,

I'm using a mathematic gradient algorithm for calculations of stuff. This algorithm has to run every couple of milliseconds. At the moment, I'm creating a thread and use the Thread.Sleep() command like this.

      private void Start ()
         {
             // Start the thread that will be the SuperFastLoop
             updateThread = new Thread(SuperFastLoop);
             updateThread.Priority = System.Threading.ThreadPriority.Highest;
             updateThread.Start();
         }
     
      private void SuperFastLoop()
         {
             // This begins our Update loop
             while (true)
             {
                 if (SerialComm.Streaming)
                 {

   // Do Algorithm stuff here
                 }
                 Thread.Sleep(DelayMs);
             }
         }


As far as I've seen, Thread.Sleep() is called a beginner's tactic and "one should do it better", but I have evaluated and tested the common alternatives, and they're not suitable for a delay of around 1 ms. Basically, my question is: Is there a proper or better way to have a sharp 1 ms delay between function calls, at best including the algorithm calculation time, on multiple platform?

5 ms would also be suitable and are actually used by now. But I would have it dependent on the system and its power. I has to be way faster than FixedUpdate() and should not be calculated here, as I don't want to mess with all physics due to that.

We intend to use this on these platforms: Windows, Mac, Android, iOs.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by ivan866 · Jun 05, 2019 at 09:50 AM

You need a cpp program to get a <=1 ms timing accuracy on Windows.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Bunny83 · Jun 05, 2019 at 10:30 AM 0
Share

That's nonsense. The used language does not improve any OS API call resolution. Windows internal tick timer has a poor resolution. See this SO question (which is actually about a C++ program).


Here's an example high precision timer class in C# that is based in the Stopwatch class. Though keep in $$anonymous$$d that when requesting "rather high" callrates it will actually busy-wait (using Thread.SpinWait) which would cause 100% usage of one core. That doesn't mean the core can't be used for anything else just that the thread never actually actively yields it's assigned time slice.

avatar image
0

Answer by EternalClickbait · Jun 05, 2019 at 11:13 AM

I would use the System.Diagnostics.Stopwatch class.

Make a long for the last time the function ran. Then use a while loop to wait until that time is at least 1ms smaller than the current time. Some (unrun) code:

         Stopwatch s = Stopwatch.StartNew();
         
         Start:
         long lastTime = 0;
         int delayTime = 1; //ms
         s.Start();
         while ((s.ElapsedMilliseconds - lastTime) < delayTime) ;
         lastTime = s.ElapsedMilliseconds;
         DoStuff();
         goto Start;

I think this is the right way to do it. It should wait the same amount of time no matter how long your code takes (as long as your code takes less time than delayTime Also, what sort of things do you need to do? Why do you need the wait in the first place?

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

8 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Clock Trigger 2 Answers

Javascript beginner here: how do I implement time such as hours and days? 2 Answers

Execute code for a certain amount of time 1 Answer

Start my Clock script at 6am? 2 Answers

Unity Time and Timing-Different from Iphone Time and Timing?? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges