Adding some comments.

This commit is contained in:
2021-08-19 23:29:48 -07:00
parent c42c90ec59
commit c619c003a7
9 changed files with 67 additions and 23 deletions

View File

@ -10,7 +10,6 @@
#include "display/animation/easing.h"
#include "display/animation/queue.h"
#include "display/animation/timeline.h"
#include "display/debug/grid.h"
#include "display/gui/bitmapfont.h"
#include "display/gui/font.h"

View File

@ -1,20 +0,0 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../../libs.h"
#define GRID_COLUMN_ROWS 100
#define GRID_COLUMN_ROWS_SIZE 0.1
#define GRID_VERTICE_COUNT (GRID_COLUMN_ROWS+1) * (GRID_COLUMN_ROWS+1) * 3
#define GRID_INDICE_COUNT GRID_COLUMN_ROWS * GRID_COLUMN_ROWS * 8
typedef struct {
GLuint vertexBuffer;
GLuint indexBuffer;
} griddebug_t;

View File

@ -13,16 +13,22 @@
/** Structure containing information about a primitive */
typedef struct {
/** How many vertices are in the primitive */
int32_t verticeCount;
/** How many indices are in the primitive */
int32_t indiceCount;
/** Pointer to the vertex buffer on the GPU */
GLuint vertexBuffer;
/** Pointer to the index buffer on the GPU */
GLuint indexBuffer;
} primitive_t;
/** Structure containing vertice position information */
typedef struct {
/** Coordinates */
float x, y, z;
/** Texture UVs */
float u, v;
} vertice_t;

View File

@ -12,12 +12,16 @@
* store the pixels in memory because we don't need to!
*/
typedef struct {
/** Width (in pixels) of the texture */
int32_t width;
/** Height (in pixels) of the texture */
int32_t height;
/** Texture ID on the GPU */
GLuint id;
} texture_t;
/** Information about a single pixel. */
typedef struct {
/** RGBA Color values */
uint8_t r, g, b, a;
} pixel_t;

View File

@ -9,4 +9,5 @@
/** Prefix of all asset load methods, may be customizable in future. */
#define ASSET_PREFIX "../assets/"
/** Definition of an asset ready to be buffered */
typedef FILE assetbuffer_t;

View File

@ -10,7 +10,9 @@
#include "../file/asset.h"
#include "../file/csv.h"
/** Column name for the KEY within the CSV */
#define LANGUAGE_HEADER_KEY "Key"
/** Column name for the VALUE within the CSV */
#define LANGUAGE_HEADER_VALUE "Value"
/** Definition for a Language */

View File

@ -13,8 +13,12 @@
#define POKER_TURN_TYPE_BET 0x02
#define POKER_TURN_TYPE_CHECK 0x03
/** The turn that a player/the AI decided to do for its turn */
typedef struct {
/** What type of action the turn is */
uint8_t type;
/** How many chips they did in their turn (if applicable) */
int32_t chips;
/** How confident the AI is about their turn. */
float confidence;
} pokerturn_t;

View File

@ -10,8 +10,11 @@
#include "../display/primitive.h"
#include "../display/gui/font.h"
/** Size of the border (in pixels) on each edge */
#define FRAME_BORDER_SIZE 16
/** Total border size for a given frame on each axis */
#define FRAME_BORDER_SIZE_FULL FRAME_BORDER_SIZE * 2
/** How many quads are within the frame */
#define FRAME_PRIMITIVE_COUNT 9
typedef struct {

View File

@ -11,10 +11,55 @@
* @param b Number to modulo with. (a % b)
*/
#define mathMod(a,b) (a%b+b)%b
/**
* Returns the maximum of two numbers.
* @param a Number A.
* @param b Number B.
* @returns B if greater than A, otherwise B.
*/
#define mathMax(a,b) (a<b?b:a)
/**
* Returns the minimum of two numbers.
* @param a Number A.
* @param b Number B.
* @returns B if smaller than A, otherwise A.
*/
#define mathMin(a,b) (a>b?b:a)
/**
* Clamp a number between two numbers.
* @param val Value to clamp.
* @param min The minimum number to clamp to.
* @param max The maximum number to clamp to.
*/
#define mathClamp(val,min,max) mathMin(mathMax(val,min),max)
/**
* Returns the absolute value. This will make -n equal n and y equal y.
* @param n Number to abs.
* @returns The absolute number.
*/
#define mathAbs(n) (n<0?-n:n)
/**
* Convert degrees to radians.
* @param n Degrees to convert.
* @returns The number in radians.
*/
#define mathDeg2Rad(n) (n * M_PI / 180.0)
/**
* Convert radians to degrees.
* @param n Radians to convert.
* @returns The number in degrees.
*/
#define mathRad2Deg(n) (n * 180 / M_PI)
#define mathSign(n) (n>=0 ? 1 : -1)
#define mathClamp(val,min,max) mathMin(mathMax(val,min),max)
/**
* Sign the given number, essentially clamps > 0 to 1, and < 0 to -1.
* @param n Number to sign.
* @returns The signed number.
*/
#define mathSign(n) (n>=0 ? 1 : -1)