ZeroZero Game Engine
v0.0
A 3D game engine using Vulkan & Jolt
|
Enums | |
enum class | ProcessMode : uint8_t { INHERIT = 0, PAUSABLE = 1, WHEN_PAUSED = 2, ALWAYS = 3, DISABLED = 4 } |
enum class | WindowMode : uint8_t { WINDOWED = 0, WINDOWED_MAXIMIZED = 1, WINDOWED_FULLSCREEN = 2, FULLSCREEN = 3 } |
enum | LoggingMode : uint32_t { LOGGING_MODE_NONE = 0, LOGGING_MODE_WINDOW = 0x001, LOGGING_MODE_FILE = 0x010, LOGGING_MODE_STDOUT = 0x100 } |
enum class | LogLevel : int32_t |
enum class | VSyncMode : uint32_t { IMMEDIATE = 0, MAILBOX = 1, FIFO = 2, RELAXED = 3 } |
enum class | MSAA : uint8_t { AUTO = 0, X2 = 0x00000002, X4 = 0x00000004, X8 = 0x00000008, X16 = 0x00000010, X32 = 0x00000020, X64 = 0x00000040 } |
enum class | DepthBufferFormat : uint8_t { AUTO = 0, B16 = 1, B24 = 2, B32 = 3 } |
enum class | NormalBufferFormat : uint8_t { B8 = 0, B16 = 1, B32 = 2 } |
enum class | CullMode : uint8_t { DISABLED = 0, BACK = 1, FRONT = 2 } |
enum class | Transparency : uint8_t { DISABLED = 0, ALPHA = 1, SCISSOR = 2, SCISSOR_ALPHA = 3 } |
enum class | TransitionType : uint8_t { LINEAR = 0 } |
enum class | InputEventType : uint8_t { KEY = 0, MOUSE_MOTION = 1, MOUSE_BUTTON = 2, GAMEPAD_BUTTON = 3 } |
enum class | KeyModifier : uint8_t { SHIFT = 0x0001, CONTROL = 0x0002, ALT = 0x0004 } |
enum | Key : uint8_t { , KEY_SPACE = 1, KEY_DASH = 2, KEY_PIPE = 3, KEY_APOSTROPHE = 4, KEY_COMMA = 5, KEY_PERIOD = 6, KEY_QUESTIONMARK = 7, KEY_0 = 8, KEY_1 = 9, KEY_2 = 10, KEY_3 = 11, KEY_4 = 12, KEY_5 = 13, KEY_6 = 14, KEY_7 = 15, KEY_8 = 16, KEY_9 = 17, KEY_SEMICOLON = 18, KEY_EQUAL = 19, KEY_A = 20, KEY_B = 21, KEY_C = 22, KEY_D = 23, KEY_E = 24, KEY_F = 25, KEY_G = 26, KEY_H = 27, KEY_I = 28, KEY_J = 29, KEY_K = 30, KEY_L = 31, KEY_M = 32, KEY_N = 33, KEY_O = 34, KEY_P = 35, KEY_Q = 36, KEY_R = 37, KEY_S = 38, KEY_T = 39, KEY_U = 40, KEY_V = 41, KEY_W = 42, KEY_X = 43, KEY_Y = 44, KEY_Z = 45, KEY_LEFT_BRACKET = 46, KEY_BACKSLASH = 47, KEY_RIGHT_BRACKET = 48 , KEY_ESCAPE = 50, KEY_ENTER = 51, KEY_TAB = 52, KEY_BACKSPACE = 53, KEY_INSERT = 54, KEY_DELETE = 55, KEY_RIGHT = 56, KEY_LEFT = 57, KEY_DOWN = 58, KEY_UP = 59, KEY_PAGE_UP = 60, KEY_PAGE_DOWN = 61, KEY_HOME = 62, KEY_END = 63, KEY_CAPS_LOCK = 64, KEY_SCROLL_LOCK = 65, KEY_NUM_LOCK = 66, KEY_PRINT_SCREEN = 67, KEY_PAUSE = 68, KEY_F1 = 69, KEY_F2 = 70, KEY_F3 = 71, KEY_F4 = 72, KEY_F5 = 73, KEY_F6 = 74, KEY_F7 = 75, KEY_F8 = 76, KEY_F9 = 77, KEY_F10 = 78, KEY_F11 = 79, KEY_F12 = 80, KEY_KP_0 = 81, KEY_KP_1 = 82, KEY_KP_2 = 83, KEY_KP_3 = 84, KEY_KP_4 = 85, KEY_KP_5 = 86, KEY_KP_6 = 87, KEY_KP_7 = 88, KEY_KP_8 = 89, KEY_KP_9 = 90, KEY_KP_PERIOD = 91, KEY_KP_DIVIDE = 92, KEY_KP_MULTIPLY = 93, KEY_KP_SUBTRACT = 94, KEY_KP_ADD = 95, KEY_KP_ENTER = 96, KEY_KP_EQUAL = 97, KEY_LEFT_SHIFT = 98, KEY_LEFT_CONTROL = 99, KEY_LEFT_ALT = 100, KEY_LEFT_SUPER = 101, KEY_RIGHT_SHIFT = 102, KEY_RIGHT_CONTROL = 103, KEY_RIGHT_ALT = 104, KEY_RIGHT_SUPER = 105 } |
enum class | MouseButton : uint8_t { , LEFT = 0b0001, RIGHT = 0b0010, MIDDLE = 0b0100, WHEEL = 0b1000 } |
enum class | GamepadButton : uint8_t { A = 0, CROSS = A, B = 1, CIRCLE = B, X = 2, SQUARE = X, Y = 3, TRIANGLE = Y, LB = 4, L1 = LB, RB = 5, R1 = RB, BACK = 6, SHARE = BACK, START = 7, MENU = START, LT = 8, L2 = LT, RT = 9, R2 = RT, DPAD_UP = 10, DPAD_RIGHT = 11, DPAD_DOWN = 12, DPAD_LEFT = 13 } |
enum class | GamepadAxisJoystick : uint8_t { LEFT = 0, RIGHT = 1 } |
enum class | GamepadAxis : uint8_t { LEFT_X = 0, LEFT_Y = 1, RIGHT_X = 2, RIGHT_Y = 3 } |
enum class | MouseMode : uint8_t { VISIBLE = 0, VISIBLE_CAPTURED = 1, HIDDEN = 2, HIDDEN_CAPTURED = 3 } |
enum class | MouseCursor : uint8_t { ARROW = 0, WAIT = 1, RESIZE_H = 2, RESIZE_V = 3 } |
enum class | ImageFormat : uint8_t { R8G8B8A8_SRGB = 0, R8G8B8A8_UNORM = 1 } |
enum class | AnimationType : uint8_t { TRANSLATION = 1, ROTATION = 2, SCALE = 3 } |
enum class | AnimationInterpolation : uint8_t { LINEAR = 0, STEP = 1 } |
enum class | AnimationLoopMode : uint8_t { NONE = 0, LINEAR = 1 } |
enum class | DebugShapeColor { InstanceColor, ShapeTypeColor, MotionTypeColor, SleepColor, IslandColor } |
Coloring scheme of collision shapes. More... | |
Functions | |
auto | removeNumericSuffix (const string &str) |
void | die (convertible_to< string_view > auto &&...s) |
uint32_t | randomi (uint32_t max) |
float | randomf (float max) |
vector< string_view > | split (string_view str, char delimiter) |
vec2 | lerp (const vec2 a, const vec2 b, const float t) |
vec3 | lerp (const vec3 a, const vec3 b, const float t) |
vec4 | lerp (const vec4 a, const vec4 b, const float t) |
Variables | |
constexpr auto | ENGINE_NAME {"ZeroZero"} |
constexpr vec3 | WINDOW_CLEAR_COLOR {0, 0, 0} |
constexpr vec3 | AXIS_X {1.0, 0.0f, 0.0f} |
constexpr vec3 | AXIS_Y {0.0, 1.0f, 0.0f} |
constexpr vec3 | AXIS_Z {0.0, 0.0f, 1.0f} |
constexpr vec3 | AXIS_UP = AXIS_Y |
constexpr vec3 | AXIS_DOWN = -AXIS_Y |
constexpr vec3 | AXIS_FRONT = -AXIS_Z |
constexpr vec3 | AXIS_BACK = AXIS_Z |
constexpr vec3 | AXIS_RIGHT = AXIS_X |
constexpr vec3 | AXIS_LEFT = -AXIS_X |
constexpr vec2 | VEC2ZERO {0.0} |
constexpr vec3 | VEC3ZERO {0.0} |
constexpr quat | QUATERNION_IDENTITY {1.0f, 0.0f, 0.0f, 0.0f} |
constexpr mat3 | TRANSFORM_BASIS {1, 0, 0, 0, 1, 0, 0, 0, 1} |
const regex | numericSuffixPattern {R"(.d+$)"} |
The z0 namespace
|
strong |
|
strong |
Animation loop mode
Enum Values | Documentation |
---|---|
NONE | No loop (default) |
LINEAR | Restart from start of the track. |
|
strong |
Animation type for a animation track
|
strong |
Cull mode for mesh surfaces. Determines which side of the triangle to cull depending on whether the triangle faces towards or away from the camera.
|
strong |
Coloring scheme of collision shapes.
|
strong |
|
strong |
|
strong |
|
strong |
Gamepas buttons
|
strong |
|
strong |
enum Key : uint8_t |
Key codes, QWERTY layout to keep the WASD keys
|
strong |
enum LoggingMode : uint32_t |
Where to log message using the z0::log() function
Enum Values | Documentation |
---|---|
LOGGING_MODE_NONE | Disable logging. |
LOGGING_MODE_WINDOW | Open an external Window (on the first screen if you have multiple screen) to display the log messages. Log message appearance in the Window can be deferred to the next frame if the log message is sent from a thread different from the main thread |
LOGGING_MODE_FILE | Log the messages into a file named 'log.txt' |
LOGGING_MODE_STDOUT | Log the messages to cout. WIN32 applications needs to be linked with |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
Nodes state when the scene is paused or running
Enum Values | Documentation |
---|---|
INHERIT | Inherits mode from the node's parent. This is the default for any newly created node. |
PAUSABLE | Stops processing when Application::isPaused() is true. This is the inverse of PROCESS_MODE_WHEN_PAUSED. |
WHEN_PAUSED | Process only when Application::isPaused() is true. This is the inverse of PROCESS_MODE_PAUSABLE. |
ALWAYS | Always process. Keeps processing, ignoring Application::isPaused(). This is the inverse of PROCESS_MODE_DISABLED. |
DISABLED | Never process. Completely disables processing, ignoring Application::isPaused(). This is the inverse of PROCESS_MODE_ALWAYS. |
|
strong |
A Tween transition type
Enum Values | Documentation |
---|---|
LINEAR | The animation is interpolated linearly |
|
strong |
A Material transparency mode Any transparency mode other than Transparency::DISABLED has a greater performance impact compared to opaque rendering.
|
strong |
|
strong |
Rendering Window mode
Enum Values | Documentation |
---|---|
WINDOWED | A Window with a border and a title that can be minimized. |
WINDOWED_MAXIMIZED | A maximized Window with a border and a title that can be minimized. |
WINDOWED_FULLSCREEN | A maximized Window without a border and without a title. |
FULLSCREEN | A full screen Window. The screen resolution will be changed. |
void z0::die | ( | convertible_to< string_view > auto &&... | s | ) |
Violently stop the application
|
inline |
lerp for a vec2 using std::lerp for componants
|
inline |
lerp for a vec3 using std::lerp for componants
|
inline |
lerp for a vec4 using std::lerp for componants
float z0::randomf | ( | float | max | ) |
Returns a random value in the range [0.0f, max]
uint32_t z0::randomi | ( | uint32_t | max | ) |
Returns a random value in the range [0, max]
|
inline |
Removes the Blender numeric suffix from a string
vector<string_view> z0::split | ( | string_view | str, |
char | delimiter | ||
) |
Split a string
|
constexpr |
BACK Axis
|
constexpr |
DOWN Axis
|
constexpr |
FRONT Axis
|
constexpr |
LEFT Axis
|
constexpr |
RIGHT Axis
|
constexpr |
UP Axis
|
constexpr |
X Axis
|
constexpr |
Y Axis
|
constexpr |
Z Axis
|
constexpr |
Useless engine name
const regex numericSuffixPattern {R"(.d+$)"} |
Blender numeric suffix pattern for names
|
constexpr |
Unit quaternion with no rotation
|
constexpr |
The Basis of 3D transform. It is composed by 3 axes (Basis.x, Basis.y, and Basis.z). Together, these represent the transform's rotation, scale, and shear.
|
constexpr |
2D zero initialized vector
|
constexpr |
3D zero initialized vector
|
constexpr |
Default background color for the display Window