T1: Introduction to HIRO GUI
Overview
The library use is straightforward, as shown in the example below. After you set default directories (lines 5-6), you can initialize the library (line 8). The main update cycle runs until the user closes the window (lines 10-13). Before the application ends, the library is terminated and deallocated (line 15).
1#include <HIRO/HIRO.h>
2
3int main()
4{
5 hiro::SetAssetDirectory("./hiro_libs/assets/");
6 hiro::SetIntermediateDirectory("./temp/");
7
8 hiro::Initialize();
9
10 while (hiro::IsOpen())
11 {
12 hiro::Update();
13 }
14
15 hiro::Terminate();
16 return 0;
17}
The library depends on an asset directory that must be located somewhere on the disk and set by the function SetAssetDirectory.
If the directory is invalid or does not exist, the HIRO window cannot be initialized properly.
HIRO also generates multiple files that help restore the previous session when the program is started for another time.
The path to the directory is set via the SetIntermediateDirectory function.
Running the example code creates a blank window.
HIRO window has at least one viewarea, that consists of a viewport (A) where the data is visualized and a sidebar (B) providing rendering options and other controls. The sidebar has a resource inspector panel that lists everything that can be visualized in the viewport. Currently, it does not show anything because nothing has been added to HIRO yet. Let’s add a sample object.
Hint
If you run into any issues while using HIRO, try deleting the intermediate directory (or specific files inside) and rerun the program.
Adding Data Resources
As is, HIRO does not know what and how it can visualize.
For this, a data module must be created in the code where the data and rendering parameters are defined.
Luckily, the library offers several data modules by default.
Each data module has its resource, which is an object created by the user program and registered in the HIRO engine.
In this example, we use a geometry module that has a GeometryResource object definition available (line 2),
create an instance of it (lines 11-14) and add it to HIRO (line 15).
1#include <HIRO/HIRO.h>
2#include <HIRO/modules/GeometryResource.h>
3
4int main()
5{
6 hiro::SetAssetDirectory("./hiro_libs/assets/");
7 hiro::SetIntermediateDirectory("./temp/");
8
9 hiro::Initialize();
10
11 auto resource = std::make_shared<hiro::modules::GeometryResource>(
12 "My first resource",
13 hiro::draw::GeometryName::sphere_s2
14 );
15 hiro::AddResource(resource);
16
17 while (hiro::IsOpen())
18 {
19 hiro::Update();
20 }
21
22 hiro::Terminate();
23 return 0;
24}
GeometryResource class has two construction parameters.
The first one is the name.
This parameter is required for almost every resource you encounter in the future. It defines how the specific resource object will be referred to later.
The second parameter defines what type of geometry you want to create and visualize.
This parameter is unique for the GeometryResource object.
All HIRO data resources are handled as shared pointers.
You may hold the pointer in your program and manipulate the resource later, or you can release it and let only HIRO work with it.
Window now contains a single GeometryResource
When the program is run, a single resource is available in the resource inspector (its name is the same as we defined in the code). After the resource is selected in the inspector, we can see the sphere object appear in the viewport.
A new panel was added to the sidebar at that exact moment.
This panel defines visualization options for the currently selected resource, in this case, GeometryResource.
Try all available options and remember that anything you change, you change for this specific data module only - no general rendering parameters were modified!
Options
There are three groups of options available. The global options are opened by clicking on the cog in the sidebar. They contain settings to control and improve the overall user experience. The other two options panels, view options and camera options, that are open when right-clicking on the viewport. These options influence only the viewport in which they were opened.
Global Options
- White background
Render on white background. Helpful in doing screenshots to printable documents papers.
- Mouse sensitivity
The sensitivity of the mouse when applied to the movement of the camera.
- Optimized rendering
Render only when something changes and needs to be redrawn.
If it is disabled, the engine updates the screen continuously. Enabling the feature will not let you correctly measure current fps. Disabling this option can cause the GPU to run in high utilization state.
- Enable Shortcuts
Defines whether the system uses default keyboard shortcuts. If you do not wish to have default shortcuts enabled, turn off this option.
This can be useful when you wish to override the default key bindings, or some of the shortcuts negatively influence your experience.
- MSAA
Set up the level of multi-sampled anti-aliasing. The higher the level, the visualization looks smoother but can negatively impact performance. If you run into any performance issues, disable MSAA.
- Select layout
Choose from several application layouts with more than one viewarea.
- Reload shaders
Reload shader files to update for changes.
View and Camera Options
- Draw global axes
Toggle to show world coordinate axes.
- Grid
Selection to enable/disable ground grid visualization and define the orientation of the ground.
- Grid cell units
Defines the size of a single ground grid square.
- Mode
Allows setting rotational constraints for camera movement.
- Near/far clipping planes
Minimum and maximum range from the camera, in which elements in the scene are rendered.
- Reset camera view
Resets current camera pose into the default state.
Use it when you get lost in the viewport.
Visual Debugger
There may be a case when you wish to quickly visualize simple primitives without having to create resource objects and selecting them in the window. For this purpose, HIRO offers a visual debugger directly built into the API.
Visual debugger (or only debugger in the context of HIRO) is working at all times, in all viewareas.
You can directly set commands to it via API by calling the function hiro::GetDebugger() that returns a handle to the debugger.
The following code will produce the exact result shown in the picture above.
1...
2while (hiro::IsOpen())
3{
4 hiro::Debug().LogMessage("HIRO Debugger showcase!");
5
6 const geom::Aabb3 box{ glm::vec3(-0.5f), glm::vec3(0.5f) };
7 hiro::Debug().DrawBox(box);
8
9 const geom::Sphere sphere{ glm::vec3(0.0f), 0.3f };
10 hiro::Debug().DrawSphere(sphere, cogs::color::YELLOW);
11
12 std::vector<geom::LineSegment3> lines{ geom::LineSegment3(0, -1, 0, 0, 1, 0) };
13 hiro::Debug().DrawLines(lines);
14
15 hiro::Update();
16}
17...
Note
By default, debugger draw calls will only render for a single update cycle. You can specify longer duration as an additional parameter to the draw functions.
Note
The current version of the debugger allows the drawing and logging of only one unique item at a time. Multi-item rendering is planned for future updates.
Keyboard Shortcuts
- Tab
Opens layout selection screen.
- S
Toggles sidebar visibility for the viewarea under the mouse cursor.
- F11 or ALT+Enter
Enters/leaves window fullscreen mode.
- Esc
Closes the HIRO window.
- R
Reloads shader programs.