Compare commits
No commits in common. "main" and "v1.2.2" have entirely different histories.
@ -8,9 +8,6 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
Windows-AMD64-Build:
|
Windows-AMD64-Build:
|
||||||
runs-on: windows-x86_64
|
runs-on: windows-x86_64
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: powershell
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -22,9 +19,8 @@ jobs:
|
|||||||
- name: Building/Compiling/Installing Project
|
- name: Building/Compiling/Installing Project
|
||||||
run: |
|
run: |
|
||||||
cd ${{ gitea.workspace }}
|
cd ${{ gitea.workspace }}
|
||||||
mkdir build
|
cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default .
|
||||||
cd build
|
cd build
|
||||||
cmake -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT\scripts\buildsystems\vcpkg.cmake" ..
|
|
||||||
cmake --build . --config Release
|
cmake --build . --config Release
|
||||||
cmake --install .
|
cmake --install .
|
||||||
|
|
||||||
@ -32,12 +28,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd ${{ gitea.workspace }}
|
cd ${{ gitea.workspace }}
|
||||||
mkdir bin
|
mkdir bin
|
||||||
mv build/Release/EHS_Dyn.dll bin
|
|
||||||
mv build/Release/StrToHash.exe bin
|
mv build/Release/StrToHash.exe bin
|
||||||
mv build/Release/zlib1.dll bin
|
mv build/Release/zlib1.dll bin
|
||||||
mkdir lib
|
mkdir lib
|
||||||
mv build/Release/EHS_Stc.lib lib
|
mv build/Release/EHS.lib lib
|
||||||
mv build/Release/EHS_Dyn.lib lib
|
|
||||||
|
|
||||||
- name: Zipping Binaries
|
- name: Zipping Binaries
|
||||||
run: |
|
run: |
|
||||||
@ -55,7 +49,6 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
ehs-windows-amd64.zip
|
ehs-windows-amd64.zip
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||||
pre_release: false
|
|
||||||
|
|
||||||
Linux-AMD64-Build:
|
Linux-AMD64-Build:
|
||||||
runs-on: linux-x86_64
|
runs-on: linux-x86_64
|
||||||
@ -65,7 +58,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Installing Dependencies
|
- name: Installing Dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo pacman -S --noconfirm doxygen zip alsa-lib libxcb xcb-util-cursor pipewire
|
sudo pacman -S --noconfirm doxygen zip alsa-lib libxcb xcb-util-cursor
|
||||||
|
|
||||||
- name: Generating Documentation
|
- name: Generating Documentation
|
||||||
run: |
|
run: |
|
||||||
@ -80,12 +73,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Creating Appropriate Directories
|
- name: Creating Appropriate Directories
|
||||||
run: |
|
run: |
|
||||||
cd ${{ gitea.workspace }}
|
|
||||||
mkdir bin
|
mkdir bin
|
||||||
mv libEHS_Dyn.so bin
|
|
||||||
mv StrToHash bin
|
mv StrToHash bin
|
||||||
mkdir lib
|
mkdir lib
|
||||||
mv libEHS_Stc.a lib
|
mv libEHS.a lib
|
||||||
|
|
||||||
- name: Zipping Binaries
|
- name: Zipping Binaries
|
||||||
run: zip -r ehs-linux-amd64.zip include bin lib docs LICENSE RADME.md
|
run: zip -r ehs-linux-amd64.zip include bin lib docs LICENSE RADME.md
|
||||||
@ -101,7 +92,6 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
ehs-linux-amd64.zip
|
ehs-linux-amd64.zip
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||||
pre_release: false
|
|
||||||
|
|
||||||
Linux-AARCH64-Build:
|
Linux-AARCH64-Build:
|
||||||
runs-on: linux-aarch64
|
runs-on: linux-aarch64
|
||||||
@ -110,7 +100,7 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Installing Dependencies
|
- name: Installing Dependencies
|
||||||
run: sudo apt install -y doxygen zip libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev libpipewire-0.3-dev
|
run: sudo apt install -y doxygen zip libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev
|
||||||
|
|
||||||
- name: Generating Documentation
|
- name: Generating Documentation
|
||||||
run: |
|
run: |
|
||||||
@ -125,12 +115,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Creating Appropriate Directories
|
- name: Creating Appropriate Directories
|
||||||
run: |
|
run: |
|
||||||
cd ${{ gitea.workspace }}
|
|
||||||
mkdir bin
|
mkdir bin
|
||||||
mv libEHS_Dyn.so bin
|
|
||||||
mv StrToHash bin
|
mv StrToHash bin
|
||||||
mkdir lib
|
mkdir lib
|
||||||
mv libEHS_Stc.a lib
|
mv libEHS.a lib
|
||||||
|
|
||||||
- name: Zipping Binaries
|
- name: Zipping Binaries
|
||||||
run: zip -r ehs-linux-aarch64.zip include bin lib docs LICENSE README.md
|
run: zip -r ehs-linux-aarch64.zip include bin lib docs LICENSE README.md
|
||||||
@ -145,5 +133,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
files: |-
|
files: |-
|
||||||
ehs-linux-aarch64.zip
|
ehs-linux-aarch64.zip
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||||
pre_release: false
|
|
378
CMakeLists.txt
378
CMakeLists.txt
@ -13,8 +13,7 @@ project(EHS CXX C)
|
|||||||
|
|
||||||
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
|
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
|
||||||
set(IS_OS_WINDOWS TRUE)
|
set(IS_OS_WINDOWS TRUE)
|
||||||
set(USER_HOME_DIRECTORY "$ENV{USERPROFILE}")
|
set(USER_HOME_DIRECTORY $ENV{USERPROFILE})
|
||||||
string(REPLACE "\\" "/" USER_HOME_DIRECTORY "${USER_HOME_DIRECTORY}")
|
|
||||||
message("Building for the Windows operating system.")
|
message("Building for the Windows operating system.")
|
||||||
elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Linux")
|
elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Linux")
|
||||||
set(IS_OS_LINUX TRUE)
|
set(IS_OS_LINUX TRUE)
|
||||||
@ -40,203 +39,182 @@ endif ()
|
|||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
|
||||||
set(EHS_SOURCES
|
set(EHS_SOURCES
|
||||||
src/EHS.cpp include/ehs/EHS.h
|
src/EHS.cpp include/ehs/EHS.h
|
||||||
src/Type.cpp include/ehs/Type.h
|
src/Type.cpp include/ehs/Type.h
|
||||||
src/BaseObj.cpp include/ehs/BaseObj.h
|
src/BaseObj.cpp include/ehs/BaseObj.h
|
||||||
src/GC.cpp include/ehs/GC.h
|
src/GC.cpp include/ehs/GC.h
|
||||||
src/Log.cpp include/ehs/Log.h
|
src/Log.cpp include/ehs/Log.h
|
||||||
src/URI.cpp include/ehs/URI.h
|
src/URI.cpp include/ehs/URI.h
|
||||||
src/Math.cpp include/ehs/Math.h
|
src/Math.cpp include/ehs/Math.h
|
||||||
src/Color4.cpp include/ehs/Color4.h
|
src/Color4.cpp include/ehs/Color4.h
|
||||||
src/Color3.cpp include/ehs/Color3.h
|
src/Color3.cpp include/ehs/Color3.h
|
||||||
src/Version.cpp include/ehs/Version.h
|
src/Version.cpp include/ehs/Version.h
|
||||||
src/Base64.cpp include/ehs/Base64.h
|
src/Base64.cpp include/ehs/Base64.h
|
||||||
src/Data.cpp include/ehs/Data.h
|
src/Data.cpp include/ehs/Data.h
|
||||||
src/Range.cpp include/ehs/Range.h
|
src/Range.cpp include/ehs/Range.h
|
||||||
src/Util.cpp include/ehs/Util.h
|
src/Util.cpp include/ehs/Util.h
|
||||||
src/Task.cpp include/ehs/Task.h
|
src/Task.cpp include/ehs/Task.h
|
||||||
src/DataType.cpp include/ehs/DataType.h
|
src/DataType.cpp include/ehs/DataType.h
|
||||||
include/ehs/Anchor.h
|
include/ehs/Anchor.h
|
||||||
include/ehs/Dock.h
|
include/ehs/Dock.h
|
||||||
include/ehs/HashMap.h
|
include/ehs/HashMap.h
|
||||||
include/ehs/HRNG.h
|
include/ehs/HRNG.h
|
||||||
include/ehs/Link.h
|
include/ehs/Link.h
|
||||||
include/ehs/LinkedList.h
|
include/ehs/LinkedList.h
|
||||||
include/ehs/Mat2.h
|
include/ehs/Mat2.h
|
||||||
include/ehs/Mat3.h
|
include/ehs/Mat3.h
|
||||||
include/ehs/Mat4.h
|
include/ehs/Mat4.h
|
||||||
include/ehs/PRNG.h
|
include/ehs/PRNG.h
|
||||||
include/ehs/Quat.h
|
include/ehs/Quat.h
|
||||||
include/ehs/Rect.h
|
include/ehs/Rect.h
|
||||||
include/ehs/Str.h
|
include/ehs/Str.h
|
||||||
include/ehs/Types.h
|
include/ehs/Types.h
|
||||||
include/ehs/UTF.h
|
include/ehs/UTF.h
|
||||||
include/ehs/Vec2.h
|
include/ehs/Vec2.h
|
||||||
include/ehs/Vec3.h
|
include/ehs/Vec3.h
|
||||||
include/ehs/Vec4.h
|
include/ehs/Vec4.h
|
||||||
include/ehs/Serializer.h
|
include/ehs/Serializer.h
|
||||||
include/ehs/Array.h
|
include/ehs/Array.h
|
||||||
include/ehs/Vector.h
|
include/ehs/Vector.h
|
||||||
include/ehs/SArray.h
|
include/ehs/SArray.h
|
||||||
src/PtrData.cpp include/ehs/PtrData.h
|
src/PtrData.cpp include/ehs/PtrData.h
|
||||||
include/ehs/UniPtr.h
|
include/ehs/UniPtr.h
|
||||||
include/ehs/ShdPtr.h
|
include/ehs/ShdPtr.h
|
||||||
include/ehs/WkPtr.h
|
include/ehs/WkPtr.h
|
||||||
|
|
||||||
src/db/DbVarTmpl.cpp include/ehs/db/DbVarTmpl.h
|
src/db/DbVarTmpl.cpp include/ehs/db/DbVarTmpl.h
|
||||||
|
|
||||||
src/system/CPU.cpp include/ehs/system/CPU.h
|
src/system/CPU.cpp include/ehs/system/CPU.h
|
||||||
src/system/Thread.cpp include/ehs/system/Thread.h
|
src/system/Thread.cpp include/ehs/system/Thread.h
|
||||||
src/system/BaseMutex.cpp include/ehs/system/BaseMutex.h
|
src/system/BaseMutex.cpp include/ehs/system/BaseMutex.h
|
||||||
src/system/BaseSemaphore.cpp include/ehs/system/BaseSemaphore.h
|
src/system/BaseSemaphore.cpp include/ehs/system/BaseSemaphore.h
|
||||||
src/system/BaseSystem.cpp include/ehs/system/BaseSystem.h
|
src/system/BaseSystem.cpp include/ehs/system/BaseSystem.h
|
||||||
src/system/BaseOpen.cpp include/ehs/system/BaseOpen.h
|
src/system/BaseOpen.cpp include/ehs/system/BaseOpen.h
|
||||||
include/ehs/system/Architecture.h
|
include/ehs/system/Architecture.h
|
||||||
include/ehs/system/Mutex.h
|
include/ehs/system/Mutex.h
|
||||||
include/ehs/system/Open.h
|
include/ehs/system/Open.h
|
||||||
include/ehs/system/OS.h
|
include/ehs/system/OS.h
|
||||||
include/ehs/system/Semaphore.h
|
include/ehs/system/Semaphore.h
|
||||||
include/ehs/system/System.h
|
include/ehs/system/System.h
|
||||||
|
|
||||||
src/json/Json.cpp include/ehs/json/Json.h
|
src/json/Json.cpp include/ehs/json/Json.h
|
||||||
src/json/JsonBase.cpp include/ehs/json/JsonBase.h
|
src/json/JsonBase.cpp include/ehs/json/JsonBase.h
|
||||||
src/json/JsonNum.cpp include/ehs/json/JsonNum.h
|
src/json/JsonNum.cpp include/ehs/json/JsonNum.h
|
||||||
src/json/JsonBool.cpp include/ehs/json/JsonBool.h
|
src/json/JsonBool.cpp include/ehs/json/JsonBool.h
|
||||||
src/json/JsonStr.cpp include/ehs/json/JsonStr.h
|
src/json/JsonStr.cpp include/ehs/json/JsonStr.h
|
||||||
src/json/JsonObj.cpp include/ehs/json/JsonObj.h
|
src/json/JsonObj.cpp include/ehs/json/JsonObj.h
|
||||||
src/json/JsonArray.cpp include/ehs/json/JsonArray.h
|
src/json/JsonArray.cpp include/ehs/json/JsonArray.h
|
||||||
src/json/JsonVar.cpp include/ehs/json/JsonVar.h
|
src/json/JsonVar.cpp include/ehs/json/JsonVar.h
|
||||||
|
|
||||||
src/io/Resource.cpp include/ehs/io/Resource.h
|
src/io/Resource.cpp include/ehs/io/Resource.h
|
||||||
src/io/Console.cpp include/ehs/io/Console.h
|
src/io/Console.cpp include/ehs/io/Console.h
|
||||||
src/io/RIFF_Chunk.cpp include/ehs/io/RIFF_Chunk.h
|
src/io/RIFF_Chunk.cpp include/ehs/io/RIFF_Chunk.h
|
||||||
src/io/RIFF.cpp include/ehs/io/RIFF.h
|
src/io/RIFF.cpp include/ehs/io/RIFF.h
|
||||||
src/io/BaseWindow.cpp include/ehs/io/BaseWindow.h
|
src/io/BaseWindow.cpp include/ehs/io/BaseWindow.h
|
||||||
src/io/BaseFile.cpp include/ehs/io/BaseFile.h
|
src/io/BaseFile.cpp include/ehs/io/BaseFile.h
|
||||||
src/io/Glyph.cpp include/ehs/io/Glyph.h
|
src/io/Glyph.cpp include/ehs/io/Glyph.h
|
||||||
src/io/FontAtlas.cpp include/ehs/io/FontAtlas.h
|
src/io/FontAtlas.cpp include/ehs/io/FontAtlas.h
|
||||||
src/io/BaseFileMonitor.cpp include/ehs/io/BaseFileMonitor.h
|
src/io/BaseFileMonitor.cpp include/ehs/io/BaseFileMonitor.h
|
||||||
include/ehs/io/COM.h
|
include/ehs/io/COM.h
|
||||||
include/ehs/io/File.h
|
include/ehs/io/File.h
|
||||||
include/ehs/io/FileMonitor.h
|
include/ehs/io/FileMonitor.h
|
||||||
include/ehs/io/Window.h
|
include/ehs/io/Window.h
|
||||||
|
|
||||||
include/ehs/io/socket/Socket.h
|
src/io/socket/Request.cpp include/ehs/io/socket/Request.h
|
||||||
src/io/socket/Request.cpp include/ehs/io/socket/Request.h
|
src/io/socket/Response.cpp include/ehs/io/socket/Response.h
|
||||||
src/io/socket/Response.cpp include/ehs/io/socket/Response.h
|
src/io/socket/BaseDNS.cpp include/ehs/io/socket/BaseDNS.h
|
||||||
src/io/socket/BaseDNS.cpp include/ehs/io/socket/BaseDNS.h
|
src/io/socket/BaseUDP.cpp include/ehs/io/socket/BaseUDP.h
|
||||||
include/ehs/io/socket/DNS.h
|
src/io/socket/BaseTCP.cpp include/ehs/io/socket/BaseTCP.h
|
||||||
src/io/socket/BaseUDP.cpp include/ehs/io/socket/BaseUDP.h
|
src/io/socket/SSL.cpp include/ehs/io/socket/SSL.h
|
||||||
include/ehs/io/socket/UDP.h
|
|
||||||
src/io/socket/BaseTCP.cpp include/ehs/io/socket/BaseTCP.h
|
|
||||||
include/ehs/io/socket/TCP.h
|
|
||||||
src/io/socket/SSL.cpp include/ehs/io/socket/SSL.h
|
|
||||||
|
|
||||||
include/ehs/io/socket/ehc/NetUtils.h
|
src/io/socket/rest/Twitch.cpp include/ehs/io/socket/rest/Twitch.h
|
||||||
src/io/socket/EHC.cpp include/ehs/io/socket/EHC.h
|
src/io/socket/rest/TwitchChat.cpp include/ehs/io/socket/rest/TwitchChat.h
|
||||||
src/io/socket/ehc/NetFrag.cpp include/ehs/io/socket/ehc/NetFrag.h
|
src/io/socket/rest/Spotify.cpp include/ehs/io/socket/rest/Spotify.h
|
||||||
src/io/socket/ehc/NetEnd.cpp include/ehs/io/socket/ehc/NetEnd.h
|
include/ehs/io/socket/Socket.h
|
||||||
src/io/socket/ehc/NetSys.cpp include/ehs/io/socket/ehc/NetSys.h
|
include/ehs/io/socket/TCP.h
|
||||||
src/io/socket/ehc/NetOp.cpp include/ehs/io/socket/ehc/NetOp.h
|
include/ehs/io/socket/UDP.h
|
||||||
|
include/ehs/io/socket/DNS.h
|
||||||
|
|
||||||
src/io/socket/rest/Twitch.cpp include/ehs/io/socket/rest/Twitch.h
|
src/io/audio/Audio.cpp include/ehs/io/audio/Audio.h
|
||||||
src/io/socket/rest/TwitchChat.cpp include/ehs/io/socket/rest/TwitchChat.h
|
src/io/audio/BaseAudioDevice.cpp include/ehs/io/audio/BaseAudioDevice.h
|
||||||
src/io/socket/rest/Spotify.cpp include/ehs/io/socket/rest/Spotify.h
|
src/io/audio/AudioCodec.cpp include/ehs/io/audio/AudioCodec.h
|
||||||
|
include/ehs/io/audio/AudioDevice.h
|
||||||
|
|
||||||
src/io/audio/Audio.cpp include/ehs/io/audio/Audio.h
|
src/io/img/PNG.cpp include/ehs/io/img/PNG.h
|
||||||
src/io/audio/BaseAudioDevice.cpp include/ehs/io/audio/BaseAudioDevice.h
|
src/io/img/Img.cpp include/ehs/io/img/Img.h
|
||||||
src/io/audio/AudioCodec.cpp include/ehs/io/audio/AudioCodec.h
|
src/io/img/PNG_Chunk.cpp include/ehs/io/img/PNG_Chunk.h
|
||||||
include/ehs/io/audio/AudioDevice.h
|
src/io/img/ImgCodec.cpp include/ehs/io/img/ImgCodec.h
|
||||||
|
|
||||||
src/io/img/PNG.cpp include/ehs/io/img/PNG.h
|
include/ehs/io/mdl/Vertex.h
|
||||||
src/io/img/Img.cpp include/ehs/io/img/Img.h
|
src/io/model/Mesh.cpp include/ehs/io/mdl/Mesh.h
|
||||||
src/io/img/PNG_Chunk.cpp include/ehs/io/img/PNG_Chunk.h
|
src/io/model/Bone.cpp include/ehs/io/mdl/Bone.h
|
||||||
src/io/img/ImgCodec.cpp include/ehs/io/img/ImgCodec.h
|
src/io/model/Mdl.cpp include/ehs/io/mdl/Mdl.h
|
||||||
|
src/io/model/Animation.cpp include/ehs/io/mdl/Animation.h
|
||||||
|
src/io/model/AnimBone.cpp include/ehs/io/mdl/AnimBone.h
|
||||||
|
src/io/model/KeyFrame.cpp include/ehs/io/mdl/KeyFrame.h
|
||||||
|
src/io/model/PropertyChange.cpp include/ehs/io/mdl/PropertyChange.h
|
||||||
|
|
||||||
include/ehs/io/mdl/Vertex.h
|
src/io/hid/ButtonState.cpp include/ehs/io/hid/ButtonState.h
|
||||||
src/io/model/Mesh.cpp include/ehs/io/mdl/Mesh.h
|
src/io/hid/Button.cpp include/ehs/io/hid/Button.h
|
||||||
src/io/model/Bone.cpp include/ehs/io/mdl/Bone.h
|
src/io/hid/Mouse.cpp include/ehs/io/hid/Mouse.h
|
||||||
src/io/model/Mdl.cpp include/ehs/io/mdl/Mdl.h
|
src/io/hid/Keyboard.cpp include/ehs/io/hid/Keyboard.h
|
||||||
src/io/model/Animation.cpp include/ehs/io/mdl/Animation.h
|
src/io/hid/HID.cpp include/ehs/io/hid/HID.h
|
||||||
src/io/model/AnimBone.cpp include/ehs/io/mdl/AnimBone.h
|
src/io/hid/InputHandler.cpp include/ehs/io/hid/InputHandler.h
|
||||||
src/io/model/KeyFrame.cpp include/ehs/io/mdl/KeyFrame.h
|
src/io/hid/Input.cpp include/ehs/io/hid/Input.h
|
||||||
src/io/model/PropertyChange.cpp include/ehs/io/mdl/PropertyChange.h
|
src/io/model/MdlCodec.cpp
|
||||||
|
include/ehs/io/mdl/MdlCodec.h
|
||||||
src/io/hid/ButtonState.cpp include/ehs/io/hid/ButtonState.h
|
include/ehs/io/UsbBase.h
|
||||||
src/io/hid/Button.cpp include/ehs/io/hid/Button.h
|
src/io/UsbBase.cpp
|
||||||
src/io/hid/Mouse.cpp include/ehs/io/hid/Mouse.h
|
include/ehs/db/DbTable.h
|
||||||
src/io/hid/Keyboard.cpp include/ehs/io/hid/Keyboard.h
|
include/ehs/db/DbObject.h
|
||||||
src/io/hid/HID.cpp include/ehs/io/hid/HID.h
|
include/ehs/db/DbVar.h
|
||||||
src/io/hid/InputHandler.cpp include/ehs/io/hid/InputHandler.h
|
src/db/DbVar.cpp
|
||||||
src/io/hid/Input.cpp include/ehs/io/hid/Input.h
|
include/ehs/db/Database.h
|
||||||
src/io/model/MdlCodec.cpp
|
src/db/DbObject.cpp
|
||||||
include/ehs/io/mdl/MdlCodec.h
|
src/db/Database.cpp
|
||||||
include/ehs/io/UsbBase.h
|
src/db/Database.cpp
|
||||||
src/io/UsbBase.cpp
|
src/db/DbTable.cpp
|
||||||
include/ehs/db/DbTable.h
|
include/ehs/io/BaseDirectory.h
|
||||||
include/ehs/db/DbObject.h
|
src/io/BaseDirectory.cpp
|
||||||
include/ehs/db/DbVar.h
|
include/ehs/io/Directory.h
|
||||||
src/db/DbVar.cpp
|
|
||||||
include/ehs/db/Database.h
|
|
||||||
src/db/DbObject.cpp
|
|
||||||
src/db/Database.cpp
|
|
||||||
src/db/Database.cpp
|
|
||||||
src/db/DbTable.cpp
|
|
||||||
include/ehs/io/BaseDirectory.h
|
|
||||||
src/io/BaseDirectory.cpp
|
|
||||||
include/ehs/io/Directory.h
|
|
||||||
include/ehs/io/socket/ehc/NetEnc.h
|
|
||||||
src/io/socket/ehc/NetEnc.cpp
|
|
||||||
include/ehs/io/socket/ehc/NetChannel.h
|
|
||||||
src/io/socket/ehc/NetChannel.cpp
|
|
||||||
include/ehs/io/socket/ehc/NetServerCh.h
|
|
||||||
include/ehs/io/socket/ehc/NetClientCh.h
|
|
||||||
src/io/socket/ehc/NetClientCh.cpp
|
|
||||||
src/io/socket/ehc/NetServerCh.cpp
|
|
||||||
src/io/socket/ehc/NetUtils.cpp
|
|
||||||
include/ehs/io/socket/BaseICMP.h src/io/socket/BaseICMP.cpp
|
|
||||||
include/ehs/io/socket/ICMP.h
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (IS_OS_WINDOWS)
|
if (IS_OS_WINDOWS)
|
||||||
list(APPEND EHS_SOURCES
|
list(APPEND EHS_SOURCES
|
||||||
src/io/socket/UDP_W32.cpp include/ehs/io/socket/UDP_W32.h
|
src/io/socket/UDP_W32.cpp include/ehs/io/socket/UDP_W32.h
|
||||||
src/io/socket/TCP_W32.cpp include/ehs/io/socket/TCP_W32.h
|
src/io/socket/TCP_W32.cpp include/ehs/io/socket/TCP_W32.h
|
||||||
src/io/socket/DNS_W32.cpp include/ehs/io/socket/DNS_W32.h
|
src/io/socket/DNS_W32.cpp include/ehs/io/socket/DNS_W32.h
|
||||||
src/system/Semaphore_W32.cpp include/ehs/system/Semaphore_W32.h
|
src/system/Semaphore_W32.cpp include/ehs/system/Semaphore_W32.h
|
||||||
src/system/System_W32.cpp include/ehs/system/System_W32.h
|
src/system/System_W32.cpp include/ehs/system/System_W32.h
|
||||||
src/system/Mutex_W32.cpp include/ehs/system/Mutex_W32.h
|
src/system/Mutex_W32.cpp include/ehs/system/Mutex_W32.h
|
||||||
src/system/Open_W32.cpp include/ehs/system/Open_W32.h
|
src/system/Open_W32.cpp include/ehs/system/Open_W32.h
|
||||||
src/io/audio/audioDevice_W32.cpp include/ehs/io/audio/audioDevice_W32.h
|
src/io/audio/audioDevice_W32.cpp include/ehs/io/audio/audioDevice_W32.h
|
||||||
src/io/File_W32.cpp include/ehs/io/File_W32.h
|
src/io/File_W32.cpp include/ehs/io/File_W32.h
|
||||||
src/io/FileMonitor_W32.cpp include/ehs/io/FileMonitor_W32.h
|
src/io/FileMonitor_W32.cpp include/ehs/io/FileMonitor_W32.h
|
||||||
src/io/Window_W32.cpp include/ehs/io/Window_W32.h
|
src/io/Window_W32.cpp include/ehs/io/Window_W32.h
|
||||||
src/io/COM.cpp include/ehs/io/COM.h
|
src/io/COM.cpp include/ehs/io/COM.h
|
||||||
src/system/CPU_MSVC_AMD64.asm src/HRNG_MSVC.asm src/Math_MSVC_AMD64.asm
|
src/system/CPU_MSVC_AMD64.asm src/HRNG_MSVC.asm src/Math_MSVC_AMD64.asm
|
||||||
src/io/Directory_W32.cpp include/ehs/io/Directory_W32.h
|
src/io/Directory_W32.cpp include/ehs/io/Directory_W32.h
|
||||||
include/ehs/io/socket/ICMP_W32.h src/io/socket/ICMP_W32.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
elseif (IS_OS_LINUX)
|
elseif (IS_OS_LINUX)
|
||||||
list(APPEND EHS_SOURCES
|
list(APPEND EHS_SOURCES
|
||||||
src/io/socket/UDP_BSD.cpp include/ehs/io/socket/UDP_BSD.h
|
src/io/socket/UDP_BSD.cpp include/ehs/io/socket/UDP_BSD.h
|
||||||
src/io/socket/TCP_BSD.cpp include/ehs/io/socket/TCP_BSD.h
|
src/io/socket/TCP_BSD.cpp include/ehs/io/socket/TCP_BSD.h
|
||||||
src/io/socket/DNS_LNX.cpp include/ehs/io/socket/DNS_LNX.h
|
src/io/socket/DNS_LNX.cpp include/ehs/io/socket/DNS_LNX.h
|
||||||
src/system/Semaphore_P.cpp include/ehs/system/Semaphore_P.h
|
src/system/Semaphore_P.cpp include/ehs/system/Semaphore_P.h
|
||||||
src/system/System_LNX.cpp include/ehs/system/System_LNX.h
|
src/system/System_LNX.cpp include/ehs/system/System_LNX.h
|
||||||
src/system/Open_UNX.cpp include/ehs/system/Open_UNX.h
|
src/system/Open_UNX.cpp include/ehs/system/Open_UNX.h
|
||||||
src/io/File_UNX.cpp include/ehs/io/File_UNX.h
|
src/io/File_UNX.cpp include/ehs/io/File_UNX.h
|
||||||
src/io/FileMonitor_UNX.cpp include/ehs/io/FileMonitor_UNX.h
|
src/io/FileMonitor_UNX.cpp include/ehs/io/FileMonitor_UNX.h
|
||||||
src/system/Mutex_PT.cpp include/ehs/system/Mutex_PT.h
|
src/system/Mutex_PT.cpp include/ehs/system/Mutex_PT.h
|
||||||
src/io/audio/AudioDevice_PW.cpp include/ehs/io/audio/AudioDevice_PW.h
|
src/io/audio/AudioDevice_ALSA.cpp include/ehs/io/audio/AudioDevice_ALSA.h
|
||||||
src/system/FileSystem.cpp include/ehs/system/FileSystem.h
|
src/system/FileSystem.cpp include/ehs/system/FileSystem.h
|
||||||
src/system/User.cpp include/ehs/system/User.h
|
src/system/User.cpp include/ehs/system/User.h
|
||||||
src/io/Directory_LNX.cpp include/ehs/io/Directory_LNX.h
|
src/io/Directory_LNX.cpp include/ehs/io/Directory_LNX.h
|
||||||
src/io/Usb_LNX.cpp include/ehs/io/Usb_LNX.h
|
src/io/Usb_LNX.cpp include/ehs/io/Usb_LNX.h
|
||||||
include/ehs/io/socket/ICMP_LNX.h src/io/socket/ICMP_LNX.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
#set(LINUX_WINDOW_SYSTEM "Wayland" CACHE STRING "Linux Window System")
|
set(LINUX_WINDOW_SYSTEM "Wayland" CACHE STRING "Linux Window System")
|
||||||
|
|
||||||
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")
|
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")
|
||||||
add_compile_definitions(EHS_WS_WAYLAND)
|
add_compile_definitions(EHS_WS_WAYLAND)
|
||||||
@ -261,37 +239,23 @@ endif()
|
|||||||
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
||||||
#message("${CMAKE_CXX_FLAGS}")
|
#message("${CMAKE_CXX_FLAGS}")
|
||||||
|
|
||||||
add_library(EHS_Stc STATIC ${EHS_SOURCES})
|
add_library(EHS ${EHS_SOURCES})
|
||||||
add_library(EHS_Dyn SHARED ${EHS_SOURCES})
|
|
||||||
add_executable(StrToHash src/StrToHash.cpp)
|
add_executable(StrToHash src/StrToHash.cpp)
|
||||||
|
|
||||||
target_compile_definitions(EHS_Dyn PRIVATE EHS_LIB_EXPORT)
|
target_include_directories(EHS PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
||||||
|
|
||||||
target_include_directories(EHS_Stc PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
|
||||||
target_include_directories(EHS_Dyn PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
|
||||||
|
|
||||||
if (IS_OS_LINUX)
|
if (IS_OS_LINUX)
|
||||||
set(CMAKE_INSTALL_PREFIX "${USER_HOME_DIRECTORY}/.local")
|
set(CMAKE_INSTALL_PREFIX "${USER_HOME_DIRECTORY}/.local")
|
||||||
install(TARGETS EHS_Dyn LIBRARY DESTINATION "bin")
|
|
||||||
|
|
||||||
find_package(PkgConfig REQUIRED)
|
|
||||||
pkg_check_modules(PIPEWIRE REQUIRED libpipewire-0.3)
|
|
||||||
|
|
||||||
target_include_directories(EHS_Stc PRIVATE ${PIPEWIRE_INCLUDE_DIRS})
|
|
||||||
target_include_directories(EHS_Dyn PRIVATE ${PIPEWIRE_INCLUDE_DIRS})
|
|
||||||
elseif (IS_OS_WINDOWS)
|
elseif (IS_OS_WINDOWS)
|
||||||
set(CMAKE_INSTALL_PREFIX "${USER_HOME_DIRECTORY}/EHS")
|
set(CMAKE_INSTALL_PREFIX "${USER_HOME_DIRECTORY}/EHS")
|
||||||
install(TARGETS EHS_Dyn LIBRARY DESTINATION "lib")
|
|
||||||
install(TARGETS EHS_Dyn RUNTIME DESTINATION "bin")
|
|
||||||
|
|
||||||
file(GLOB DLL_FILES "${CMAKE_CURRENT_BINARY_DIR}/*.dll")
|
|
||||||
install(FILES ${DLL_FILES} DESTINATION "bin")
|
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
install(TARGETS EHS_Stc DESTINATION "lib")
|
install(TARGETS EHS DESTINATION lib)
|
||||||
install(TARGETS StrToHash DESTINATION "bin")
|
|
||||||
|
|
||||||
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include/" DESTINATION "include")
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/ DESTINATION include)
|
||||||
|
|
||||||
|
install(TARGETS StrToHash DESTINATION bin)
|
||||||
|
|
||||||
find_package(ZLIB REQUIRED)
|
find_package(ZLIB REQUIRED)
|
||||||
if (ZLIB_FOUND)
|
if (ZLIB_FOUND)
|
||||||
@ -307,22 +271,16 @@ else ()
|
|||||||
message(STATUS "OpenSSL was not found.")
|
message(STATUS "OpenSSL was not found.")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
target_link_libraries(EHS_Stc OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB)
|
target_link_libraries(EHS OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB)
|
||||||
target_link_libraries(EHS_Dyn OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB)
|
|
||||||
target_link_libraries(StrToHash OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB)
|
|
||||||
|
|
||||||
if (IS_OS_WINDOWS)
|
if (IS_OS_WINDOWS)
|
||||||
target_link_libraries(EHS_Dyn avrt ws2_32 IPHLPAPI)
|
target_link_libraries(StrToHash ws2_32 avrt EHS)
|
||||||
target_link_libraries(StrToHash ws2_32 avrt EHS_Stc)
|
|
||||||
elseif (IS_OS_LINUX)
|
elseif (IS_OS_LINUX)
|
||||||
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")
|
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")
|
||||||
target_link_libraries(EHS_Dyn wayland-client)
|
|
||||||
target_link_libraries(StrToHash wayland-client)
|
target_link_libraries(StrToHash wayland-client)
|
||||||
elseif (LINUX_WINDOW_SYSTEM STREQUAL "XCB")
|
elseif (LINUX_WINDOW_SYSTEM STREQUAL "XCB")
|
||||||
target_link_libraries(EHS_Dyn xcb xcb-cursor xcb-xfixes xcb-xinput)
|
|
||||||
target_link_libraries(StrToHash xcb xcb-cursor xcb-xfixes xcb-xinput)
|
target_link_libraries(StrToHash xcb xcb-cursor xcb-xfixes xcb-xinput)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
target_link_libraries(EHS_Dyn z asound pipewire-0.3)
|
target_link_libraries(StrToHash z asound EHS)
|
||||||
target_link_libraries(StrToHash z asound EHS_Stc)
|
|
||||||
endif ()
|
endif ()
|
12
CMakePresets.json
Normal file
12
CMakePresets.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"configurePresets": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"binaryDir": "${sourceDir}/build",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
15
README.md
15
README.md
@ -22,7 +22,6 @@ This project does not fully follow the C++ standard.
|
|||||||
- Semaphores
|
- Semaphores
|
||||||
- CPU information and features at runtime
|
- CPU information and features at runtime
|
||||||
- HTTP(S) Socket Layer
|
- HTTP(S) Socket Layer
|
||||||
- ICMP & ICMPv6 Socket
|
|
||||||
- TCP Socket
|
- TCP Socket
|
||||||
- UDP Socket
|
- UDP Socket
|
||||||
- COM (Serial) IO
|
- COM (Serial) IO
|
||||||
@ -74,10 +73,8 @@ Wayland Window System. Wayland support is currently not fully supported yet, use
|
|||||||
- [CMake](https://cmake.org/)
|
- [CMake](https://cmake.org/)
|
||||||
- [vcpkg](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-cmd)
|
- [vcpkg](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-cmd)
|
||||||
|
|
||||||
`vcpkg install` - Use this command in the directory where `vcpkg.json` is located to download/install dependencies.
|
|
||||||
|
|
||||||
### Building
|
### Building
|
||||||
`cmake -A x64 -DCMAKE_BUILD_TYPE=Release /path/to/source`
|
`cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default /path/to/source`
|
||||||
|
|
||||||
### Compiling
|
### Compiling
|
||||||
`cmake --build /path/to/build --config Release`
|
`cmake --build /path/to/build --config Release`
|
||||||
@ -92,10 +89,12 @@ This will require the terminal to be running in administrator mode.
|
|||||||
#include <ehs/EHS.h>
|
#include <ehs/EHS.h>
|
||||||
#include <ehs/io/Console.h>
|
#include <ehs/io/Console.h>
|
||||||
|
|
||||||
int main()
|
ehs::Int_32 Main(ehs::Str_8* appName, ehs::Str_8* appVerId, ehs::Version* appVer)
|
||||||
{
|
{
|
||||||
// Simple identifying meta-data for the logger.
|
// Simple identifying meta-data for the logger.
|
||||||
ehs::Initialize("Simple Example App", "Release", {1, 0, 0});
|
*appName = "Simple Example App"; // The application's name
|
||||||
|
*appVerId = "Release"; // The app's version prefix; i.e. Alpha, Beta or Release as an example.
|
||||||
|
*appVer = {1, 0, 0}; // The app's version major, minor and patch number.
|
||||||
|
|
||||||
ehs::Console::Write_8("How old are you?"); // Write to the console in UTF_8 character encoding.
|
ehs::Console::Write_8("How old are you?"); // Write to the console in UTF_8 character encoding.
|
||||||
|
|
||||||
@ -104,15 +103,13 @@ int main()
|
|||||||
if (!response.IsNum())
|
if (!response.IsNum())
|
||||||
{
|
{
|
||||||
ehs::Console::Clear(); // Clear the console's buffer.
|
ehs::Console::Clear(); // Clear the console's buffer.
|
||||||
return main(); // Repeat process if given response is not a number.
|
return Main(appName, appVerId, appVer); // Repeat process if given response is not a number.
|
||||||
}
|
}
|
||||||
|
|
||||||
ehs::UInt_8 age = response.ToDecimal<ehs::UInt_8>(); // Converts the string number into a number based primitive.
|
ehs::UInt_8 age = response.ToDecimal<ehs::UInt_8>(); // Converts the string number into a number based primitive.
|
||||||
|
|
||||||
ehs::Console::Write("Your age is " + ehs::Str_8::FromNum(age) + "."); // Write the console with the age converted back to string.
|
ehs::Console::Write("Your age is " + ehs::Str_8::FromNum(age) + "."); // Write the console with the age converted back to string.
|
||||||
|
|
||||||
ehs::Uninitialize();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -12,7 +12,7 @@ namespace ehs
|
|||||||
/// @tparam T Array data type to use.
|
/// @tparam T Array data type to use.
|
||||||
/// @tparam N Number data type to use.
|
/// @tparam N Number data type to use.
|
||||||
template<typename T, typename N = UInt_64>
|
template<typename T, typename N = UInt_64>
|
||||||
class Array
|
class Array : public BaseObj
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
T* data;
|
T* data;
|
||||||
@ -20,7 +20,7 @@ namespace ehs
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
/// Frees any data created on the heap.
|
/// Frees any data created on the heap.
|
||||||
~Array()
|
~Array() override
|
||||||
{
|
{
|
||||||
delete[] data;
|
delete[] data;
|
||||||
}
|
}
|
||||||
@ -29,6 +29,7 @@ namespace ehs
|
|||||||
Array()
|
Array()
|
||||||
: data(nullptr), size(0)
|
: data(nullptr), size(0)
|
||||||
{
|
{
|
||||||
|
AddType("Array");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes an empty array with the given size.
|
/// Initializes an empty array with the given size.
|
||||||
@ -36,6 +37,7 @@ namespace ehs
|
|||||||
explicit Array(const N size)
|
explicit Array(const N size)
|
||||||
: data(new T[size]), size(size)
|
: data(new T[size]), size(size)
|
||||||
{
|
{
|
||||||
|
AddType("Array");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes this array with an initializer list object.
|
/// Initializes this array with an initializer list object.
|
||||||
@ -43,6 +45,8 @@ namespace ehs
|
|||||||
Array(std::initializer_list<T> list)
|
Array(std::initializer_list<T> list)
|
||||||
: data(new T[list.size()]), size(list.size())
|
: data(new T[list.size()]), size(list.size())
|
||||||
{
|
{
|
||||||
|
AddType("Array");
|
||||||
|
|
||||||
N i = 0;
|
N i = 0;
|
||||||
for (auto v = list.begin(); v != list.end(); ++v)
|
for (auto v = list.begin(); v != list.end(); ++v)
|
||||||
data[i++] = std::move(*v);
|
data[i++] = std::move(*v);
|
||||||
@ -54,12 +58,14 @@ namespace ehs
|
|||||||
Array(const T* const data, const N size)
|
Array(const T* const data, const N size)
|
||||||
: data(new T[size]), size(size)
|
: data(new T[size]), size(size)
|
||||||
{
|
{
|
||||||
|
AddType("Array");
|
||||||
|
|
||||||
for (N i = 0; i < size; ++i)
|
for (N i = 0; i < size; ++i)
|
||||||
this->data[i] = data[i];
|
this->data[i] = data[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
Array(Array&& array) noexcept
|
Array(Array&& array) noexcept
|
||||||
: data(array.data), size(array.size)
|
: BaseObj(array), data(array.data), size(array.size)
|
||||||
{
|
{
|
||||||
array.data = nullptr;
|
array.data = nullptr;
|
||||||
array.size = 0;
|
array.size = 0;
|
||||||
@ -68,7 +74,7 @@ namespace ehs
|
|||||||
/// Copies all members from the given array object.
|
/// Copies all members from the given array object.
|
||||||
/// @param [in] array The array object to copy from.
|
/// @param [in] array The array object to copy from.
|
||||||
Array(const Array& array)
|
Array(const Array& array)
|
||||||
: data(new T[array.size]), size(array.size)
|
: BaseObj((BaseObj&&)array), data(new T[array.size]), size(array.size)
|
||||||
{
|
{
|
||||||
for (N i = 0; i < size; ++i)
|
for (N i = 0; i < size; ++i)
|
||||||
data[i] = array.data[i];
|
data[i] = array.data[i];
|
||||||
@ -79,6 +85,8 @@ namespace ehs
|
|||||||
if (this == &array)
|
if (this == &array)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=((BaseObj&&)array);
|
||||||
|
|
||||||
delete[] data;
|
delete[] data;
|
||||||
data = array.data;
|
data = array.data;
|
||||||
size = array.size;
|
size = array.size;
|
||||||
@ -97,6 +105,8 @@ namespace ehs
|
|||||||
if (this == &array)
|
if (this == &array)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=(array);
|
||||||
|
|
||||||
delete[] data;
|
delete[] data;
|
||||||
data = new T[array.size];
|
data = new T[array.size];
|
||||||
for (N i = 0; i < array.size; ++i)
|
for (N i = 0; i < array.size; ++i)
|
||||||
|
@ -5,20 +5,20 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Base64
|
class Base64
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static const char ascii[];
|
static const char ascii[];
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static Str_8 Encode(const Str_8 &input);
|
static Str_8 Encode(const Str_8 input);
|
||||||
|
|
||||||
static Str_8 Decode(const Str_8 &input);
|
static Str_8 Decode(const Str_8 input);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static char Find(char c);
|
static char Find(const char c);
|
||||||
|
|
||||||
static bool IsBase64(char c);
|
static bool IsBase64(const char c);
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseObj
|
class BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Type* hierarchy;
|
Type* hierarchy;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Color3
|
class Color3
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
float r;
|
float r;
|
||||||
@ -13,13 +13,13 @@ namespace ehs
|
|||||||
|
|
||||||
Color3();
|
Color3();
|
||||||
|
|
||||||
Color3(float scalar);
|
Color3(const float scalar);
|
||||||
|
|
||||||
Color3(float r, float g, float b);
|
Color3(const float r, const float g, const float b);
|
||||||
|
|
||||||
Color3(const Color3& color);
|
Color3(const Color3& color);
|
||||||
|
|
||||||
Color3& operator=(float scalar);
|
Color3& operator=(const float scalar);
|
||||||
|
|
||||||
Color3& operator=(const Color3& color);
|
Color3& operator=(const Color3& color);
|
||||||
|
|
||||||
@ -27,9 +27,9 @@ namespace ehs
|
|||||||
|
|
||||||
bool operator!=(const Color3& color) const;
|
bool operator!=(const Color3& color) const;
|
||||||
|
|
||||||
float operator[](UInt_64 i) const;
|
float operator[](const UInt_64 i) const;
|
||||||
|
|
||||||
float& operator[](UInt_64 i);
|
float& operator[](const UInt_64 i);
|
||||||
|
|
||||||
Color3& operator*=(const Color3& color);
|
Color3& operator*=(const Color3& color);
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Color4
|
class Color4
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
float r;
|
float r;
|
||||||
@ -15,15 +15,15 @@ namespace ehs
|
|||||||
|
|
||||||
Color4();
|
Color4();
|
||||||
|
|
||||||
Color4(float scalar);
|
Color4(const float scalar);
|
||||||
|
|
||||||
explicit Color4(const Color3& color);
|
explicit Color4(const Color3& color);
|
||||||
|
|
||||||
Color4(float r, float g, float b, float a = 1.0f);
|
Color4(const float r, const float g, const float b, const float a = 1.0f);
|
||||||
|
|
||||||
Color4(const Color4& color);
|
Color4(const Color4& color);
|
||||||
|
|
||||||
Color4& operator=(float scalar);
|
Color4& operator=(const float scalar);
|
||||||
|
|
||||||
Color4& operator=(const Color3& color);
|
Color4& operator=(const Color3& color);
|
||||||
|
|
||||||
@ -33,9 +33,9 @@ namespace ehs
|
|||||||
|
|
||||||
bool operator!=(const Color4& color) const;
|
bool operator!=(const Color4& color) const;
|
||||||
|
|
||||||
float operator[](UInt_64 i) const;
|
float operator[](const UInt_64 i) const;
|
||||||
|
|
||||||
float& operator[](UInt_64 i);
|
float& operator[](const UInt_64 i);
|
||||||
|
|
||||||
Color4& operator*=(const Color4& color);
|
Color4& operator*=(const Color4& color);
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Data
|
class Data
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
@ -21,9 +21,9 @@ namespace ehs
|
|||||||
UINT_8
|
UINT_8
|
||||||
};
|
};
|
||||||
|
|
||||||
EHS_LIB_IO DataType FromAudioBitDepth(UInt_16 bitDepth);
|
DataType FromAudioBitDepth(UInt_16 bitDepth);
|
||||||
|
|
||||||
EHS_LIB_IO UInt_8 ToByteDepth(DataType type);
|
UInt_8 ToByteDepth(DataType type);
|
||||||
|
|
||||||
EHS_LIB_IO UInt_8 ToBitDepth(DataType type);
|
UInt_8 ToBitDepth(DataType type);
|
||||||
}
|
}
|
@ -13,53 +13,51 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
enum class MemoryPattern
|
enum class MemoryPattern
|
||||||
{
|
{
|
||||||
SPEED,
|
SPEED,
|
||||||
SIZE
|
SIZE
|
||||||
};
|
};
|
||||||
|
|
||||||
EHS_LIB_IO void Initialize(Str_8 appName, Str_8 appVerId, const Version &appVer);
|
|
||||||
|
|
||||||
EHS_LIB_IO void Uninitialize();
|
|
||||||
|
|
||||||
/// Retrieves the UTF32 C-style string as "Event Horizon Standard"
|
/// Retrieves the UTF32 C-style string as "Event Horizon Standard"
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_32* GetName_32();
|
const Char_32* GetName_32();
|
||||||
|
|
||||||
/// Retrieves the UTF16 C-style string as "Event Horizon Standard"
|
/// Retrieves the UTF16 C-style string as "Event Horizon Standard"
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_16* GetName_16();
|
const Char_16* GetName_16();
|
||||||
|
|
||||||
/// Retrieves the UTF8 C-style string as "Event Horizon Standard"
|
/// Retrieves the UTF8 C-style string as "Event Horizon Standard"
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_8* GetName_8();
|
const Char_8* GetName_8();
|
||||||
|
|
||||||
EHS_LIB_IO Str_8 GetAppName_8();
|
Str_8 GetAppName_8();
|
||||||
|
|
||||||
EHS_LIB_IO const Char_32* GetAcronym_32();
|
const Char_32* GetAcronym_32();
|
||||||
|
|
||||||
EHS_LIB_IO const Char_16* GetAcronym_16();
|
const Char_16* GetAcronym_16();
|
||||||
|
|
||||||
EHS_LIB_IO const Char_8* GetAcronym_8();
|
const Char_8* GetAcronym_8();
|
||||||
|
|
||||||
/// Retrieves the version identifier in UTF32.
|
/// Retrieves the version identifier in UTF32.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_32* GetVersionId_32();
|
const Char_32* GetVersionId_32();
|
||||||
|
|
||||||
/// Retrieves the version identifier in UTF16.
|
/// Retrieves the version identifier in UTF16.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_16* GetVersionId_16();
|
const Char_16* GetVersionId_16();
|
||||||
|
|
||||||
/// Retrieves the version identifier in UTF8.
|
/// Retrieves the version identifier in UTF8.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO const Char_8* GetVersionId_8();
|
const Char_8* GetVersionId_8();
|
||||||
|
|
||||||
EHS_LIB_IO Str_8 GetAppVersionId_8();
|
Str_8 GetAppVersionId_8();
|
||||||
|
|
||||||
/// Retrieves the current Event Horizon Standard version.
|
/// Retrieves the current Event Horizon Standard version.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
EHS_LIB_IO Version GetVersion();
|
Version GetVersion();
|
||||||
|
|
||||||
EHS_LIB_IO Version GetAppVersion();
|
Version GetAppVersion();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern ehs::SInt_32 Main(ehs::Str_8* appName, ehs::Str_8* appVerId, ehs::Version* appVer);
|
@ -9,7 +9,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
typedef bool (*GcLogic)(BaseObj*);
|
typedef bool (*GcLogic)(BaseObj*);
|
||||||
|
|
||||||
class EHS_LIB_IO GC
|
class GC
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static Array<GcLogic> logic;
|
static Array<GcLogic> logic;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO HRNG
|
class HRNG
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static UInt_64 GenerateSeed_u64();
|
static UInt_64 GenerateSeed_u64();
|
||||||
|
@ -25,7 +25,7 @@ namespace ehs
|
|||||||
/// A helper class for holding error information and handling them.
|
/// A helper class for holding error information and handling them.
|
||||||
/// @tparam T The character data type to use.
|
/// @tparam T The character data type to use.
|
||||||
/// @tparam N The number data type to use.
|
/// @tparam N The number data type to use.
|
||||||
class EHS_LIB_IO Log
|
class Log
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static void DefaultRaisedCb(const Log &log);
|
static void DefaultRaisedCb(const Log &log);
|
||||||
|
@ -120,7 +120,7 @@ namespace ehs
|
|||||||
|
|
||||||
Mat2<T> GetMinor() const
|
Mat2<T> GetMinor() const
|
||||||
{
|
{
|
||||||
Mat2<T> result;
|
Mat2<T> result(0);
|
||||||
result.data[0] = data[3];
|
result.data[0] = data[3];
|
||||||
result.data[1] = data[2];
|
result.data[1] = data[2];
|
||||||
result.data[2] = data[1];
|
result.data[2] = data[1];
|
||||||
@ -187,7 +187,7 @@ namespace ehs
|
|||||||
Mat2<T> GetInverse() const
|
Mat2<T> GetInverse() const
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
return GetAdjugate() * (1 / det);
|
return GetAdjugate() * (1 / det);
|
||||||
@ -196,7 +196,7 @@ namespace ehs
|
|||||||
void Inverse()
|
void Inverse()
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Adjugate();
|
Adjugate();
|
||||||
@ -212,9 +212,6 @@ namespace ehs
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template class EHS_LIB_IO Mat2<float>;
|
|
||||||
template class EHS_LIB_IO Mat2<double>;
|
|
||||||
|
|
||||||
typedef Mat2<float> Mat2_f;
|
typedef Mat2<float> Mat2_f;
|
||||||
typedef Mat2<double> Mat2_d;
|
typedef Mat2<double> Mat2_d;
|
||||||
}
|
}
|
@ -50,7 +50,7 @@ namespace ehs
|
|||||||
Mat2<T> result;
|
Mat2<T> result;
|
||||||
|
|
||||||
for (UInt_8 i = 0; i < 4; ++i)
|
for (UInt_8 i = 0; i < 4; ++i)
|
||||||
result[i] = data[i / 2 * 4 + i % 2];
|
result.data[i] = data[i / 2 * 4 + i % 2];
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -234,7 +234,7 @@ namespace ehs
|
|||||||
Mat3<T> GetInverse() const
|
Mat3<T> GetInverse() const
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
return GetAdjugate() * (1 / det);
|
return GetAdjugate() * (1 / det);
|
||||||
@ -243,7 +243,7 @@ namespace ehs
|
|||||||
void Inverse()
|
void Inverse()
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Adjugate();
|
Adjugate();
|
||||||
@ -317,9 +317,6 @@ namespace ehs
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template class EHS_LIB_IO Mat3<float>;
|
|
||||||
template class EHS_LIB_IO Mat3<double>;
|
|
||||||
|
|
||||||
typedef Mat3<float> Mat3_f;
|
typedef Mat3<float> Mat3_f;
|
||||||
typedef Mat3<double> Mat3_d;
|
typedef Mat3<double> Mat3_d;
|
||||||
}
|
}
|
@ -268,7 +268,7 @@ namespace ehs
|
|||||||
Mat4<T> GetInverse() const
|
Mat4<T> GetInverse() const
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
return GetAdjugate() * (1 / det);
|
return GetAdjugate() * (1 / det);
|
||||||
@ -277,7 +277,7 @@ namespace ehs
|
|||||||
void Inverse()
|
void Inverse()
|
||||||
{
|
{
|
||||||
T det = GetDeterminant();
|
T det = GetDeterminant();
|
||||||
if (Math::ComCmp(det, 0))
|
if (Math::ComCmp(det, 0.0f))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Adjugate();
|
Adjugate();
|
||||||
@ -332,14 +332,14 @@ namespace ehs
|
|||||||
|
|
||||||
static Mat4<T> YawRotate(const T angle)
|
static Mat4<T> YawRotate(const T angle)
|
||||||
{
|
{
|
||||||
T radians = Math::Rads<T>(angle);
|
T radians = Math::Rads(angle);
|
||||||
|
|
||||||
Mat4<T> result;
|
Mat4<T> result;
|
||||||
result.data[0] = Math::Cos<T>(radians);
|
result.data[0] = Math::Cos(radians);
|
||||||
result.data[2] = -Math::Sin<T>(radians);
|
result.data[2] = -Math::Sin(radians);
|
||||||
result.data[5] = 1;
|
result.data[5] = 1;
|
||||||
result.data[8] = Math::Sin<T>(radians);
|
result.data[8] = Math::Sin(radians);
|
||||||
result.data[10] = Math::Cos<T>(radians);
|
result.data[10] = Math::Cos(radians);
|
||||||
result.data[15] = 1;
|
result.data[15] = 1;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
@ -347,7 +347,7 @@ namespace ehs
|
|||||||
|
|
||||||
static Mat4<T> RollRotate(const T angle)
|
static Mat4<T> RollRotate(const T angle)
|
||||||
{
|
{
|
||||||
T radians = Math::Rads<T>(angle);
|
T radians = Math::Rads(angle);
|
||||||
|
|
||||||
Mat4<T> result;
|
Mat4<T> result;
|
||||||
result.data[0] = Math::Cos(radians);
|
result.data[0] = Math::Cos(radians);
|
||||||
@ -367,7 +367,7 @@ namespace ehs
|
|||||||
|
|
||||||
static Mat4<T> RH_Perspective(const T fov, const T aspect, const T zNear, const T zFar)
|
static Mat4<T> RH_Perspective(const T fov, const T aspect, const T zNear, const T zFar)
|
||||||
{
|
{
|
||||||
const T tanHalfFovy = Math::Tan<T>(Math::Rads(fov) / 2.0f);
|
const float tanHalfFovy = tan(Math::Rads(fov) / 2.0f);
|
||||||
|
|
||||||
Mat4<T> result;
|
Mat4<T> result;
|
||||||
result[0] = 1.0f / (aspect * tanHalfFovy);
|
result[0] = 1.0f / (aspect * tanHalfFovy);
|
||||||
@ -380,7 +380,7 @@ namespace ehs
|
|||||||
|
|
||||||
static Mat4<T> LH_Perspective(const T fov, const T aspect, const T zNear, const T zFar)
|
static Mat4<T> LH_Perspective(const T fov, const T aspect, const T zNear, const T zFar)
|
||||||
{
|
{
|
||||||
const T tanHalfFovy = Math::Tan<T>(Math::Rads(fov) / 2.0f);
|
const float tanHalfFovy = Math::Tan(Math::Rads(fov) / 2.0f);
|
||||||
|
|
||||||
Mat4<T> result;
|
Mat4<T> result;
|
||||||
result[0] = 1.0f / (aspect * tanHalfFovy);
|
result[0] = 1.0f / (aspect * tanHalfFovy);
|
||||||
@ -421,9 +421,6 @@ namespace ehs
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template class EHS_LIB_IO Mat4<float>;
|
|
||||||
template class EHS_LIB_IO Mat4<double>;
|
|
||||||
|
|
||||||
typedef Mat4<float> Mat4_f;
|
typedef Mat4<float> Mat4_f;
|
||||||
typedef Mat4<double> Mat4_d;
|
typedef Mat4<double> Mat4_d;
|
||||||
}
|
}
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Math
|
class Math
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static float Sqrt_AVX(const float from);
|
static float Sqrt_AVX(const float from);
|
||||||
@ -26,22 +26,22 @@ namespace ehs
|
|||||||
constexpr static double dblEpsilon = 1e-16;
|
constexpr static double dblEpsilon = 1e-16;
|
||||||
|
|
||||||
/// Absolute tolerance comparison for single precision floats.
|
/// Absolute tolerance comparison for single precision floats.
|
||||||
static bool AbsCmp(float a, float b);
|
static bool AbsCmp(const float a, const float b);
|
||||||
|
|
||||||
/// Absolute tolerance comparison for double precision floats.
|
/// Absolute tolerance comparison for double precision floats.
|
||||||
static bool AbsCmp(double a, double b);
|
static bool AbsCmp(const double a, const double b);
|
||||||
|
|
||||||
/// Relative tolerance comparison for single precision floats.
|
/// Relative tolerance comparison for single precision floats.
|
||||||
static bool RelCmp(float a, float b);
|
static bool RelCmp(const float a, const float b);
|
||||||
|
|
||||||
/// Relative tolerance comparison for double precision floats.
|
/// Relative tolerance comparison for double precision floats.
|
||||||
static bool RelCmp(double a, double b);
|
static bool RelCmp(const double a, const double b);
|
||||||
|
|
||||||
/// Combined absolute and relative tolerance comparison for single precision floats.
|
/// Combined absolute and relative tolerance comparison for single precision floats.
|
||||||
static bool ComCmp(float a, float b);
|
static bool ComCmp(const float a, const float b);
|
||||||
|
|
||||||
/// Combined absolute and relative tolerance comparison for double precision floats.
|
/// Combined absolute and relative tolerance comparison for double precision floats.
|
||||||
static bool ComCmp(double a, double b);
|
static bool ComCmp(const double a, const double b);
|
||||||
|
|
||||||
template<typename T = float>
|
template<typename T = float>
|
||||||
static T Max(const T a, const T b)
|
static T Max(const T a, const T b)
|
||||||
|
@ -10,9 +10,9 @@ namespace ehs
|
|||||||
void* data;
|
void* data;
|
||||||
};
|
};
|
||||||
|
|
||||||
EHS_LIB_IO bool HasPtrData(void* data);
|
bool HasPtrData(void* data);
|
||||||
|
|
||||||
EHS_LIB_IO void AddPtrData(void* data);
|
void AddPtrData(void* data);
|
||||||
|
|
||||||
EHS_LIB_IO bool RemovePtrData(void* data);
|
bool RemovePtrData(void* data);
|
||||||
}
|
}
|
@ -21,7 +21,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
template<typename N = UInt_64>
|
template<typename N = UInt_64>
|
||||||
class Serializer
|
class Serializer : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Endianness endianness;
|
Endianness endianness;
|
||||||
@ -30,7 +30,7 @@ namespace ehs
|
|||||||
N offset;
|
N offset;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
~Serializer()
|
~Serializer() override
|
||||||
{
|
{
|
||||||
delete[] data;
|
delete[] data;
|
||||||
}
|
}
|
||||||
@ -38,27 +38,32 @@ namespace ehs
|
|||||||
Serializer()
|
Serializer()
|
||||||
: endianness(Endianness::BE), data(nullptr), size(0), offset(0)
|
: endianness(Endianness::BE), data(nullptr), size(0), offset(0)
|
||||||
{
|
{
|
||||||
|
AddType("Serializer");
|
||||||
}
|
}
|
||||||
|
|
||||||
Serializer(const Endianness endianness)
|
Serializer(const Endianness endianness)
|
||||||
: endianness(endianness), data(nullptr), size(0), offset(0)
|
: endianness(endianness), data(nullptr), size(0), offset(0)
|
||||||
{
|
{
|
||||||
|
AddType("Serializer");
|
||||||
}
|
}
|
||||||
|
|
||||||
Serializer(const Endianness endianness, const N size)
|
Serializer(const Endianness endianness, const N size)
|
||||||
: endianness(endianness), data(new Byte[size]), size(size), offset(0)
|
: endianness(endianness), data(new Byte[size]), size(size), offset(0)
|
||||||
{
|
{
|
||||||
|
AddType("Serializer");
|
||||||
}
|
}
|
||||||
|
|
||||||
Serializer(const Endianness endianness, const Byte* const data, const N size, const N offset = 0)
|
Serializer(const Endianness endianness, const Byte* const data, const N size, const N offset = 0)
|
||||||
: endianness(endianness), data(new Byte[size]), size(size), offset(offset)
|
: endianness(endianness), data(new Byte[size]), size(size), offset(offset)
|
||||||
{
|
{
|
||||||
|
AddType("Serializer");
|
||||||
|
|
||||||
for (N i = 0; i < size; ++i)
|
for (N i = 0; i < size; ++i)
|
||||||
this->data[i] = data[i];
|
this->data[i] = data[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
Serializer(Serializer&& serializer) noexcept
|
Serializer(Serializer&& serializer) noexcept
|
||||||
: endianness(serializer.endianness), data(serializer.data),
|
: BaseObj((BaseObj&&)serializer), endianness(serializer.endianness), data(serializer.data),
|
||||||
size(serializer.size), offset(serializer.offset)
|
size(serializer.size), offset(serializer.offset)
|
||||||
{
|
{
|
||||||
serializer.data = nullptr;
|
serializer.data = nullptr;
|
||||||
@ -67,7 +72,7 @@ namespace ehs
|
|||||||
}
|
}
|
||||||
|
|
||||||
Serializer(const Serializer& serializer)
|
Serializer(const Serializer& serializer)
|
||||||
: endianness(serializer.endianness), data(new Byte[serializer.size]),
|
: BaseObj(serializer), endianness(serializer.endianness), data(new Byte[serializer.size]),
|
||||||
size(serializer.size), offset(serializer.offset)
|
size(serializer.size), offset(serializer.offset)
|
||||||
{
|
{
|
||||||
for (N i = 0; i < serializer.size; ++i)
|
for (N i = 0; i < serializer.size; ++i)
|
||||||
@ -79,6 +84,8 @@ namespace ehs
|
|||||||
if (this == &serializer)
|
if (this == &serializer)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=((Serializer&&)serializer);
|
||||||
|
|
||||||
endianness = serializer.endianness;
|
endianness = serializer.endianness;
|
||||||
delete[] data;
|
delete[] data;
|
||||||
data = serializer.data;
|
data = serializer.data;
|
||||||
@ -97,6 +104,8 @@ namespace ehs
|
|||||||
if (this == &serializer)
|
if (this == &serializer)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=(serializer);
|
||||||
|
|
||||||
endianness = serializer.endianness;
|
endianness = serializer.endianness;
|
||||||
|
|
||||||
delete[] data;
|
delete[] data;
|
||||||
@ -1219,7 +1228,7 @@ namespace ehs
|
|||||||
void Resize(const N newSize)
|
void Resize(const N newSize)
|
||||||
{
|
{
|
||||||
Byte* result = new Byte[newSize];
|
Byte* result = new Byte[newSize];
|
||||||
Util::Copy(result, data, newSize >= size ? size : newSize);
|
Util::Copy(result, data, size);
|
||||||
delete[] data;
|
delete[] data;
|
||||||
data = result;
|
data = result;
|
||||||
size = newSize;
|
size = newSize;
|
||||||
|
@ -25,7 +25,7 @@ namespace ehs
|
|||||||
/// @tparam T The character's data type to use.
|
/// @tparam T The character's data type to use.
|
||||||
/// @tparam N The number data type to use.
|
/// @tparam N The number data type to use.
|
||||||
template<typename T = Char_8, typename N = UInt_64>
|
template<typename T = Char_8, typename N = UInt_64>
|
||||||
class Str
|
class Str : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
N size;
|
N size;
|
||||||
@ -33,7 +33,7 @@ namespace ehs
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
/// Frees any data created on the heap.
|
/// Frees any data created on the heap.
|
||||||
~Str()
|
~Str() override
|
||||||
{
|
{
|
||||||
delete[] data;
|
delete[] data;
|
||||||
}
|
}
|
||||||
@ -42,6 +42,7 @@ namespace ehs
|
|||||||
Str()
|
Str()
|
||||||
: size(0), data(nullptr)
|
: size(0), data(nullptr)
|
||||||
{
|
{
|
||||||
|
AddType("Str");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes members with given C-style string.
|
/// Initializes members with given C-style string.
|
||||||
@ -55,6 +56,8 @@ namespace ehs
|
|||||||
Util::Copy(data, str, Size(true));
|
Util::Copy(data, str, Size(true));
|
||||||
|
|
||||||
data[this->size] = 0;
|
data[this->size] = 0;
|
||||||
|
|
||||||
|
AddType("Str");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes members with given C-style string.
|
/// Initializes members with given C-style string.
|
||||||
@ -67,6 +70,8 @@ namespace ehs
|
|||||||
Util::Copy(data, str, Size(true));
|
Util::Copy(data, str, Size(true));
|
||||||
|
|
||||||
data[size] = 0;
|
data[size] = 0;
|
||||||
|
|
||||||
|
AddType("Str");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes string with the given size.
|
/// Initializes string with the given size.
|
||||||
@ -75,11 +80,13 @@ namespace ehs
|
|||||||
: size(size), data(new T[size + 1])
|
: size(size), data(new T[size + 1])
|
||||||
{
|
{
|
||||||
data[size] = 0;
|
data[size] = 0;
|
||||||
|
|
||||||
|
AddType("Str");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A move constructor.
|
/// A move constructor.
|
||||||
Str(Str&& str) noexcept
|
Str(Str&& str) noexcept
|
||||||
: size(str.size), data(str.data)
|
: BaseObj((BaseObj&&)str), size(str.size), data(str.data)
|
||||||
{
|
{
|
||||||
str.size = 0;
|
str.size = 0;
|
||||||
str.data = nullptr;
|
str.data = nullptr;
|
||||||
@ -88,7 +95,7 @@ namespace ehs
|
|||||||
/// Copies all members from the given string object.
|
/// Copies all members from the given string object.
|
||||||
/// @param [in] str The string object to copy from.
|
/// @param [in] str The string object to copy from.
|
||||||
Str(const Str& str)
|
Str(const Str& str)
|
||||||
: size(str.size), data(new T[size + 1])
|
: BaseObj(str), size(str.size), data(new T[size + 1])
|
||||||
{
|
{
|
||||||
Util::Copy(data, str.data, Size(true));
|
Util::Copy(data, str.data, Size(true));
|
||||||
|
|
||||||
@ -100,6 +107,8 @@ namespace ehs
|
|||||||
if (this == &str)
|
if (this == &str)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=((BaseObj&&)str);
|
||||||
|
|
||||||
size = str.size;
|
size = str.size;
|
||||||
delete[] data;
|
delete[] data;
|
||||||
data = str.data;
|
data = str.data;
|
||||||
@ -118,6 +127,8 @@ namespace ehs
|
|||||||
if (&str == this)
|
if (&str == this)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=(str);
|
||||||
|
|
||||||
size = str.size;
|
size = str.size;
|
||||||
|
|
||||||
delete[] data;
|
delete[] data;
|
||||||
@ -553,7 +564,7 @@ namespace ehs
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Util::Copy(&data[dstOffset], src, src.Size(true));
|
Util::Copy(data[dstOffset], src, src.Size(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Copies a C-style string to the referenced string object.
|
/// Copies a C-style string to the referenced string object.
|
||||||
@ -569,7 +580,7 @@ namespace ehs
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Util::Copy(&data[dstOffset], src, srcSize * sizeof(T));
|
Util::Copy(data[dstOffset], src, srcSize * sizeof(T));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Copies a C-style string to the referenced string object.
|
/// Copies a C-style string to the referenced string object.
|
||||||
@ -584,7 +595,7 @@ namespace ehs
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Util::Copy(&data[dstOffset], src, srcSize * sizeof(T));
|
Util::Copy(data[dstOffset], src, srcSize * sizeof(T));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Inserts a string at a specified index.
|
/// Inserts a string at a specified index.
|
||||||
@ -736,7 +747,7 @@ namespace ehs
|
|||||||
|
|
||||||
T* result = new T[size + inSize + 1];
|
T* result = new T[size + inSize + 1];
|
||||||
Util::Copy(result, data, Size(true));
|
Util::Copy(result, data, Size(true));
|
||||||
Util::Copy(&result[size], value, inSize * sizeof(T));
|
Util::Copy(result[size], value, inSize * sizeof(T));
|
||||||
|
|
||||||
result[size + inSize] = 0;
|
result[size + inSize] = 0;
|
||||||
|
|
||||||
@ -1016,7 +1027,7 @@ namespace ehs
|
|||||||
/// @param [in] pattern The search pattern for optimization.
|
/// @param [in] pattern The search pattern for optimization.
|
||||||
/// @param [in] result What index to return where the first instance is found.
|
/// @param [in] result What index to return where the first instance is found.
|
||||||
/// @returns The index where the instance was found with the result varying from the result parameter.
|
/// @returns The index where the instance was found with the result varying from the result parameter.
|
||||||
bool Find(const Str<T, N> &ide, N* const index = nullptr, const SearchPattern pattern = SearchPattern::LEFT_RIGHT, const IndexResult result = IndexResult::BEGINNING) const
|
bool Find(const Str<T, N>& ide, N* const index = nullptr, const SearchPattern pattern = SearchPattern::LEFT_RIGHT, const IndexResult result = IndexResult::BEGINNING) const
|
||||||
{
|
{
|
||||||
if (pattern == SearchPattern::LEFT_RIGHT)
|
if (pattern == SearchPattern::LEFT_RIGHT)
|
||||||
{
|
{
|
||||||
@ -1260,11 +1271,8 @@ namespace ehs
|
|||||||
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
||||||
float ToFloat() const
|
float ToFloat() const
|
||||||
{
|
{
|
||||||
Str<T, N> ide;
|
|
||||||
ide.Push(46);
|
|
||||||
|
|
||||||
N decPoint = size;
|
N decPoint = size;
|
||||||
Find(ide, &decPoint);
|
Find(".", &decPoint);
|
||||||
|
|
||||||
float result = 0.0f;
|
float result = 0.0f;
|
||||||
float fraction = 0.0f;
|
float fraction = 0.0f;
|
||||||
@ -1289,11 +1297,8 @@ namespace ehs
|
|||||||
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
||||||
double ToDouble() const
|
double ToDouble() const
|
||||||
{
|
{
|
||||||
Str<T, N> ide;
|
|
||||||
ide.Push(46);
|
|
||||||
|
|
||||||
N decPoint = size;
|
N decPoint = size;
|
||||||
Find(ide, &decPoint);
|
Find(".", &decPoint);
|
||||||
|
|
||||||
double result = 0.0f;
|
double result = 0.0f;
|
||||||
double fraction = 0.0f;
|
double fraction = 0.0f;
|
||||||
@ -1318,11 +1323,8 @@ namespace ehs
|
|||||||
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
/// @note Use "IsNum" before this if the string object is not guaranteed to be a number.
|
||||||
long double ToLDouble() const
|
long double ToLDouble() const
|
||||||
{
|
{
|
||||||
Str<T, N> ide;
|
|
||||||
ide.Push(46);
|
|
||||||
|
|
||||||
N decPoint = size;
|
N decPoint = size;
|
||||||
Find(ide, &decPoint);
|
Find(".", &decPoint);
|
||||||
|
|
||||||
long double result = 0.0f;
|
long double result = 0.0f;
|
||||||
long double fraction = 0.0f;
|
long double fraction = 0.0f;
|
||||||
@ -1677,7 +1679,7 @@ namespace ehs
|
|||||||
|
|
||||||
Str<T, N> result;
|
Str<T, N> result;
|
||||||
if (whole < 0)
|
if (whole < 0)
|
||||||
result.Push(45);
|
result += "-";
|
||||||
|
|
||||||
result += Str<T, N>::FromNum(whole);
|
result += Str<T, N>::FromNum(whole);
|
||||||
|
|
||||||
@ -1689,7 +1691,7 @@ namespace ehs
|
|||||||
if (!fraction)
|
if (!fraction)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
result.Push(46);
|
result += ".";
|
||||||
|
|
||||||
Str<T, N> fResult(maxDecimals);
|
Str<T, N> fResult(maxDecimals);
|
||||||
N i = 0;
|
N i = 0;
|
||||||
@ -1719,7 +1721,7 @@ namespace ehs
|
|||||||
|
|
||||||
Str<T, N> result;
|
Str<T, N> result;
|
||||||
if (whole < 0)
|
if (whole < 0)
|
||||||
result.Push(45);
|
result += "-";
|
||||||
|
|
||||||
result += Str<T, N>::FromNum(whole);
|
result += Str<T, N>::FromNum(whole);
|
||||||
|
|
||||||
@ -1731,7 +1733,7 @@ namespace ehs
|
|||||||
if (!fraction)
|
if (!fraction)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
result.Push(46);
|
result += ".";
|
||||||
|
|
||||||
Str<T, N> fResult(maxDecimals);
|
Str<T, N> fResult(maxDecimals);
|
||||||
N i = 0;
|
N i = 0;
|
||||||
@ -1761,7 +1763,7 @@ namespace ehs
|
|||||||
|
|
||||||
Str<T, N> result;
|
Str<T, N> result;
|
||||||
if (whole < 0)
|
if (whole < 0)
|
||||||
result.Push(45);
|
result += "-";
|
||||||
|
|
||||||
result += Str<T, N>::FromNum(whole);
|
result += Str<T, N>::FromNum(whole);
|
||||||
|
|
||||||
@ -1773,7 +1775,7 @@ namespace ehs
|
|||||||
if (!fraction)
|
if (!fraction)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
result.Push(46);
|
result += ".";
|
||||||
|
|
||||||
Str<T, N> fResult(maxDecimals);
|
Str<T, N> fResult(maxDecimals);
|
||||||
N i = 0;
|
N i = 0;
|
||||||
@ -1868,9 +1870,6 @@ namespace ehs
|
|||||||
/// @returns The character count.
|
/// @returns The character count.
|
||||||
static N Len(const T* const str)
|
static N Len(const T* const str)
|
||||||
{
|
{
|
||||||
if (!str)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
N count = 0;
|
N count = 0;
|
||||||
while (str[count])
|
while (str[count])
|
||||||
++count;
|
++count;
|
||||||
@ -1893,10 +1892,6 @@ namespace ehs
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template class EHS_LIB_IO Str<Char_32, UInt_64>;
|
|
||||||
template class EHS_LIB_IO Str<Char_16, UInt_64>;
|
|
||||||
template class EHS_LIB_IO Str<Char_8, UInt_64>;
|
|
||||||
|
|
||||||
typedef Str<Char_32, UInt_64> Str_32;
|
typedef Str<Char_32, UInt_64> Str_32;
|
||||||
typedef Str<Char_16, UInt_64> Str_16;
|
typedef Str<Char_16, UInt_64> Str_16;
|
||||||
typedef Str<Char_8, UInt_64> Str_8;
|
typedef Str<Char_8, UInt_64> Str_8;
|
||||||
|
@ -9,7 +9,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
typedef void (*TaskCb)(Serializer<UInt_64>*);
|
typedef void (*TaskCb)(Serializer<UInt_64>*);
|
||||||
|
|
||||||
class EHS_LIB_IO Task
|
class Task
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
bool working;
|
bool working;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Type
|
class Type
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class BaseObj;
|
friend class BaseObj;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO URI
|
class URI
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/// Encodes specialized characters in the URI.
|
/// Encodes specialized characters in the URI.
|
||||||
|
@ -13,7 +13,7 @@ namespace ehs
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// A helper class for converting between UTF8, 16 and 32.
|
/// A helper class for converting between UTF8, 16 and 32.
|
||||||
class EHS_LIB_IO UTF
|
class UTF
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/// Converts the given UTF16 C-style string into UTF32.
|
/// Converts the given UTF16 C-style string into UTF32.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Util
|
class Util
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static bool Compare(const void* a, const void* b, UInt_64 size);
|
static bool Compare(const void* a, const void* b, UInt_64 size);
|
||||||
|
@ -14,7 +14,7 @@ namespace ehs
|
|||||||
/// @tparam N Number data type to use.
|
/// @tparam N Number data type to use.
|
||||||
/// @note If extra memory is set to five then each time that memory is filled it will add five extra.
|
/// @note If extra memory is set to five then each time that memory is filled it will add five extra.
|
||||||
template<typename T, typename N = UInt_64>
|
template<typename T, typename N = UInt_64>
|
||||||
class Vector
|
class Vector : public BaseObj
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
N rawSize;
|
N rawSize;
|
||||||
@ -24,7 +24,7 @@ namespace ehs
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
/// Frees any data created on the heap.
|
/// Frees any data created on the heap.
|
||||||
~Vector()
|
~Vector() override
|
||||||
{
|
{
|
||||||
delete[] data;
|
delete[] data;
|
||||||
}
|
}
|
||||||
@ -33,6 +33,7 @@ namespace ehs
|
|||||||
Vector()
|
Vector()
|
||||||
: rawSize(0), size(0), stride(5), data(nullptr)
|
: rawSize(0), size(0), stride(5), data(nullptr)
|
||||||
{
|
{
|
||||||
|
AddType("Vector");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes members for pre-allocated memory to write to later.
|
/// Initializes members for pre-allocated memory to write to later.
|
||||||
@ -41,6 +42,7 @@ namespace ehs
|
|||||||
Vector(const N size, const N stride)
|
Vector(const N size, const N stride)
|
||||||
: rawSize(size + stride), size(size), stride(stride), data(new T[rawSize])
|
: rawSize(size + stride), size(size), stride(stride), data(new T[rawSize])
|
||||||
{
|
{
|
||||||
|
AddType("Vector");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes this vector with an initializer list object.
|
/// Initializes this vector with an initializer list object.
|
||||||
@ -49,6 +51,8 @@ namespace ehs
|
|||||||
Vector(std::initializer_list<T> list, const N stride = 5)
|
Vector(std::initializer_list<T> list, const N stride = 5)
|
||||||
: rawSize(0), size(list.size()), stride(stride), data(nullptr)
|
: rawSize(0), size(list.size()), stride(stride), data(nullptr)
|
||||||
{
|
{
|
||||||
|
AddType("Vector");
|
||||||
|
|
||||||
if (stride)
|
if (stride)
|
||||||
{
|
{
|
||||||
rawSize = list.size() / stride * stride;
|
rawSize = list.size() / stride * stride;
|
||||||
@ -74,6 +78,8 @@ namespace ehs
|
|||||||
Vector(const T* data, const N size, const N stride)
|
Vector(const T* data, const N size, const N stride)
|
||||||
: rawSize(0), size(size), stride(stride), data(nullptr)
|
: rawSize(0), size(size), stride(stride), data(nullptr)
|
||||||
{
|
{
|
||||||
|
AddType("Vector");
|
||||||
|
|
||||||
if (stride)
|
if (stride)
|
||||||
{
|
{
|
||||||
rawSize = size / stride * stride;
|
rawSize = size / stride * stride;
|
||||||
@ -94,14 +100,14 @@ namespace ehs
|
|||||||
/// Copies all members from the given vector object.
|
/// Copies all members from the given vector object.
|
||||||
/// @param [in] vec The vector object to copy from.
|
/// @param [in] vec The vector object to copy from.
|
||||||
Vector(const Vector& vec)
|
Vector(const Vector& vec)
|
||||||
: rawSize(vec.rawSize), size(vec.size), stride(vec.stride), data(new T[rawSize])
|
: BaseObj(vec), rawSize(vec.rawSize), size(vec.size), stride(vec.stride), data(new T[rawSize])
|
||||||
{
|
{
|
||||||
for (N i = 0; i < size; ++i)
|
for (N i = 0; i < size; ++i)
|
||||||
data[i] = vec.data[i];
|
data[i] = vec.data[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector(Vector&& vec) noexcept
|
Vector(Vector&& vec) noexcept
|
||||||
: rawSize(vec.rawSize), size(vec.size), stride(vec.stride), data(vec.data)
|
: BaseObj((BaseObj&&)vec), rawSize(vec.rawSize), size(vec.size), stride(vec.stride), data(vec.data)
|
||||||
{
|
{
|
||||||
vec.rawSize = 0;
|
vec.rawSize = 0;
|
||||||
vec.size = 0;
|
vec.size = 0;
|
||||||
@ -117,6 +123,8 @@ namespace ehs
|
|||||||
if (this == &vec)
|
if (this == &vec)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=(vec);
|
||||||
|
|
||||||
rawSize = vec.rawSize;
|
rawSize = vec.rawSize;
|
||||||
size = vec.size;
|
size = vec.size;
|
||||||
stride = vec.stride;
|
stride = vec.stride;
|
||||||
@ -135,6 +143,8 @@ namespace ehs
|
|||||||
if (this == &vec)
|
if (this == &vec)
|
||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
|
BaseObj::operator=((BaseObj&&)vec);
|
||||||
|
|
||||||
rawSize = vec.rawSize;
|
rawSize = vec.rawSize;
|
||||||
size = vec.size;
|
size = vec.size;
|
||||||
stride = vec.stride;
|
stride = vec.stride;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A helper class for storing version major, minor and patch.
|
/// A helper class for storing version major, minor and patch.
|
||||||
class EHS_LIB_IO Version
|
class Version
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
UInt_32 major;
|
UInt_32 major;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Database
|
class Database
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_64 hashId;
|
UInt_64 hashId;
|
||||||
|
@ -7,7 +7,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
class DbTable;
|
class DbTable;
|
||||||
|
|
||||||
class EHS_LIB_IO DbObject
|
class DbObject
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class DbTable;
|
friend class DbTable;
|
||||||
|
@ -10,7 +10,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
class Database;
|
class Database;
|
||||||
|
|
||||||
class EHS_LIB_IO DbTable
|
class DbTable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class Database;
|
friend class Database;
|
||||||
|
@ -8,7 +8,7 @@ namespace ehs
|
|||||||
class DbVarTmpl;
|
class DbVarTmpl;
|
||||||
class DbObject;
|
class DbObject;
|
||||||
|
|
||||||
class EHS_LIB_IO DbVar
|
class DbVar
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class DbObject;
|
friend class DbObject;
|
||||||
|
@ -8,7 +8,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
class DbVar;
|
class DbVar;
|
||||||
|
|
||||||
class EHS_LIB_IO DbVarTmpl
|
class DbVarTmpl
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class DbTable;
|
friend class DbTable;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseDirectory
|
class BaseDirectory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
||||||
|
@ -25,7 +25,7 @@ namespace ehs
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// A cross-platform wrapper class that handles native file input/output.
|
/// A cross-platform wrapper class that handles native file input/output.
|
||||||
class EHS_LIB_IO BaseFile
|
class BaseFile
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Str_8 path;
|
Str_8 path;
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseFileMonitor
|
class BaseFileMonitor
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Str_8 filePath;
|
Str_8 filePath;
|
||||||
|
@ -18,7 +18,7 @@ namespace ehs
|
|||||||
I_BEAM
|
I_BEAM
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO BaseWindow
|
class BaseWindow
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
bool created;
|
bool created;
|
||||||
|
@ -20,7 +20,7 @@ namespace ehs
|
|||||||
TWO
|
TWO
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO COM
|
class COM
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_8 port;
|
UInt_8 port;
|
||||||
|
@ -12,7 +12,7 @@ namespace ehs
|
|||||||
typedef int ConsoleHdl;
|
typedef int ConsoleHdl;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class EHS_LIB_IO Console
|
class Console
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static ConsoleHdl hdlOut;
|
static ConsoleHdl hdlOut;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Directory : public BaseDirectory
|
class Directory : public BaseDirectory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Directory : public BaseDirectory
|
class Directory : public BaseDirectory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
static Array<Str_8> GetAllFiles(const Str_8 &dir);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO FileMonitor : public BaseFileMonitor
|
class FileMonitor : public BaseFileMonitor
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int hdl;
|
int hdl;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO FileMonitor final : public BaseFileMonitor
|
class FileMonitor final : public BaseFileMonitor
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Handle hdl;
|
Handle hdl;
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO File : public BaseFile
|
class File : public BaseFile
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int hdl;
|
int hdl;
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO File : public BaseFile
|
class File : public BaseFile
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
HANDLE hdl;
|
HANDLE hdl;
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO FontAtlas : public BaseObj
|
class FontAtlas : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_64 hashId;
|
UInt_64 hashId;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Glyph
|
class Glyph
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Char_32 code;
|
Char_32 code;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO RIFF
|
class RIFF
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 type;
|
Str_8 type;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO RIFF_Chunk
|
class RIFF_Chunk
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Resource : public BaseObj
|
class Resource : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
ehs::UInt_64 hashId;
|
ehs::UInt_64 hashId;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO UsbBase
|
class UsbBase
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_32 bus;
|
UInt_32 bus;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Usb final : public UsbBase
|
class Usb final : public UsbBase
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int hdl;
|
int hdl;
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Window : public BaseWindow
|
class Window : public BaseWindow
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_32 owner;
|
UInt_32 owner;
|
||||||
@ -71,6 +71,13 @@ namespace ehs
|
|||||||
|
|
||||||
void SetIcon(const Str_8& filePath);
|
void SetIcon(const Str_8& filePath);
|
||||||
|
|
||||||
|
/// Sets the windows client scale.
|
||||||
|
/// @param [in] w The width in pixels.
|
||||||
|
/// @param [in] h The height in pixels.
|
||||||
|
void SetClientSize(const Vec2<UInt_32>& size);
|
||||||
|
|
||||||
|
Vec2<UInt_32> GetClientSize();
|
||||||
|
|
||||||
/// Gets the windows native handle for the operating system or other native tasks.
|
/// Gets the windows native handle for the operating system or other native tasks.
|
||||||
/// @returns The window's native handle.
|
/// @returns The window's native handle.
|
||||||
HWND GetHdl() const;
|
HWND GetHdl() const;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Window : public BaseWindow
|
class Window : public BaseWindow
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
wl_display *display;
|
wl_display *display;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Window : public BaseWindow
|
class Window : public BaseWindow
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
friend class Input;
|
friend class Input;
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Audio : public Resource
|
class Audio : public Resource
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static Array<AudioCodec> codecs;
|
static Array<AudioCodec> codecs;
|
||||||
@ -81,14 +81,10 @@ namespace ehs
|
|||||||
|
|
||||||
UInt_64 GetSampleCount() const;
|
UInt_64 GetSampleCount() const;
|
||||||
|
|
||||||
UInt_8 GetFrameSize() const;
|
|
||||||
|
|
||||||
UInt_64 GetSize() const;
|
UInt_64 GetSize() const;
|
||||||
|
|
||||||
float GetLength() const;
|
float GetLength() const;
|
||||||
|
|
||||||
Byte* GetFrame(UInt_64 frameIndex) const;
|
|
||||||
|
|
||||||
Array<Byte> FrameAsMono(UInt_64 frameIndex) const;
|
Array<Byte> FrameAsMono(UInt_64 frameIndex) const;
|
||||||
|
|
||||||
Array<Byte> FrameAsStereo(UInt_64 frameIndex) const;
|
Array<Byte> FrameAsStereo(UInt_64 frameIndex) const;
|
||||||
|
@ -8,7 +8,7 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
class Audio;
|
class Audio;
|
||||||
|
|
||||||
class EHS_LIB_IO AudioCodec
|
class AudioCodec
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -5,5 +5,5 @@
|
|||||||
#if defined(EHS_OS_WINDOWS)
|
#if defined(EHS_OS_WINDOWS)
|
||||||
#include "AudioDevice_W32.h"
|
#include "AudioDevice_W32.h"
|
||||||
#elif defined(EHS_OS_LINUX)
|
#elif defined(EHS_OS_LINUX)
|
||||||
#include "AudioDevice_PW.h"
|
#include "AudioDevice_ALSA.h"
|
||||||
#endif
|
#endif
|
46
include/ehs/io/audio/AudioDevice_ALSA.h
Normal file
46
include/ehs/io/audio/AudioDevice_ALSA.h
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "ehs/EHS.h"
|
||||||
|
#include "BaseAudioDevice.h"
|
||||||
|
|
||||||
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
|
namespace ehs
|
||||||
|
{
|
||||||
|
class AudioDevice : public BaseAudioDevice
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
snd_pcm_t* hdl;
|
||||||
|
|
||||||
|
public:
|
||||||
|
~AudioDevice() override;
|
||||||
|
|
||||||
|
AudioDevice();
|
||||||
|
|
||||||
|
AudioDevice(AudioDevice&& device) noexcept;
|
||||||
|
|
||||||
|
AudioDevice(const AudioDevice& device);
|
||||||
|
|
||||||
|
AudioDevice& operator=(AudioDevice&& device) noexcept;
|
||||||
|
|
||||||
|
AudioDevice& operator=(const AudioDevice& device);
|
||||||
|
|
||||||
|
void Release() override;
|
||||||
|
|
||||||
|
void OpenStream() override;
|
||||||
|
|
||||||
|
void CloseStream() override;
|
||||||
|
|
||||||
|
UInt_64 GetAvailFrames() const override;
|
||||||
|
|
||||||
|
Byte* Map(UInt_64* offset, UInt_64* frames) override;
|
||||||
|
|
||||||
|
void UnMap(const UInt_64 offset, const UInt_64 frames) override;
|
||||||
|
|
||||||
|
bool IsValid() const override;
|
||||||
|
|
||||||
|
static AudioDevice GetDefault(const AudioDeviceType type);
|
||||||
|
|
||||||
|
static Array<AudioDevice> Get(const AudioDeviceType type, const AudioDeviceState state);
|
||||||
|
};
|
||||||
|
}
|
@ -1,67 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "ehs/EHS.h"
|
|
||||||
#include "BaseAudioDevice.h"
|
|
||||||
|
|
||||||
#include <pipewire/pipewire.h>
|
|
||||||
#include <pipewire/loop.h>
|
|
||||||
#include <pipewire/context.h>
|
|
||||||
#include <pipewire/stream.h>
|
|
||||||
#include <spa/param/audio/format-utils.h>
|
|
||||||
|
|
||||||
namespace ehs
|
|
||||||
{
|
|
||||||
class EHS_LIB_IO AudioDevice final : public BaseAudioDevice
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
static Array<AudioDevice> devices;
|
|
||||||
static AudioDevice defOut;
|
|
||||||
static AudioDevice defIn;
|
|
||||||
|
|
||||||
UInt_32 id;
|
|
||||||
Str_8 name;
|
|
||||||
pw_loop *loop;
|
|
||||||
pw_context *context;
|
|
||||||
pw_core *core;
|
|
||||||
pw_stream *input;
|
|
||||||
pw_stream *output;
|
|
||||||
|
|
||||||
static void RegistryEventGlobal(void *data, UInt_32 id, UInt_32 permissions, const char *type, UInt_32 version, const spa_dict *props);
|
|
||||||
|
|
||||||
static void RegistryEventGlobalRemove(void *data, UInt_32 id);
|
|
||||||
|
|
||||||
static void OnParamChanged(void *data, UInt_32 id, const spa_pod *param);
|
|
||||||
|
|
||||||
public:
|
|
||||||
~AudioDevice() override;
|
|
||||||
|
|
||||||
AudioDevice();
|
|
||||||
|
|
||||||
AudioDevice(AudioDevice&& device) noexcept;
|
|
||||||
|
|
||||||
AudioDevice(const AudioDevice& device);
|
|
||||||
|
|
||||||
AudioDevice& operator=(AudioDevice&& device) noexcept;
|
|
||||||
|
|
||||||
AudioDevice& operator=(const AudioDevice& device);
|
|
||||||
|
|
||||||
void OpenStream() override;
|
|
||||||
|
|
||||||
void CloseStream() override;
|
|
||||||
|
|
||||||
UInt_64 SendStream(const void *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
UInt_64 ReceiveStream(void *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
bool IsStreaming() const override;
|
|
||||||
|
|
||||||
bool IsValid() const override;
|
|
||||||
|
|
||||||
static AudioDevice GetDefault(AudioDeviceType type);
|
|
||||||
|
|
||||||
static Array<AudioDevice> Get(AudioDeviceType type, AudioDeviceState state);
|
|
||||||
|
|
||||||
private:
|
|
||||||
Str_8 GetCategory() const;
|
|
||||||
};
|
|
||||||
}
|
|
@ -12,7 +12,7 @@ struct IMMDevice;
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO AudioDevice final : public BaseAudioDevice
|
class AudioDevice : public BaseAudioDevice
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
IMMDevice* hdl;
|
IMMDevice* hdl;
|
||||||
@ -33,13 +33,17 @@ namespace ehs
|
|||||||
|
|
||||||
AudioDevice& operator=(const AudioDevice& device);
|
AudioDevice& operator=(const AudioDevice& device);
|
||||||
|
|
||||||
|
void Release() override;
|
||||||
|
|
||||||
void OpenStream() override;
|
void OpenStream() override;
|
||||||
|
|
||||||
void CloseStream() override;
|
void CloseStream() override;
|
||||||
|
|
||||||
UInt_64 SendStream(const void *data, UInt_64 outFrameSize) override;
|
UInt_64 GetAvailFrames() const override;
|
||||||
|
|
||||||
UInt_64 ReceiveStream(void *data, UInt_64 inFrameSize) override;
|
Byte* Map(UInt_64* offset, UInt_64* frames) override;
|
||||||
|
|
||||||
|
void UnMap(const UInt_64 offset, const UInt_64 frames) override;
|
||||||
|
|
||||||
Str_32 GetInterfaceName_32() const;
|
Str_32 GetInterfaceName_32() const;
|
||||||
|
|
||||||
@ -53,12 +57,10 @@ namespace ehs
|
|||||||
|
|
||||||
Str_8 GetName_8() const;
|
Str_8 GetName_8() const;
|
||||||
|
|
||||||
bool IsStreaming() const override;
|
|
||||||
|
|
||||||
bool IsValid() const override;
|
bool IsValid() const override;
|
||||||
|
|
||||||
static AudioDevice GetDefault(AudioDeviceType type);
|
static AudioDevice GetDefault(const AudioDeviceType type);
|
||||||
|
|
||||||
static Array<AudioDevice> Get(AudioDeviceType type, AudioDeviceState state);
|
static Array<AudioDevice> Get(const AudioDeviceType type, const AudioDeviceState state);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,8 @@ namespace ehs
|
|||||||
{
|
{
|
||||||
enum class AudioDeviceType
|
enum class AudioDeviceType
|
||||||
{
|
{
|
||||||
INPUT = 0x1,
|
|
||||||
OUTPUT = 0x0,
|
OUTPUT = 0x0,
|
||||||
|
INPUT = 0x1,
|
||||||
ALL = 0x2
|
ALL = 0x2
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -23,17 +23,18 @@ namespace ehs
|
|||||||
UNPLUGGED = 0x8
|
UNPLUGGED = 0x8
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO BaseAudioDevice
|
class BaseAudioDevice
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
AudioDeviceType type;
|
AudioDeviceType type;
|
||||||
DataType dataType;
|
DataType dataType;
|
||||||
UInt_16 byteDepth;
|
UInt_16 bitDepth;
|
||||||
UInt_32 sampleRate;
|
UInt_32 sampleRate;
|
||||||
UInt_32 channels;
|
UInt_32 channels;
|
||||||
UInt_32 period;
|
UInt_32 period;
|
||||||
UInt_32 latency;
|
UInt_32 latency;
|
||||||
UInt_64 maxFrames;
|
UInt_64 maxFrames;
|
||||||
|
bool streaming;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual ~BaseAudioDevice() = default;
|
virtual ~BaseAudioDevice() = default;
|
||||||
@ -44,21 +45,21 @@ namespace ehs
|
|||||||
|
|
||||||
BaseAudioDevice& operator=(const BaseAudioDevice& device);
|
BaseAudioDevice& operator=(const BaseAudioDevice& device);
|
||||||
|
|
||||||
|
virtual void Release();
|
||||||
|
|
||||||
virtual void OpenStream();
|
virtual void OpenStream();
|
||||||
|
|
||||||
virtual void CloseStream();
|
virtual void CloseStream();
|
||||||
|
|
||||||
virtual UInt_64 SendStream(const void *data, UInt_64 size);
|
virtual UInt_64 GetAvailFrames() const;
|
||||||
|
|
||||||
virtual UInt_64 ReceiveStream(void *data, UInt_64 size);
|
virtual Byte* Map(UInt_64* offset, UInt_64* frames);
|
||||||
|
|
||||||
void BridgeStreams(BaseAudioDevice *input, UInt_64 frameBufferSize);
|
virtual void UnMap(const UInt_64 offset, const UInt_64 frames);
|
||||||
|
|
||||||
void BridgeStreams(UInt_64 frameBufferSize);
|
|
||||||
|
|
||||||
AudioDeviceType GetType() const;
|
AudioDeviceType GetType() const;
|
||||||
|
|
||||||
void SetDataType(DataType newDataType);
|
void SetDataType(const DataType newDataType);
|
||||||
|
|
||||||
DataType GetDataType() const;
|
DataType GetDataType() const;
|
||||||
|
|
||||||
@ -66,39 +67,39 @@ namespace ehs
|
|||||||
|
|
||||||
UInt_16 GetBitDepth() const;
|
UInt_16 GetBitDepth() const;
|
||||||
|
|
||||||
void SetSampleRate(UInt_32 newSampleRate);
|
void SetSampleRate(const UInt_32 newSampleRate);
|
||||||
|
|
||||||
UInt_32 GetSampleRate() const;
|
UInt_32 GetSampleRate() const;
|
||||||
|
|
||||||
void SetChannels(UInt_32 newChannels);
|
void SetChannels(const UInt_32 newChannels);
|
||||||
|
|
||||||
UInt_16 GetChannels() const;
|
UInt_16 GetChannels() const;
|
||||||
|
|
||||||
UInt_32 GetFrameSize() const;
|
UInt_32 GetFrameSize() const;
|
||||||
|
|
||||||
void SetPeriod(UInt_32 newPeriod);
|
void SetPeriod(const UInt_32 newPeriod);
|
||||||
|
|
||||||
UInt_32 GetPeriod() const;
|
UInt_32 GetPeriod() const;
|
||||||
|
|
||||||
void SetLatency(UInt_32 newLatency);
|
void SetLatency(const UInt_32 newLatency);
|
||||||
|
|
||||||
UInt_32 GetLatency() const;
|
UInt_32 GetLatency() const;
|
||||||
|
|
||||||
UInt_64 GetMaxFrames() const;
|
UInt_64 GetMaxFrames() const;
|
||||||
|
|
||||||
virtual bool IsStreaming() const;
|
bool IsStreaming() const;
|
||||||
|
|
||||||
virtual bool IsValid() const;
|
virtual bool IsValid() const;
|
||||||
|
|
||||||
/// Retrieves the default audio input/output device.
|
/// Retrieves the default audio input/output device.
|
||||||
/// @param [in] type The audio device type to retrieve.
|
/// @param [in] type The audio device type to retrieve.
|
||||||
/// @param [out] device The default audio device.
|
/// @param [out] device The default audio device.
|
||||||
static BaseAudioDevice GetDefault(AudioDeviceType type);
|
static BaseAudioDevice GetDefault(const AudioDeviceType type);
|
||||||
|
|
||||||
/// Retrieves a list of audio input/output devices.
|
/// Retrieves a list of audio input/output devices.
|
||||||
/// @param [in] type The audio device type to retrieve.
|
/// @param [in] type The audio device type to retrieve.
|
||||||
/// @param [in] state The audio device state to retrieve.
|
/// @param [in] state The audio device state to retrieve.
|
||||||
/// @param [out] devices The list of audio devices.
|
/// @param [out] devices The list of audio devices.
|
||||||
static Array<BaseAudioDevice> Get(AudioDeviceType type, AudioDeviceState state);
|
static Array<BaseAudioDevice> Get(const AudioDeviceType type, const AudioDeviceState state);
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -5,33 +5,27 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Button
|
class Button
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_32 hash;
|
|
||||||
Str_8 name;
|
Str_8 name;
|
||||||
|
UInt_32 hash;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Button();
|
Button();
|
||||||
|
|
||||||
Button(Str_8 name);
|
Button(const Str_8& name);
|
||||||
|
|
||||||
Button(Button &&key) noexcept;
|
Button(const Button& key);
|
||||||
|
|
||||||
Button(const Button &key);
|
Button& operator=(const Button& key);
|
||||||
|
|
||||||
Button &operator=(Button &&key) noexcept;
|
bool operator==(const Button& key) const;
|
||||||
|
|
||||||
Button &operator=(const Button &key);
|
bool operator!=(const Button& key) const;
|
||||||
|
|
||||||
bool operator==(const Button &key) const;
|
|
||||||
|
|
||||||
bool operator!=(const Button &key) const;
|
|
||||||
|
|
||||||
UInt_32 GetHash() const;
|
|
||||||
|
|
||||||
Str_8 GetName() const;
|
Str_8 GetName() const;
|
||||||
|
|
||||||
bool IsValid() const;
|
UInt_32 GetHash() const;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ namespace ehs
|
|||||||
TOUCHED
|
TOUCHED
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO ButtonState
|
class ButtonState
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Button button;
|
Button button;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO HID
|
class HID
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
UInt_8 type;
|
UInt_8 type;
|
||||||
@ -15,15 +15,11 @@ namespace ehs
|
|||||||
Str_8 name;
|
Str_8 name;
|
||||||
UInt_64 id;
|
UInt_64 id;
|
||||||
Array<ButtonState> states;
|
Array<ButtonState> states;
|
||||||
Button lastState;
|
|
||||||
float heldTime;
|
|
||||||
float activateTime;
|
|
||||||
bool active;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HID();
|
HID();
|
||||||
|
|
||||||
HID(UInt_8 type, Str_8 name, UInt_64 id);
|
HID(const UInt_8 type, Str_8 name, const UInt_64 id);
|
||||||
|
|
||||||
HID(HID&& hid) noexcept;
|
HID(HID&& hid) noexcept;
|
||||||
|
|
||||||
@ -37,11 +33,11 @@ namespace ehs
|
|||||||
|
|
||||||
bool operator!=(const HID& other) const;
|
bool operator!=(const HID& other) const;
|
||||||
|
|
||||||
bool operator==(UInt_64 otherId) const;
|
bool operator==(const UInt_64 otherId) const;
|
||||||
|
|
||||||
bool operator!=(UInt_64 otherId) const;
|
bool operator!=(const UInt_64 otherId) const;
|
||||||
|
|
||||||
virtual void Poll(float delta);
|
virtual void Poll();
|
||||||
|
|
||||||
UInt_8 GetType() const;
|
UInt_8 GetType() const;
|
||||||
|
|
||||||
@ -75,10 +71,6 @@ namespace ehs
|
|||||||
|
|
||||||
const ButtonState* IsUp() const;
|
const ButtonState* IsUp() const;
|
||||||
|
|
||||||
const ButtonState *IsPressed(const Button &button);
|
|
||||||
|
|
||||||
const ButtonState *GetPressed();
|
|
||||||
|
|
||||||
void ButtonDown(const Button& button);
|
void ButtonDown(const Button& button);
|
||||||
|
|
||||||
void ButtonUp(const Button& button);
|
void ButtonUp(const Button& button);
|
||||||
@ -95,11 +87,5 @@ namespace ehs
|
|||||||
bool AddState(const ButtonState& state);
|
bool AddState(const ButtonState& state);
|
||||||
|
|
||||||
ButtonState* GetState(const Button& button);
|
ButtonState* GetState(const Button& button);
|
||||||
|
|
||||||
bool TickHoldTime(float delta);
|
|
||||||
|
|
||||||
void ResetTime();
|
|
||||||
|
|
||||||
void TickActivateTime(float delta);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Input
|
class Input
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Array<InputHandler*> handlers;
|
Array<InputHandler*> handlers;
|
||||||
|
@ -5,13 +5,11 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO InputHandler
|
class InputHandler
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_64 hashId;
|
UInt_64 hashId;
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
UInt_64 start;
|
|
||||||
UInt_64 delta;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Array<HID*> devices;
|
Array<HID*> devices;
|
||||||
@ -31,9 +29,9 @@ namespace ehs
|
|||||||
|
|
||||||
InputHandler& operator=(const InputHandler& ih);
|
InputHandler& operator=(const InputHandler& ih);
|
||||||
|
|
||||||
bool operator==(const UInt_64 otherHashId) const;
|
bool operator==(const UInt_64 otherHashId);
|
||||||
|
|
||||||
bool operator!=(const UInt_64 otherHashId) const;
|
bool operator!=(const UInt_64 otherHashId);
|
||||||
|
|
||||||
virtual bool Initialize();
|
virtual bool Initialize();
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Keyboard : public HID
|
class Keyboard : public HID
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Keyboard();
|
Keyboard();
|
||||||
@ -23,7 +23,7 @@ namespace ehs
|
|||||||
|
|
||||||
Keyboard& operator=(const Keyboard& hid);
|
Keyboard& operator=(const Keyboard& hid);
|
||||||
|
|
||||||
void Poll(float delta) override;
|
void Poll() override;
|
||||||
|
|
||||||
Keyboard* Clone() const override;
|
Keyboard* Clone() const override;
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Mouse : public HID
|
class Mouse : public HID
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
friend class Input;
|
friend class Input;
|
||||||
@ -19,7 +19,7 @@ namespace ehs
|
|||||||
public:
|
public:
|
||||||
Mouse();
|
Mouse();
|
||||||
|
|
||||||
Mouse(Str_8 name, UInt_64 id);
|
Mouse(Str_8 name, const UInt_64 id);
|
||||||
|
|
||||||
Mouse(Mouse&& hid) noexcept = default;
|
Mouse(Mouse&& hid) noexcept = default;
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ namespace ehs
|
|||||||
|
|
||||||
Mouse& operator=(const Mouse& hid);
|
Mouse& operator=(const Mouse& hid);
|
||||||
|
|
||||||
void Poll(float delta) override;
|
void Poll() override;
|
||||||
|
|
||||||
void SetDelta(const Vec2_s32& newDelta);
|
void SetDelta(const Vec2_s32& newDelta);
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ namespace ehs
|
|||||||
NEAREST_NEIGHBOR
|
NEAREST_NEIGHBOR
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO Img : public BaseObj
|
class Img : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static Array<ImgCodec> codecs;
|
static Array<ImgCodec> codecs;
|
||||||
|
@ -12,7 +12,7 @@ namespace ehs
|
|||||||
typedef bool (*EncodeImgCb)(const ImgCodec* const, Serializer<UInt_64>&, const Img*);
|
typedef bool (*EncodeImgCb)(const ImgCodec* const, Serializer<UInt_64>&, const Img*);
|
||||||
typedef bool (*DecodeImgCb)(const ImgCodec* const, Serializer<UInt_64>&, Img*);
|
typedef bool (*DecodeImgCb)(const ImgCodec* const, Serializer<UInt_64>&, Img*);
|
||||||
|
|
||||||
class EHS_LIB_IO ImgCodec
|
class ImgCodec
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO PNG
|
class PNG
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO PNG_Chunk
|
class PNG_Chunk
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO AnimBone
|
class AnimBone
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_8 boneId;
|
UInt_8 boneId;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Animation
|
class Animation
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_64 hashId;
|
UInt_64 hashId;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Bone
|
class Bone
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_64 hashName;
|
UInt_64 hashName;
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO KeyFrame
|
class KeyFrame
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
float num;
|
float num;
|
||||||
|
@ -15,7 +15,7 @@ namespace ehs
|
|||||||
EHM
|
EHM
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO Mdl : public BaseObj
|
class Mdl : public BaseObj
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static Array<MdlCodec> codecs;
|
static Array<MdlCodec> codecs;
|
||||||
|
@ -12,7 +12,7 @@ namespace ehs
|
|||||||
typedef bool (*EnocdeMdlCb)(const MdlCodec*, Serializer<UInt_64>&, const Mdl*);
|
typedef bool (*EnocdeMdlCb)(const MdlCodec*, Serializer<UInt_64>&, const Mdl*);
|
||||||
typedef bool (*DecodeMdlCb)(const MdlCodec*, Serializer<UInt_64>&, Mdl*);
|
typedef bool (*DecodeMdlCb)(const MdlCodec*, Serializer<UInt_64>&, Mdl*);
|
||||||
|
|
||||||
class EHS_LIB_IO MdlCodec
|
class MdlCodec
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Str_8 id;
|
Str_8 id;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Mesh final : public BaseObj
|
class Mesh final : public BaseObj
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
UInt_64 hashId;
|
UInt_64 hashId;
|
||||||
|
@ -19,7 +19,7 @@ namespace ehs
|
|||||||
INVALID
|
INVALID
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO PropertyChange
|
class PropertyChange
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ChangeType type;
|
ChangeType type;
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseDNS
|
class BaseDNS
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Str_8 Resolve(IP type, const Str_8 &hostname);
|
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
|
||||||
|
|
||||||
/// Resolves a hostname to an ip address.
|
/// Resolves a hostname to an ip address.
|
||||||
/// @param [in] hostname The given hostname to resolve.
|
/// @param [in] hostname The given hostname to resolve.
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "ehs/Serializer.h"
|
|
||||||
#include "ehs/Types.h"
|
|
||||||
#include "ehs/io/socket/Socket.h"
|
|
||||||
|
|
||||||
namespace ehs
|
|
||||||
{
|
|
||||||
struct ICMP_Header
|
|
||||||
{
|
|
||||||
UInt_8 type;
|
|
||||||
UInt_8 code;
|
|
||||||
UInt_16 checksum;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ICMP_EchoRequest
|
|
||||||
{
|
|
||||||
UInt_16 id;
|
|
||||||
UInt_16 sequence;
|
|
||||||
};
|
|
||||||
|
|
||||||
class BaseICMP
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
IP version;
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual ~BaseICMP() = default;
|
|
||||||
|
|
||||||
BaseICMP();
|
|
||||||
|
|
||||||
BaseICMP(IP version);
|
|
||||||
|
|
||||||
BaseICMP(BaseICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
BaseICMP(const BaseICMP &icmp);
|
|
||||||
|
|
||||||
BaseICMP &operator=(BaseICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
BaseICMP &operator=(const BaseICMP &icmp);
|
|
||||||
|
|
||||||
virtual void Release();
|
|
||||||
|
|
||||||
UInt_64 Send(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size);
|
|
||||||
|
|
||||||
UInt_64 Receive(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data);
|
|
||||||
|
|
||||||
void SendEchoRequest(const Str_8 &address, ICMP_EchoRequest er, const Byte *data, UInt_64 size);
|
|
||||||
|
|
||||||
virtual void SetReceiveTimeout(UInt_64 timeout);
|
|
||||||
|
|
||||||
IP GetVersion() const;
|
|
||||||
|
|
||||||
virtual bool IsValid() const;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
static UInt_16 ComputeChecksumV4(UInt_16 *buffer, Size length);
|
|
||||||
|
|
||||||
private:
|
|
||||||
virtual UInt_64 SendV6(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size);
|
|
||||||
|
|
||||||
virtual UInt_64 SendV4(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size);
|
|
||||||
|
|
||||||
virtual UInt_64 ReceiveV6(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const;
|
|
||||||
|
|
||||||
virtual UInt_64 ReceiveV4(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const;
|
|
||||||
};
|
|
||||||
}
|
|
@ -9,10 +9,10 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseTCP
|
class BaseTCP
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
IP ip;
|
AddrType addrType;
|
||||||
Str_8 localAddr;
|
Str_8 localAddr;
|
||||||
UInt_16 localPort;
|
UInt_16 localPort;
|
||||||
Str_8 remoteHostName;
|
Str_8 remoteHostName;
|
||||||
@ -35,7 +35,7 @@ namespace ehs
|
|||||||
|
|
||||||
/// Properly initializes the socket.
|
/// Properly initializes the socket.
|
||||||
/// @param [in] type The ip version to initialize the socket with.
|
/// @param [in] type The ip version to initialize the socket with.
|
||||||
BaseTCP(IP ip);
|
BaseTCP(AddrType addrType);
|
||||||
|
|
||||||
BaseTCP(BaseTCP&& tcp) noexcept;
|
BaseTCP(BaseTCP&& tcp) noexcept;
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ namespace ehs
|
|||||||
|
|
||||||
/// Retrieves the sockets ip version.
|
/// Retrieves the sockets ip version.
|
||||||
/// @returns The ip version.
|
/// @returns The ip version.
|
||||||
IP GetAddressType() const;
|
AddrType GetAddressType() const;
|
||||||
|
|
||||||
/// Retrieves the bound ip address.
|
/// Retrieves the bound ip address.
|
||||||
/// @returns The ip address.
|
/// @returns The ip address.
|
||||||
|
@ -6,10 +6,12 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO BaseUDP
|
class BaseUDP
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Endpoint localEndpoint;
|
AddrType type;
|
||||||
|
Str_8 address;
|
||||||
|
UInt_16 port;
|
||||||
bool bound;
|
bool bound;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -20,7 +22,7 @@ namespace ehs
|
|||||||
|
|
||||||
/// Properly initializes the socket.
|
/// Properly initializes the socket.
|
||||||
/// @param [in] type The ip version to initialize the socket with.
|
/// @param [in] type The ip version to initialize the socket with.
|
||||||
BaseUDP(IP version);
|
BaseUDP(AddrType type);
|
||||||
|
|
||||||
BaseUDP(BaseUDP&& udp) noexcept;
|
BaseUDP(BaseUDP&& udp) noexcept;
|
||||||
|
|
||||||
@ -38,13 +40,13 @@ namespace ehs
|
|||||||
/// @param [in] address The ip address to bind to.
|
/// @param [in] address The ip address to bind to.
|
||||||
/// @param [in] port The port to bind to.
|
/// @param [in] port The port to bind to.
|
||||||
/// @note Used for servers.
|
/// @note Used for servers.
|
||||||
virtual void Bind(const Endpoint &endpoint) = 0;
|
virtual void Bind(AddrType type, const Str_8& address, UInt_16 port) = 0;
|
||||||
|
|
||||||
/// Sends data to the endpoint.
|
/// Sends data to the endpoint.
|
||||||
/// @param [in] type The ip version of the endpoint.
|
/// @param [in] type The ip version of the endpoint.
|
||||||
/// @param [in] address The ip address of the endpoint.
|
/// @param [in] address The ip address of the endpoint.
|
||||||
/// @param [in] port The port of the endpoint is bound to.
|
/// @param [in] port The port of the endpoint is bound to.
|
||||||
virtual UInt_64 Send(const Endpoint &endpoint, const Byte *data, UInt_64 size) = 0;
|
virtual UInt_64 Send(AddrType type, const Str_8& address, UInt_16 port, const Byte* data, UInt_64 size) = 0;
|
||||||
|
|
||||||
/// Receives data from the endpoint.
|
/// Receives data from the endpoint.
|
||||||
/// @param [out] type The ip version of the endpoint.
|
/// @param [out] type The ip version of the endpoint.
|
||||||
@ -53,7 +55,7 @@ namespace ehs
|
|||||||
/// @param [out] data The incoming data from the endpoint.
|
/// @param [out] data The incoming data from the endpoint.
|
||||||
/// @param [in] size The max size of the buffer in bytes to store the data.
|
/// @param [in] size The max size of the buffer in bytes to store the data.
|
||||||
/// @returns The size of the incoming data in bytes.
|
/// @returns The size of the incoming data in bytes.
|
||||||
virtual UInt_64 Receive(Endpoint *endpoint, Byte *data, UInt_64 size) = 0;
|
virtual UInt_64 Receive(AddrType* type, Str_8* address, UInt_16* port, Byte* data, UInt_64 size) = 0;
|
||||||
|
|
||||||
/// Retrieves whether or not this socket is bound to an ip address and port.
|
/// Retrieves whether or not this socket is bound to an ip address and port.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
@ -71,7 +73,17 @@ namespace ehs
|
|||||||
|
|
||||||
virtual bool IsIPv6Only() const = 0;
|
virtual bool IsIPv6Only() const = 0;
|
||||||
|
|
||||||
Endpoint GetLocalEndpoint() const;
|
/// Retrieves the bound ip version.
|
||||||
|
/// @returns The result.
|
||||||
|
AddrType GetLocalAddressType() const;
|
||||||
|
|
||||||
|
/// Retrieves the bound ip address.
|
||||||
|
/// @returns The bound ip address.
|
||||||
|
Str_8 GetLocalAddress() const;
|
||||||
|
|
||||||
|
/// Retrieves the bound port.
|
||||||
|
/// @returns The bound port.
|
||||||
|
UInt_16 GetLocalPort() const;
|
||||||
|
|
||||||
/// Retrieves whether or not this socket was initialized.
|
/// Retrieves whether or not this socket was initialized.
|
||||||
/// @returns The result.
|
/// @returns The result.
|
||||||
|
@ -7,10 +7,10 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO DNS final : public BaseDNS
|
class DNS final : public BaseDNS
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Str_8 Resolve(IP type, const Str_8 &hostname);
|
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
|
||||||
|
|
||||||
static Str_8 Resolve(const Str_8 &hostname);
|
static Str_8 Resolve(const Str_8 &hostname);
|
||||||
};
|
};
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO DNS final : public BaseDNS
|
class DNS final : public BaseDNS
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Str_8 Resolve(IP type, const Str_8 &hostname);
|
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
|
||||||
|
|
||||||
static Str_8 Resolve(const Str_8 &hostname);
|
static Str_8 Resolve(const Str_8 &hostname);
|
||||||
};
|
};
|
||||||
|
@ -1,95 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "ehs/io/socket/ehc/NetEnc.h"
|
|
||||||
#include "ehs/Array.h"
|
|
||||||
#include "Socket.h"
|
|
||||||
#include "UDP.h"
|
|
||||||
|
|
||||||
namespace ehs
|
|
||||||
{
|
|
||||||
class NetServerCh;
|
|
||||||
class NetClientCh;
|
|
||||||
class NetEnd;
|
|
||||||
class EHC;
|
|
||||||
|
|
||||||
class EHC
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
friend class NetEnc;
|
|
||||||
friend class NetChannel;
|
|
||||||
friend class NetServerCh;
|
|
||||||
friend class NetClientCh;
|
|
||||||
friend class NetEnd;
|
|
||||||
|
|
||||||
static const Version version;
|
|
||||||
|
|
||||||
UDP udp;
|
|
||||||
Byte* buffer;
|
|
||||||
UInt_32 bufferSize;
|
|
||||||
UInt_64 lastTSC;
|
|
||||||
float delta;
|
|
||||||
Array<NetEnc *> encryptions;
|
|
||||||
Array<NetServerCh *> servers;
|
|
||||||
Array<NetClientCh *> clients;
|
|
||||||
|
|
||||||
public:
|
|
||||||
~EHC();
|
|
||||||
|
|
||||||
EHC(IP version = IP::V6);
|
|
||||||
|
|
||||||
EHC(EHC &&sock) noexcept;
|
|
||||||
|
|
||||||
EHC(const EHC &sock);
|
|
||||||
|
|
||||||
EHC &operator=(EHC&& sock) noexcept;
|
|
||||||
|
|
||||||
EHC &operator=(const EHC &sock);
|
|
||||||
|
|
||||||
void Initialize();
|
|
||||||
|
|
||||||
void Release();
|
|
||||||
|
|
||||||
void Bind(const Endpoint &endpoint);
|
|
||||||
|
|
||||||
void Poll();
|
|
||||||
|
|
||||||
bool IsInitialized() const;
|
|
||||||
|
|
||||||
Endpoint GetLocalEndpoint() const;
|
|
||||||
|
|
||||||
bool IsBound() const;
|
|
||||||
|
|
||||||
static Version GetVersion();
|
|
||||||
|
|
||||||
bool AddEncryption(NetEnc *enc);
|
|
||||||
|
|
||||||
bool HasServer(UInt_64 serverId) const;
|
|
||||||
|
|
||||||
bool HasServer(const Str_8& serverName) const;
|
|
||||||
|
|
||||||
bool AddServer(NetServerCh *server);
|
|
||||||
|
|
||||||
NetServerCh *GetServer(UInt_64 serverId) const;
|
|
||||||
|
|
||||||
NetServerCh *GetServer(const Str_8& serverName) const;
|
|
||||||
|
|
||||||
bool HasClient(UInt_64 clientId) const;
|
|
||||||
|
|
||||||
bool HasClient(const Str_8& clientName) const;
|
|
||||||
|
|
||||||
bool AddClient(NetClientCh *channel);
|
|
||||||
|
|
||||||
NetClientCh *GetClient(UInt_64 clientId) const;
|
|
||||||
|
|
||||||
NetClientCh *GetClient(const Str_8& clientName) const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool HasEncryption(UInt_64 encId) const;
|
|
||||||
|
|
||||||
bool HasEncryption(const Str_8& encName) const;
|
|
||||||
|
|
||||||
NetEnc* GetEncryption(UInt_64 encId) const;
|
|
||||||
|
|
||||||
NetEnc* GetEncryption(const Str_8& encName) const;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "ehs/system/OS.h"
|
|
||||||
|
|
||||||
#ifdef EHS_OS_WINDOWS
|
|
||||||
#include "ICMP_W32.h"
|
|
||||||
#else
|
|
||||||
#include "ICMP_LNX.h"
|
|
||||||
#endif
|
|
@ -1,60 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "BaseICMP.h"
|
|
||||||
|
|
||||||
#include <netinet/in.h>
|
|
||||||
|
|
||||||
namespace ehs
|
|
||||||
{
|
|
||||||
struct PseudoICMPv6_Header
|
|
||||||
{
|
|
||||||
sockaddr_in6 src;
|
|
||||||
sockaddr_in6 dst;
|
|
||||||
UInt_32 length;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ICMP final : public BaseICMP
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
Int_32 hdl;
|
|
||||||
sockaddr_in6 src;
|
|
||||||
|
|
||||||
public:
|
|
||||||
~ICMP() override;
|
|
||||||
|
|
||||||
ICMP();
|
|
||||||
|
|
||||||
ICMP(IP version);
|
|
||||||
|
|
||||||
ICMP(ICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
ICMP(const ICMP &icmp);
|
|
||||||
|
|
||||||
ICMP &operator=(ICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
ICMP &operator=(const ICMP &icmp);
|
|
||||||
|
|
||||||
void Release() override;
|
|
||||||
|
|
||||||
void SetReceiveTimeout(UInt_64 timeout) override;
|
|
||||||
|
|
||||||
bool IsValid() const override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
static bool IsLinkLocal(const in6_addr &addr);
|
|
||||||
|
|
||||||
static sockaddr_in6 RetrieveSrcAddress();
|
|
||||||
|
|
||||||
static UInt_32 CalculatePseudoHeaderChecksum(const PseudoICMPv6_Header &header);
|
|
||||||
|
|
||||||
UInt_16 ComputeChecksumV6(UInt_16* buffer, Size length, const sockaddr_in6& dst);
|
|
||||||
|
|
||||||
UInt_64 SendV6(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
UInt_64 SendV4(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
UInt_64 ReceiveV6(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const override;
|
|
||||||
|
|
||||||
UInt_64 ReceiveV4(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const override;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,63 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "BaseICMP.h"
|
|
||||||
#include "ehs/System/OS.h"
|
|
||||||
|
|
||||||
#include <winsock2.h>
|
|
||||||
#include <WS2tcpip.h>
|
|
||||||
#include <iphlpapi.h>
|
|
||||||
|
|
||||||
namespace ehs
|
|
||||||
{
|
|
||||||
struct PseudoICMPv6_Header
|
|
||||||
{
|
|
||||||
sockaddr_in6 src;
|
|
||||||
sockaddr_in6 dst;
|
|
||||||
UInt_32 length;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ICMP : public BaseICMP
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
Socket hdl;
|
|
||||||
sockaddr_in6 src;
|
|
||||||
|
|
||||||
public:
|
|
||||||
~ICMP() override;
|
|
||||||
|
|
||||||
ICMP();
|
|
||||||
|
|
||||||
ICMP(IP version);
|
|
||||||
|
|
||||||
ICMP(ICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
ICMP(const ICMP &icmp);
|
|
||||||
|
|
||||||
ICMP &operator=(ICMP &&icmp) noexcept;
|
|
||||||
|
|
||||||
ICMP &operator=(const ICMP &icmp);
|
|
||||||
|
|
||||||
void Release() override;
|
|
||||||
|
|
||||||
void SetReceiveTimeout(UInt_64 timeout) override;
|
|
||||||
|
|
||||||
bool IsValid() const override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
static bool IsLinkLocal(const in6_addr &addr);
|
|
||||||
|
|
||||||
static sockaddr_in6 RetrieveSrcAddress();
|
|
||||||
|
|
||||||
static UInt_32 CalculatePseudoHeaderChecksum(const PseudoICMPv6_Header &header);
|
|
||||||
|
|
||||||
UInt_16 ComputeChecksumV6(UInt_16* buffer, Size length, const sockaddr_in6& dst);
|
|
||||||
|
|
||||||
UInt_64 SendV6(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
UInt_64 SendV4(const Str_8 &address, ICMP_Header header, const Byte *data, UInt_64 size) override;
|
|
||||||
|
|
||||||
UInt_64 ReceiveV6(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const override;
|
|
||||||
|
|
||||||
UInt_64 ReceiveV4(Str_8 &address, ICMP_Header &header, Serializer<UInt_64> &data) const override;
|
|
||||||
};
|
|
||||||
}
|
|
@ -16,7 +16,7 @@ namespace ehs
|
|||||||
DEL
|
DEL
|
||||||
};
|
};
|
||||||
|
|
||||||
class EHS_LIB_IO Request
|
class Request
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Verb verb;
|
Verb verb;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
class EHS_LIB_IO Response
|
class Response
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
UInt_32 code;
|
UInt_32 code;
|
||||||
|
@ -12,7 +12,7 @@ typedef struct ssl_st SSL;
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A class for handling the HTTP(S) TCP socket layer.
|
/// A class for handling the HTTP(S) TCP socket layer.
|
||||||
class EHS_LIB_IO SSL : public TCP
|
class SSL : public TCP
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
SSL_CTX* ctx;
|
SSL_CTX* ctx;
|
||||||
@ -23,7 +23,7 @@ namespace ehs
|
|||||||
|
|
||||||
SSL();
|
SSL();
|
||||||
|
|
||||||
SSL(const IP type);
|
SSL(const AddrType type);
|
||||||
|
|
||||||
SSL(TCP&& tcp) noexcept;
|
SSL(TCP&& tcp) noexcept;
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ehs/Str.h"
|
|
||||||
|
|
||||||
#ifndef EHS_IPV4_HEADER
|
#ifndef EHS_IPV4_HEADER
|
||||||
#define EHS_IPV4_HEADER 60
|
#define EHS_IPV4_HEADER 60
|
||||||
#include <string>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef EHS_IPV6_HEADER
|
#ifndef EHS_IPV6_HEADER
|
||||||
@ -25,10 +22,10 @@
|
|||||||
|
|
||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
enum class IP
|
enum class AddrType
|
||||||
{
|
{
|
||||||
V4,
|
IPV6,
|
||||||
V6
|
IPV4
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class ContentType
|
enum class ContentType
|
||||||
@ -44,13 +41,6 @@ namespace ehs
|
|||||||
NONE
|
NONE
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Endpoint
|
|
||||||
{
|
|
||||||
IP version = IP::V6;
|
|
||||||
Str_8 address;
|
|
||||||
UInt_16 port = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
#if defined(EHS_OS_WINDOWS)
|
#if defined(EHS_OS_WINDOWS)
|
||||||
typedef UInt_64 Socket;
|
typedef UInt_64 Socket;
|
||||||
#define EHS_INVALID_SOCKET EHS_UINT_64_MAX
|
#define EHS_INVALID_SOCKET EHS_UINT_64_MAX
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A wrapper class for the transmission control protocol socket.
|
/// A wrapper class for the transmission control protocol socket.
|
||||||
class EHS_LIB_IO TCP : public BaseTCP
|
class TCP : public BaseTCP
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Socket hdl;
|
Socket hdl;
|
||||||
@ -22,7 +22,7 @@ namespace ehs
|
|||||||
/// Default members initialization.
|
/// Default members initialization.
|
||||||
TCP();
|
TCP();
|
||||||
|
|
||||||
TCP(IP IP);
|
TCP(AddrType addrType);
|
||||||
|
|
||||||
TCP(TCP&& tcp) noexcept;
|
TCP(TCP&& tcp) noexcept;
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A wrapper class for the transmission control protocol socket.
|
/// A wrapper class for the transmission control protocol socket.
|
||||||
class EHS_LIB_IO TCP : public BaseTCP
|
class TCP : public BaseTCP
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Socket hdl;
|
Socket hdl;
|
||||||
@ -22,7 +22,7 @@ namespace ehs
|
|||||||
/// Default members initialization.
|
/// Default members initialization.
|
||||||
TCP();
|
TCP();
|
||||||
|
|
||||||
TCP(IP IP);
|
TCP(AddrType addrType);
|
||||||
|
|
||||||
TCP(TCP&& tcp) noexcept;
|
TCP(TCP&& tcp) noexcept;
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A wrapper class for the user datagram protocol socket.
|
/// A wrapper class for the user datagram protocol socket.
|
||||||
class EHS_LIB_IO UDP : public BaseUDP
|
class UDP : public BaseUDP
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Socket hdl;
|
Socket hdl;
|
||||||
@ -19,7 +19,7 @@ namespace ehs
|
|||||||
UDP();
|
UDP();
|
||||||
|
|
||||||
/// Default members initialization.
|
/// Default members initialization.
|
||||||
UDP(IP version);
|
UDP(AddrType type);
|
||||||
|
|
||||||
UDP(UDP&& udp) noexcept;
|
UDP(UDP&& udp) noexcept;
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ namespace ehs
|
|||||||
/// @param [in] address The local IPv4 or IPv6 address to bind to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
/// @param [in] address The local IPv4 or IPv6 address to bind to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
||||||
/// @param [in] port The port to bind to.
|
/// @param [in] port The port to bind to.
|
||||||
/// @note Requires the port given to be forwarded if this is called.
|
/// @note Requires the port given to be forwarded if this is called.
|
||||||
void Bind(const Endpoint &endpoint) override;
|
void Bind(AddrType type, const Str_8& address, UInt_16 port) override;
|
||||||
|
|
||||||
/// Sends data using a C-style byte array.
|
/// Sends data using a C-style byte array.
|
||||||
/// @param [in] addr The remote Ipv4 or Ipv6 address to send to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
/// @param [in] addr The remote Ipv4 or Ipv6 address to send to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
||||||
@ -49,7 +49,7 @@ namespace ehs
|
|||||||
/// @param [in] data The C-style byte array to send.
|
/// @param [in] data The C-style byte array to send.
|
||||||
/// @param [in] size The size of the C-style byte array.
|
/// @param [in] size The size of the C-style byte array.
|
||||||
/// @note The size of data to be sent cannot exceed "UDP::maxPayloadIpv4" or "UDP::maxPayloadIpv6".
|
/// @note The size of data to be sent cannot exceed "UDP::maxPayloadIpv4" or "UDP::maxPayloadIpv6".
|
||||||
UInt_64 Send(const Endpoint &endpoint, const Byte* data, UInt_64 size) override;
|
UInt_64 Send(AddrType type, const Str_8& address, UInt_16 port, const Byte* data, UInt_64 size) override;
|
||||||
|
|
||||||
/// Receives data using the packet helper class.
|
/// Receives data using the packet helper class.
|
||||||
/// @param [out] addr The Ipv4 or Ipv6 address of the sender.
|
/// @param [out] addr The Ipv4 or Ipv6 address of the sender.
|
||||||
@ -58,7 +58,7 @@ namespace ehs
|
|||||||
/// @param [in] size The size of the pre-allocated C-style byte array.
|
/// @param [in] size The size of the pre-allocated C-style byte array.
|
||||||
/// @returns The size of the data received.
|
/// @returns The size of the data received.
|
||||||
/// @warning The provided C-style byte array must be freed when finished using.
|
/// @warning The provided C-style byte array must be freed when finished using.
|
||||||
UInt_64 Receive(Endpoint *endpoint, Byte* data, UInt_64 size) override;
|
UInt_64 Receive(AddrType* type, Str_8* address, UInt_16* port, Byte* data, UInt_64 size) override;
|
||||||
|
|
||||||
/// Sets whether or not receiving data blocks the next task.
|
/// Sets whether or not receiving data blocks the next task.
|
||||||
/// @param [in] blocking Whether or not to block.
|
/// @param [in] blocking Whether or not to block.
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
namespace ehs
|
namespace ehs
|
||||||
{
|
{
|
||||||
/// A wrapper class for the user datagram protocol socket.
|
/// A wrapper class for the user datagram protocol socket.
|
||||||
class EHS_LIB_IO UDP : public BaseUDP
|
class UDP : public BaseUDP
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Socket hdl;
|
Socket hdl;
|
||||||
@ -19,7 +19,7 @@ namespace ehs
|
|||||||
UDP();
|
UDP();
|
||||||
|
|
||||||
/// Default members initialization.
|
/// Default members initialization.
|
||||||
UDP(const IP IP);
|
UDP(const AddrType addrType);
|
||||||
|
|
||||||
UDP(UDP&& udp) noexcept;
|
UDP(UDP&& udp) noexcept;
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ namespace ehs
|
|||||||
/// @param [in] address The local IPv4 or IPv6 address to bind to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
/// @param [in] address The local IPv4 or IPv6 address to bind to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
||||||
/// @param [in] port The port to bind to.
|
/// @param [in] port The port to bind to.
|
||||||
/// @note Requires the port given to be forwarded if this is called.
|
/// @note Requires the port given to be forwarded if this is called.
|
||||||
void Bind(const Endpoint &endpoint) override;
|
void Bind(AddrType type, const Str_8& address, UInt_16 port) override;
|
||||||
|
|
||||||
/// Sends data using a C-style byte array.
|
/// Sends data using a C-style byte array.
|
||||||
/// @param [in] addr The remote Ipv4 or Ipv6 address to send to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
/// @param [in] addr The remote Ipv4 or Ipv6 address to send to. Resolves domain names. The given address can be empty, "127.0.0.1", or "localhost" to automatically find the appropriate device.
|
||||||
@ -49,7 +49,7 @@ namespace ehs
|
|||||||
/// @param [in] data The C-style byte array to send.
|
/// @param [in] data The C-style byte array to send.
|
||||||
/// @param [in] size The size of the C-style byte array.
|
/// @param [in] size The size of the C-style byte array.
|
||||||
/// @note The size of data to be sent cannot exceed "UDP::maxPayloadIpv4" or "UDP::maxPayloadIpv6".
|
/// @note The size of data to be sent cannot exceed "UDP::maxPayloadIpv4" or "UDP::maxPayloadIpv6".
|
||||||
UInt_64 Send(const Endpoint &endpoint, const Byte* data, UInt_64 size) override;
|
UInt_64 Send(AddrType type, const Str_8& addr, UInt_16 port, const Byte* data, UInt_64 size) override;
|
||||||
|
|
||||||
/// Receives data using the packet helper class.
|
/// Receives data using the packet helper class.
|
||||||
/// @param [out] addr The Ipv4 or Ipv6 address of the sender.
|
/// @param [out] addr The Ipv4 or Ipv6 address of the sender.
|
||||||
@ -58,7 +58,7 @@ namespace ehs
|
|||||||
/// @param [in] size The size of the pre-allocated C-style byte array.
|
/// @param [in] size The size of the pre-allocated C-style byte array.
|
||||||
/// @returns The size of the data received.
|
/// @returns The size of the data received.
|
||||||
/// @warning The provided C-style byte array must be freed when finished using.
|
/// @warning The provided C-style byte array must be freed when finished using.
|
||||||
UInt_64 Receive(Endpoint *endpoint, Byte* data, UInt_64 size) override;
|
UInt_64 Receive(AddrType* type, Str_8* addr, UInt_16* port, Byte* data, UInt_64 size) override;
|
||||||
|
|
||||||
/// Sets whether or not receiving data blocks the next task.
|
/// Sets whether or not receiving data blocks the next task.
|
||||||
/// @param [in] blocking Whether or not to block.
|
/// @param [in] blocking Whether or not to block.
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user