Hello everyone!
Editor eat 100% CPU, is it ok? How to avoid that?
PS Ubuntu 14.04, Blender 2.71
Hello everyone!
Editor eat 100% CPU, is it ok? How to avoid that?
PS Ubuntu 14.04, Blender 2.71
I think it’s normal.
Disagree… Blender working with 3d model too and does not use CPU on 100%. It should be option something like maxCpu or something.
I don’t think it’s ok, because it could use less. But I think it’s normal, because not only happens to you.
I was just clarifying that it’s not just you. Try to modify the code and limit it.
[quote=“jorbuedo”]I don’t think it’s ok, because it could use less. But I think it’s normal, because not only happens to you.
I was just clarifying that it’s not just you. Try to modify the code and limit it.[/quote]
Thank you for your answer. Will know that I’m not along About modifying code - I’m noobie in C++ but will try.
The code is in AngelScript, it’s a bit easier.
Thank you for answer, can you give me advice how to do it? And why not to make it default?
As it uses Urho3DPlayer, check its parameters how it works.
Ie, enable vsync is -v (add it in Editor.sh), maybe it helps?
[quote=“lexx”]As it uses Urho3DPlayer, check its parameters how it works.
Ie, enable vsync is -v (add it in Editor.sh), maybe it helps?[/quote]
Just tried - no effect 100% CPU used.
In Engine.cpp, in constructor, I set SetMaxInactiveFps(10) and SetMaxFps(60), recompile library and now Urho3DPlayer eat 95% CPU. Not much. If engine will be so hungry it will eat battery on IOS and Android and users will not play in my game What else I can do? Any ideas?
Urho has a hierarchtical cpu profiler. See what is eating the cpu. The samples bind it to F2
GetSubsystem()->ToggleAll();
Please open this image in new tab.
Engine::Engine(Context* context) :
Object(context),
timeStep_(0.0f),
timeStepSmoothing_(2),
minFps_(10),
#if defined(ANDROID) || defined(IOS) || defined(RASPI)
maxFps_(60),
maxInactiveFps_(10),
pauseMinimized_(true),
#else
maxFps_(30),
maxInactiveFps_(10),
pauseMinimized_(false),
#endif
#ifdef URHO3D_TESTING
timeOut_(0),
#endif
autoExit_(true),
initialized_(false),
exiting_(false),
headless_(false),
audioPaused_(false)
maxFps_(30) but as you can see it completely ignored by the Urho library
Check the following line in the editor script (Editor.as line 193); it will override the maxFps setting set earlier during Engine’s construction.
if (renderingElem.HasAttribute("framelimiter")) engine.maxFps = renderingElem.GetBool("framelimiter") ? 200 : 0;
You can naturally change those values if you want.
Regarding mobiles, if you don’t need 60fps screen update, you should be able to set lower maxFps for lower power consumption. Depending on the graphics drivers & API used, using vsync may not reduce CPU usage, as it may be busy-polling for the vertical sync.
Also, the reason why something like Blender and Urho’s editor can’t be compared CPU usage-wise is that the Urho editor is running a constant screen redraw (just like a game), while GUI applications that use the native OS windowing (like Blender) typically redraw only when the user does something.