Moved TERM files around
This commit is contained in:
@ -12,11 +12,9 @@ add_subdirectory(dawn)
|
||||
# Compile entries
|
||||
if(DAWN_TARGET STREQUAL "linux-x64-terminal")
|
||||
add_subdirectory(dawnlinux)
|
||||
add_subdirectory(dawnterm)
|
||||
add_subdirectory(dawntermlinux)
|
||||
elseif(DAWN_TARGET STREQUAL "linux-x64-glfw")
|
||||
add_subdirectory(dawnlinux)
|
||||
add_subdirectory(dawnterm)
|
||||
add_subdirectory(dawnglfw)
|
||||
add_subdirectory(dawnopengl)
|
||||
else()
|
||||
|
@ -16,6 +16,7 @@ target_include_directories(${DAWN_TARGET_NAME}
|
||||
|
||||
# Subdirs
|
||||
add_subdirectory(assert)
|
||||
add_subdirectory(display)
|
||||
add_subdirectory(rpg)
|
||||
add_subdirectory(ui)
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Sources
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
color.c
|
||||
frame.c
|
||||
symbol.c
|
||||
)
|
@ -5,7 +5,7 @@
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "colorgl.h"
|
||||
#include "color.h"
|
||||
#include "assert/assert.h"
|
||||
|
||||
void color4fCopy(const color4f_t src, color4f_t dest) {
|
@ -8,6 +8,7 @@
|
||||
#pragma once
|
||||
#include "dawn.h"
|
||||
|
||||
// Simple colors, used by the frame system.
|
||||
#define COLOR_BLACK 0x00
|
||||
#define COLOR_WHITE 0x01
|
||||
#define COLOR_RED 0x02
|
||||
@ -16,3 +17,61 @@
|
||||
#define COLOR_YELLOW 0x05
|
||||
#define COLOR_MAGENTA 0x06
|
||||
#define COLOR_CYAN 0x07
|
||||
|
||||
typedef float_t color3f_t[3];
|
||||
typedef float_t color4f_t[4];
|
||||
|
||||
typedef color4f_t color_t;
|
||||
|
||||
#define COLOR3F(r,g,b) ((color3f_t){ r, g, b })
|
||||
#define COLOR3F_RED COLOR3F(1, 0, 0)
|
||||
#define COLOR3F_GREEN COLOR3F(0, 1, 0)
|
||||
#define COLOR3F_BLUE COLOR3F(0, 0, 1)
|
||||
#define COLOR3F_BLACK COLOR3F(0, 0, 0)
|
||||
#define COLOR3F_WHITE COLOR3F(1, 1, 1)
|
||||
#define COLOR3F_MAGENTA COLOR3F(1, 0, 1)
|
||||
#define COLOR3F_YELLOW COLOR3F(1, 1, 0)
|
||||
#define COLOR3F_CYAN COLOR3F(0, 1, 1)
|
||||
#define COLOR3F_GRAY COLOR3F(0.5f, 0.5f, 0.5f)
|
||||
#define COLOR3F_DARKGRAY COLOR3F(0.25f, 0.25f, 0.25f)
|
||||
#define COLOR3F_LIGHTGRAY COLOR3F(0.75f, 0.75f, 0.75f)
|
||||
#define COLOR3F_ORANGE COLOR3F(1, 0.5f, 0)
|
||||
#define COLOR3F_PURPLE COLOR3F(0.5f, 0, 1)
|
||||
#define COLOR3F_PINK COLOR3F(1, 0, 0.5f)
|
||||
#define COLOR3F_BROWN COLOR3F(0.5f, 0.25f, 0)
|
||||
#define COLOR3F_GOLD COLOR3F(1, 0.75f, 0)
|
||||
#define COLOR3F_SILVER COLOR3F(0.75f, 0.75f, 0.75f)
|
||||
#define COLOR3F_BRONZE COLOR3F(0.75f, 0.5f, 0.25f)
|
||||
#define COLOR3F_CORNFLOWERBLUE COLOR3F(0.4f, 0.6f, 0.9f)
|
||||
|
||||
#define COLOR4F(r,g,b,a) ((color4f_t){ r, g, b, a })
|
||||
#define COLOR4F_RED COLOR4F(1, 0, 0, 1)
|
||||
#define COLOR4F_GREEN COLOR4F(0, 1, 0, 1)
|
||||
#define COLOR4F_BLUE COLOR4F(0, 0, 1, 1)
|
||||
#define COLOR4F_BLACK COLOR4F(0, 0, 0, 1)
|
||||
#define COLOR4F_WHITE COLOR4F(1, 1, 1, 1)
|
||||
#define COLOR4F_MAGENTA COLOR4F(1, 0, 1, 1)
|
||||
#define COLOR4F_YELLOW COLOR4F(1, 1, 0, 1)
|
||||
#define COLOR4F_CYAN COLOR4F(0, 1, 1, 1)
|
||||
#define COLOR4F_GRAY COLOR4F(0.5f, 0.5f, 0.5f, 1)
|
||||
#define COLOR4F_DARKGRAY COLOR4F(0.25f, 0.25f, 0.25f, 1)
|
||||
#define COLOR4F_LIGHTGRAY COLOR4F(0.75f, 0.75f, 0.75f, 1)
|
||||
#define COLOR4F_ORANGE COLOR4F(1, 0.5f, 0, 1)
|
||||
#define COLOR4F_PURPLE COLOR4F(0.5f, 0, 1, 1)
|
||||
#define COLOR4F_PINK COLOR4F(1, 0, 0.5f, 1)
|
||||
#define COLOR4F_BROWN COLOR4F(0.5f, 0.25f, 0, 1)
|
||||
#define COLOR4F_GOLD COLOR4F(1, 0.75f, 0, 1)
|
||||
#define COLOR4F_SILVER COLOR4F(0.75f, 0.75f, 0.75f, 1)
|
||||
#define COLOR4F_BRONZE COLOR4F(0.75f, 0.5f, 0.25f, 1)
|
||||
#define COLOR4F_CORNFLOWERBLUE COLOR4F(0.4f, 0.6f, 0.9f, 1)
|
||||
#define COLOR4F_TRANSPARENT_BLACK COLOR4F(0, 0, 0, 0)
|
||||
#define COLOR4F_TRANSPARENT_WHITE COLOR4F(1, 1, 1, 0)
|
||||
#define COLOR4F_TRANSPARENT COLOR4F_TRANSPARENT_BLACK
|
||||
|
||||
/**
|
||||
* Copies a color.
|
||||
*
|
||||
* @param src Source color.
|
||||
* @param dest Destination color.
|
||||
*/
|
||||
void color4fCopy(const color4f_t src, color4f_t dest);
|
@ -17,5 +17,4 @@ target_sources(${DAWN_TARGET_NAME}
|
||||
font.c
|
||||
texture.c
|
||||
textureframebuffer.c
|
||||
colorgl.c
|
||||
)
|
@ -1,67 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) 2024 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "dawn.h"
|
||||
|
||||
typedef float_t color3f_t[3];
|
||||
typedef float_t color4f_t[4];
|
||||
|
||||
typedef color4f_t color_t;
|
||||
|
||||
#define COLOR3F(r,g,b) ((color3f_t){ r, g, b })
|
||||
#define COLOR3F_RED COLOR3F(1, 0, 0)
|
||||
#define COLOR3F_GREEN COLOR3F(0, 1, 0)
|
||||
#define COLOR3F_BLUE COLOR3F(0, 0, 1)
|
||||
#define COLOR3F_BLACK COLOR3F(0, 0, 0)
|
||||
#define COLOR3F_WHITE COLOR3F(1, 1, 1)
|
||||
#define COLOR3F_MAGENTA COLOR3F(1, 0, 1)
|
||||
#define COLOR3F_YELLOW COLOR3F(1, 1, 0)
|
||||
#define COLOR3F_CYAN COLOR3F(0, 1, 1)
|
||||
#define COLOR3F_GRAY COLOR3F(0.5f, 0.5f, 0.5f)
|
||||
#define COLOR3F_DARKGRAY COLOR3F(0.25f, 0.25f, 0.25f)
|
||||
#define COLOR3F_LIGHTGRAY COLOR3F(0.75f, 0.75f, 0.75f)
|
||||
#define COLOR3F_ORANGE COLOR3F(1, 0.5f, 0)
|
||||
#define COLOR3F_PURPLE COLOR3F(0.5f, 0, 1)
|
||||
#define COLOR3F_PINK COLOR3F(1, 0, 0.5f)
|
||||
#define COLOR3F_BROWN COLOR3F(0.5f, 0.25f, 0)
|
||||
#define COLOR3F_GOLD COLOR3F(1, 0.75f, 0)
|
||||
#define COLOR3F_SILVER COLOR3F(0.75f, 0.75f, 0.75f)
|
||||
#define COLOR3F_BRONZE COLOR3F(0.75f, 0.5f, 0.25f)
|
||||
#define COLOR3F_CORNFLOWERBLUE COLOR3F(0.4f, 0.6f, 0.9f)
|
||||
|
||||
#define COLOR4F(r,g,b,a) ((color4f_t){ r, g, b, a })
|
||||
#define COLOR4F_RED COLOR4F(1, 0, 0, 1)
|
||||
#define COLOR4F_GREEN COLOR4F(0, 1, 0, 1)
|
||||
#define COLOR4F_BLUE COLOR4F(0, 0, 1, 1)
|
||||
#define COLOR4F_BLACK COLOR4F(0, 0, 0, 1)
|
||||
#define COLOR4F_WHITE COLOR4F(1, 1, 1, 1)
|
||||
#define COLOR4F_MAGENTA COLOR4F(1, 0, 1, 1)
|
||||
#define COLOR4F_YELLOW COLOR4F(1, 1, 0, 1)
|
||||
#define COLOR4F_CYAN COLOR4F(0, 1, 1, 1)
|
||||
#define COLOR4F_GRAY COLOR4F(0.5f, 0.5f, 0.5f, 1)
|
||||
#define COLOR4F_DARKGRAY COLOR4F(0.25f, 0.25f, 0.25f, 1)
|
||||
#define COLOR4F_LIGHTGRAY COLOR4F(0.75f, 0.75f, 0.75f, 1)
|
||||
#define COLOR4F_ORANGE COLOR4F(1, 0.5f, 0, 1)
|
||||
#define COLOR4F_PURPLE COLOR4F(0.5f, 0, 1, 1)
|
||||
#define COLOR4F_PINK COLOR4F(1, 0, 0.5f, 1)
|
||||
#define COLOR4F_BROWN COLOR4F(0.5f, 0.25f, 0, 1)
|
||||
#define COLOR4F_GOLD COLOR4F(1, 0.75f, 0, 1)
|
||||
#define COLOR4F_SILVER COLOR4F(0.75f, 0.75f, 0.75f, 1)
|
||||
#define COLOR4F_BRONZE COLOR4F(0.75f, 0.5f, 0.25f, 1)
|
||||
#define COLOR4F_CORNFLOWERBLUE COLOR4F(0.4f, 0.6f, 0.9f, 1)
|
||||
#define COLOR4F_TRANSPARENT_BLACK COLOR4F(0, 0, 0, 0)
|
||||
#define COLOR4F_TRANSPARENT_WHITE COLOR4F(1, 1, 1, 0)
|
||||
#define COLOR4F_TRANSPARENT COLOR4F_TRANSPARENT_BLACK
|
||||
|
||||
/**
|
||||
* Copies a color.
|
||||
*
|
||||
* @param src Source color.
|
||||
* @param dest Destination color.
|
||||
*/
|
||||
void color4fCopy(const color4f_t src, color4f_t dest);
|
@ -8,7 +8,7 @@
|
||||
#pragma once
|
||||
#include "dawn.h"
|
||||
#include "dawnopengl.h"
|
||||
#include "colorgl.h"
|
||||
#include "display/color.h"
|
||||
|
||||
extern int32_t MESH_ACTIVE_COUNT;
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#pragma once
|
||||
#include "dawn.h"
|
||||
#include "dawnopengl.h"
|
||||
#include "display/colorgl.h"
|
||||
#include "display/color.h"
|
||||
#include "display/texture.h"
|
||||
|
||||
typedef GLuint shaderparameter_t;
|
||||
|
@ -1,23 +0,0 @@
|
||||
# Copyright (c) 2024 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Libraries
|
||||
target_link_libraries(${DAWN_TARGET_NAME}
|
||||
PUBLIC
|
||||
)
|
||||
|
||||
# Includes
|
||||
target_include_directories(${DAWN_TARGET_NAME}
|
||||
PUBLIC
|
||||
${CMAKE_CURRENT_LIST_DIR}
|
||||
)
|
||||
|
||||
# Subdirs
|
||||
add_subdirectory(display)
|
||||
|
||||
# Sources
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
)
|
Reference in New Issue
Block a user