mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-27 08:41:02 +08:00
168 lines
3.4 KiB
C++
168 lines
3.4 KiB
C++
//#define FULL_DISABLE_PROFILER
|
|
#include "profiler/profiler.h"
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <vector>
|
|
#include <iostream>
|
|
|
|
void loadingResources(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Lightcyan);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
|
}
|
|
|
|
|
|
|
|
void prepareMath(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Blue);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(3));
|
|
}
|
|
|
|
void calcIntersect(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Blue);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(4));
|
|
}
|
|
|
|
void calcPhys(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Blue);
|
|
calcIntersect();
|
|
}
|
|
|
|
void calcBrain(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Blue);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(3));
|
|
}
|
|
|
|
void calculateBehavior(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Lightblue);
|
|
calcPhys();
|
|
calcBrain();
|
|
}
|
|
|
|
void modellingStep(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Navy);
|
|
prepareMath();
|
|
calculateBehavior();
|
|
}
|
|
|
|
void prepareRender(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Lightred);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(8));
|
|
|
|
}
|
|
|
|
void calculatePhysics(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(8));
|
|
}
|
|
|
|
void frame(){
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Magenta);
|
|
prepareRender();
|
|
calculatePhysics();
|
|
}
|
|
|
|
void loadingResourcesThread(){
|
|
for(int i = 0; i < 10; i++){
|
|
loadingResources();
|
|
PROFILER_ADD_EVENT_GROUPED("Resources Loading!",profiler::colors::Cyan);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
}
|
|
|
|
void modellingThread(){
|
|
for (int i = 0; i < 160000; i++){
|
|
modellingStep();
|
|
}
|
|
}
|
|
|
|
void renderThread(){
|
|
for (int i = 0; i < 100000; i++){
|
|
frame();
|
|
}
|
|
}
|
|
|
|
void four()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
|
|
void five()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
void six()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
|
|
void three()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
four();
|
|
five();
|
|
six();
|
|
}
|
|
|
|
void seven()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
|
|
void two()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
|
|
void one()
|
|
{
|
|
PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Red);
|
|
two();
|
|
three();
|
|
seven();
|
|
}
|
|
|
|
/*
|
|
one
|
|
two
|
|
three
|
|
four
|
|
five
|
|
six
|
|
seven
|
|
|
|
*/
|
|
int main()
|
|
{
|
|
auto start = std::chrono::system_clock::now();
|
|
PROFILER_ENABLE;
|
|
|
|
one();
|
|
/*std::thread render = std::thread(renderThread);
|
|
std::thread modelling = std::thread(modellingThread);
|
|
|
|
std::vector<std::thread> threads;
|
|
for(int i=0; i < 3; i++){
|
|
threads.emplace_back(std::thread(loadingResourcesThread));
|
|
}
|
|
|
|
render.join();
|
|
modelling.join();
|
|
for(auto& t : threads){
|
|
t.join();
|
|
}
|
|
*/
|
|
|
|
auto end = std::chrono::system_clock::now();
|
|
auto elapsed =
|
|
std::chrono::duration_cast<std::chrono::microseconds>(end - start);
|
|
|
|
std::cout << elapsed.count() << " usec" << std::endl;
|
|
//block count ~810
|
|
return 0;
|
|
}
|