Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Clone of toolbox before its destruction for removiong LFS dependency.
  • Loading branch information
FlorianLance committed Jul 26, 2023
0 parents commit 0ecbcb3
Show file tree
Hide file tree
Showing 1,110 changed files with 466,003 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

*.pro.user
*.pro.user*
.qmake.stash
Makefile

cpp-projects/_build/bin/**/*.dll
cpp-projects/_build/bin/**/*.exe
cpp-projects/_build/bin/**/*.lib
cpp-projects/_build/bin/**/*.pdb
cpp-projects/_build/bin/**/*.ilk
cpp-projects/_build/bin/**/*.pdb
cpp-projects/_build/bin/**/*.exp
cpp-projects/_build/bin/**/*logs.html
cpp-projects/_build/bin/**/logs
cpp-projects/_build/bin/**/k4a_*.html
cpp-projects/_build/bin/**/imgui.ini
cpp-projects/_build/bin/**/*.onnx

cpp-projects/_build/bin/base
cpp-projects/_build/bin/demos
cpp-projects/_build/temp
cpp-projects/_thirdparty

.qtc_clangd

## bin
cpp-projects/**/Makefile
cpp-projects/**/Makefile*
cpp-projects/**/*.pch
cpp-projects/**/*.rc



91 changes: 91 additions & 0 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
**Credits**
=======

Authors
-------

* Florian Lance


Contributors
-------

* Florian Lance

Thirdparty
----------

* **stb**: https://github.com/nothings/stb

ALTERNATIVE A - MIT License

Copyright (c) 2017 Sean Barrett
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

------------------------------------------

* **Assimp**: https://github.com/assimp/assimp

Open Asset Import Library (assimp)

Copyright (c) 2006-2020, assimp team
All rights reserved.

Redistribution and use of this software in source and binary forms,
with or without modification, are permitted provided that the
following conditions are met:


1. Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.

2. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other
materials provided with the distribution.

3. Neither the name of the assimp team, nor the names of its
contributors may be used to endorse or promote products
derived from this software without specific prior
written permission of the assimp team.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE

------------------------------------------



catch
signals
turbojpg
fastpfor
opencv
kinect2
kinect4
boost

qt
24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@


Toolset
MIT License

Copyright (c) 2018 Florian Lance

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# toolset
Geometry library, OpenGL engine and various utilities
190 changes: 190 additions & 0 deletions cpp-projects/3d-engine/3d-engine.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@

# /*******************************************************************************
# ** Toolset-3d-engine **
# ** MIT License **
# ** Copyright (c) [2018] [Florian Lance] **
# ** **
# ** Permission is hereby granted, free of charge, to any person obtaining a **
# ** copy of this software and associated documentation files (the "Software"), **
# ** to deal in the Software without restriction, including without limitation **
# ** the rights to use, copy, modify, merge, publish, distribute, sublicense, **
# ** and/or sell copies of the Software, and to permit persons to whom the **
# ** Software is furnished to do so, subject to the following conditions: **
# ** **
# ** The above copyright notice and this permission notice shall be included in **
# ** all copies or substantial portions of the Software. **
# ** **
# ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR **
# ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, **
# ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL **
# ** THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER **
# ** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING **
# ** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER **
# ** DEALINGS IN THE SOFTWARE. **
# ** **
# ********************************************************************************/

####################################### repo
TOOLBOX_REPOSITORY_DIR = $$PWD"/../.."

####################################### PRI
# defines compiling options
include(../ts-settings.pri)
# defines projects paths and variables
include(../ts-projects.pri)
# defines thirdparty includes and libs
include(../ts-thirdparty.pri)

####################################### TARGET
equals(CFG, "debug"){
TARGET = 3d-engined
}
equals(CFG, "release"){
TARGET = 3d-engine
}

####################################### TEMPLATE
TEMPLATE = lib
CONFIG += staticlib
CONFIG -= console

####################################### BUILD FILES
OBJECTS_DIR = $$3D_ENGINE_OBJ
DESTDIR = $$3D_ENGINE_DEST

####################################### CONFIG
CONFIG -= qt

####################################### INCLUDES
INCLUDEPATH += \
# tool
$$BASE_INCLUDES\
$$OPENGL_UTILITY_INCLUDES\
# local
$$3D_ENGINE_INCLUDES"/imgui"\
# thirdparty
$$GLEW_INCLUDES\
$$SFML_INCLUDES\
$$ASSIMP_INCLUDES\
$$KINECT4_INCLUDES \

####################################### LIBRAIRIES

PRE_TARGETDEPS += \
# tool
$$BASE_LIB_DEP \
$$OPENGL_UTILITY_LIB_DEP \

LIBS +=\
# tool
$$BASE_LIB\
$$OPENGL_UTILITY_LIB \
# thirdparty
$$WINDOWS_LIBS \
$$GLEW_LIBS \
$$SFML_LIBS \
$$ASSIMP_LIBS\
$$KINECT4_LIBS \

