FocusTerra Realtime Wave Simulator
This repository contains all files that make up the realtime wave simulator exhibit at FocusTerra.
While the project was originally developed on macOS, it was later ported to Windows (Visual Studio 2019).
Dependencies are OpenGL, ImGui and SDL, and all of them are contained in this repository.
Table of Contents
- FocusTerra Realtime Wave Simulator
- Table of Contents
- Project Organization
- Resources
- Building the Project
- User Manual
-
Documentation
- Architecture
-
Classes
- Drawer (drawer.hpp, drawer.cpp)
- DrawingHandler (drawing_handler.hpp, drawing_handler.cpp)
- EfficientBlock (efficient_block.hpp, efficient_block.cpp)
- EventLogger (event_logger.hpp, event_logger.cpp)
- GuiHandler (gui_handler.hpp, gui_handler.cpp)
- Infrastructure (infrastructure.hpp, infrastructure.cpp)
- InputHandler (input_handler.hpp, input_handler.cpp)
- Message (message.hpp, message.cpp)
- PatternHandler (pattern_handler.hpp, pattern_handler.cpp)
- Pevent (pevent.hpp, pevent.cpp)
- Shader (shader.hpp, shader.cpp)
- SlimBlockchainHandler (slim_blockchain_handler.hpp, slim_blockchain_handler.cpp)
- TimeoutHandler (timeout_handler.hpp, timeout_handler.cpp)
- Toolbox (toolbox.hpp, toolbox.cpp)
- WaveHandler (wave_handler.hpp, wave_handler.cpp)
- Enums (enums.hpp)
- ImGui Customization
- GLSL Shaders
- Workflow: Sample main function
Project Organization
The repo is organized in the following folders:
-
src
(and subfolders) contains all.cpp
-
include
(and subfolders) contains all headers -
shaders
contains all GLSL shaders -
lib
contains libraries -
FocusTerra
contains the Visual Studio project file -
FocusTerra\x64\Release
andFocusTerra\x64\Debug
contain the executables -
build
is left over from the macOS days (contains a currently brokenMakefile
)
Resources
Resources are organized in a single folder called ft_top
. It contains the following:
- A folder
bin
that contains the executable andSDL2.dll
- A folder
fonts
that contains the font used by the GUI, namelyCousine-Regular.ttf
- A folder
resource
that contains- The colour palette in
ft_palette.conf
,ft_palette.texture
- The Image Button images in the folder
images
- A folder
textures
that contains the predefined structure textures. There are two versions, one for the FocusTerra resolution (inrocket
), and one for Pascal's resolution (inhome
).
- The colour palette in
- A folder
shaders
that contains the used GLSL shaders.
The program accesses these resources at runtime.
Building the Project
Windows
In order to build the project, the following steps must be followed
- Open the project in Visual Studio 2019
- Make sure the following files are excluded from the build (
Rightclick
,Properties
,Excluded from Build
,Yes
:block.hpp
blockchain_handler.hpp
block.cpp
blockchain_handler.cpp
imgui_example_sdl_opengl3.cpp
main.cpp
main_3d.cpp
main_refactored.cpp
- There should be a lot of include-errors reported. To fix this, adjust the paths:
- In the
Solution Explorer
, right click onFocusTerra
and selectProperties
- Navigate to
VCC Directories
and adjust theInclude Directories
. They should point toinclude
include\imgui
-
SDL2-2.0.14\include
(e.g. in WindowsSDL, or vclib (not in project))
- Also adjust the
Library Directories
. They should point toSDL2-2.0.14\lib\x64
. - The linked libraries can be seen in
Linker
,Input
,Additional Dependencies
. They should not require change, and should includeSDL2.lib
,SDL2main.lib
andopengl32.lib
.
- In the
- Open
main_testing.cpp
. This contains themain
function. Adjust it for the target system:- Adjust the screen resolution using the
#defines
at the top. Predefined are the resolutions for the FocusTerra screen and for Pascal's screen. - Adjust the
top_path
to point to the resource folder (i.e.ft_top
). - Adjust the Derived paths, where necessary. Potentially the
tex_path
may need adjustment. - Adjust the
tex_offscreen_*
variables to reflect the used texture dimensions.
- Adjust the screen resolution using the
- Open
input_handler.cpp
.- For a touchscreen, send an event after the
SDL_FINGER*
cases. On non-touch devices, send events after theSDL_MOUSE*
events.
- For a touchscreen, send an event after the
- Open
slim_blockchain_handler.cpp
- Depending on the system, uncomment or comment out the section marked
Uncomment on a touchscreen
.
- Depending on the system, uncomment or comment out the section marked
- Open
drawing_handler.cpp
- Depending on the system, uncomment or comment out the section marked
Uncomment on a touchscreen
.
- Depending on the system, uncomment or comment out the section marked
- Open
gui_handler.cpp
- Depending on the system, change the gui drawcall towards the end in
GuiHandler::update
. - Depending on the system, comment out or uncomment the two sections marked
Uncomment on a touchscreen
.
- Depending on the system, change the gui drawcall towards the end in
- Rightclick on
FocusTerra
, selectBuild
. - When the building is finished, create a
ft_top
folder according to the specifications above, and place the executable in thebin
folder. If there are library issues, also place a copy ofSDL2.dll
in thebin
folder. - Now the application is ready to be run.
macOS
Building on macOS is currently not supported.
User Manual
Todo
Documentation
The following is a documentation for all the code used in the project. As the project is currently at development halt, there are a few known issues that can not be addressed for the time being. They are pointed out in their respective sections.
Architecture
Todo
Classes
drawer.hpp, drawer.cpp)
Drawer (Description
A Drawer
is an object that can draw a single line of segments to the screen.
It handles single touch of the Zeichnen
functionality.
Note that this class relies on the caller to its methods to take care of the Opengl state (using shaders, binding buffers, etc.).
See DrawingHandler
for more information on how this class is to be used.
The coordinates used are typically OpenGL coordinates, i.e. in the range [-1, 1].
Usage
- Construct object (e.g. when new finger goes down)
-
start_drawing
with initial position (e.g. with finger down position) - Upon new location (e.g. finger motion to new position), setup Opengl state (use shader
draw
, bind FBO, bind VAO, bind VBO, set viewport, bind textures) and calldraw
. Callredraw
with all required FBO/texture combinations. - Destruct when drawing this line is finished (e.g. finger is lifted)
Constructors and Destructors
-
Drawer(Toolbox&)
-
Drawer(const Drawer&)
-
~Drawer()
Public Function Members
-
void start_drawing(const float x, const float y)
:-
Description
Start drawing at coordinates (
x
,y
) (typically fingerdown location). Doesn't draw anything. -
Preconditions
-
Postconditions
Drawing start is set to (x, y).
-
Notes
Nothing is drawn by this function. (x, y) are typically the fingerdown coordinates.
-
-
bool draw(const float x, const float y, Toolbox& tb, bool drawing)
-
DESCRIPTION
Draw a stroke from the last position to (x, y), with strokewidth controlled by
drawing
(true
->tb.drawing_width
,false
->tb.erasing_width
). -
PRECONDITIONS
A
GL_ARRAY_BUFFER
is bound and the Opengl state is set as desired -
POSTCONDITIONS
The points of the new segment have been calculated, a call to
glDrawArrays
has been done to draw the segment.Returns
true
if something was drawn, andfalse
else (typically when new point is same as last point). -
NOTES
-
-
void redraw(Toolbox&)
- Desc: Redraws the last drawn stroke.
-
Pre: Since the last call to
draw
, the then-boundGL_ARRAY_BUFFER
has not been modified. -
Post: A drawcall
glDrawArrays
has been issued. -
Notes: Undefined behaviour if
draw
has never been called, or the precondition is violated.
-
void erase(const float x, const float y, Toolbox& tb)
DEPRECATED- Desc:
- Pre:
- Post:
-
Notes: Use
draw(x, y, tb, false)
instead.
-
int num_drawn()
-
Desc: Returns the number of calls to
draw
anderase
that have been performed by this object. - Pre:
- Post:
- Notes:
-
Desc: Returns the number of calls to
Private Function Members
-
bool calculate_points_(Toolbox& tb, bool drawing)
Calculates the triangulation of the stroke represented by the internal parameters and stores them in
points_
. Thedrawing
argument switches the stroke width (true
->tb.drawing_width
,false
->tb.erasing_width
). Usestb.texture_w
.Returns
true
if new points were calculated, andfalse
else (typically if the internal state represents an equal new and old point).
Public Data Members
N/A
Private Data Members
-
float x0_, y0_, x1_, y1_
Internal representation of old ('0') and new ('1') points.
-
int num_drawn_
Number of calls to
draw
anderase
. -
std::vector<float> points_
Vertex coordinates that represent the stroke between old and new points, as calculated by
calculate_points_
.
Notes
N/A
drawing_handler.hpp, drawing_handler.cpp)
DrawingHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
efficient_block.hpp, efficient_block.cpp)
EfficientBlock (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
event_logger.hpp, event_logger.cpp)
EventLogger (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
gui_handler.hpp, gui_handler.cpp)
GuiHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
infrastructure.hpp, infrastructure.cpp)
Infrastructure (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
input_handler.hpp, input_handler.cpp)
InputHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
message.hpp, message.cpp)
Message (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
pattern_handler.hpp, pattern_handler.cpp)
PatternHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
pevent.hpp, pevent.cpp)
Pevent (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
shader.hpp, shader.cpp)
Shader (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
slim_blockchain_handler.hpp, slim_blockchain_handler.cpp)
SlimBlockchainHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
timeout_handler.hpp, timeout_handler.cpp)
TimeoutHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
toolbox.hpp, toolbox.cpp)
Toolbox (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
wave_handler.hpp, wave_handler.cpp)
WaveHandler (Description
Todo
Usage
Todo
Constructors and Destructors
Todo
Public Function Members
Todo
Private Function Members
Todo
Public Data Members
Todo
Private Data Members
Todo
Notes
Todo
enums.hpp)
Enums (MSTATE
SSTATE
GSTATE
MESSAGETARGET
BLOCKCHAINMESSAGE
PATTERNMESSAGE
DRAWERMESSAGE
GUIMESSAGE
WAVEMESSAGE
PEVENTTYPE
ImGui Customization
The ImGui library has been customized in the following way:
-
imgui_widgets.cpp
:-
ImGui::PlotEx
: Removed tooltip
-
-
imgui_impl_sdl.h
:-
ImGui_ImplSDL2_Touch_ProcessEvent
: Added declaration -
ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons
: Added declaration
-
-
imgui_impl_sdl.cpp
:-
ImGui_ImplSDL2_Touch_ProcessEvent
: Added implementation -
ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons
: Added implementation -
ImGui_ImplSDL2_NewFrame
: Changed to callImGui_ImplSDL2_Touch_UpdateMousePosAndButtons
instead ofImGui_ImplSDL2_UpdateMousePosAndButtons
-
-
Notes:
- On touch devices, one should generally call
ImGui_ImplSDL2_Touch_ProcessEvent
rather thanImGui_ImplSDL2_ProcessEvent
- To run
ImGui
demos, one must revert the change toImGui_ImplSDL2_NewFrame
(see comments).
- On touch devices, one should generally call
GLSL Shaders
combine_damping
copy_texture
draw
draw_blocks
render2d
stepwave
main
function
Workflow: Sample Todo