Added grid cell alignment
This commit is contained in:
@ -12,6 +12,10 @@
|
|||||||
#include "../../../display/framebuffer.h"
|
#include "../../../display/framebuffer.h"
|
||||||
#include "../../../display/camera.h"
|
#include "../../../display/camera.h"
|
||||||
|
|
||||||
|
|
||||||
|
#include "../../../ui/grid.h"
|
||||||
|
#include "../../../ui/align.h"
|
||||||
|
|
||||||
#define POKER_PLAYER_UI_IMAGE_SIZE 64
|
#define POKER_PLAYER_UI_IMAGE_SIZE 64
|
||||||
#define POKER_PLAYER_UI_IMAGE_RESOLUTION POKER_PLAYER_UI_IMAGE_SIZE * 2
|
#define POKER_PLAYER_UI_IMAGE_RESOLUTION POKER_PLAYER_UI_IMAGE_SIZE * 2
|
||||||
#define POKER_PLAYER_UI_IMAGE_DIST 0.8f
|
#define POKER_PLAYER_UI_IMAGE_DIST 0.8f
|
||||||
@ -20,7 +24,9 @@
|
|||||||
#define POKER_PLAYER_UI_CHIPS_ANIMATION_SPEED 0.5f
|
#define POKER_PLAYER_UI_CHIPS_ANIMATION_SPEED 0.5f
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
label_t label;
|
|
||||||
framebuffer_t frame;
|
framebuffer_t frame;
|
||||||
primitive_t quad;
|
primitive_t quad;
|
||||||
|
label_t label;
|
||||||
|
|
||||||
|
grid_t grid;
|
||||||
} pokerplayerui_t;
|
} pokerplayerui_t;
|
@ -64,6 +64,8 @@ typedef struct {
|
|||||||
/** Internal size reference, used for caching resize events */
|
/** Internal size reference, used for caching resize events */
|
||||||
float width;
|
float width;
|
||||||
float height;
|
float height;
|
||||||
|
float x;
|
||||||
|
float y;
|
||||||
|
|
||||||
/** Pointer to any custom user data */
|
/** Pointer to any custom user data */
|
||||||
void *user;
|
void *user;
|
||||||
|
@ -8,6 +8,8 @@
|
|||||||
#include "pokerplayerui.h"
|
#include "pokerplayerui.h"
|
||||||
|
|
||||||
void pokerPlayerUiInit(pokerplayerui_t *ui) {
|
void pokerPlayerUiInit(pokerplayerui_t *ui) {
|
||||||
|
gridchild_t *child;
|
||||||
|
|
||||||
labelInit(&ui->label);
|
labelInit(&ui->label);
|
||||||
frameBufferInit(&ui->frame,
|
frameBufferInit(&ui->frame,
|
||||||
POKER_PLAYER_UI_IMAGE_RESOLUTION, POKER_PLAYER_UI_IMAGE_RESOLUTION
|
POKER_PLAYER_UI_IMAGE_RESOLUTION, POKER_PLAYER_UI_IMAGE_RESOLUTION
|
||||||
@ -16,6 +18,22 @@ void pokerPlayerUiInit(pokerplayerui_t *ui) {
|
|||||||
0, 0, 0, 1,
|
0, 0, 0, 1,
|
||||||
POKER_PLAYER_UI_IMAGE_SIZE, POKER_PLAYER_UI_IMAGE_SIZE, 1, 0
|
POKER_PLAYER_UI_IMAGE_SIZE, POKER_PLAYER_UI_IMAGE_SIZE, 1, 0
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Grid
|
||||||
|
gridInit(&ui->grid);
|
||||||
|
gridAddBreakpoint(&ui->grid, -1, 2, 2, 0, 0);
|
||||||
|
|
||||||
|
// Player UI Image
|
||||||
|
child = gridAddChild(&ui->grid);
|
||||||
|
gridChildAddBreakpoint(child, 1,0, 1,2);
|
||||||
|
|
||||||
|
// Chips
|
||||||
|
child = gridAddChild(&ui->grid);
|
||||||
|
gridChildAddBreakpoint(child, 0,0, 1,1);
|
||||||
|
|
||||||
|
// Title.
|
||||||
|
child = gridAddChild(&ui->grid);
|
||||||
|
gridChildAddBreakpoint(child, 0,1, 1,1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pokerPlayerUiUpdate(
|
void pokerPlayerUiUpdate(
|
||||||
@ -62,28 +80,50 @@ void pokerPlayerUiUpdate(
|
|||||||
|
|
||||||
void pokerPlayerUiRender(
|
void pokerPlayerUiRender(
|
||||||
pokerplayerui_t *ui, pokergame_t *game, shader_t *shader, font_t *font,
|
pokerplayerui_t *ui, pokergame_t *game, shader_t *shader, font_t *font,
|
||||||
|
engine_t *engine,
|
||||||
int32_t playerIndex, float x, float y
|
int32_t playerIndex, float x, float y
|
||||||
) {
|
) {
|
||||||
pokerplayer_t *player;
|
pokerplayer_t *player;
|
||||||
char buffer[32];
|
char buffer[32];
|
||||||
float scale;
|
float scale;
|
||||||
|
align_t align;
|
||||||
|
|
||||||
|
float gx, gy, gw, gh, sCol, sRow;
|
||||||
|
|
||||||
scale = fontGetScale(FONT_SIZE_DEFAULT);
|
scale = fontGetScale(FONT_SIZE_DEFAULT);
|
||||||
player = game->poker.players + playerIndex;
|
player = game->poker.players + playerIndex;
|
||||||
|
|
||||||
// Render Face
|
// Resize the grid
|
||||||
shaderUseTexture(shader, &ui->frame.texture);
|
align = alignmentGet(
|
||||||
shaderUsePosition(shader, x - POKER_PLAYER_UI_IMAGE_SIZE,y,0, 0,0,0);
|
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL,
|
||||||
primitiveDraw(&ui->quad, 0, -1);
|
engine->render.width, engine->render.height,
|
||||||
|
300, POKER_PLAYER_UI_IMAGE_SIZE, -1, -1
|
||||||
|
);
|
||||||
|
gridSetSize(
|
||||||
|
&ui->grid, engine->render.width, engine->render.height,
|
||||||
|
align.width, align.height,
|
||||||
|
align.x, align.y
|
||||||
|
);
|
||||||
|
|
||||||
// Move everything left a bit.
|
// Render face
|
||||||
x -= POKER_PLAYER_UI_IMAGE_SIZE + POKER_PLAYER_UI_PADDING;
|
gridGetChildSize(&ui->grid, ui->grid.breakpointCurrent, ui->grid.children+0,
|
||||||
y += (POKER_PLAYER_UI_IMAGE_SIZE - (FONT_LINE_HEIGHT * scale * 2)) / 2.0f;
|
&sCol, &sRow, &gx, &gy, &gw, &gh
|
||||||
|
);
|
||||||
|
shaderUseTexture(shader, &ui->frame.texture);
|
||||||
|
shaderUsePosition(shader, gx, gy, 0, 0,0,0);
|
||||||
|
primitiveDraw(&ui->quad, 0, -1);
|
||||||
|
|
||||||
// Render chips
|
// Render chips
|
||||||
sprintf(buffer, "$%i", player->chips);
|
sprintf(buffer, "$%i", player->chips);
|
||||||
|
ui->label.maxWidth = -1;
|
||||||
labelSetText(&ui->label, font, buffer);
|
labelSetText(&ui->label, font, buffer);
|
||||||
labelRender(&ui->label, shader, x - ui->label.info.width, y);
|
align = gridAlignChild(
|
||||||
|
&ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 1, &sCol, &sRow,
|
||||||
|
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL,
|
||||||
|
ui->label.info.width, ui->label.info.height
|
||||||
|
);
|
||||||
|
labelRender(&ui->label, shader, align.x, align.y);
|
||||||
|
|
||||||
|
|
||||||
// Render state
|
// Render state
|
||||||
if(player->state & POKER_PLAYER_STATE_OUT) {
|
if(player->state & POKER_PLAYER_STATE_OUT) {
|
||||||
@ -98,9 +138,12 @@ void pokerPlayerUiRender(
|
|||||||
sprintf(buffer, "Whatever");
|
sprintf(buffer, "Whatever");
|
||||||
}
|
}
|
||||||
labelSetText(&ui->label, font, buffer);
|
labelSetText(&ui->label, font, buffer);
|
||||||
labelRender(&ui->label, shader,
|
align = gridAlignChild(
|
||||||
x - ui->label.info.width, y + scale * FONT_LINE_HEIGHT
|
&ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 2, &sCol, &sRow,
|
||||||
|
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL,
|
||||||
|
ui->label.info.width, ui->label.info.height
|
||||||
);
|
);
|
||||||
|
labelRender(&ui->label, shader, align.x, align.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pokerPlayerUiDispose(pokerplayerui_t *ui) {
|
void pokerPlayerUiDispose(pokerplayerui_t *ui) {
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
#include "../../../display/camera.h"
|
#include "../../../display/camera.h"
|
||||||
#include "../../../vn/vncharacter.h"
|
#include "../../../vn/vncharacter.h"
|
||||||
|
|
||||||
|
#include "../../../ui/grid.h"
|
||||||
|
#include "../../../ui/align.h"
|
||||||
|
|
||||||
void pokerPlayerUiInit(pokerplayerui_t *ui);
|
void pokerPlayerUiInit(pokerplayerui_t *ui);
|
||||||
|
|
||||||
void pokerPlayerUiUpdate(
|
void pokerPlayerUiUpdate(
|
||||||
@ -25,6 +28,7 @@ void pokerPlayerUiUpdate(
|
|||||||
|
|
||||||
void pokerPlayerUiRender(
|
void pokerPlayerUiRender(
|
||||||
pokerplayerui_t *ui, pokergame_t *game, shader_t *shader, font_t *font,
|
pokerplayerui_t *ui, pokergame_t *game, shader_t *shader, font_t *font,
|
||||||
|
engine_t *engine,
|
||||||
int32_t playerIndex, float x, float y
|
int32_t playerIndex, float x, float y
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -40,9 +40,9 @@ void pokerUiRender(pokergame_t *pokerGame, engine_t *engine) {
|
|||||||
if(i == POKER_PLAYER_HUMAN_INDEX) continue;
|
if(i == POKER_PLAYER_HUMAN_INDEX) continue;
|
||||||
ui = pokerGame->ui.player + j;
|
ui = pokerGame->ui.player + j;
|
||||||
|
|
||||||
pokerPlayerUiRender(ui, pokerGame,
|
pokerPlayerUiRender(
|
||||||
&pokerGame->assets.shader, &pokerGame->assets.font, i,
|
ui, pokerGame, &pokerGame->assets.shader, &pokerGame->assets.font, engine,
|
||||||
engine->render.width, j * 75.0f
|
i, engine->render.width, j * 75.0f
|
||||||
);
|
);
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,12 @@ align_t alignmentGet(
|
|||||||
float childWidth, float childHeight,
|
float childWidth, float childHeight,
|
||||||
float childX, float childY
|
float childX, float childY
|
||||||
) {
|
) {
|
||||||
align_t out;
|
align_t out = {
|
||||||
|
.x = 0,
|
||||||
|
.y = 0,
|
||||||
|
.width = 0,
|
||||||
|
.height = 0
|
||||||
|
};
|
||||||
|
|
||||||
if(alignX & ALIGN_SIZE_RATIO) {
|
if(alignX & ALIGN_SIZE_RATIO) {
|
||||||
// Work out Y size and alignment first, then we base off that.
|
// Work out Y size and alignment first, then we base off that.
|
||||||
|
106
src/ui/grid.c
106
src/ui/grid.c
@ -74,58 +74,114 @@ void gridSetSize(grid_t *grid,
|
|||||||
float x, float y
|
float x, float y
|
||||||
) {
|
) {
|
||||||
uint8_t i, breakpoint;
|
uint8_t i, breakpoint;
|
||||||
gridchild_t *child;
|
|
||||||
gridchildbreakpoint_t *childbp;
|
|
||||||
gridbreakpoint_t *gridbp;
|
gridbreakpoint_t *gridbp;
|
||||||
float sizeCol, sizeRow, gx, gy, gw, gh;
|
float sizeCol, sizeRow, gx, gy, gw, gh;
|
||||||
|
|
||||||
// Need to resize?
|
// Need to resize?
|
||||||
if(grid->width == width && grid->height == height) {
|
if(
|
||||||
|
grid->width == width && grid->height == height &&
|
||||||
|
grid->x == x && grid->y == y
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update properties
|
// Update properties
|
||||||
grid->width = width;
|
grid->width = width;
|
||||||
grid->height = height;
|
grid->height = height;
|
||||||
|
grid->x = x;
|
||||||
|
grid->y = y;
|
||||||
|
|
||||||
// Determine breakpoint
|
// Determine breakpoint
|
||||||
breakpoint = gridGetBreakpoint(grid, screenWidth);
|
breakpoint = gridGetBreakpoint(grid, screenWidth);
|
||||||
gridbp = grid->breakpoints + breakpoint;
|
gridbp = grid->breakpoints + breakpoint;
|
||||||
grid->breakpointCurrent = breakpoint;
|
grid->breakpointCurrent = breakpoint;
|
||||||
|
|
||||||
// Determine the size of a single column/row
|
|
||||||
sizeCol = (width - (gridbp->gutterX * (gridbp->columns-1))) / gridbp->columns;
|
|
||||||
sizeRow = (height - (gridbp->gutterY * (gridbp->rows - 1))) / gridbp->rows;
|
|
||||||
|
|
||||||
if(grid->onResize == NULL) return;
|
if(grid->onResize == NULL) return;
|
||||||
|
|
||||||
|
sizeCol = -1;
|
||||||
|
sizeRow = -1;
|
||||||
|
|
||||||
// Resize children
|
// Resize children
|
||||||
for(i = 0; i < grid->childCount; i++) {
|
for(i = 0; i < grid->childCount; i++) {
|
||||||
// Get the item and the definition.
|
// Get the item and the definition.
|
||||||
child = grid->children + i;
|
|
||||||
|
|
||||||
childbp = gridChildGetBreakpoint(child, breakpoint);
|
|
||||||
|
|
||||||
// Get the local X/Y
|
gridGetChildSize(
|
||||||
gx = (sizeCol * childbp->x) + (gridbp->gutterX * childbp->x);
|
grid, breakpoint, grid->children + i,
|
||||||
gy = (sizeRow * childbp->y) + (gridbp->gutterY * childbp->y);
|
&sizeCol, &sizeRow, &gx, &gy, &gw, &gh
|
||||||
|
|
||||||
// Get the width/height
|
|
||||||
gw = (
|
|
||||||
(childbp->columns * sizeCol) +
|
|
||||||
(mathMax(childbp->columns - 1, 0) * gridbp->gutterX)
|
|
||||||
);
|
|
||||||
gh = (
|
|
||||||
(childbp->rows * sizeRow) +
|
|
||||||
(mathMax(childbp->rows - 1, 0) * gridbp->gutterY)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// Fire the resize event.
|
// Fire the resize event.
|
||||||
grid->onResize(
|
grid->onResize(
|
||||||
grid->user, i, childbp,
|
grid->user, i, gridChildGetBreakpoint(grid->children + i, breakpoint),
|
||||||
screenWidth, screenHeight,
|
screenWidth, screenHeight,
|
||||||
x + gx, y + gy,
|
gx, gy, gw, gh
|
||||||
gw, gh
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void gridGetChildSize(
|
||||||
|
grid_t *grid, uint8_t breakpoint, gridchild_t *child,
|
||||||
|
float *sizeCol, float *sizeRow,
|
||||||
|
float *x, float *y, float *width, float *height
|
||||||
|
) {
|
||||||
|
gridchildbreakpoint_t *childbp;
|
||||||
|
gridbreakpoint_t *gridbp;
|
||||||
|
|
||||||
|
gridbp = grid->breakpoints + breakpoint;
|
||||||
|
|
||||||
|
if(*sizeCol < 0) {
|
||||||
|
*sizeCol = (
|
||||||
|
grid->width - (gridbp->gutterX * (gridbp->columns-1))
|
||||||
|
) / gridbp->columns;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(*sizeRow < 0) {
|
||||||
|
*sizeRow = (
|
||||||
|
grid->height - (gridbp->gutterY * (gridbp->rows - 1))
|
||||||
|
) / gridbp->rows;
|
||||||
|
}
|
||||||
|
|
||||||
|
childbp = gridChildGetBreakpoint(child, breakpoint);
|
||||||
|
|
||||||
|
*x = (*sizeCol * childbp->x) + (gridbp->gutterX * childbp->x) + grid->x;
|
||||||
|
*y = (*sizeRow * childbp->y) + (gridbp->gutterY * childbp->y) + grid->y;
|
||||||
|
|
||||||
|
*width = (
|
||||||
|
(childbp->columns * *sizeCol) +
|
||||||
|
(mathMax(childbp->columns - 1, 0) * gridbp->gutterX)
|
||||||
|
);
|
||||||
|
*height = (
|
||||||
|
(childbp->rows * *sizeRow) +
|
||||||
|
(mathMax(childbp->rows - 1, 0) * gridbp->gutterY)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
align_t gridAlignChild(
|
||||||
|
grid_t *grid, uint8_t breakpoint, gridchild_t *child,
|
||||||
|
float *sizeCol, float *sizeRow,
|
||||||
|
uint8_t alignX, uint8_t alignY,
|
||||||
|
float width, float height
|
||||||
|
) {
|
||||||
|
float gridWidth, gridHeight, gridX, gridY;
|
||||||
|
align_t alignment;
|
||||||
|
|
||||||
|
// Get the child size.
|
||||||
|
gridGetChildSize(
|
||||||
|
grid, breakpoint, child, sizeCol, sizeRow,
|
||||||
|
&gridX, &gridY, &gridWidth, &gridHeight
|
||||||
|
);
|
||||||
|
|
||||||
|
if(width == -1) width = gridWidth;
|
||||||
|
if(height == -1) height = gridHeight;
|
||||||
|
|
||||||
|
// Align the child
|
||||||
|
alignment = alignmentGet(
|
||||||
|
alignX, alignY, gridWidth, gridHeight, width, height, -1, -1
|
||||||
|
);
|
||||||
|
|
||||||
|
alignment.x += gridX;
|
||||||
|
alignment.y += gridY;
|
||||||
|
|
||||||
|
return alignment;
|
||||||
}
|
}
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <dawn/dawn.h>
|
#include <dawn/dawn.h>
|
||||||
|
#include "align.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize a grid system.
|
* Initialize a grid system.
|
||||||
@ -83,11 +84,51 @@ gridchildbreakpoint_t * gridChildGetBreakpoint(gridchild_t *child, uint8_t bp);
|
|||||||
* @param screenHeight Current screen height.
|
* @param screenHeight Current screen height.
|
||||||
* @param width Width of the grid itself, useful for nested grids.
|
* @param width Width of the grid itself, useful for nested grids.
|
||||||
* @param height Height of the grid itself, useful for nested grids.
|
* @param height Height of the grid itself, useful for nested grids.
|
||||||
* @param x X position of this grid (to offset children by).
|
* @param x X position of this grid (to offset children by). Only for events.
|
||||||
* @param y Y position of this grid (to offset children by).
|
* @param y Y position of this grid (to offset children by). Only for events.
|
||||||
*/
|
*/
|
||||||
void gridSetSize(grid_t *grid,
|
void gridSetSize(grid_t *grid,
|
||||||
float screenWidth, float screenHeight,
|
float screenWidth, float screenHeight,
|
||||||
float width, float height,
|
float width, float height,
|
||||||
float x, float y
|
float x, float y
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the size of a grid child.
|
||||||
|
*
|
||||||
|
* @param grid Grid to get from.
|
||||||
|
* @param breakpoint Breakpoint index to get.
|
||||||
|
* @param child Grid child to get for.
|
||||||
|
* @param sizeCol Pointer to a float that will/already holds the column size.
|
||||||
|
* @param sizeRow Poitner to a float that will/aready holds the row size.
|
||||||
|
* @param x Pointer to the output X position.
|
||||||
|
* @param y Pointer to the output Y position.
|
||||||
|
* @param width Pointer to the output width.
|
||||||
|
* @param height Pointer to the output height.
|
||||||
|
*/
|
||||||
|
void gridGetChildSize(
|
||||||
|
grid_t *grid, uint8_t breakpoint, gridchild_t *child,
|
||||||
|
float *sizeCol, float *sizeRow,
|
||||||
|
float *x, float *y, float *width, float *height
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Align a grid item child.
|
||||||
|
*
|
||||||
|
* @param grid Grid to align within.
|
||||||
|
* @param breakpoint Breakpoint index.
|
||||||
|
* @param child Grid child.
|
||||||
|
* @param sizeCol Pointer to a float that will/already holds the column size.
|
||||||
|
* @param sizeRow Poitner to a float that will/aready holds the row size.
|
||||||
|
* @param alignX Alignment options for the X axis.
|
||||||
|
* @param alignY Alignment options for the Y axis.
|
||||||
|
* @param width Width of the child item to be aligned.
|
||||||
|
* @param height Height of the child item to be aligned.
|
||||||
|
* @return The alignment within the grid cell.
|
||||||
|
*/
|
||||||
|
align_t gridAlignChild(
|
||||||
|
grid_t *grid, uint8_t breakpoint, gridchild_t *child,
|
||||||
|
float *sizeCol, float *sizeRow,
|
||||||
|
uint8_t alignX, uint8_t alignY,
|
||||||
|
float width, float height
|
||||||
);
|
);
|
Reference in New Issue
Block a user