Event Horizon Suite
Go to file
Karutoh 64e1555d56
All checks were successful
Build & Release / Linux-AMD64-Build (push) Successful in 1m5s
Build & Release / Windows-AMD64-Build (push) Successful in 3m43s
Build & Release / Linux-AARCH64-Build (push) Successful in 3m31s
Fixed DNS, TCP and UDP on Windows.
2024-07-10 02:36:21 -07:00
.gitea/workflows Adjusted Windows install. 2024-02-05 22:54:47 -08:00
include/ehs Fixed constructor to use move constructors. 2024-07-09 19:23:24 -07:00
src Fixed DNS, TCP and UDP on Windows. 2024-07-10 02:36:21 -07:00
.gitignore Adjusted workflow. 2024-02-05 22:25:30 -08:00
CMakeLists.txt Fixed DNS, TCP and UDP on Windows. 2024-07-10 02:36:21 -07:00
CMakePresets.json Adjusted workflow. 2024-02-05 22:25:30 -08:00
ehs-docs-config.doxyfile Adjusted workflow. 2024-02-05 22:25:30 -08:00
LICENSE Adjusted workflow. 2024-02-05 22:25:30 -08:00
README.md Added features to readme. 2024-07-01 22:15:49 -07:00
vcpkg-configuration.json Adjusted workflow. 2024-02-05 22:25:30 -08:00
vcpkg.json Adjusted workflow. 2024-02-05 22:25:30 -08:00

About

Much like boost.io this library is a replacement of the standard C/C++ libraries. It provides most features needed when designing applications in a cross-platform manner. The goal for this project is for it to be compiled and run on anything which means embedded hardware support.

This project does not fully follow the C++ standard.

Features

  • Audio IO/Processing/Manipulation
  • Image Processing/Manipulation
  • Databases
  • 3D Model & Mesh Processing/Manipulation
  • File IO
  • Basic File Monitoring
  • Console IO
  • 2/3/4D Vectors
  • 2x2/3x3/4x4 Matrices
  • Hardware/Software Level Math Functions
  • Smart Pointers
  • Threads
  • Mutexes
  • Semaphores
  • CPU information and features at runtime
  • HTTP(S) Socket Layer
  • TCP Socket
  • UDP Socket
  • COM (Serial) IO
  • UTF_8/16/32 Character Encoding
  • Spotify Integration
  • Twitch Integration
  • Json Parsing/Writing
  • User Friendly HID Input
  • Heap Garbage Collector
  • Linked List
  • Array
  • Vector
  • Asynchronous Task System
  • URI Parsing
  • USB (WIP)

Supported Architectures

  • AMD64
  • AARCH64

Supported Operating Systems

  • Windows
  • Linux

Compiling/Building/Installing

Linux

Prerequisites

  • Arch Linux: sudo pacman -S gcc nasm cmake alsa-lib libxcb xcb-util-cursor
  • Debian Linux: sudo apt install gcc nasm cmake libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev

For building on the Raspberry Pi instead of the Netwide Assembler (NASM), GCC's Assembler is used.

Building

cmake -DCMAKE_BUILD_TYPE=Release -DLINUX_WINDOW_SYSTEM:STRING=XCB /path/to/source

The LINUX_WINDOW_SYSTEM variable in the first step can be either XCB for the X Window System or Wayland for the Wayland Window System. Wayland support is currently not fully supported yet, use only XCB.

Compiling

cmake --build /path/to/build --config Release

Installing

sudo cmake --install /path/to/build --prefix /usr/local

Windows

Prerequisites

Building

cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default /path/to/source

Compiling

cmake --build /path/to/build --config Release

Installing

cmake --install /path/to/build --prefix "C:/Program Files/EHS"

This will require the terminal to be running in administrator mode.

Simple Example

#include <ehs/EHS.h>
#include <ehs/io/Console.h>

ehs::Int_32 Main(ehs::Str_8* appName, ehs::Str_8* appVerId, ehs::Version* appVer)
{
	// Simple identifying meta-data for the logger.
	*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::Str_8 response = ehs::Console::Read_8(); // Read from the console in UTF_8 character encoding.
	
	if (!response.IsNum())
    {
		ehs::Console::Clear(); // Clear the console's buffer.
		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::Console::Write("Your age is " + ehs::Str_8::FromNum(age) + "."); // Write the console with the age converted back to string.

    return 0;
}