####################################### PROJECT FILES

HEADERS += \
# ui
imgui-tb/imgui_k4_calibrator_drawer.hpp \
imgui-tb/imgui_k4_direct_drawer.hpp \
immediate_ui.hpp \
# resources
resources.hpp \
# engine
engine/drawers_manager.hpp \
engine/managers.hpp \
engine/models_manager.hpp \
engine/shaders_manager.hpp \
engine/textures_manager.hpp \
# windows
windows/base_sfml_gl_window.hpp \
# imgui
imgui/imgui.h \
imgui/imconfig.h \
imgui/imgui_internal.h \
imgui/imstb_rectpack.h \
imgui/imstb_textedit.h \
imgui/imstb_truetype.h \
imgui/misc/cpp/imgui_stdlib.h \
# imgui-extra
imgui/extra/imgui_markdown.h \
imgui/extra/implot/implot.h \
imgui/extra/implot/implot_internal.h \
imgui/extra/imgui-node-editor/crude_json.h \
imgui/extra/imgui-node-editor/imgui_bezier_math.h \
imgui/extra/imgui-node-editor/imgui_bezier_math.inl \
imgui/extra/imgui-node-editor/imgui_canvas.h \
imgui/extra/imgui-node-editor/imgui_extra_math.h \
imgui/extra/imgui-node-editor/imgui_extra_math.inl \
imgui/extra/imgui-node-editor/imgui_node_editor.h \
imgui/extra/imgui-node-editor/imgui_node_editor_internal.h \
imgui/extra/imgui-node-editor/imgui_node_editor_internal.inl \
imgui/extra/ImGuiFileDialog.h \
imgui/extra/ImGuiFileDialogConfig.h \
# imgui-sfml
imgui-sfml/imgui-SFML.h \
imgui-sfml/imgui-SFML_export.h \
# imgui-tb
imgui-tb/imgui_convert.hpp \
imgui-tb/imgui_fbo_ui_drawer.hpp \
imgui-tb/imgui_helper.hpp \
imgui-tb/imgui_k4_cloud_drawer.hpp \
imgui-tb/imgui_k4_clouds_scene_drawer.hpp \
imgui-tb/imgui_k4_device_drawer.hpp \
imgui-tb/imgui_k4_player_drawer.hpp \
imgui-tb/imgui_k4_recorder_drawer.hpp \
imgui-tb/imgui_k4_ui_drawer.hpp \
imgui-tb/imgui_logs.hpp \
imgui-tb/imgui_texture_ui_drawer.hpp \
imgui-tb/imgui_types.hpp \
imgui-tb/imgui_ui_drawer.hpp \


SOURCES += \
# resources
imgui-tb/imgui_k4_calibrator_drawer.cpp \
imgui-tb/imgui_k4_direct_drawer.cpp \
resources/resources.cpp \
# engine
engine/drawers_manager.cpp \
engine/models_manager.cpp \
engine/shaders_manager.cpp \
engine/textures_manager.cpp \
# windows
windows/base_sfml_gl_window.cpp \
# imgui
imgui/imgui.cpp \
imgui/imgui_draw.cpp \
imgui/imgui_widgets.cpp \
imgui/imgui_tables.cpp \
imgui/misc/cpp/imgui_stdlib.cpp \
# imgui-extra
imgui/extra/implot/implot.cpp \
imgui/extra/implot/implot_items.cpp \
imgui/extra/imgui-node-editor/crude_json.cpp \
imgui/extra/imgui-node-editor/imgui_canvas.cpp \
imgui/extra/imgui-node-editor/imgui_node_editor.cpp \
imgui/extra/imgui-node-editor/imgui_node_editor_api.cpp \
imgui/extra/ImGuiFileDialog.cpp \
# imgui-sfml
imgui-sfml/imgui-SFML.cpp \
# imgui-tb
imgui-tb/imgui_fbo_ui_drawer.cpp \
imgui-tb/imgui_k4_cloud_drawer.cpp \
imgui-tb/imgui_k4_clouds_scene_drawer.cpp \
imgui-tb/imgui_k4_device_drawer.cpp \
imgui-tb/imgui_k4_player_drawer.cpp \
imgui-tb/imgui_k4_recorder_drawer.cpp \
imgui-tb/imgui_k4_ui_drawer.cpp \
imgui-tb/imgui_logs.cpp \
imgui-tb/imgui_texture_ui_drawer.cpp \
imgui-tb/imgui_ui_drawer.cpp \




24 changes: 24 additions & 0 deletions cpp-projects/3d-engine/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@


Toolbox-3d-engine
MIT License

Copyright (c) 2018 Florian Lance

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 0ecbcb3

Please sign in to comment.